diff --git a/macbuild/build4mac.py b/macbuild/build4mac.py
index 6ed2f9ea0..0c75df945 100755
--- a/macbuild/build4mac.py
+++ b/macbuild/build4mac.py
@@ -1315,6 +1315,7 @@ def Deploy_Binaries_For_Bundle(config, parameters):
# | +-- 'klayout'
# | +-- db_plugins/
# | +-- lay_plugins/
+ # | +-- pymod/
# +-- Buddy/+
# | +-- 'strm2cif'
# | +-- 'strm2dxf'
@@ -1408,7 +1409,7 @@ def Deploy_Binaries_For_Bundle(config, parameters):
# Copy the contents of the plugin directories to a place next to
# the application binary
#-------------------------------------------------------------------
- for piDir in [ "db_plugins", "lay_plugins" ]:
+ for piDir in [ "db_plugins", "lay_plugins", "pymod" ]:
os.makedirs( os.path.join( targetDirM, piDir ))
dynamicLinkLibs = glob.glob( os.path.join( MacBinDir, piDir, "*.dylib" ) )
for item in dynamicLinkLibs:
@@ -1458,6 +1459,7 @@ def Deploy_Binaries_For_Bundle(config, parameters):
# | +-- 'klayout'
# | +-- db_plugins/
# | +-- lay_plugins/
+ # | +-- pymod/
# :
#----------------------------------------------------------------------------------
os.chdir( targetDirF )
diff --git a/macbuild/macQAT.py b/macbuild/macQAT.py
index 51b8d13f8..5838e36a6 100755
--- a/macbuild/macQAT.py
+++ b/macbuild/macQAT.py
@@ -184,11 +184,11 @@ def ExportEnvVariables():
MyEnviron[ 'TESTSRC' ] = ".."
MyEnviron[ 'TESTTMP' ] = WorkDir
if System == "Darwin":
- MyEnviron[ 'DYLD_LIBRARY_PATH' ] = "%s:%s/db_plugins:%s/lay_plugins" % (ProjectDir, ProjectDir, ProjectDir)
+ MyEnviron[ 'DYLD_LIBRARY_PATH' ] = "%s:%s/db_plugins:%s/lay_plugins:%s/pymod" % (ProjectDir, ProjectDir, ProjectDir, ProjectDir)
for env in [ 'TESTSRC', 'TESTTMP', 'DYLD_LIBRARY_PATH' ]:
os.environ[env] = MyEnviron[env]
else:
- MyEnviron[ 'LD_LIBRARY_PATH' ] = "%s:%s/db_plugins:%s/lay_plugins" % (ProjectDir, ProjectDir, ProjectDir)
+ MyEnviron[ 'LD_LIBRARY_PATH' ] = "%s:%s/db_plugins:%s/lay_plugins:%s/pymod" % (ProjectDir, ProjectDir, ProjectDir, ProjectDir)
for env in [ 'TESTSRC', 'TESTTMP', 'LD_LIBRARY_PATH' ]:
os.environ[env] = MyEnviron[env]
diff --git a/macbuild/macQAT.sh b/macbuild/macQAT.sh
index f5e462220..a04cc9d40 100755
--- a/macbuild/macQAT.sh
+++ b/macbuild/macQAT.sh
@@ -46,7 +46,7 @@ logfile=QATest_${gitSHA1}_${timestamp}__${presentDir}.log
#----------------------------------------------------------------
export TESTSRC=..
export TESTTMP=QATest_${gitSHA1}_${timestamp}__${presentDir}
-export DYLD_LIBRARY_PATH=$(pwd):$(pwd)/db_plugins:$(pwd)/lay_plugins
+export DYLD_LIBRARY_PATH=$(pwd):$(pwd)/db_plugins:$(pwd)/lay_plugins:$(pwd)/pymod
#----------------------------------------------------------------
# Environment variables for "ut_runner"
diff --git a/scripts/deploy-win-mingw.sh b/scripts/deploy-win-mingw.sh
index 26bdb6d55..a398018e8 100644
--- a/scripts/deploy-win-mingw.sh
+++ b/scripts/deploy-win-mingw.sh
@@ -277,7 +277,7 @@ echo "Making .zip file $zipname.zip .."
rm -rf $zipname $zipname.zip
mkdir $zipname
-cp -Rv *.dll .*-paths.txt db_plugins lay_plugins $plugins lib $zipname | sed -u 's/.*/echo -n ./' | sh
+cp -Rv *.dll .*-paths.txt db_plugins lay_plugins pymod $plugins lib $zipname | sed -u 's/.*/echo -n ./' | sh
cp klayout.exe $zipname/klayout_app.exe
cp klayout.exe $zipname/klayout_vo_app.exe
echo ""
diff --git a/scripts/klayout-inst.nsis b/scripts/klayout-inst.nsis
index a4d4a655e..94474b4cb 100644
--- a/scripts/klayout-inst.nsis
+++ b/scripts/klayout-inst.nsis
@@ -70,6 +70,7 @@ section
file .*-paths.txt
file /r db_plugins
file /r lay_plugins
+ file /r pymod
file /r audio
file /r generic
file /r iconengines
diff --git a/scripts/makedeb.sh b/scripts/makedeb.sh
index 81fc8291d..0652b2254 100755
--- a/scripts/makedeb.sh
+++ b/scripts/makedeb.sh
@@ -93,6 +93,7 @@ mkdir -p makedeb-tmp/${sharedir}/applications
mkdir -p makedeb-tmp/${sharedir}/pixmaps
mkdir -p makedeb-tmp/${libdir}/db_plugins
mkdir -p makedeb-tmp/${libdir}/lay_plugins
+mkdir -p makedeb-tmp/${libdir}/pymod
mkdir -p makedeb-tmp/${bindir}
cp etc/klayout.desktop makedeb-tmp/${sharedir}/applications
@@ -106,6 +107,7 @@ cp -pd $bininstdir/klayout makedeb-tmp/${bindir}
cp -pd $bininstdir/lib*so* makedeb-tmp/${libdir}
cp -pd $bininstdir/db_plugins/lib*so* makedeb-tmp/${libdir}/db_plugins
cp -pd $bininstdir/lay_plugins/lib*so* makedeb-tmp/${libdir}/lay_plugins
+cp -rpd $bininstdir/pymod/* makedeb-tmp/${libdir}/pymod
cd makedeb-tmp
@@ -131,6 +133,7 @@ echo "Modifying control file .."
strip ${bindir}/*
strip ${libdir}/db_plugins/*.so*
strip ${libdir}/lay_plugins/*.so*
+strip ${libdir}/pymod/klayout/*.so*
size=`du -ck usr | grep total | sed "s/ *total//"`
diff --git a/scripts/mkqtdecl.sh b/scripts/mkqtdecl.sh
index a860a9cfd..e7cd01d28 100755
--- a/scripts/mkqtdecl.sh
+++ b/scripts/mkqtdecl.sh
@@ -43,7 +43,7 @@ update=0
diff=0
reuse=0
qt="/opt/qt/4.6.3/include"
-qt5="/opt/qt/5.5.1/include"
+qt5="/opt/qt/5.12.12/include"
qt6="/opt/qt/6.2.1/include"
inst_dir_common=`pwd`/scripts/mkqtdecl_common
inst_dir4=`pwd`/scripts/mkqtdecl4
diff --git a/scripts/mkqtdecl4/mkqtdecl.conf b/scripts/mkqtdecl4/mkqtdecl.conf
index 2b7c1713a..1ec4e045a 100644
--- a/scripts/mkqtdecl4/mkqtdecl.conf
+++ b/scripts/mkqtdecl4/mkqtdecl.conf
@@ -526,7 +526,9 @@ drop_method "QPixmap", /QPixmap::handle/ # not available on WIN
drop_method "QPixmap", /QPixmap::fromX11Pixmap/ # not available on WIN
drop_method "QTabletEvent", /QTabletEvent::QTabletEvent/ # TODO: too many arguments
drop_method "QGraphicsProxyWidget", /QGraphicsProxyWidget::setGeometry\(double/ # not available as override (private or protected inheritance?)
-drop_method "QPixmap", /QPixmap::QPixmap\(const\s+char\s+\*\s*const\s*\w*\s*\[\s*\]/ # no const char *[] - TODO: provide differen implementation?
+drop_method "QPixmap", /QPixmap::QPixmap\(const\s+char\s+\*\s*const\s*xpm\s*\[\s*\]/ # no const char *[] - TODO: provide differen implementation?
+drop_method "QImage", /QImage::QImage\(.*unsigned\s+char\s+\*\s*data\W/ # not binary data constructor - done in native implementation
+add_native_impl_QImage()
drop_method "QImage", /QImage::QImage\(const\s+char\s+\*\s*const\s*xpm\s*\[\s*\]/ # no const char *[] - TODO: provide differen implementation?
drop_method "QImage", /QImage::QImage\(const\s+char\s+\*\s*fileName/ # not available for QT_NO_CAST_TO_ASCII
drop_method "QAccessibleInterface", /QAccessibleInterface::imageInterface/ # Interface is not officially available
@@ -635,11 +637,26 @@ drop_method "Qimage", /Qimage::text\(const\s+QString/ # clashes with const char
rename "QDialogButtonBox", /QDialogButtonBox::QDialogButtonBox\(QFlags/, "new_buttons"
rename "QIcon", /QIcon::pixmap\(int\s+extent/, "pixmap_ext"
rename "QKeySequence", /QKeySequence::QKeySequence\(QKeySequence::StandardKey/, "new_std"
+
+# TODO: basically, the layout object only takes ownership over the objects when
+# it has a QWidget parent itself. This is not reflected in the following simple scheme
keep_arg "QBoxLayout", /::addLayout/, 0 # will take ownership of layout
+keep_arg "QBoxLayout", /::addSpacerItem/, 0 # will take ownership of item
+keep_arg "QBoxLayout", /::addWidget/, 0 # will take ownership of item
+keep_arg "QBoxLayout", /::insertItem/, 1 # will take ownership of item
+keep_arg "QBoxLayout", /::insertLayout/, 1 # will take ownership of item
+keep_arg "QBoxLayout", /::insertSpacerItem/, 1 # will take ownership of item
+keep_arg "QBoxLayout", /::insertWidget/, 1 # will take ownership of item
keep_arg "QGridLayout", /::addLayout/, 0 # will take ownership of layout
-keep_arg "QWidget", /::setLayout\s*\(/, 0 # will take ownership of layout
+keep_arg "QGridLayout", /::addItem/, 0 # will take ownership of layout
+keep_arg "QGridLayout", /::addWidget/, 0 # will take ownership of layout
keep_arg "QLayout", /::addChildLayout/, 0 # will take ownership of layout
keep_arg "QLayout", /::addItem/, 0 # will take ownership of item
+keep_arg "QLayout", /::addWidget/, 0 # will take ownership of item
+keep_arg "QStackedLayout", /::addWidget/, 0 # will take ownership of item
+keep_arg "QStackedLayout", /::insertWidget/, 1 # will take ownership of item
+
+keep_arg "QWidget", /::setLayout\s*\(/, 0 # will take ownership of layout
keep_arg "QTreeWidgetItem", /::addChild\(/, 0 # will take ownership of the child
keep_arg "QTreeWidgetItem", /::addChildren\(/, 0 # will take ownership of the children
keep_arg "QTreeWidgetItem", /::insertChild\(/, 1 # will take ownership of the child
diff --git a/scripts/mkqtdecl5/QtCore/allofqt.cpp b/scripts/mkqtdecl5/QtCore/allofqt.cpp
index 20ddf04cc..cbcc915f1 100644
--- a/scripts/mkqtdecl5/QtCore/allofqt.cpp
+++ b/scripts/mkqtdecl5/QtCore/allofqt.cpp
@@ -19,7 +19,8 @@
#include "QtCore/QAtomicPointer"
#include "QtCore/QBasicMutex"
#include "QtCore/QBasicTimer"
-#include "QtCore/QBBSystemLocaleData"
+#include "QtCore/QBEInteger"
+#include "QtCore/QBigEndianStorageType"
#include "QtCore/QBitArray"
#include "QtCore/QBitRef"
#include "QtCore/QBuffer"
@@ -31,6 +32,14 @@
#include "QtCore/QByteArrayMatcher"
#include "QtCore/QByteRef"
#include "QtCore/QCache"
+#include "QtCore/QCborArray"
+#include "QtCore/QCborError"
+#include "QtCore/QCborMap"
+#include "QtCore/QCborParserError"
+#include "QtCore/QCborStreamReader"
+#include "QtCore/QCborStreamWriter"
+#include "QtCore/QCborValue"
+#include "QtCore/QCborValueRef"
#include "QtCore/QChar"
#include "QtCore/QCharRef"
#include "QtCore/QChildEvent"
@@ -38,6 +47,7 @@
#include "QtCore/QCollatorSortKey"
#include "QtCore/QCommandLineOption"
#include "QtCore/QCommandLineParser"
+// #include "QtCore/QConstOverload"
#include "QtCore/QContiguousCache"
#include "QtCore/QContiguousCacheData"
#include "QtCore/QContiguousCacheTypedData"
@@ -46,6 +56,7 @@
#include "QtCore/QDataStream"
#include "QtCore/QDate"
#include "QtCore/QDateTime"
+#include "QtCore/QDeadlineTimer"
#include "QtCore/QDebug"
#include "QtCore/QDebugStateSaver"
#include "QtCore/QDeferredDeleteEvent"
@@ -71,7 +82,7 @@
#include "QtCore/QFinalState"
#include "QtCore/QFlag"
#include "QtCore/QFlags"
-#include "QtCore/QForeachContainer"
+#include "QtCore/QFloat16"
#include "QtCore/QFunctionPointer"
#include "QtCore/QFuture"
#include "QtCore/QFutureInterface"
@@ -86,6 +97,7 @@
#include "QtCore/QHash"
#include "QtCore/QHashData"
#include "QtCore/QHashDummyValue"
+#include "QtCore/QHashFunctions"
#include "QtCore/QHashIterator"
#include "QtCore/QHashNode"
#include "QtCore/QHistoryState"
@@ -105,9 +117,11 @@
#include "QtCore/QJsonValuePtr"
#include "QtCore/QJsonValueRef"
#include "QtCore/QJsonValueRefPtr"
+// #include "QtCore/QKeyValueIterator"
#include "QtCore/QLatin1Char"
#include "QtCore/QLatin1Literal"
#include "QtCore/QLatin1String"
+#include "QtCore/QLEInteger"
#include "QtCore/QLibrary"
#include "QtCore/QLibraryInfo"
#include "QtCore/QLine"
@@ -120,6 +134,7 @@
#include "QtCore/QListData"
#include "QtCore/QListIterator"
#include "QtCore/QListSpecialMethods"
+#include "QtCore/QLittleEndianStorageType"
#include "QtCore/QLocale"
#include "QtCore/QLockFile"
#include "QtCore/QLoggingCategory"
@@ -140,9 +155,6 @@
#include "QtCore/QMetaObject"
#include "QtCore/QMetaProperty"
#include "QtCore/QMetaType"
-#include "QtCore/QMetaTypeId"
-#include "QtCore/QMetaTypeId2"
-#include "QtCore/QMetaTypeIdQObject"
#include "QtCore/QMimeData"
#include "QtCore/QMimeDatabase"
#include "QtCore/QMimeType"
@@ -162,11 +174,13 @@
#include "QtCore/QMutex"
#include "QtCore/QMutexLocker"
#include "QtCore/QNoDebug"
+// #include "QtCore/QNonConstOverload"
#include "QtCore/QObject"
#include "QtCore/QObjectCleanupHandler"
#include "QtCore/QObjectData"
#include "QtCore/QObjectList"
#include "QtCore/QObjectUserData"
+#include "QtCore/QOperatingSystemVersion"
#include "QtCore/QPair"
#include "QtCore/QParallelAnimationGroup"
#include "QtCore/QPauseAnimation"
@@ -180,6 +194,8 @@
#include "QtCore/QProcessEnvironment"
#include "QtCore/QPropertyAnimation"
#include "QtCore/QQueue"
+#include "QtCore/QRandomGenerator"
+#include "QtCore/QRandomGenerator64"
#include "QtCore/QReadLocker"
#include "QtCore/QReadWriteLock"
#include "QtCore/QRect"
@@ -200,7 +216,10 @@
#include "QtCore/QScopedPointerObjectDeleteLater"
#include "QtCore/QScopedPointerPodDeleter"
#include "QtCore/QScopedValueRollback"
+#include "QtCore/QScopeGuard"
+// #include "QtCore/Q_SECURITY_ATTRIBUTES"
#include "QtCore/QSemaphore"
+#include "QtCore/QSemaphoreReleaser"
#include "QtCore/QSequentialAnimationGroup"
#include "QtCore/QSequentialIterable"
#include "QtCore/QSet"
@@ -217,29 +236,35 @@
#include "QtCore/QSizeF"
#include "QtCore/QSocketNotifier"
#include "QtCore/QSortFilterProxyModel"
+#include "QtCore/QSpecialInteger"
#include "QtCore/QStack"
#include "QtCore/QStandardPaths"
+// #include "QtCore/Q_STARTUPINFO"
#include "QtCore/QState"
#include "QtCore/QStateMachine"
#include "QtCore/QStaticArrayData"
-#include "QtCore/QStaticAssertFailure"
#include "QtCore/QStaticByteArrayData"
+#include "QtCore/QStaticByteArrayMatcherBase"
#include "QtCore/QStaticPlugin"
#include "QtCore/QStaticStringData"
#include "QtCore/QStorageInfo"
#include "QtCore/QString"
+#include "QtCore/QStringAlgorithms"
#include "QtCore/QStringBuilder"
#include "QtCore/QStringData"
#include "QtCore/QStringDataPtr"
#include "QtCore/QStringList"
#include "QtCore/QStringListIterator"
#include "QtCore/QStringListModel"
+#include "QtCore/QStringLiteral"
#include "QtCore/QStringMatcher"
#include "QtCore/QStringRef"
+#include "QtCore/QStringView"
#include "QtCore/QSysInfo"
#include "QtCore/QSystemSemaphore"
#include "QtCore/Qt"
#include "QtCore/QtAlgorithms"
+#include "QtCore/QtCborCommon"
#include "QtCore/QtCleanUpFunction"
#include "QtCore/QtConfig"
#include "QtCore/QtContainerFwd"
@@ -277,6 +302,7 @@
#include "QtCore/QTranslator"
#include "QtCore/QTypeInfo"
#include "QtCore/QTypeInfoMerger"
+// #include "QtCore/QTypeInfoQuery"
#include "QtCore/QUnhandledException"
#include "QtCore/QUrl"
#include "QtCore/QUrlQuery"
@@ -291,6 +317,7 @@
#include "QtCore/QVarLengthArray"
#include "QtCore/QVector"
#include "QtCore/QVectorIterator"
+#include "QtCore/QVersionNumber"
#include "QtCore/QWaitCondition"
#include "QtCore/QWeakPointer"
#include "QtCore/QWinEventNotifier"
diff --git a/scripts/mkqtdecl5/QtDesigner/allofqt.cpp b/scripts/mkqtdecl5/QtDesigner/allofqt.cpp
index 132b71918..563d9beea 100644
--- a/scripts/mkqtdecl5/QtDesigner/allofqt.cpp
+++ b/scripts/mkqtdecl5/QtDesigner/allofqt.cpp
@@ -1,13 +1,16 @@
+#if 0
+// No designer support, except QFormBuilder
#include "QtDesigner/QAbstractExtensionFactory"
#include "QtDesigner/QAbstractExtensionManager"
#include "QtDesigner/QAbstractFormBuilder"
-#if 0
-// No designer support, except QFormBuilder
#include "QtDesigner/QDesignerActionEditorInterface"
#include "QtDesigner/QDesignerComponents"
#include "QtDesigner/QDesignerContainerExtension"
+#include "QtDesigner/QDesignerCustomWidgetCollectionInterface"
+#include "QtDesigner/QDesignerCustomWidgetInterface"
#include "QtDesigner/QDesignerDnDItemInterface"
#include "QtDesigner/QDesignerDynamicPropertySheetExtension"
+#include "QtDesigner/QDesignerExportWidget"
#include "QtDesigner/QDesignerExtraInfoExtension"
#include "QtDesigner/QDesignerFormEditorInterface"
#include "QtDesigner/QDesignerFormEditorPluginInterface"
diff --git a/scripts/mkqtdecl5/QtGui/allofqt.cpp b/scripts/mkqtdecl5/QtGui/allofqt.cpp
index a8df61cb0..b58e93629 100644
--- a/scripts/mkqtdecl5/QtGui/allofqt.cpp
+++ b/scripts/mkqtdecl5/QtGui/allofqt.cpp
@@ -82,6 +82,7 @@
#include "QtGui/QKeyEvent"
#include "QtGui/QKeySequence"
#include "QtGui/QLinearGradient"
+// #include "QtGui/QList" // clash with QList
#include "QtGui/QMatrix"
#include "QtGui/QMatrix2x2"
#include "QtGui/QMatrix2x3"
@@ -97,6 +98,58 @@
#include "QtGui/QMovie"
#include "QtGui/QNativeGestureEvent"
#include "QtGui/QOffscreenSurface"
+#if 0 // we don't want to support this ..
+#include "QtGui/QOpenGLBuffer"
+#include "QtGui/QOpenGLContext"
+#include "QtGui/QOpenGLContextGroup"
+#include "QtGui/QOpenGLDebugLogger"
+#include "QtGui/QOpenGLDebugMessage"
+#include "QtGui/QOpenGLExtraFunctions"
+#include "QtGui/QOpenGLExtraFunctionsPrivate"
+#include "QtGui/QOpenGLFramebufferObject"
+#include "QtGui/QOpenGLFramebufferObjectFormat"
+#include "QtGui/QOpenGLFunctions"
+#include "QtGui/QOpenGLFunctions_1_0"
+#include "QtGui/QOpenGLFunctions_1_1"
+#include "QtGui/QOpenGLFunctions_1_2"
+#include "QtGui/QOpenGLFunctions_1_3"
+#include "QtGui/QOpenGLFunctions_1_4"
+#include "QtGui/QOpenGLFunctions_1_5"
+#include "QtGui/QOpenGLFunctions_2_0"
+#include "QtGui/QOpenGLFunctions_2_1"
+#include "QtGui/QOpenGLFunctions_3_0"
+#include "QtGui/QOpenGLFunctions_3_1"
+#include "QtGui/QOpenGLFunctions_3_2_Compatibility"
+#include "QtGui/QOpenGLFunctions_3_2_Core"
+#include "QtGui/QOpenGLFunctions_3_3_Compatibility"
+#include "QtGui/QOpenGLFunctions_3_3_Core"
+#include "QtGui/QOpenGLFunctions_4_0_Compatibility"
+#include "QtGui/QOpenGLFunctions_4_0_Core"
+#include "QtGui/QOpenGLFunctions_4_1_Compatibility"
+#include "QtGui/QOpenGLFunctions_4_1_Core"
+#include "QtGui/QOpenGLFunctions_4_2_Compatibility"
+#include "QtGui/QOpenGLFunctions_4_2_Core"
+#include "QtGui/QOpenGLFunctions_4_3_Compatibility"
+#include "QtGui/QOpenGLFunctions_4_3_Core"
+#include "QtGui/QOpenGLFunctions_4_4_Compatibility"
+#include "QtGui/QOpenGLFunctions_4_4_Core"
+#include "QtGui/QOpenGLFunctions_4_5_Compatibility"
+#include "QtGui/QOpenGLFunctions_4_5_Core"
+#include "QtGui/QOpenGLFunctions_ES2"
+#include "QtGui/QOpenGLFunctionsPrivate"
+#include "QtGui/QOpenGLPaintDevice"
+#include "QtGui/QOpenGLPixelTransferOptions"
+#include "QtGui/QOpenGLShader"
+#include "QtGui/QOpenGLShaderProgram"
+#include "QtGui/QOpenGLTexture"
+#include "QtGui/QOpenGLTextureBlitter"
+#include "QtGui/QOpenGLTimeMonitor"
+#include "QtGui/QOpenGLTimerQuery"
+#include "QtGui/QOpenGLVersionFunctions"
+#include "QtGui/QOpenGLVersionProfile"
+#include "QtGui/QOpenGLVertexArrayObject"
+#include "QtGui/QOpenGLWindow"
+#endif
#include "QtGui/QPagedPaintDevice"
#include "QtGui/QPageLayout"
#include "QtGui/QPageSize"
@@ -118,6 +171,7 @@
#include "QtGui/QPixmap"
#include "QtGui/QPixmapCache"
#include "QtGui/QPlatformSurfaceEvent"
+#include "QtGui/QPointingDeviceUniqueId"
#include "QtGui/QPolygon"
#include "QtGui/QPolygonF"
#include "QtGui/QQuaternion"
@@ -129,6 +183,7 @@
#include "QtGui/QRegularExpressionValidator"
#include "QtGui/QResizeEvent"
#include "QtGui/QRgb"
+#include "QtGui/QRgba64"
#include "QtGui/QScreen"
#include "QtGui/QScreenOrientationChangeEvent"
#include "QtGui/QScrollEvent"
@@ -186,6 +241,16 @@
#include "QtGui/QVector2D"
#include "QtGui/QVector3D"
#include "QtGui/QVector4D"
+#if 0 // we don't want to support this ..
+#include "QtGui/QVulkanDeviceFunctions"
+#include "QtGui/QVulkanExtension"
+#include "QtGui/QVulkanFunctions"
+#include "QtGui/QVulkanInfoVector"
+#include "QtGui/QVulkanInstance"
+#include "QtGui/QVulkanLayer"
+#include "QtGui/QVulkanWindow"
+#include "QtGui/QVulkanWindowRenderer"
+#endif
#include "QtGui/QWhatsThisClickedEvent"
#include "QtGui/QWheelEvent"
#include "QtGui/QWidgetList"
diff --git a/scripts/mkqtdecl5/QtMultimedia/allofqt.cpp b/scripts/mkqtdecl5/QtMultimedia/allofqt.cpp
index 189de7f87..3bd34c48a 100644
--- a/scripts/mkqtdecl5/QtMultimedia/allofqt.cpp
+++ b/scripts/mkqtdecl5/QtMultimedia/allofqt.cpp
@@ -19,6 +19,7 @@
#include "QtMultimedia/QAudioOutputSelectorControl"
#include "QtMultimedia/QAudioProbe"
#include "QtMultimedia/QAudioRecorder"
+#include "QtMultimedia/QAudioRoleControl"
#include "QtMultimedia/QAudioSystemFactoryInterface"
#include "QtMultimedia/QAudioSystemPlugin"
#include "QtMultimedia/QCamera"
@@ -44,6 +45,7 @@
#include "QtMultimedia/QCameraViewfinderSettingsControl"
#include "QtMultimedia/QCameraViewfinderSettingsControl2"
#include "QtMultimedia/QCameraZoomControl"
+#include "QtMultimedia/QCustomAudioRoleControl"
#include "QtMultimedia/QImageEncoderControl"
#include "QtMultimedia/QImageEncoderSettings"
#include "QtMultimedia/QMediaAudioProbeControl"
diff --git a/scripts/mkqtdecl5/QtNetwork/allofqt.cpp b/scripts/mkqtdecl5/QtNetwork/allofqt.cpp
index 2884c1655..c91ef4359 100644
--- a/scripts/mkqtdecl5/QtNetwork/allofqt.cpp
+++ b/scripts/mkqtdecl5/QtNetwork/allofqt.cpp
@@ -7,8 +7,11 @@
#include "QtNetwork/QDnsMailExchangeRecord"
#include "QtNetwork/QDnsServiceRecord"
#include "QtNetwork/QDnsTextRecord"
+#include "QtNetwork/QDtls"
+#include "QtNetwork/QDtlsClientVerifier"
#include "QtNetwork/QHostAddress"
#include "QtNetwork/QHostInfo"
+#include "QtNetwork/QHstsPolicy"
#include "QtNetwork/QHttpMultiPart"
#include "QtNetwork/QHttpPart"
#include "QtNetwork/Q_IPV6ADDR"
@@ -22,6 +25,7 @@
#include "QtNetwork/QNetworkConfigurationManager"
#include "QtNetwork/QNetworkCookie"
#include "QtNetwork/QNetworkCookieJar"
+#include "QtNetwork/QNetworkDatagram"
#include "QtNetwork/QNetworkDiskCache"
#include "QtNetwork/QNetworkInterface"
#include "QtNetwork/QNetworkProxy"
@@ -30,11 +34,14 @@
#include "QtNetwork/QNetworkReply"
#include "QtNetwork/QNetworkRequest"
#include "QtNetwork/QNetworkSession"
+#include "QtNetwork/QSctpServer"
+#include "QtNetwork/QSctpSocket"
#include "QtNetwork/QSsl"
#include "QtNetwork/QSslCertificate"
#include "QtNetwork/QSslCertificateExtension"
#include "QtNetwork/QSslCipher"
#include "QtNetwork/QSslConfiguration"
+#include "QtNetwork/QSslDiffieHellmanParameters"
#include "QtNetwork/QSslEllipticCurve"
#include "QtNetwork/QSslError"
#include "QtNetwork/QSslKey"
diff --git a/scripts/mkqtdecl5/mkqtdecl.conf b/scripts/mkqtdecl5/mkqtdecl.conf
index e5a78cb22..89cb28a7f 100644
--- a/scripts/mkqtdecl5/mkqtdecl.conf
+++ b/scripts/mkqtdecl5/mkqtdecl.conf
@@ -30,13 +30,18 @@ drop_method :all_classes, /::qt_check_for_QOBJECT_macro/ # don't include in API!
drop_method :all_classes, /::devType\(/ # not required
drop_method :all_classes, /::data_ptr/ # no private data
drop_method :all_classes, /::x11/ # no X11 stuff
+drop_method :all_classes, /\(.*std::chrono.*\)/ # no std::chrono
+drop_method :all_classes, /^std::chrono::/ # no std::chrono as return value
drop_method :all_classes, /\(.*&&.*\)/ # no move semantics
drop_method :all_classes, /.*\s+&&$/ # no move semantics
drop_method :all_classes, /\(.*std::initializer_list.*\)/ # no brace initialization
+drop_method :all_classes, /\(.*QStringView\W/ # no QStringView
+drop_method :all_classes, /^QStringView\W/ # no QStringView
+drop_method :all_classes, /\(.*QLatin1String\W/ # clashes usually with const char *
-rename :all_classes, /::create\(/, "qt_create" # clashes with GSI/Ruby
-rename :all_classes, /::destroy\(/, "qt_destroy" # clashes with GSI/Ruby
-rename :all_classes, /::raise\(/, "qt_raise" # clashes with Ruby "raise" keyword
+def_alias :all_classes, /::create\(/, "qt_create" # clashes with GSI/Ruby
+def_alias :all_classes, /::destroy\(/, "qt_destroy" # clashes with GSI/Ruby
+def_alias :all_classes, /::raise\(/, "qt_raise" # clashes with Ruby "raise" keyword
# --------------------------------------------------------------
# Qt
@@ -74,20 +79,38 @@ drop_class "QAtomicInt"
drop_class "QAtomicInteger"
drop_class "QAtomicOps"
drop_class "QAtomicPointer"
+drop_class "QAtomicTraits"
drop_class "QAtomicOpsSupport"
drop_class "QBasicAtomicInt"
drop_class "QBasicAtomicInteger"
drop_class "QBasicAtomicOps"
drop_class "QBasicAtomicPointer"
drop_class "QBBSystemLocaleData"
+drop_class "QBigEndianStorageType"
drop_class "QBitArray"
drop_class "QBitRef"
drop_class "QBool"
drop_class "QByteArray"
drop_class "QByteRef"
drop_class "QCache"
+drop_class "QCborArray" # complex API & there are better alternatives
+drop_class "QCborArray_ConstIterator" # complex API & there are better alternatives
+drop_class "QCborArray_Iterator" # complex API & there are better alternatives
+drop_class "QCborError" # complex API & there are better alternatives
+drop_class "QCborMap" # complex API & there are better alternatives
+drop_class "QCborMap_ConstIterator" # complex API & there are better alternatives
+drop_class "QCborMap_Iterator" # complex API & there are better alternatives
+drop_class "QCborParserError" # complex API & there are better alternatives
+drop_class "QCborStreamReader" # complex API & there are better alternatives
+drop_class "QCborStreamWriter" # complex API & there are better alternatives
+drop_class "QCborValue" # complex API & there are better alternatives
+drop_class "QCborValueRef" # complex API & there are better alternatives
+drop_class "QCborKnownTags" # complex API & there are better alternatives
+drop_class "QCborNegativeInteger" # complex API & there are better alternatives
+drop_class "QCborSimpleType" # complex API & there are better alternatives
drop_class "QChar"
drop_class "QCharRef"
+drop_class "QConstOverload"
drop_class "QConstString"
drop_class "QContiguousCache"
drop_class "QContiguousCacheData"
@@ -126,6 +149,7 @@ drop_class "QIncompatibleFlag"
drop_class "QInternal"
drop_class "QIntegerForSizeof"
drop_class "QJsonPrivate"
+drop_class "QKeyValueIterator"
drop_class "QLatin1Char"
drop_class "QLatin1String"
drop_class "QLinkedList"
@@ -136,6 +160,7 @@ drop_class "QList"
drop_class "QListData"
drop_class "QListIterator"
drop_class "QListSpecialMethods"
+drop_class "QLittleEndianStorageType"
drop_class "QMap"
drop_class "QMapData"
drop_class "QMapIterator"
@@ -157,10 +182,12 @@ drop_class "QMutableStringListIterator"
drop_class "QMutableVectorIterator"
drop_class "QMutexLocker"
drop_class "QNoImplicitBoolCast"
+drop_class "QNonConstOverload"
drop_class "QObjectCleanupHandler"
drop_class "QObjectData"
drop_class "QObjectList"
drop_class "QObjectUserData"
+drop_class "QOverload"
drop_class "QPair"
drop_class "QPointer"
drop_class "QQueue"
@@ -171,19 +198,24 @@ drop_class "QScopedPointerDeleter"
drop_class "QScopedPointerObjectDeleteLater"
drop_class "QScopedPointerPodDeleter"
drop_class "QScopedValueRollback"
+drop_class "QScopeGuard"
drop_class "QSet"
drop_class "QSetIterator"
drop_class "QSharedDataPointer"
drop_class "QSharedData" # where to get QAtomic?
drop_class "QSharedPointer"
+drop_class "QSpecialInteger"
drop_class "QStack"
drop_class "QStaticArrayData"
drop_class "QStaticByteArrayData"
+drop_class "QStaticByteArrayMatcher"
+drop_class "QStaticByteArrayMatcherBase"
drop_class "QStaticStringData"
drop_class "QStdWString"
drop_class "QStringListIterator"
drop_class "QStringList" # mapped otherwise
drop_class "QString" # mapped otherwise
+drop_class "QStringView" # mapped otherwise
drop_class "QStringRef"
drop_class "QStringBuilder"
drop_class "QStringBuilderBase"
@@ -213,6 +245,7 @@ drop_class "QtMetaTypePrivate"
drop_class "QtGlobalStatic"
drop_class "QTypeInfo"
drop_class "QTypeInfoMerger"
+drop_class "QTypeInfoQuery"
drop_class "QTypedArrayData"
drop_class "QUuid"
drop_class "QUpdateLaterEvent"
@@ -230,9 +263,16 @@ drop_enum_const "QEvent", /CocoaRequestModal/ # not available on WIN
drop_method "QMetaType", /QMetaType::staticMetaObject/ # not available
drop_method "QMetaType", /QMetaType::registerNormalizedType/ # needs function ptrs.
+drop_method "QDeadlineTimer", /QDeadlineTimer::_q_data/ # internal and QPair is not bound
drop_method "QCollator", /QCollator::compare\(.*QStringRef/ # clashes with QString version
drop_method "QLocale", /QLocale::(toDouble|toFloat|toInt|toLongLong|toShort|quoteString|toUInt|toULongLong|toUShort)\(.*QStringRef/ # clashes with QString version
drop_method "QRegularExpression", /QRegularExpression::(match|globalMatch)\(.*QStringRef/ # clashes with QString version
+drop_method "QRandomGenerator", /QRandomGenerator::QRandomGenerator\(.*quint32\s+\*/ # no pointers
+drop_method "QRandomGenerator", /QRandomGenerator::QRandomGenerator\(.*std::seed_seq/ # no std::seed_seq
+drop_method "QRandomGenerator", /QRandomGenerator::seed\(.*std::seed_seq/ # no std::seed_seq
+drop_method "QRandomGenerator64", /QRandomGenerator64::QRandomGenerator64\(.*quint32\s+\*/ # no pointers
+drop_method "QRandomGenerator64", /QRandomGenerator64::QRandomGenerator64\(.*std::seed_seq/ # no std::seed_seq
+drop_method "QRandomGenerator64", /QRandomGenerator64::seed\(.*std::seed_seq/ # no std::seed_seq
drop_method "QSignalBlocker", /QSignalBlocker::QSignalBlocker\(.*&/ # clashes with pointer version
drop_method "QQuaternion", /QQuaternion::toRotationMatrix\(/ # GenericMatrix not available
drop_method "QQuaternion", /QQuaternion::fromRotationMatrix\(/ # GenericMatrix not available
@@ -353,6 +393,8 @@ drop_method "", /::operator\s*==\(const\s+QVariant\s*&\w+,\s*const\s+QVariantCom
drop_method "", /::operator\s*!=\(const\s+QVariant\s*&\w+,\s*const\s+QVariantComparisonHelper/ # requires QVariantComparisonHelper
drop_method "QByteArrayMatcher", /QByteArrayMatcher::indexIn\(const\s+QByteArray/ # clashes with const char * variant
drop_method "QRegion", /QRegion::setRects/ # gets a new implementation
+drop_method "QRegion", /QRegion::c?rbegin/ # iterator not available
+drop_method "QRegion", /QRegion::c?rend/ # iterator not available
drop_method "QTimer", /static\s+void\s+QTimer::singleShot\(/ # requires slots, alternative impl?
drop_method "QDebug", /QDebug::operator\s*<<\((?!const\s+QString\s*&)/ # don't map the others right now - too many (TODO: how to map?)
drop_method "", /::operator\s*<<\(QDebug\s*\w*\s*,\s*(?!const\s+QString\s*&)/ # don't map the others right now - too many (TODO: how to map?)
@@ -628,15 +670,20 @@ drop_class "QOpenGLPixelTransferOptions" # OpenGL native types not supported
drop_class "QOpenGLShader" # OpenGL native types not supported
drop_class "QOpenGLShaderProgram" # OpenGL native types not supported
drop_class "QOpenGLTexture" # OpenGL native types not supported
+drop_class "QOpenGLTextureBlitter" # OpenGL native types not supported
drop_class "QOpenGLTimeMonitor" # OpenGL native types not supported
drop_class "QOpenGLTimerQuery" # OpenGL native types not supported
drop_class "QOpenGLVersionFunctionsBackend" # OpenGL native types not supported
drop_class "QOpenGLVersionProfile" # OpenGL native types not supported
drop_class "QOpenGLVersionStatus" # OpenGL native types not supported
+drop_class "QOpenGLVersionFunctionsStorage" # OpenGL native types not supported
drop_class "QOpenGLVertexArrayObject_Binder" # OpenGL native types not supported
drop_class "QOpenGLVertexArrayObject" # OpenGL native types not supported
drop_class "QOpenGLWidget" # OpenGL native types not supported
drop_class "QOpenGLWindow" # OpenGL native types not supported
+drop_class "QOpenGLExtraFunctions" # OpenGL native types not supported
+drop_class "QOpenGLExtraFunctionsPrivate" # OpenGL native types not supported
+drop_class "QOpenGLExtraFunctionsPrivate_Functions" # OpenGL native types not supported
# depedencies from operators are not derived automatically currently:
include "QPoint", [ "", "", "" ]
@@ -654,6 +701,8 @@ include "QOffscreenSurface", [ "", "" ]
include "QScreenOrientationChangeEvent", [ "", "" ]
drop_method "QWindow", /QWindow::handle/ # QPlatformWindow not available
+drop_method "QWindow", /::vulkanInstance\(/ # no Vulkan support currently
+drop_method "QWindow", /::setVulkanInstance\(/ # no Vulkan support currently
drop_method "QScreen", /QScreen::handle/ # QPlatformScreen not available
drop_method "QSurface", /QSurface::surfaceHandle/ # QPlatformSurface not available
drop_method "QOffscreenSurface", /QOffscreenSurface::handle/ # QPlatformOffscreenSurface not available
@@ -663,7 +712,8 @@ drop_method "QGuiApplication", /QGuiApplication::platformFunction/ # (TODO) no
drop_method "QPagedPaintDevice", /QPagedPaintDevice::dd/ # QPagedPaintDevicePrivate not available
drop_method "QPixmap", /QPixmap::QPixmap\(QPlatformPixmap/ # QPlatformPixmap not available
drop_method "QAbstractPageSetupDialog", /QAbstractPageSetupDialog::QAbstractPageSetupDialog\(QAbstractPageSetupDialogPrivate/
-drop_method "QImage", /QImage::QImage\(.*cleanupFunction/ # (TODO) no function pointers available
+drop_method "QImage", /QImage::QImage\(.*cleanupFunction/ # (TODO) no function pointers available -> substitute by variant in add_native_impl_QImage
+add_native_impl_QImage()
drop_method "QClipboardEvent", /QClipboardEvent::data/
drop_method "QClipboardEvent", /QClipboardEvent::QClipboardEvent\(QEventPrivate/
drop_method "QCursor", /QCursor::QCursor\s*\(\s*Qt::HANDLE/ # not available on WIN
@@ -786,11 +836,31 @@ drop_method "Qimage", /Qimage::text\(const\s+QString/ # clashes with const char
rename "QDialogButtonBox", /QDialogButtonBox::QDialogButtonBox\(QFlags/, "new_buttons"
rename "QIcon", /QIcon::pixmap\(int\s+extent/, "pixmap_ext"
rename "QKeySequence", /QKeySequence::QKeySequence\(QKeySequence::StandardKey/, "new_std"
+
+# TODO: basically, the layout object only takes ownership over the objects when
+# it has a QWidget parent itself. This is not reflected in the following simple scheme
keep_arg "QBoxLayout", /::addLayout/, 0 # will take ownership of layout
+keep_arg "QBoxLayout", /::addSpacerItem/, 0 # will take ownership of item
+keep_arg "QBoxLayout", /::addWidget/, 0 # will take ownership of item
+keep_arg "QBoxLayout", /::insertItem/, 1 # will take ownership of item
+keep_arg "QBoxLayout", /::insertLayout/, 1 # will take ownership of item
+keep_arg "QBoxLayout", /::insertSpacerItem/, 1 # will take ownership of item
+keep_arg "QBoxLayout", /::insertWidget/, 1 # will take ownership of item
+keep_arg "QFormLayout", /::addRow/, 1 # will take ownership of item
+keep_arg "QFormLayout", /::addRow\(QWidget\s*\*/, 0 # will take ownership of item
+keep_arg "QFormLayout", /::insertRow/, 2 # will take ownership of item
+keep_arg "QFormLayout", /::insertRow\(QWidget\s*\*/, 1 # will take ownership of item
+keep_arg "QFormLayout", /::setWidget/, 2 # will take ownership of item
keep_arg "QGridLayout", /::addLayout/, 0 # will take ownership of layout
-keep_arg "QWidget", /::setLayout\s*\(/, 0 # will take ownership of layout
+keep_arg "QGridLayout", /::addItem/, 0 # will take ownership of layout
+keep_arg "QGridLayout", /::addWidget/, 0 # will take ownership of layout
keep_arg "QLayout", /::addChildLayout/, 0 # will take ownership of layout
keep_arg "QLayout", /::addItem/, 0 # will take ownership of item
+keep_arg "QLayout", /::addWidget/, 0 # will take ownership of item
+keep_arg "QStackedLayout", /::addWidget/, 0 # will take ownership of item
+keep_arg "QStackedLayout", /::insertWidget/, 1 # will take ownership of item
+
+keep_arg "QWidget", /::setLayout\s*\(/, 0 # will take ownership of layout
keep_arg "QTreeWidgetItem", /::addChild\(/, 0 # will take ownership of the child
keep_arg "QTreeWidgetItem", /::addChildren\(/, 0 # will take ownership of the children
keep_arg "QTreeWidgetItem", /::insertChild\(/, 1 # will take ownership of the child
@@ -817,7 +887,7 @@ owner_arg "QWidget", /::setParent\(QWidget\s+\*/, 0 # will make self owned by ar
# keep_arg "QTableWidget", /::setItemPrototype\(/, 0 # will take ownership of the child
return_new "QLayout", /::takeAt/ # returns a free object
return_new "QBoxLayout", /::takeAt/ # returns a free object
-return_new "QFormLayout", /::takeAt/ # returns a free object
+# TODO: QFormLayout: takeRow -> needs QFormLayout::TakeRowResult
return_new "QGridLayout", /::takeAt/ # returns a free object
return_new "QStackedLayout", /::takeAt/ # returns a free object
return_new "QStandardItem", /::take/ # returns a free object
@@ -945,6 +1015,10 @@ no_imports "QAbstractXmlNodeModel" # base class is QSharedData which is not ava
# --------------------------------------------------------------
# QtNetwork
+include "QDtlsError", [ "" ]
+
+drop_class "QPasswordDigestor" # only available on Qt 5.12.12, not before
+
drop_method "QUrlInfo", /QUrlInfo::QUrlInfo\(.*permissions/ # too many arguments (13)
drop_method "QHostAddress", /QHostAddress::QHostAddress\(\s*(const\s*)?quint8\s*\*/ # requires char *, a string version is available for IPv6
drop_method "QHostAddress", /QHostAddress::QHostAddress\(\s*const\s+QIPv6Address/ # requires QIPv6Address struct, a string version is available for IPv6
diff --git a/scripts/mkqtdecl5/mkqtdecl.events b/scripts/mkqtdecl5/mkqtdecl.events
index 5c493c6a3..6cbbc4df0 100644
--- a/scripts/mkqtdecl5/mkqtdecl.events
+++ b/scripts/mkqtdecl5/mkqtdecl.events
@@ -272,6 +272,10 @@ event("QSignalMapper", /::mapped\s*\(.*QWidget/, "QWidget*")
rename("QSignalMapper", /::mapped\s*\(.*QWidget/, "mapped_qw")
event("QSignalMapper", /::mapped\s*\(.*QObject/, "QObject*")
rename("QSignalMapper", /::mapped\s*\(.*QObject/, "mapped_qo")
+event("QSignalMapper", /::mappedInt\s*\(/, "int")
+event("QSignalMapper", /::mappedString\s*\(/, "QString")
+event("QSignalMapper", /::mappedWidget\s*\(/, "QWidget*")
+event("QSignalMapper", /::mappedObject\s*\(/, "QObject*")
event("QSignalTransition", /::destroyed\s*\(/, "QObject*")
event("QSignalTransition", /::objectNameChanged\s*\(/, "QString")
event("QSignalTransition", /::triggered\s*\(/, "")
@@ -281,6 +285,7 @@ event("QSignalTransition", /::senderObjectChanged\s*\(/, "")
event("QSignalTransition", /::signalChanged\s*\(/, "")
event("QSocketNotifier", /::destroyed\s*\(/, "QObject*")
event("QSocketNotifier", /::objectNameChanged\s*\(/, "QString")
+event("QSocketNotifier", /::activated\s*\(/, "QSocketDescriptor, QSocketNotifier::Type")
event("QSocketNotifier", /::activated\s*\(/, "int")
event("QSortFilterProxyModel", /::destroyed\s*\(/, "QObject*")
event("QSortFilterProxyModel", /::objectNameChanged\s*\(/, "QString")
@@ -303,6 +308,13 @@ event("QSortFilterProxyModel", /::rowsMoved\s*\(/, "QModelIndex, int, int, QMode
event("QSortFilterProxyModel", /::columnsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
event("QSortFilterProxyModel", /::columnsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
event("QSortFilterProxyModel", /::sourceModelChanged\s*\(/, "")
+event("QSortFilterProxyModel", /::dynamicSortFilterChanged\s*\(/, "bool")
+event("QSortFilterProxyModel", /::filterCaseSensitivityChanged\s*\(/, "Qt::CaseSensitivity")
+event("QSortFilterProxyModel", /::sortCaseSensitivityChanged\s*\(/, "Qt::CaseSensitivity")
+event("QSortFilterProxyModel", /::sortLocaleAwareChanged\s*\(/, "bool")
+event("QSortFilterProxyModel", /::sortRoleChanged\s*\(/, "int")
+event("QSortFilterProxyModel", /::filterRoleChanged\s*\(/, "int")
+event("QSortFilterProxyModel", /::recursiveFilteringEnabledChanged\s*\(/, "bool")
event("QState", /::destroyed\s*\(/, "QObject*")
event("QState", /::objectNameChanged\s*\(/, "QString")
event("QState", /::entered\s*\(/, "")
@@ -475,6 +487,7 @@ event("QPaintDeviceWindow", /::activeChanged\s*\(/, "")
event("QPaintDeviceWindow", /::contentOrientationChanged\s*\(/, "Qt::ScreenOrientation")
event("QPaintDeviceWindow", /::focusObjectChanged\s*\(/, "QObject*")
event("QPaintDeviceWindow", /::opacityChanged\s*\(/, "double")
+event("QPaintDeviceWindow", /::transientParentChanged\s*\(/, "QWindow*")
event("QPdfWriter", /::destroyed\s*\(/, "QObject*")
event("QPdfWriter", /::objectNameChanged\s*\(/, "QString")
event("QPictureFormatPlugin", /::destroyed\s*\(/, "QObject*")
@@ -499,6 +512,7 @@ event("QRasterWindow", /::activeChanged\s*\(/, "")
event("QRasterWindow", /::contentOrientationChanged\s*\(/, "Qt::ScreenOrientation")
event("QRasterWindow", /::focusObjectChanged\s*\(/, "QObject*")
event("QRasterWindow", /::opacityChanged\s*\(/, "double")
+event("QRasterWindow", /::transientParentChanged\s*\(/, "QWindow*")
event("QRegExpValidator", /::destroyed\s*\(/, "QObject*")
event("QRegExpValidator", /::objectNameChanged\s*\(/, "QString")
event("QRegExpValidator", /::changed\s*\(/, "")
@@ -551,6 +565,7 @@ event("QStyleHints", /::startDragDistanceChanged\s*\(/, "int")
event("QStyleHints", /::startDragTimeChanged\s*\(/, "int")
event("QStyleHints", /::tabFocusBehaviorChanged\s*\(/, "Qt::TabFocusBehavior")
event("QStyleHints", /::useHoverEffectsChanged\s*\(/, "bool")
+event("QStyleHints", /::showShortcutsInContextMenusChanged\s*\(/, "bool")
event("QStyleHints", /::wheelScrollLinesChanged\s*\(/, "int")
event("QStyleHints", /::mouseQuickSelectionThresholdChanged\s*\(/, "int")
event("QSyntaxHighlighter", /::destroyed\s*\(/, "QObject*")
@@ -600,6 +615,7 @@ event("QWindow", /::activeChanged\s*\(/, "")
event("QWindow", /::contentOrientationChanged\s*\(/, "Qt::ScreenOrientation")
event("QWindow", /::focusObjectChanged\s*\(/, "QObject*")
event("QWindow", /::opacityChanged\s*\(/, "double")
+event("QWindow", /::transientParentChanged\s*\(/, "QWindow*")
event("QAbstractButton", /::destroyed\s*\(/, "QObject*")
event("QAbstractButton", /::objectNameChanged\s*\(/, "QString")
event("QAbstractButton", /::windowTitleChanged\s*\(/, "QString")
@@ -700,6 +716,10 @@ rename("QButtonGroup", /::buttonReleased\s*\(.*QAbstractButton/, "buttonReleased
event("QButtonGroup", /::buttonReleased\s*\(.*int/, "int")
event("QButtonGroup", /::buttonToggled\s*\(/, "QAbstractButton*, bool")
event("QButtonGroup", /::buttonToggled\s*\(/, "int, bool")
+event("QButtonGroup", /::idClicked\s*\(/, "int")
+event("QButtonGroup", /::idPressed\s*\(/, "int")
+event("QButtonGroup", /::idReleased\s*\(/, "int")
+event("QButtonGroup", /::idToggled\s*\(/, "int, bool")
event("QCalendarWidget", /::destroyed\s*\(/, "QObject*")
event("QCalendarWidget", /::objectNameChanged\s*\(/, "QString")
event("QCalendarWidget", /::windowTitleChanged\s*\(/, "QString")
@@ -756,9 +776,11 @@ event("QComboBox", /::editTextChanged\s*\(/, "QString")
event("QComboBox", /::activated\s*\(.*int/, "int")
event("QComboBox", /::activated\s*\(.*QString/, "QString")
rename("QComboBox", /::activated\s*\(.*QString/, "activated_qs")
+event("QComboBox", /::textActivated\s*\(/, "QString")
event("QComboBox", /::highlighted\s*\(.*int/, "int")
event("QComboBox", /::highlighted\s*\(.*QString/, "QString")
rename("QComboBox", /::highlighted\s*\(.*QString/, "highlighted_qs")
+event("QComboBox", /::textHighlighted\s*\(/, "QString")
event("QComboBox", /::currentIndexChanged\s*\(.*int/, "int")
event("QComboBox", /::currentIndexChanged\s*\(.*QString/, "QString")
rename("QComboBox", /::currentIndexChanged\s*\(.*QString/, "currentIndexChanged_qs")
@@ -889,6 +911,7 @@ event("QDoubleSpinBox", /::editingFinished\s*\(/, "")
event("QDoubleSpinBox", /::valueChanged\s*\(.*double/, "double")
event("QDoubleSpinBox", /::valueChanged\s*\(.*QString/, "QString")
rename("QDoubleSpinBox", /::valueChanged\s*\(.*QString/, "valueChanged_qs")
+event("QDoubleSpinBox", /::textChanged\s*\(/, "QString")
event("QErrorMessage", /::destroyed\s*\(/, "QObject*")
event("QErrorMessage", /::objectNameChanged\s*\(/, "QString")
event("QErrorMessage", /::windowTitleChanged\s*\(/, "QString")
@@ -955,9 +978,11 @@ event("QFontComboBox", /::editTextChanged\s*\(/, "QString")
event("QFontComboBox", /::activated\s*\(.*int/, "int")
event("QFontComboBox", /::activated\s*\(.*QString/, "QString")
rename("QFontComboBox", /::activated\s*\(.*QString/, "activated_qs")
+event("QFontComboBox", /::textActivated\s*\(/, "QString")
event("QFontComboBox", /::highlighted\s*\(.*int/, "int")
event("QFontComboBox", /::highlighted\s*\(.*QString/, "QString")
rename("QFontComboBox", /::highlighted\s*\(.*QString/, "highlighted_qs")
+event("QFontComboBox", /::textHighlighted\s*\(/, "QString")
event("QFontComboBox", /::currentIndexChanged\s*\(.*int/, "int")
event("QFontComboBox", /::currentIndexChanged\s*\(.*QString/, "QString")
rename("QFontComboBox", /::currentIndexChanged\s*\(.*QString/, "currentIndexChanged_qs")
@@ -1406,6 +1431,7 @@ event("QSpinBox", /::editingFinished\s*\(/, "")
event("QSpinBox", /::valueChanged\s*\(.*int/, "int")
event("QSpinBox", /::valueChanged\s*\(.*QString/, "QString")
rename("QSpinBox", /::valueChanged\s*\(.*QString/, "valueChanged_qs")
+event("QSpinBox", /::textChanged\s*\(/, "QString")
event("QSplashScreen", /::destroyed\s*\(/, "QObject*")
event("QSplashScreen", /::objectNameChanged\s*\(/, "QString")
event("QSplashScreen", /::windowTitleChanged\s*\(/, "QString")
@@ -1709,6 +1735,499 @@ event("QWizardPage", /::windowIconChanged\s*\(/, "QIcon")
event("QWizardPage", /::windowIconTextChanged\s*\(/, "QString")
event("QWizardPage", /::customContextMenuRequested\s*\(/, "QPoint")
event("QWizardPage", /::completeChanged\s*\(/, "")
+event("QAbstractMessageHandler", /::destroyed\s*\(/, "QObject*")
+event("QAbstractMessageHandler", /::objectNameChanged\s*\(/, "QString")
+event("QAbstractUriResolver", /::destroyed\s*\(/, "QObject*")
+event("QAbstractUriResolver", /::objectNameChanged\s*\(/, "QString")
+event("QGraphicsSvgItem", /::destroyed\s*\(/, "QObject*")
+event("QGraphicsSvgItem", /::objectNameChanged\s*\(/, "QString")
+event("QGraphicsSvgItem", /::parentChanged\s*\(/, "")
+event("QGraphicsSvgItem", /::opacityChanged\s*\(/, "")
+event("QGraphicsSvgItem", /::visibleChanged\s*\(/, "")
+event("QGraphicsSvgItem", /::enabledChanged\s*\(/, "")
+event("QGraphicsSvgItem", /::xChanged\s*\(/, "")
+event("QGraphicsSvgItem", /::yChanged\s*\(/, "")
+event("QGraphicsSvgItem", /::zChanged\s*\(/, "")
+event("QGraphicsSvgItem", /::rotationChanged\s*\(/, "")
+event("QGraphicsSvgItem", /::scaleChanged\s*\(/, "")
+event("QGraphicsSvgItem", /::childrenChanged\s*\(/, "")
+event("QGraphicsSvgItem", /::widthChanged\s*\(/, "")
+event("QGraphicsSvgItem", /::heightChanged\s*\(/, "")
+event("QSvgRenderer", /::destroyed\s*\(/, "QObject*")
+event("QSvgRenderer", /::objectNameChanged\s*\(/, "QString")
+event("QSvgRenderer", /::repaintNeeded\s*\(/, "")
+event("QSvgWidget", /::destroyed\s*\(/, "QObject*")
+event("QSvgWidget", /::objectNameChanged\s*\(/, "QString")
+event("QSvgWidget", /::windowTitleChanged\s*\(/, "QString")
+event("QSvgWidget", /::windowIconChanged\s*\(/, "QIcon")
+event("QSvgWidget", /::windowIconTextChanged\s*\(/, "QString")
+event("QSvgWidget", /::customContextMenuRequested\s*\(/, "QPoint")
+event("QAbstractPrintDialog", /::destroyed\s*\(/, "QObject*")
+event("QAbstractPrintDialog", /::objectNameChanged\s*\(/, "QString")
+event("QAbstractPrintDialog", /::windowTitleChanged\s*\(/, "QString")
+event("QAbstractPrintDialog", /::windowIconChanged\s*\(/, "QIcon")
+event("QAbstractPrintDialog", /::windowIconTextChanged\s*\(/, "QString")
+event("QAbstractPrintDialog", /::customContextMenuRequested\s*\(/, "QPoint")
+event("QAbstractPrintDialog", /::finished\s*\(/, "int")
+event("QAbstractPrintDialog", /::accepted\s*\(/, "")
+event("QAbstractPrintDialog", /::rejected\s*\(/, "")
+event("QPrintDialog", /::destroyed\s*\(/, "QObject*")
+event("QPrintDialog", /::objectNameChanged\s*\(/, "QString")
+event("QPrintDialog", /::windowTitleChanged\s*\(/, "QString")
+event("QPrintDialog", /::windowIconChanged\s*\(/, "QIcon")
+event("QPrintDialog", /::windowIconTextChanged\s*\(/, "QString")
+event("QPrintDialog", /::customContextMenuRequested\s*\(/, "QPoint")
+event("QPrintDialog", /::finished\s*\(/, "int")
+event("QPrintDialog", /::accepted\s*\(/, "QPrinter*")
+event("QPrintDialog", /::rejected\s*\(/, "")
+event("QPrintPreviewDialog", /::destroyed\s*\(/, "QObject*")
+event("QPrintPreviewDialog", /::objectNameChanged\s*\(/, "QString")
+event("QPrintPreviewDialog", /::windowTitleChanged\s*\(/, "QString")
+event("QPrintPreviewDialog", /::windowIconChanged\s*\(/, "QIcon")
+event("QPrintPreviewDialog", /::windowIconTextChanged\s*\(/, "QString")
+event("QPrintPreviewDialog", /::customContextMenuRequested\s*\(/, "QPoint")
+event("QPrintPreviewDialog", /::finished\s*\(/, "int")
+event("QPrintPreviewDialog", /::accepted\s*\(/, "")
+event("QPrintPreviewDialog", /::rejected\s*\(/, "")
+event("QPrintPreviewDialog", /::paintRequested\s*\(/, "QPrinter*")
+event("QPrintPreviewWidget", /::destroyed\s*\(/, "QObject*")
+event("QPrintPreviewWidget", /::objectNameChanged\s*\(/, "QString")
+event("QPrintPreviewWidget", /::windowTitleChanged\s*\(/, "QString")
+event("QPrintPreviewWidget", /::windowIconChanged\s*\(/, "QIcon")
+event("QPrintPreviewWidget", /::windowIconTextChanged\s*\(/, "QString")
+event("QPrintPreviewWidget", /::customContextMenuRequested\s*\(/, "QPoint")
+event("QPrintPreviewWidget", /::paintRequested\s*\(/, "QPrinter*")
+event("QPrintPreviewWidget", /::previewChanged\s*\(/, "")
+event("QAbstractAudioDeviceInfo", /::destroyed\s*\(/, "QObject*")
+event("QAbstractAudioDeviceInfo", /::objectNameChanged\s*\(/, "QString")
+event("QAbstractAudioInput", /::destroyed\s*\(/, "QObject*")
+event("QAbstractAudioInput", /::objectNameChanged\s*\(/, "QString")
+event("QAbstractAudioInput", /::errorChanged\s*\(/, "QAudio::Error")
+event("QAbstractAudioInput", /::stateChanged\s*\(/, "QAudio::State")
+event("QAbstractAudioInput", /::notify\s*\(/, "")
+event("QAbstractAudioOutput", /::destroyed\s*\(/, "QObject*")
+event("QAbstractAudioOutput", /::objectNameChanged\s*\(/, "QString")
+event("QAbstractAudioOutput", /::errorChanged\s*\(/, "QAudio::Error")
+event("QAbstractAudioOutput", /::stateChanged\s*\(/, "QAudio::State")
+event("QAbstractAudioOutput", /::notify\s*\(/, "")
+event("QAbstractVideoFilter", /::destroyed\s*\(/, "QObject*")
+event("QAbstractVideoFilter", /::objectNameChanged\s*\(/, "QString")
+event("QAbstractVideoFilter", /::activeChanged\s*\(/, "")
+event("QAbstractVideoSurface", /::destroyed\s*\(/, "QObject*")
+event("QAbstractVideoSurface", /::objectNameChanged\s*\(/, "QString")
+event("QAbstractVideoSurface", /::activeChanged\s*\(/, "bool")
+event("QAbstractVideoSurface", /::surfaceFormatChanged\s*\(/, "QVideoSurfaceFormat")
+event("QAbstractVideoSurface", /::supportedFormatsChanged\s*\(/, "")
+event("QAbstractVideoSurface", /::nativeResolutionChanged\s*\(/, "QSize")
+event("QAudioDecoder", /::destroyed\s*\(/, "QObject*")
+event("QAudioDecoder", /::objectNameChanged\s*\(/, "QString")
+event("QAudioDecoder", /::notifyIntervalChanged\s*\(/, "int")
+event("QAudioDecoder", /::metaDataAvailableChanged\s*\(/, "bool")
+event("QAudioDecoder", /::metaDataChanged\s*\(/, "QString, QVariant")
+event("QAudioDecoder", /::availabilityChanged\s*\(/, "bool")
+event("QAudioDecoder", /::availabilityChanged\s*\(/, "QMultimedia::AvailabilityStatus")
+event("QAudioDecoder", /::bufferAvailableChanged\s*\(/, "bool")
+event("QAudioDecoder", /::bufferReady\s*\(/, "")
+event("QAudioDecoder", /::finished\s*\(/, "")
+event("QAudioDecoder", /::stateChanged\s*\(/, "QAudioDecoder::State")
+event("QAudioDecoder", /::formatChanged\s*\(/, "QAudioFormat")
+event("QAudioDecoder", /::error\s*\(/, "QAudioDecoder::Error")
+event("QAudioDecoder", /::sourceChanged\s*\(/, "")
+event("QAudioDecoder", /::positionChanged\s*\(/, "qlonglong")
+event("QAudioDecoder", /::durationChanged\s*\(/, "qlonglong")
+event("QAudioDecoderControl", /::destroyed\s*\(/, "QObject*")
+event("QAudioDecoderControl", /::objectNameChanged\s*\(/, "QString")
+event("QAudioDecoderControl", /::stateChanged\s*\(/, "QAudioDecoder::State")
+event("QAudioDecoderControl", /::formatChanged\s*\(/, "QAudioFormat")
+event("QAudioDecoderControl", /::sourceChanged\s*\(/, "")
+event("QAudioDecoderControl", /::error\s*\(/, "int, QString")
+event("QAudioDecoderControl", /::bufferReady\s*\(/, "")
+event("QAudioDecoderControl", /::bufferAvailableChanged\s*\(/, "bool")
+event("QAudioDecoderControl", /::finished\s*\(/, "")
+event("QAudioDecoderControl", /::positionChanged\s*\(/, "qlonglong")
+event("QAudioDecoderControl", /::durationChanged\s*\(/, "qlonglong")
+event("QAudioEncoderSettingsControl", /::destroyed\s*\(/, "QObject*")
+event("QAudioEncoderSettingsControl", /::objectNameChanged\s*\(/, "QString")
+event("QAudioInput", /::destroyed\s*\(/, "QObject*")
+event("QAudioInput", /::objectNameChanged\s*\(/, "QString")
+event("QAudioInput", /::stateChanged\s*\(/, "QAudio::State")
+event("QAudioInput", /::notify\s*\(/, "")
+event("QAudioInputSelectorControl", /::destroyed\s*\(/, "QObject*")
+event("QAudioInputSelectorControl", /::objectNameChanged\s*\(/, "QString")
+event("QAudioInputSelectorControl", /::activeInputChanged\s*\(/, "QString")
+event("QAudioInputSelectorControl", /::availableInputsChanged\s*\(/, "")
+event("QAudioOutput", /::destroyed\s*\(/, "QObject*")
+event("QAudioOutput", /::objectNameChanged\s*\(/, "QString")
+event("QAudioOutput", /::stateChanged\s*\(/, "QAudio::State")
+event("QAudioOutput", /::notify\s*\(/, "")
+event("QAudioOutputSelectorControl", /::destroyed\s*\(/, "QObject*")
+event("QAudioOutputSelectorControl", /::objectNameChanged\s*\(/, "QString")
+event("QAudioOutputSelectorControl", /::activeOutputChanged\s*\(/, "QString")
+event("QAudioOutputSelectorControl", /::availableOutputsChanged\s*\(/, "")
+event("QAudioProbe", /::destroyed\s*\(/, "QObject*")
+event("QAudioProbe", /::objectNameChanged\s*\(/, "QString")
+event("QAudioProbe", /::audioBufferProbed\s*\(/, "QAudioBuffer")
+event("QAudioProbe", /::flush\s*\(/, "")
+event("QAudioRecorder", /::destroyed\s*\(/, "QObject*")
+event("QAudioRecorder", /::objectNameChanged\s*\(/, "QString")
+event("QAudioRecorder", /::stateChanged\s*\(/, "QMediaRecorder::State")
+event("QAudioRecorder", /::statusChanged\s*\(/, "QMediaRecorder::Status")
+event("QAudioRecorder", /::durationChanged\s*\(/, "qlonglong")
+event("QAudioRecorder", /::mutedChanged\s*\(/, "bool")
+event("QAudioRecorder", /::volumeChanged\s*\(/, "double")
+event("QAudioRecorder", /::actualLocationChanged\s*\(/, "QUrl")
+event("QAudioRecorder", /::error\s*\(/, "QMediaRecorder::Error")
+event("QAudioRecorder", /::metaDataAvailableChanged\s*\(/, "bool")
+event("QAudioRecorder", /::metaDataWritableChanged\s*\(/, "bool")
+event("QAudioRecorder", /::metaDataChanged\s*\(/, "QString, QVariant")
+event("QAudioRecorder", /::availabilityChanged\s*\(/, "bool")
+event("QAudioRecorder", /::availabilityChanged\s*\(/, "QMultimedia::AvailabilityStatus")
+event("QAudioRecorder", /::audioInputChanged\s*\(/, "QString")
+event("QAudioRecorder", /::availableAudioInputsChanged\s*\(/, "")
+event("QAudioRoleControl", /::destroyed\s*\(/, "QObject*")
+event("QAudioRoleControl", /::objectNameChanged\s*\(/, "QString")
+event("QAudioRoleControl", /::audioRoleChanged\s*\(/, "QAudio::Role")
+event("QAudioSystemPlugin", /::destroyed\s*\(/, "QObject*")
+event("QAudioSystemPlugin", /::objectNameChanged\s*\(/, "QString")
+event("QCamera", /::destroyed\s*\(/, "QObject*")
+event("QCamera", /::objectNameChanged\s*\(/, "QString")
+event("QCamera", /::notifyIntervalChanged\s*\(/, "int")
+event("QCamera", /::metaDataAvailableChanged\s*\(/, "bool")
+event("QCamera", /::metaDataChanged\s*\(/, "QString, QVariant")
+event("QCamera", /::availabilityChanged\s*\(/, "bool")
+event("QCamera", /::availabilityChanged\s*\(/, "QMultimedia::AvailabilityStatus")
+event("QCamera", /::stateChanged\s*\(/, "QCamera::State")
+event("QCamera", /::captureModeChanged\s*\(/, "QCamera::CaptureModes")
+event("QCamera", /::statusChanged\s*\(/, "QCamera::Status")
+event("QCamera", /::locked\s*\(/, "")
+event("QCamera", /::lockFailed\s*\(/, "")
+event("QCamera", /::lockStatusChanged\s*\(/, "QCamera::LockStatus, QCamera::LockChangeReason")
+event("QCamera", /::lockStatusChanged\s*\(/, "QCamera::LockType, QCamera::LockStatus, QCamera::LockChangeReason")
+event("QCamera", /::error\s*\(/, "QCamera::Error")
+event("QCamera", /::errorOccurred\s*\(/, "QCamera::Error")
+event("QCameraCaptureBufferFormatControl", /::destroyed\s*\(/, "QObject*")
+event("QCameraCaptureBufferFormatControl", /::objectNameChanged\s*\(/, "QString")
+event("QCameraCaptureBufferFormatControl", /::bufferFormatChanged\s*\(/, "QVideoFrame::PixelFormat")
+event("QCameraCaptureDestinationControl", /::destroyed\s*\(/, "QObject*")
+event("QCameraCaptureDestinationControl", /::objectNameChanged\s*\(/, "QString")
+event("QCameraCaptureDestinationControl", /::captureDestinationChanged\s*\(/, "QCameraImageCapture::CaptureDestinations")
+event("QCameraControl", /::destroyed\s*\(/, "QObject*")
+event("QCameraControl", /::objectNameChanged\s*\(/, "QString")
+event("QCameraControl", /::stateChanged\s*\(/, "QCamera::State")
+event("QCameraControl", /::statusChanged\s*\(/, "QCamera::Status")
+event("QCameraControl", /::error\s*\(/, "int, QString")
+event("QCameraControl", /::captureModeChanged\s*\(/, "QCamera::CaptureModes")
+event("QCameraExposure", /::destroyed\s*\(/, "QObject*")
+event("QCameraExposure", /::objectNameChanged\s*\(/, "QString")
+event("QCameraExposure", /::flashReady\s*\(/, "bool")
+event("QCameraExposure", /::apertureChanged\s*\(/, "double")
+event("QCameraExposure", /::apertureRangeChanged\s*\(/, "")
+event("QCameraExposure", /::shutterSpeedChanged\s*\(/, "double")
+event("QCameraExposure", /::shutterSpeedRangeChanged\s*\(/, "")
+event("QCameraExposure", /::isoSensitivityChanged\s*\(/, "int")
+event("QCameraExposure", /::exposureCompensationChanged\s*\(/, "double")
+event("QCameraExposureControl", /::destroyed\s*\(/, "QObject*")
+event("QCameraExposureControl", /::objectNameChanged\s*\(/, "QString")
+event("QCameraExposureControl", /::requestedValueChanged\s*\(/, "int")
+event("QCameraExposureControl", /::actualValueChanged\s*\(/, "int")
+event("QCameraExposureControl", /::parameterRangeChanged\s*\(/, "int")
+event("QCameraFeedbackControl", /::destroyed\s*\(/, "QObject*")
+event("QCameraFeedbackControl", /::objectNameChanged\s*\(/, "QString")
+event("QCameraFlashControl", /::destroyed\s*\(/, "QObject*")
+event("QCameraFlashControl", /::objectNameChanged\s*\(/, "QString")
+event("QCameraFlashControl", /::flashReady\s*\(/, "bool")
+event("QCameraFocus", /::destroyed\s*\(/, "QObject*")
+event("QCameraFocus", /::objectNameChanged\s*\(/, "QString")
+event("QCameraFocus", /::opticalZoomChanged\s*\(/, "double")
+event("QCameraFocus", /::digitalZoomChanged\s*\(/, "double")
+event("QCameraFocus", /::focusZonesChanged\s*\(/, "")
+event("QCameraFocus", /::maximumOpticalZoomChanged\s*\(/, "double")
+event("QCameraFocus", /::maximumDigitalZoomChanged\s*\(/, "double")
+event("QCameraFocusControl", /::destroyed\s*\(/, "QObject*")
+event("QCameraFocusControl", /::objectNameChanged\s*\(/, "QString")
+event("QCameraFocusControl", /::focusModeChanged\s*\(/, "QCameraFocus::FocusModes")
+event("QCameraFocusControl", /::focusPointModeChanged\s*\(/, "QCameraFocus::FocusPointMode")
+event("QCameraFocusControl", /::customFocusPointChanged\s*\(/, "QPointF")
+event("QCameraFocusControl", /::focusZonesChanged\s*\(/, "")
+event("QCameraImageCapture", /::destroyed\s*\(/, "QObject*")
+event("QCameraImageCapture", /::objectNameChanged\s*\(/, "QString")
+event("QCameraImageCapture", /::error\s*\(/, "int, QCameraImageCapture::Error, QString")
+event("QCameraImageCapture", /::readyForCaptureChanged\s*\(/, "bool")
+event("QCameraImageCapture", /::bufferFormatChanged\s*\(/, "QVideoFrame::PixelFormat")
+event("QCameraImageCapture", /::captureDestinationChanged\s*\(/, "QCameraImageCapture::CaptureDestinations")
+event("QCameraImageCapture", /::imageExposed\s*\(/, "int")
+event("QCameraImageCapture", /::imageCaptured\s*\(/, "int, QImage")
+event("QCameraImageCapture", /::imageMetadataAvailable\s*\(/, "int, QString, QVariant")
+event("QCameraImageCapture", /::imageAvailable\s*\(/, "int, QVideoFrame")
+event("QCameraImageCapture", /::imageSaved\s*\(/, "int, QString")
+event("QCameraImageCaptureControl", /::destroyed\s*\(/, "QObject*")
+event("QCameraImageCaptureControl", /::objectNameChanged\s*\(/, "QString")
+event("QCameraImageCaptureControl", /::readyForCaptureChanged\s*\(/, "bool")
+event("QCameraImageCaptureControl", /::imageExposed\s*\(/, "int")
+event("QCameraImageCaptureControl", /::imageCaptured\s*\(/, "int, QImage")
+event("QCameraImageCaptureControl", /::imageMetadataAvailable\s*\(/, "int, QString, QVariant")
+event("QCameraImageCaptureControl", /::imageAvailable\s*\(/, "int, QVideoFrame")
+event("QCameraImageCaptureControl", /::imageSaved\s*\(/, "int, QString")
+event("QCameraImageCaptureControl", /::error\s*\(/, "int, int, QString")
+event("QCameraImageProcessing", /::destroyed\s*\(/, "QObject*")
+event("QCameraImageProcessing", /::objectNameChanged\s*\(/, "QString")
+event("QCameraImageProcessingControl", /::destroyed\s*\(/, "QObject*")
+event("QCameraImageProcessingControl", /::objectNameChanged\s*\(/, "QString")
+event("QCameraInfoControl", /::destroyed\s*\(/, "QObject*")
+event("QCameraInfoControl", /::objectNameChanged\s*\(/, "QString")
+event("QCameraLocksControl", /::destroyed\s*\(/, "QObject*")
+event("QCameraLocksControl", /::objectNameChanged\s*\(/, "QString")
+event("QCameraLocksControl", /::lockStatusChanged\s*\(/, "QCamera::LockType, QCamera::LockStatus, QCamera::LockChangeReason")
+event("QCameraViewfinderSettingsControl", /::destroyed\s*\(/, "QObject*")
+event("QCameraViewfinderSettingsControl", /::objectNameChanged\s*\(/, "QString")
+event("QCameraViewfinderSettingsControl2", /::destroyed\s*\(/, "QObject*")
+event("QCameraViewfinderSettingsControl2", /::objectNameChanged\s*\(/, "QString")
+event("QCameraZoomControl", /::destroyed\s*\(/, "QObject*")
+event("QCameraZoomControl", /::objectNameChanged\s*\(/, "QString")
+event("QCameraZoomControl", /::maximumOpticalZoomChanged\s*\(/, "double")
+event("QCameraZoomControl", /::maximumDigitalZoomChanged\s*\(/, "double")
+event("QCameraZoomControl", /::requestedOpticalZoomChanged\s*\(/, "double")
+event("QCameraZoomControl", /::requestedDigitalZoomChanged\s*\(/, "double")
+event("QCameraZoomControl", /::currentOpticalZoomChanged\s*\(/, "double")
+event("QCameraZoomControl", /::currentDigitalZoomChanged\s*\(/, "double")
+event("QCustomAudioRoleControl", /::destroyed\s*\(/, "QObject*")
+event("QCustomAudioRoleControl", /::objectNameChanged\s*\(/, "QString")
+event("QCustomAudioRoleControl", /::customAudioRoleChanged\s*\(/, "QString")
+event("QGraphicsVideoItem", /::destroyed\s*\(/, "QObject*")
+event("QGraphicsVideoItem", /::objectNameChanged\s*\(/, "QString")
+event("QGraphicsVideoItem", /::parentChanged\s*\(/, "")
+event("QGraphicsVideoItem", /::opacityChanged\s*\(/, "")
+event("QGraphicsVideoItem", /::visibleChanged\s*\(/, "")
+event("QGraphicsVideoItem", /::enabledChanged\s*\(/, "")
+event("QGraphicsVideoItem", /::xChanged\s*\(/, "")
+event("QGraphicsVideoItem", /::yChanged\s*\(/, "")
+event("QGraphicsVideoItem", /::zChanged\s*\(/, "")
+event("QGraphicsVideoItem", /::rotationChanged\s*\(/, "")
+event("QGraphicsVideoItem", /::scaleChanged\s*\(/, "")
+event("QGraphicsVideoItem", /::childrenChanged\s*\(/, "")
+event("QGraphicsVideoItem", /::widthChanged\s*\(/, "")
+event("QGraphicsVideoItem", /::heightChanged\s*\(/, "")
+event("QGraphicsVideoItem", /::nativeSizeChanged\s*\(/, "QSizeF")
+event("QImageEncoderControl", /::destroyed\s*\(/, "QObject*")
+event("QImageEncoderControl", /::objectNameChanged\s*\(/, "QString")
+event("QMediaAudioProbeControl", /::destroyed\s*\(/, "QObject*")
+event("QMediaAudioProbeControl", /::objectNameChanged\s*\(/, "QString")
+event("QMediaAudioProbeControl", /::audioBufferProbed\s*\(/, "QAudioBuffer")
+event("QMediaAudioProbeControl", /::flush\s*\(/, "")
+event("QMediaAvailabilityControl", /::destroyed\s*\(/, "QObject*")
+event("QMediaAvailabilityControl", /::objectNameChanged\s*\(/, "QString")
+event("QMediaAvailabilityControl", /::availabilityChanged\s*\(/, "QMultimedia::AvailabilityStatus")
+event("QMediaContainerControl", /::destroyed\s*\(/, "QObject*")
+event("QMediaContainerControl", /::objectNameChanged\s*\(/, "QString")
+event("QMediaControl", /::destroyed\s*\(/, "QObject*")
+event("QMediaControl", /::objectNameChanged\s*\(/, "QString")
+event("QMediaGaplessPlaybackControl", /::destroyed\s*\(/, "QObject*")
+event("QMediaGaplessPlaybackControl", /::objectNameChanged\s*\(/, "QString")
+event("QMediaGaplessPlaybackControl", /::crossfadeTimeChanged\s*\(/, "double")
+event("QMediaGaplessPlaybackControl", /::nextMediaChanged\s*\(/, "QMediaContent")
+event("QMediaGaplessPlaybackControl", /::advancedToNextMedia\s*\(/, "")
+event("QMediaNetworkAccessControl", /::destroyed\s*\(/, "QObject*")
+event("QMediaNetworkAccessControl", /::objectNameChanged\s*\(/, "QString")
+event("QMediaNetworkAccessControl", /::configurationChanged\s*\(/, "QNetworkConfiguration")
+event("QMediaObject", /::destroyed\s*\(/, "QObject*")
+event("QMediaObject", /::objectNameChanged\s*\(/, "QString")
+event("QMediaObject", /::notifyIntervalChanged\s*\(/, "int")
+event("QMediaObject", /::metaDataAvailableChanged\s*\(/, "bool")
+event("QMediaObject", /::metaDataChanged\s*\(/, "QString, QVariant")
+event("QMediaObject", /::availabilityChanged\s*\(/, "bool")
+event("QMediaObject", /::availabilityChanged\s*\(/, "QMultimedia::AvailabilityStatus")
+event("QMediaPlayer", /::destroyed\s*\(/, "QObject*")
+event("QMediaPlayer", /::objectNameChanged\s*\(/, "QString")
+event("QMediaPlayer", /::notifyIntervalChanged\s*\(/, "int")
+event("QMediaPlayer", /::metaDataAvailableChanged\s*\(/, "bool")
+event("QMediaPlayer", /::metaDataChanged\s*\(/, "QString, QVariant")
+event("QMediaPlayer", /::availabilityChanged\s*\(/, "bool")
+event("QMediaPlayer", /::availabilityChanged\s*\(/, "QMultimedia::AvailabilityStatus")
+event("QMediaPlayer", /::mediaChanged\s*\(/, "QMediaContent")
+event("QMediaPlayer", /::currentMediaChanged\s*\(/, "QMediaContent")
+event("QMediaPlayer", /::stateChanged\s*\(/, "QMediaPlayer::State")
+event("QMediaPlayer", /::mediaStatusChanged\s*\(/, "QMediaPlayer::MediaStatus")
+event("QMediaPlayer", /::durationChanged\s*\(/, "qlonglong")
+event("QMediaPlayer", /::positionChanged\s*\(/, "qlonglong")
+event("QMediaPlayer", /::volumeChanged\s*\(/, "int")
+event("QMediaPlayer", /::mutedChanged\s*\(/, "bool")
+event("QMediaPlayer", /::audioAvailableChanged\s*\(/, "bool")
+event("QMediaPlayer", /::videoAvailableChanged\s*\(/, "bool")
+event("QMediaPlayer", /::bufferStatusChanged\s*\(/, "int")
+event("QMediaPlayer", /::seekableChanged\s*\(/, "bool")
+event("QMediaPlayer", /::playbackRateChanged\s*\(/, "double")
+event("QMediaPlayer", /::audioRoleChanged\s*\(/, "QAudio::Role")
+event("QMediaPlayer", /::customAudioRoleChanged\s*\(/, "QString")
+event("QMediaPlayer", /::error\s*\(/, "QMediaPlayer::Error")
+event("QMediaPlayer", /::networkConfigurationChanged\s*\(/, "QNetworkConfiguration")
+event("QMediaPlayerControl", /::destroyed\s*\(/, "QObject*")
+event("QMediaPlayerControl", /::objectNameChanged\s*\(/, "QString")
+event("QMediaPlayerControl", /::mediaChanged\s*\(/, "QMediaContent")
+event("QMediaPlayerControl", /::durationChanged\s*\(/, "qlonglong")
+event("QMediaPlayerControl", /::positionChanged\s*\(/, "qlonglong")
+event("QMediaPlayerControl", /::stateChanged\s*\(/, "QMediaPlayer::State")
+event("QMediaPlayerControl", /::mediaStatusChanged\s*\(/, "QMediaPlayer::MediaStatus")
+event("QMediaPlayerControl", /::volumeChanged\s*\(/, "int")
+event("QMediaPlayerControl", /::mutedChanged\s*\(/, "bool")
+event("QMediaPlayerControl", /::audioAvailableChanged\s*\(/, "bool")
+event("QMediaPlayerControl", /::videoAvailableChanged\s*\(/, "bool")
+event("QMediaPlayerControl", /::bufferStatusChanged\s*\(/, "int")
+event("QMediaPlayerControl", /::seekableChanged\s*\(/, "bool")
+event("QMediaPlayerControl", /::availablePlaybackRangesChanged\s*\(/, "QMediaTimeRange")
+event("QMediaPlayerControl", /::playbackRateChanged\s*\(/, "double")
+event("QMediaPlayerControl", /::error\s*\(/, "int, QString")
+event("QMediaPlaylist", /::destroyed\s*\(/, "QObject*")
+event("QMediaPlaylist", /::objectNameChanged\s*\(/, "QString")
+event("QMediaPlaylist", /::currentIndexChanged\s*\(/, "int")
+event("QMediaPlaylist", /::playbackModeChanged\s*\(/, "QMediaPlaylist::PlaybackMode")
+event("QMediaPlaylist", /::currentMediaChanged\s*\(/, "QMediaContent")
+event("QMediaPlaylist", /::mediaAboutToBeInserted\s*\(/, "int, int")
+event("QMediaPlaylist", /::mediaInserted\s*\(/, "int, int")
+event("QMediaPlaylist", /::mediaAboutToBeRemoved\s*\(/, "int, int")
+event("QMediaPlaylist", /::mediaRemoved\s*\(/, "int, int")
+event("QMediaPlaylist", /::mediaChanged\s*\(/, "int, int")
+event("QMediaPlaylist", /::loaded\s*\(/, "")
+event("QMediaPlaylist", /::loadFailed\s*\(/, "")
+event("QMediaRecorder", /::destroyed\s*\(/, "QObject*")
+event("QMediaRecorder", /::objectNameChanged\s*\(/, "QString")
+event("QMediaRecorder", /::stateChanged\s*\(/, "QMediaRecorder::State")
+event("QMediaRecorder", /::statusChanged\s*\(/, "QMediaRecorder::Status")
+event("QMediaRecorder", /::durationChanged\s*\(/, "qlonglong")
+event("QMediaRecorder", /::mutedChanged\s*\(/, "bool")
+event("QMediaRecorder", /::volumeChanged\s*\(/, "double")
+event("QMediaRecorder", /::actualLocationChanged\s*\(/, "QUrl")
+event("QMediaRecorder", /::error\s*\(/, "QMediaRecorder::Error")
+event("QMediaRecorder", /::metaDataAvailableChanged\s*\(/, "bool")
+event("QMediaRecorder", /::metaDataWritableChanged\s*\(/, "bool")
+event("QMediaRecorder", /::metaDataChanged\s*\(/, "QString, QVariant")
+event("QMediaRecorder", /::availabilityChanged\s*\(/, "bool")
+event("QMediaRecorder", /::availabilityChanged\s*\(/, "QMultimedia::AvailabilityStatus")
+event("QMediaRecorderControl", /::destroyed\s*\(/, "QObject*")
+event("QMediaRecorderControl", /::objectNameChanged\s*\(/, "QString")
+event("QMediaRecorderControl", /::stateChanged\s*\(/, "QMediaRecorder::State")
+event("QMediaRecorderControl", /::statusChanged\s*\(/, "QMediaRecorder::Status")
+event("QMediaRecorderControl", /::durationChanged\s*\(/, "qlonglong")
+event("QMediaRecorderControl", /::mutedChanged\s*\(/, "bool")
+event("QMediaRecorderControl", /::volumeChanged\s*\(/, "double")
+event("QMediaRecorderControl", /::actualLocationChanged\s*\(/, "QUrl")
+event("QMediaRecorderControl", /::error\s*\(/, "int, QString")
+event("QMediaService", /::destroyed\s*\(/, "QObject*")
+event("QMediaService", /::objectNameChanged\s*\(/, "QString")
+event("QMediaServiceProviderPlugin", /::destroyed\s*\(/, "QObject*")
+event("QMediaServiceProviderPlugin", /::objectNameChanged\s*\(/, "QString")
+event("QMediaStreamsControl", /::destroyed\s*\(/, "QObject*")
+event("QMediaStreamsControl", /::objectNameChanged\s*\(/, "QString")
+event("QMediaStreamsControl", /::streamsChanged\s*\(/, "")
+event("QMediaStreamsControl", /::activeStreamsChanged\s*\(/, "")
+event("QMediaVideoProbeControl", /::destroyed\s*\(/, "QObject*")
+event("QMediaVideoProbeControl", /::objectNameChanged\s*\(/, "QString")
+event("QMediaVideoProbeControl", /::videoFrameProbed\s*\(/, "QVideoFrame")
+event("QMediaVideoProbeControl", /::flush\s*\(/, "")
+event("QMetaDataReaderControl", /::destroyed\s*\(/, "QObject*")
+event("QMetaDataReaderControl", /::objectNameChanged\s*\(/, "QString")
+event("QMetaDataReaderControl", /::metaDataChanged\s*\(/, "QString, QVariant")
+event("QMetaDataReaderControl", /::metaDataAvailableChanged\s*\(/, "bool")
+event("QMetaDataWriterControl", /::destroyed\s*\(/, "QObject*")
+event("QMetaDataWriterControl", /::objectNameChanged\s*\(/, "QString")
+event("QMetaDataWriterControl", /::metaDataChanged\s*\(/, "QString, QVariant")
+event("QMetaDataWriterControl", /::writableChanged\s*\(/, "bool")
+event("QMetaDataWriterControl", /::metaDataAvailableChanged\s*\(/, "bool")
+event("QRadioData", /::destroyed\s*\(/, "QObject*")
+event("QRadioData", /::objectNameChanged\s*\(/, "QString")
+event("QRadioData", /::stationIdChanged\s*\(/, "QString")
+event("QRadioData", /::programTypeChanged\s*\(/, "QRadioData::ProgramType")
+event("QRadioData", /::programTypeNameChanged\s*\(/, "QString")
+event("QRadioData", /::stationNameChanged\s*\(/, "QString")
+event("QRadioData", /::radioTextChanged\s*\(/, "QString")
+event("QRadioData", /::alternativeFrequenciesEnabledChanged\s*\(/, "bool")
+event("QRadioData", /::error\s*\(/, "QRadioData::Error")
+event("QRadioDataControl", /::destroyed\s*\(/, "QObject*")
+event("QRadioDataControl", /::objectNameChanged\s*\(/, "QString")
+event("QRadioDataControl", /::stationIdChanged\s*\(/, "QString")
+event("QRadioDataControl", /::programTypeChanged\s*\(/, "QRadioData::ProgramType")
+event("QRadioDataControl", /::programTypeNameChanged\s*\(/, "QString")
+event("QRadioDataControl", /::stationNameChanged\s*\(/, "QString")
+event("QRadioDataControl", /::radioTextChanged\s*\(/, "QString")
+event("QRadioDataControl", /::alternativeFrequenciesEnabledChanged\s*\(/, "bool")
+event("QRadioDataControl", /::error\s*\(/, "QRadioData::Error")
+event("QRadioTuner", /::destroyed\s*\(/, "QObject*")
+event("QRadioTuner", /::objectNameChanged\s*\(/, "QString")
+event("QRadioTuner", /::notifyIntervalChanged\s*\(/, "int")
+event("QRadioTuner", /::metaDataAvailableChanged\s*\(/, "bool")
+event("QRadioTuner", /::metaDataChanged\s*\(/, "QString, QVariant")
+event("QRadioTuner", /::availabilityChanged\s*\(/, "bool")
+event("QRadioTuner", /::availabilityChanged\s*\(/, "QMultimedia::AvailabilityStatus")
+event("QRadioTuner", /::stateChanged\s*\(/, "QRadioTuner::State")
+event("QRadioTuner", /::bandChanged\s*\(/, "QRadioTuner::Band")
+event("QRadioTuner", /::frequencyChanged\s*\(/, "int")
+event("QRadioTuner", /::stereoStatusChanged\s*\(/, "bool")
+event("QRadioTuner", /::searchingChanged\s*\(/, "bool")
+event("QRadioTuner", /::signalStrengthChanged\s*\(/, "int")
+event("QRadioTuner", /::volumeChanged\s*\(/, "int")
+event("QRadioTuner", /::mutedChanged\s*\(/, "bool")
+event("QRadioTuner", /::stationFound\s*\(/, "int, QString")
+event("QRadioTuner", /::antennaConnectedChanged\s*\(/, "bool")
+event("QRadioTuner", /::error\s*\(/, "QRadioTuner::Error")
+event("QRadioTunerControl", /::destroyed\s*\(/, "QObject*")
+event("QRadioTunerControl", /::objectNameChanged\s*\(/, "QString")
+event("QRadioTunerControl", /::stateChanged\s*\(/, "QRadioTuner::State")
+event("QRadioTunerControl", /::bandChanged\s*\(/, "QRadioTuner::Band")
+event("QRadioTunerControl", /::frequencyChanged\s*\(/, "int")
+event("QRadioTunerControl", /::stereoStatusChanged\s*\(/, "bool")
+event("QRadioTunerControl", /::searchingChanged\s*\(/, "bool")
+event("QRadioTunerControl", /::signalStrengthChanged\s*\(/, "int")
+event("QRadioTunerControl", /::volumeChanged\s*\(/, "int")
+event("QRadioTunerControl", /::mutedChanged\s*\(/, "bool")
+event("QRadioTunerControl", /::error\s*\(/, "QRadioTuner::Error")
+event("QRadioTunerControl", /::stationFound\s*\(/, "int, QString")
+event("QRadioTunerControl", /::antennaConnectedChanged\s*\(/, "bool")
+event("QSound", /::destroyed\s*\(/, "QObject*")
+event("QSound", /::objectNameChanged\s*\(/, "QString")
+event("QSoundEffect", /::destroyed\s*\(/, "QObject*")
+event("QSoundEffect", /::objectNameChanged\s*\(/, "QString")
+event("QSoundEffect", /::sourceChanged\s*\(/, "")
+event("QSoundEffect", /::loopCountChanged\s*\(/, "")
+event("QSoundEffect", /::loopsRemainingChanged\s*\(/, "")
+event("QSoundEffect", /::volumeChanged\s*\(/, "")
+event("QSoundEffect", /::mutedChanged\s*\(/, "")
+event("QSoundEffect", /::loadedChanged\s*\(/, "")
+event("QSoundEffect", /::playingChanged\s*\(/, "")
+event("QSoundEffect", /::statusChanged\s*\(/, "")
+event("QSoundEffect", /::categoryChanged\s*\(/, "")
+event("QVideoDeviceSelectorControl", /::destroyed\s*\(/, "QObject*")
+event("QVideoDeviceSelectorControl", /::objectNameChanged\s*\(/, "QString")
+event("QVideoDeviceSelectorControl", /::selectedDeviceChanged\s*\(/, "int")
+event("QVideoDeviceSelectorControl", /::selectedDeviceChanged\s*\(/, "QString")
+event("QVideoDeviceSelectorControl", /::devicesChanged\s*\(/, "")
+event("QVideoEncoderSettingsControl", /::destroyed\s*\(/, "QObject*")
+event("QVideoEncoderSettingsControl", /::objectNameChanged\s*\(/, "QString")
+event("QVideoProbe", /::destroyed\s*\(/, "QObject*")
+event("QVideoProbe", /::objectNameChanged\s*\(/, "QString")
+event("QVideoProbe", /::videoFrameProbed\s*\(/, "QVideoFrame")
+event("QVideoProbe", /::flush\s*\(/, "")
+event("QVideoRendererControl", /::destroyed\s*\(/, "QObject*")
+event("QVideoRendererControl", /::objectNameChanged\s*\(/, "QString")
+event("QVideoWidget", /::destroyed\s*\(/, "QObject*")
+event("QVideoWidget", /::objectNameChanged\s*\(/, "QString")
+event("QVideoWidget", /::windowTitleChanged\s*\(/, "QString")
+event("QVideoWidget", /::windowIconChanged\s*\(/, "QIcon")
+event("QVideoWidget", /::windowIconTextChanged\s*\(/, "QString")
+event("QVideoWidget", /::customContextMenuRequested\s*\(/, "QPoint")
+event("QVideoWidget", /::fullScreenChanged\s*\(/, "bool")
+event("QVideoWidget", /::brightnessChanged\s*\(/, "int")
+event("QVideoWidget", /::contrastChanged\s*\(/, "int")
+event("QVideoWidget", /::hueChanged\s*\(/, "int")
+event("QVideoWidget", /::saturationChanged\s*\(/, "int")
+event("QVideoWindowControl", /::destroyed\s*\(/, "QObject*")
+event("QVideoWindowControl", /::objectNameChanged\s*\(/, "QString")
+event("QVideoWindowControl", /::fullScreenChanged\s*\(/, "bool")
+event("QVideoWindowControl", /::brightnessChanged\s*\(/, "int")
+event("QVideoWindowControl", /::contrastChanged\s*\(/, "int")
+event("QVideoWindowControl", /::hueChanged\s*\(/, "int")
+event("QVideoWindowControl", /::saturationChanged\s*\(/, "int")
+event("QVideoWindowControl", /::nativeSizeChanged\s*\(/, "")
+event("QUiLoader", /::destroyed\s*\(/, "QObject*")
+event("QUiLoader", /::objectNameChanged\s*\(/, "QString")
event("QSqlDriver", /::destroyed\s*\(/, "QObject*")
event("QSqlDriver", /::objectNameChanged\s*\(/, "QString")
event("QSqlDriver", /::notification\s*\(/, "QString, QSqlDriver::NotificationSource, QVariant")
@@ -1795,6 +2314,7 @@ event("QAbstractSocket", /::connected\s*\(/, "")
event("QAbstractSocket", /::disconnected\s*\(/, "")
event("QAbstractSocket", /::stateChanged\s*\(/, "QAbstractSocket::SocketState")
event("QAbstractSocket", /::error\s*\(/, "QAbstractSocket::SocketError")
+event("QAbstractSocket", /::errorOccurred\s*\(/, "QAbstractSocket::SocketError")
event("QAbstractSocket", /::proxyAuthenticationRequired\s*\(/, "QNetworkProxy, QAuthenticator*")
event("QDnsLookup", /::destroyed\s*\(/, "QObject*")
event("QDnsLookup", /::objectNameChanged\s*\(/, "QString")
@@ -1802,6 +2322,12 @@ event("QDnsLookup", /::finished\s*\(/, "")
event("QDnsLookup", /::nameChanged\s*\(/, "QString")
event("QDnsLookup", /::typeChanged\s*\(/, "Type")
event("QDnsLookup", /::nameserverChanged\s*\(/, "QHostAddress")
+event("QDtls", /::destroyed\s*\(/, "QObject*")
+event("QDtls", /::objectNameChanged\s*\(/, "QString")
+event("QDtls", /::pskRequired\s*\(/, "QSslPreSharedKeyAuthenticator*")
+event("QDtls", /::handshakeTimeout\s*\(/, "")
+event("QDtlsClientVerifier", /::destroyed\s*\(/, "QObject*")
+event("QDtlsClientVerifier", /::objectNameChanged\s*\(/, "QString")
event("QHttpMultiPart", /::destroyed\s*\(/, "QObject*")
event("QHttpMultiPart", /::objectNameChanged\s*\(/, "QString")
event("QLocalServer", /::destroyed\s*\(/, "QObject*")
@@ -1818,6 +2344,7 @@ event("QLocalSocket", /::readChannelFinished\s*\(/, "")
event("QLocalSocket", /::connected\s*\(/, "")
event("QLocalSocket", /::disconnected\s*\(/, "")
event("QLocalSocket", /::error\s*\(/, "QLocalSocket::LocalSocketError")
+event("QLocalSocket", /::errorOccurred\s*\(/, "QLocalSocket::LocalSocketError")
event("QLocalSocket", /::stateChanged\s*\(/, "QLocalSocket::LocalSocketState")
event("QNetworkAccessManager", /::destroyed\s*\(/, "QObject*")
event("QNetworkAccessManager", /::objectNameChanged\s*\(/, "QString")
@@ -1851,6 +2378,7 @@ event("QNetworkReply", /::readChannelFinished\s*\(/, "")
event("QNetworkReply", /::metaDataChanged\s*\(/, "")
event("QNetworkReply", /::finished\s*\(/, "")
event("QNetworkReply", /::error\s*\(/, "QNetworkReply::NetworkError")
+event("QNetworkReply", /::errorOccurred\s*\(/, "QNetworkReply::NetworkError")
event("QNetworkReply", /::encrypted\s*\(/, "")
event("QNetworkReply", /::sslErrors\s*\(/, "QList")
event("QNetworkReply", /::preSharedKeyAuthenticationRequired\s*\(/, "QSslPreSharedKeyAuthenticator*")
@@ -1880,6 +2408,7 @@ event("QSslSocket", /::connected\s*\(/, "")
event("QSslSocket", /::disconnected\s*\(/, "")
event("QSslSocket", /::stateChanged\s*\(/, "QAbstractSocket::SocketState")
event("QSslSocket", /::error\s*\(/, "QAbstractSocket::SocketError")
+event("QSslSocket", /::errorOccurred\s*\(/, "QAbstractSocket::SocketError")
event("QSslSocket", /::proxyAuthenticationRequired\s*\(/, "QNetworkProxy, QAuthenticator*")
event("QSslSocket", /::encrypted\s*\(/, "")
event("QSslSocket", /::peerVerifyError\s*\(/, "QSslError")
@@ -1887,6 +2416,7 @@ event("QSslSocket", /::sslErrors\s*\(/, "QList")
event("QSslSocket", /::modeChanged\s*\(/, "QSslSocket::SslMode")
event("QSslSocket", /::encryptedBytesWritten\s*\(/, "qlonglong")
event("QSslSocket", /::preSharedKeyAuthenticationRequired\s*\(/, "QSslPreSharedKeyAuthenticator*")
+event("QSslSocket", /::newSessionTicketReceived\s*\(/, "")
event("QTcpServer", /::destroyed\s*\(/, "QObject*")
event("QTcpServer", /::objectNameChanged\s*\(/, "QString")
event("QTcpServer", /::newConnection\s*\(/, "")
@@ -1904,6 +2434,7 @@ event("QTcpSocket", /::connected\s*\(/, "")
event("QTcpSocket", /::disconnected\s*\(/, "")
event("QTcpSocket", /::stateChanged\s*\(/, "QAbstractSocket::SocketState")
event("QTcpSocket", /::error\s*\(/, "QAbstractSocket::SocketError")
+event("QTcpSocket", /::errorOccurred\s*\(/, "QAbstractSocket::SocketError")
event("QTcpSocket", /::proxyAuthenticationRequired\s*\(/, "QNetworkProxy, QAuthenticator*")
event("QUdpSocket", /::destroyed\s*\(/, "QObject*")
event("QUdpSocket", /::objectNameChanged\s*\(/, "QString")
@@ -1918,4 +2449,5 @@ event("QUdpSocket", /::connected\s*\(/, "")
event("QUdpSocket", /::disconnected\s*\(/, "")
event("QUdpSocket", /::stateChanged\s*\(/, "QAbstractSocket::SocketState")
event("QUdpSocket", /::error\s*\(/, "QAbstractSocket::SocketError")
+event("QUdpSocket", /::errorOccurred\s*\(/, "QAbstractSocket::SocketError")
event("QUdpSocket", /::proxyAuthenticationRequired\s*\(/, "QNetworkProxy, QAuthenticator*")
diff --git a/scripts/mkqtdecl5/mkqtdecl.properties b/scripts/mkqtdecl5/mkqtdecl.properties
index 09d56240f..3c1102642 100644
--- a/scripts/mkqtdecl5/mkqtdecl.properties
+++ b/scripts/mkqtdecl5/mkqtdecl.properties
@@ -10,12 +10,605 @@ property_reader("QAbstractAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLo
property_reader("QAbstractAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
property_writer("QAbstractAnimation", /::setDirection\s*\(/, "direction")
property_reader("QAbstractAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QAbstractAudioDeviceInfo", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractAudioDeviceInfo", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractAudioInput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractAudioInput", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractAudioOutput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractAudioOutput", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractEventDispatcher", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractEventDispatcher", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractItemModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractItemModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractListModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractListModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractProxyModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractProxyModel", /::(sourceModel|isSourceModel|hasSourceModel)\s*\(/, "sourceModel")
+property_writer("QAbstractProxyModel", /::setSourceModel\s*\(/, "sourceModel")
+property_reader("QAbstractState", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractState", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractState", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QAbstractTableModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractTableModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractTransition", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractTransition", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractTransition", /::(sourceState|isSourceState|hasSourceState)\s*\(/, "sourceState")
+property_reader("QAbstractTransition", /::(targetState|isTargetState|hasTargetState)\s*\(/, "targetState")
+property_writer("QAbstractTransition", /::setTargetState\s*\(/, "targetState")
+property_reader("QAbstractTransition", /::(targetStates|isTargetStates|hasTargetStates)\s*\(/, "targetStates")
+property_writer("QAbstractTransition", /::setTargetStates\s*\(/, "targetStates")
+property_reader("QAbstractTransition", /::(transitionType|isTransitionType|hasTransitionType)\s*\(/, "transitionType")
+property_writer("QAbstractTransition", /::setTransitionType\s*\(/, "transitionType")
+property_reader("QAnimationDriver", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAnimationDriver", /::setObjectName\s*\(/, "objectName")
+property_reader("QAnimationGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAnimationGroup", /::setObjectName\s*\(/, "objectName")
+property_reader("QAnimationGroup", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QAnimationGroup", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QAnimationGroup", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QAnimationGroup", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QAnimationGroup", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QAnimationGroup", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
+property_reader("QAnimationGroup", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QAnimationGroup", /::setDirection\s*\(/, "direction")
+property_reader("QAnimationGroup", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QBuffer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QBuffer", /::setObjectName\s*\(/, "objectName")
+property_reader("QCoreApplication", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCoreApplication", /::setObjectName\s*\(/, "objectName")
+property_reader("QCoreApplication", /::(applicationName|isApplicationName|hasApplicationName)\s*\(/, "applicationName")
+property_writer("QCoreApplication", /::setApplicationName\s*\(/, "applicationName")
+property_reader("QCoreApplication", /::(applicationVersion|isApplicationVersion|hasApplicationVersion)\s*\(/, "applicationVersion")
+property_writer("QCoreApplication", /::setApplicationVersion\s*\(/, "applicationVersion")
+property_reader("QCoreApplication", /::(organizationName|isOrganizationName|hasOrganizationName)\s*\(/, "organizationName")
+property_writer("QCoreApplication", /::setOrganizationName\s*\(/, "organizationName")
+property_reader("QCoreApplication", /::(organizationDomain|isOrganizationDomain|hasOrganizationDomain)\s*\(/, "organizationDomain")
+property_writer("QCoreApplication", /::setOrganizationDomain\s*\(/, "organizationDomain")
+property_reader("QCoreApplication", /::(quitLockEnabled|isQuitLockEnabled|hasQuitLockEnabled)\s*\(/, "quitLockEnabled")
+property_writer("QCoreApplication", /::setQuitLockEnabled\s*\(/, "quitLockEnabled")
+property_reader("QEventLoop", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QEventLoop", /::setObjectName\s*\(/, "objectName")
+property_reader("QEventTransition", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QEventTransition", /::setObjectName\s*\(/, "objectName")
+property_reader("QEventTransition", /::(sourceState|isSourceState|hasSourceState)\s*\(/, "sourceState")
+property_reader("QEventTransition", /::(targetState|isTargetState|hasTargetState)\s*\(/, "targetState")
+property_writer("QEventTransition", /::setTargetState\s*\(/, "targetState")
+property_reader("QEventTransition", /::(targetStates|isTargetStates|hasTargetStates)\s*\(/, "targetStates")
+property_writer("QEventTransition", /::setTargetStates\s*\(/, "targetStates")
+property_reader("QEventTransition", /::(transitionType|isTransitionType|hasTransitionType)\s*\(/, "transitionType")
+property_writer("QEventTransition", /::setTransitionType\s*\(/, "transitionType")
+property_reader("QEventTransition", /::(eventSource|isEventSource|hasEventSource)\s*\(/, "eventSource")
+property_writer("QEventTransition", /::setEventSource\s*\(/, "eventSource")
+property_reader("QEventTransition", /::(eventType|isEventType|hasEventType)\s*\(/, "eventType")
+property_writer("QEventTransition", /::setEventType\s*\(/, "eventType")
+property_reader("QFile", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QFile", /::setObjectName\s*\(/, "objectName")
+property_reader("QFileDevice", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QFileDevice", /::setObjectName\s*\(/, "objectName")
+property_reader("QFileSelector", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QFileSelector", /::setObjectName\s*\(/, "objectName")
+property_reader("QFileSystemWatcher", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QFileSystemWatcher", /::setObjectName\s*\(/, "objectName")
+property_reader("QFinalState", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QFinalState", /::setObjectName\s*\(/, "objectName")
+property_reader("QFinalState", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QHistoryState", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QHistoryState", /::setObjectName\s*\(/, "objectName")
+property_reader("QHistoryState", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QHistoryState", /::(defaultState|isDefaultState|hasDefaultState)\s*\(/, "defaultState")
+property_writer("QHistoryState", /::setDefaultState\s*\(/, "defaultState")
+property_reader("QHistoryState", /::(defaultTransition|isDefaultTransition|hasDefaultTransition)\s*\(/, "defaultTransition")
+property_writer("QHistoryState", /::setDefaultTransition\s*\(/, "defaultTransition")
+property_reader("QHistoryState", /::(historyType|isHistoryType|hasHistoryType)\s*\(/, "historyType")
+property_writer("QHistoryState", /::setHistoryType\s*\(/, "historyType")
+property_reader("QIODevice", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QIODevice", /::setObjectName\s*\(/, "objectName")
+property_reader("QIdentityProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QIdentityProxyModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QIdentityProxyModel", /::(sourceModel|isSourceModel|hasSourceModel)\s*\(/, "sourceModel")
+property_writer("QIdentityProxyModel", /::setSourceModel\s*\(/, "sourceModel")
+property_reader("QItemSelectionModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QItemSelectionModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QItemSelectionModel", /::(model|isModel|hasModel)\s*\(/, "model")
+property_writer("QItemSelectionModel", /::setModel\s*\(/, "model")
+property_reader("QItemSelectionModel", /::(hasSelection|isHasSelection|hasHasSelection)\s*\(/, "hasSelection")
+property_reader("QItemSelectionModel", /::(currentIndex|isCurrentIndex|hasCurrentIndex)\s*\(/, "currentIndex")
+property_reader("QItemSelectionModel", /::(selection|isSelection|hasSelection)\s*\(/, "selection")
+property_reader("QItemSelectionModel", /::(selectedIndexes|isSelectedIndexes|hasSelectedIndexes)\s*\(/, "selectedIndexes")
+property_reader("QLibrary", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QLibrary", /::setObjectName\s*\(/, "objectName")
+property_reader("QLibrary", /::(fileName|isFileName|hasFileName)\s*\(/, "fileName")
+property_writer("QLibrary", /::setFileName\s*\(/, "fileName")
+property_reader("QLibrary", /::(loadHints|isLoadHints|hasLoadHints)\s*\(/, "loadHints")
+property_writer("QLibrary", /::setLoadHints\s*\(/, "loadHints")
+property_reader("QMimeData", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMimeData", /::setObjectName\s*\(/, "objectName")
+property_reader("QParallelAnimationGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QParallelAnimationGroup", /::setObjectName\s*\(/, "objectName")
+property_reader("QParallelAnimationGroup", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QParallelAnimationGroup", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QParallelAnimationGroup", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QParallelAnimationGroup", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QParallelAnimationGroup", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QParallelAnimationGroup", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
+property_reader("QParallelAnimationGroup", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QParallelAnimationGroup", /::setDirection\s*\(/, "direction")
+property_reader("QParallelAnimationGroup", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QPauseAnimation", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPauseAnimation", /::setObjectName\s*\(/, "objectName")
+property_reader("QPauseAnimation", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QPauseAnimation", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QPauseAnimation", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QPauseAnimation", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QPauseAnimation", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QPauseAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
+property_reader("QPauseAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QPauseAnimation", /::setDirection\s*\(/, "direction")
+property_reader("QPauseAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QPauseAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_writer("QPauseAnimation", /::setDuration\s*\(/, "duration")
+property_reader("QPluginLoader", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPluginLoader", /::setObjectName\s*\(/, "objectName")
+property_reader("QPluginLoader", /::(fileName|isFileName|hasFileName)\s*\(/, "fileName")
+property_writer("QPluginLoader", /::setFileName\s*\(/, "fileName")
+property_reader("QPluginLoader", /::(loadHints|isLoadHints|hasLoadHints)\s*\(/, "loadHints")
+property_writer("QPluginLoader", /::setLoadHints\s*\(/, "loadHints")
+property_reader("QProcess", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QProcess", /::setObjectName\s*\(/, "objectName")
+property_reader("QPropertyAnimation", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPropertyAnimation", /::setObjectName\s*\(/, "objectName")
+property_reader("QPropertyAnimation", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QPropertyAnimation", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QPropertyAnimation", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QPropertyAnimation", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QPropertyAnimation", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QPropertyAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
+property_reader("QPropertyAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QPropertyAnimation", /::setDirection\s*\(/, "direction")
+property_reader("QPropertyAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QPropertyAnimation", /::(startValue|isStartValue|hasStartValue)\s*\(/, "startValue")
+property_writer("QPropertyAnimation", /::setStartValue\s*\(/, "startValue")
+property_reader("QPropertyAnimation", /::(endValue|isEndValue|hasEndValue)\s*\(/, "endValue")
+property_writer("QPropertyAnimation", /::setEndValue\s*\(/, "endValue")
+property_reader("QPropertyAnimation", /::(currentValue|isCurrentValue|hasCurrentValue)\s*\(/, "currentValue")
+property_reader("QPropertyAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_writer("QPropertyAnimation", /::setDuration\s*\(/, "duration")
+property_reader("QPropertyAnimation", /::(easingCurve|isEasingCurve|hasEasingCurve)\s*\(/, "easingCurve")
+property_writer("QPropertyAnimation", /::setEasingCurve\s*\(/, "easingCurve")
+property_reader("QPropertyAnimation", /::(propertyName|isPropertyName|hasPropertyName)\s*\(/, "propertyName")
+property_writer("QPropertyAnimation", /::setPropertyName\s*\(/, "propertyName")
+property_reader("QPropertyAnimation", /::(targetObject|isTargetObject|hasTargetObject)\s*\(/, "targetObject")
+property_writer("QPropertyAnimation", /::setTargetObject\s*\(/, "targetObject")
+property_reader("QSaveFile", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSaveFile", /::setObjectName\s*\(/, "objectName")
+property_reader("QSequentialAnimationGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSequentialAnimationGroup", /::setObjectName\s*\(/, "objectName")
+property_reader("QSequentialAnimationGroup", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QSequentialAnimationGroup", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QSequentialAnimationGroup", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QSequentialAnimationGroup", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QSequentialAnimationGroup", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QSequentialAnimationGroup", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
+property_reader("QSequentialAnimationGroup", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QSequentialAnimationGroup", /::setDirection\s*\(/, "direction")
+property_reader("QSequentialAnimationGroup", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QSequentialAnimationGroup", /::(currentAnimation|isCurrentAnimation|hasCurrentAnimation)\s*\(/, "currentAnimation")
+property_reader("QSettings", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSettings", /::setObjectName\s*\(/, "objectName")
+property_reader("QSharedMemory", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSharedMemory", /::setObjectName\s*\(/, "objectName")
+property_reader("QSignalMapper", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSignalMapper", /::setObjectName\s*\(/, "objectName")
+property_reader("QSignalTransition", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSignalTransition", /::setObjectName\s*\(/, "objectName")
+property_reader("QSignalTransition", /::(sourceState|isSourceState|hasSourceState)\s*\(/, "sourceState")
+property_reader("QSignalTransition", /::(targetState|isTargetState|hasTargetState)\s*\(/, "targetState")
+property_writer("QSignalTransition", /::setTargetState\s*\(/, "targetState")
+property_reader("QSignalTransition", /::(targetStates|isTargetStates|hasTargetStates)\s*\(/, "targetStates")
+property_writer("QSignalTransition", /::setTargetStates\s*\(/, "targetStates")
+property_reader("QSignalTransition", /::(transitionType|isTransitionType|hasTransitionType)\s*\(/, "transitionType")
+property_writer("QSignalTransition", /::setTransitionType\s*\(/, "transitionType")
+property_reader("QSignalTransition", /::(senderObject|isSenderObject|hasSenderObject)\s*\(/, "senderObject")
+property_writer("QSignalTransition", /::setSenderObject\s*\(/, "senderObject")
+property_reader("QSignalTransition", /::(signal|isSignal|hasSignal)\s*\(/, "signal")
+property_writer("QSignalTransition", /::setSignal\s*\(/, "signal")
+property_reader("QSocketNotifier", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSocketNotifier", /::setObjectName\s*\(/, "objectName")
+property_reader("QSortFilterProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSortFilterProxyModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QSortFilterProxyModel", /::(sourceModel|isSourceModel|hasSourceModel)\s*\(/, "sourceModel")
+property_writer("QSortFilterProxyModel", /::setSourceModel\s*\(/, "sourceModel")
+property_reader("QSortFilterProxyModel", /::(filterRegExp|isFilterRegExp|hasFilterRegExp)\s*\(/, "filterRegExp")
+property_writer("QSortFilterProxyModel", /::setFilterRegExp\s*\(/, "filterRegExp")
+property_reader("QSortFilterProxyModel", /::(filterRegularExpression|isFilterRegularExpression|hasFilterRegularExpression)\s*\(/, "filterRegularExpression")
+property_writer("QSortFilterProxyModel", /::setFilterRegularExpression\s*\(/, "filterRegularExpression")
+property_reader("QSortFilterProxyModel", /::(filterKeyColumn|isFilterKeyColumn|hasFilterKeyColumn)\s*\(/, "filterKeyColumn")
+property_writer("QSortFilterProxyModel", /::setFilterKeyColumn\s*\(/, "filterKeyColumn")
+property_reader("QSortFilterProxyModel", /::(dynamicSortFilter|isDynamicSortFilter|hasDynamicSortFilter)\s*\(/, "dynamicSortFilter")
+property_writer("QSortFilterProxyModel", /::setDynamicSortFilter\s*\(/, "dynamicSortFilter")
+property_reader("QSortFilterProxyModel", /::(filterCaseSensitivity|isFilterCaseSensitivity|hasFilterCaseSensitivity)\s*\(/, "filterCaseSensitivity")
+property_writer("QSortFilterProxyModel", /::setFilterCaseSensitivity\s*\(/, "filterCaseSensitivity")
+property_reader("QSortFilterProxyModel", /::(sortCaseSensitivity|isSortCaseSensitivity|hasSortCaseSensitivity)\s*\(/, "sortCaseSensitivity")
+property_writer("QSortFilterProxyModel", /::setSortCaseSensitivity\s*\(/, "sortCaseSensitivity")
+property_reader("QSortFilterProxyModel", /::(isSortLocaleAware|isIsSortLocaleAware|hasIsSortLocaleAware)\s*\(/, "isSortLocaleAware")
+property_writer("QSortFilterProxyModel", /::setIsSortLocaleAware\s*\(/, "isSortLocaleAware")
+property_reader("QSortFilterProxyModel", /::(sortRole|isSortRole|hasSortRole)\s*\(/, "sortRole")
+property_writer("QSortFilterProxyModel", /::setSortRole\s*\(/, "sortRole")
+property_reader("QSortFilterProxyModel", /::(filterRole|isFilterRole|hasFilterRole)\s*\(/, "filterRole")
+property_writer("QSortFilterProxyModel", /::setFilterRole\s*\(/, "filterRole")
+property_reader("QSortFilterProxyModel", /::(recursiveFilteringEnabled|isRecursiveFilteringEnabled|hasRecursiveFilteringEnabled)\s*\(/, "recursiveFilteringEnabled")
+property_writer("QSortFilterProxyModel", /::setRecursiveFilteringEnabled\s*\(/, "recursiveFilteringEnabled")
+property_reader("QState", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QState", /::setObjectName\s*\(/, "objectName")
+property_reader("QState", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QState", /::(initialState|isInitialState|hasInitialState)\s*\(/, "initialState")
+property_writer("QState", /::setInitialState\s*\(/, "initialState")
+property_reader("QState", /::(errorState|isErrorState|hasErrorState)\s*\(/, "errorState")
+property_writer("QState", /::setErrorState\s*\(/, "errorState")
+property_reader("QState", /::(childMode|isChildMode|hasChildMode)\s*\(/, "childMode")
+property_writer("QState", /::setChildMode\s*\(/, "childMode")
+property_reader("QStateMachine", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QStateMachine", /::setObjectName\s*\(/, "objectName")
+property_reader("QStateMachine", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QStateMachine", /::(initialState|isInitialState|hasInitialState)\s*\(/, "initialState")
+property_writer("QStateMachine", /::setInitialState\s*\(/, "initialState")
+property_reader("QStateMachine", /::(errorState|isErrorState|hasErrorState)\s*\(/, "errorState")
+property_writer("QStateMachine", /::setErrorState\s*\(/, "errorState")
+property_reader("QStateMachine", /::(childMode|isChildMode|hasChildMode)\s*\(/, "childMode")
+property_writer("QStateMachine", /::setChildMode\s*\(/, "childMode")
+property_reader("QStateMachine", /::(errorString|isErrorString|hasErrorString)\s*\(/, "errorString")
+property_reader("QStateMachine", /::(globalRestorePolicy|isGlobalRestorePolicy|hasGlobalRestorePolicy)\s*\(/, "globalRestorePolicy")
+property_writer("QStateMachine", /::setGlobalRestorePolicy\s*\(/, "globalRestorePolicy")
+property_reader("QStateMachine", /::(running|isRunning|hasRunning)\s*\(/, "running")
+property_writer("QStateMachine", /::setRunning\s*\(/, "running")
+property_reader("QStateMachine", /::(animated|isAnimated|hasAnimated)\s*\(/, "animated")
+property_writer("QStateMachine", /::setAnimated\s*\(/, "animated")
+property_reader("QStringListModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QStringListModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QTemporaryFile", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTemporaryFile", /::setObjectName\s*\(/, "objectName")
+property_reader("QThread", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QThread", /::setObjectName\s*\(/, "objectName")
+property_reader("QThreadPool", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QThreadPool", /::setObjectName\s*\(/, "objectName")
+property_reader("QThreadPool", /::(expiryTimeout|isExpiryTimeout|hasExpiryTimeout)\s*\(/, "expiryTimeout")
+property_writer("QThreadPool", /::setExpiryTimeout\s*\(/, "expiryTimeout")
+property_reader("QThreadPool", /::(maxThreadCount|isMaxThreadCount|hasMaxThreadCount)\s*\(/, "maxThreadCount")
+property_writer("QThreadPool", /::setMaxThreadCount\s*\(/, "maxThreadCount")
+property_reader("QThreadPool", /::(activeThreadCount|isActiveThreadCount|hasActiveThreadCount)\s*\(/, "activeThreadCount")
+property_reader("QThreadPool", /::(stackSize|isStackSize|hasStackSize)\s*\(/, "stackSize")
+property_writer("QThreadPool", /::setStackSize\s*\(/, "stackSize")
+property_reader("QTimeLine", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTimeLine", /::setObjectName\s*\(/, "objectName")
+property_reader("QTimeLine", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_writer("QTimeLine", /::setDuration\s*\(/, "duration")
+property_reader("QTimeLine", /::(updateInterval|isUpdateInterval|hasUpdateInterval)\s*\(/, "updateInterval")
+property_writer("QTimeLine", /::setUpdateInterval\s*\(/, "updateInterval")
+property_reader("QTimeLine", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QTimeLine", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QTimeLine", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QTimeLine", /::setDirection\s*\(/, "direction")
+property_reader("QTimeLine", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QTimeLine", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QTimeLine", /::(curveShape|isCurveShape|hasCurveShape)\s*\(/, "curveShape")
+property_writer("QTimeLine", /::setCurveShape\s*\(/, "curveShape")
+property_reader("QTimeLine", /::(easingCurve|isEasingCurve|hasEasingCurve)\s*\(/, "easingCurve")
+property_writer("QTimeLine", /::setEasingCurve\s*\(/, "easingCurve")
+property_reader("QTimer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTimer", /::setObjectName\s*\(/, "objectName")
+property_reader("QTimer", /::(singleShot|isSingleShot|hasSingleShot)\s*\(/, "singleShot")
+property_writer("QTimer", /::setSingleShot\s*\(/, "singleShot")
+property_reader("QTimer", /::(interval|isInterval|hasInterval)\s*\(/, "interval")
+property_writer("QTimer", /::setInterval\s*\(/, "interval")
+property_reader("QTimer", /::(remainingTime|isRemainingTime|hasRemainingTime)\s*\(/, "remainingTime")
+property_reader("QTimer", /::(timerType|isTimerType|hasTimerType)\s*\(/, "timerType")
+property_writer("QTimer", /::setTimerType\s*\(/, "timerType")
+property_reader("QTimer", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QTranslator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTranslator", /::setObjectName\s*\(/, "objectName")
+property_reader("QVariantAnimation", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QVariantAnimation", /::setObjectName\s*\(/, "objectName")
+property_reader("QVariantAnimation", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QVariantAnimation", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QVariantAnimation", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QVariantAnimation", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QVariantAnimation", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QVariantAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
+property_reader("QVariantAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QVariantAnimation", /::setDirection\s*\(/, "direction")
+property_reader("QVariantAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QVariantAnimation", /::(startValue|isStartValue|hasStartValue)\s*\(/, "startValue")
+property_writer("QVariantAnimation", /::setStartValue\s*\(/, "startValue")
+property_reader("QVariantAnimation", /::(endValue|isEndValue|hasEndValue)\s*\(/, "endValue")
+property_writer("QVariantAnimation", /::setEndValue\s*\(/, "endValue")
+property_reader("QVariantAnimation", /::(currentValue|isCurrentValue|hasCurrentValue)\s*\(/, "currentValue")
+property_reader("QVariantAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_writer("QVariantAnimation", /::setDuration\s*\(/, "duration")
+property_reader("QVariantAnimation", /::(easingCurve|isEasingCurve|hasEasingCurve)\s*\(/, "easingCurve")
+property_writer("QVariantAnimation", /::setEasingCurve\s*\(/, "easingCurve")
+property_reader("QAbstractTextDocumentLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractTextDocumentLayout", /::setObjectName\s*\(/, "objectName")
+property_reader("QClipboard", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QClipboard", /::setObjectName\s*\(/, "objectName")
+property_reader("QDoubleValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QDoubleValidator", /::setObjectName\s*\(/, "objectName")
+property_reader("QDoubleValidator", /::(bottom|isBottom|hasBottom)\s*\(/, "bottom")
+property_writer("QDoubleValidator", /::setBottom\s*\(/, "bottom")
+property_reader("QDoubleValidator", /::(top|isTop|hasTop)\s*\(/, "top")
+property_writer("QDoubleValidator", /::setTop\s*\(/, "top")
+property_reader("QDoubleValidator", /::(decimals|isDecimals|hasDecimals)\s*\(/, "decimals")
+property_writer("QDoubleValidator", /::setDecimals\s*\(/, "decimals")
+property_reader("QDoubleValidator", /::(notation|isNotation|hasNotation)\s*\(/, "notation")
+property_writer("QDoubleValidator", /::setNotation\s*\(/, "notation")
+property_reader("QDrag", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QDrag", /::setObjectName\s*\(/, "objectName")
+property_reader("QGenericPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QGenericPlugin", /::setObjectName\s*\(/, "objectName")
+property_reader("QGuiApplication", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QGuiApplication", /::setObjectName\s*\(/, "objectName")
+property_reader("QGuiApplication", /::(applicationName|isApplicationName|hasApplicationName)\s*\(/, "applicationName")
+property_writer("QGuiApplication", /::setApplicationName\s*\(/, "applicationName")
+property_reader("QGuiApplication", /::(applicationVersion|isApplicationVersion|hasApplicationVersion)\s*\(/, "applicationVersion")
+property_writer("QGuiApplication", /::setApplicationVersion\s*\(/, "applicationVersion")
+property_reader("QGuiApplication", /::(organizationName|isOrganizationName|hasOrganizationName)\s*\(/, "organizationName")
+property_writer("QGuiApplication", /::setOrganizationName\s*\(/, "organizationName")
+property_reader("QGuiApplication", /::(organizationDomain|isOrganizationDomain|hasOrganizationDomain)\s*\(/, "organizationDomain")
+property_writer("QGuiApplication", /::setOrganizationDomain\s*\(/, "organizationDomain")
+property_reader("QGuiApplication", /::(quitLockEnabled|isQuitLockEnabled|hasQuitLockEnabled)\s*\(/, "quitLockEnabled")
+property_writer("QGuiApplication", /::setQuitLockEnabled\s*\(/, "quitLockEnabled")
+property_reader("QGuiApplication", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
+property_writer("QGuiApplication", /::setWindowIcon\s*\(/, "windowIcon")
+property_reader("QGuiApplication", /::(applicationDisplayName|isApplicationDisplayName|hasApplicationDisplayName)\s*\(/, "applicationDisplayName")
+property_writer("QGuiApplication", /::setApplicationDisplayName\s*\(/, "applicationDisplayName")
+property_reader("QGuiApplication", /::(desktopFileName|isDesktopFileName|hasDesktopFileName)\s*\(/, "desktopFileName")
+property_writer("QGuiApplication", /::setDesktopFileName\s*\(/, "desktopFileName")
+property_reader("QGuiApplication", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
+property_writer("QGuiApplication", /::setLayoutDirection\s*\(/, "layoutDirection")
+property_reader("QGuiApplication", /::(platformName|isPlatformName|hasPlatformName)\s*\(/, "platformName")
+property_reader("QGuiApplication", /::(quitOnLastWindowClosed|isQuitOnLastWindowClosed|hasQuitOnLastWindowClosed)\s*\(/, "quitOnLastWindowClosed")
+property_writer("QGuiApplication", /::setQuitOnLastWindowClosed\s*\(/, "quitOnLastWindowClosed")
+property_reader("QGuiApplication", /::(primaryScreen|isPrimaryScreen|hasPrimaryScreen)\s*\(/, "primaryScreen")
+property_reader("QIconEnginePlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QIconEnginePlugin", /::setObjectName\s*\(/, "objectName")
+property_reader("QImageIOPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QImageIOPlugin", /::setObjectName\s*\(/, "objectName")
+property_reader("QInputMethod", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QInputMethod", /::setObjectName\s*\(/, "objectName")
+property_reader("QInputMethod", /::(cursorRectangle|isCursorRectangle|hasCursorRectangle)\s*\(/, "cursorRectangle")
+property_reader("QInputMethod", /::(anchorRectangle|isAnchorRectangle|hasAnchorRectangle)\s*\(/, "anchorRectangle")
+property_reader("QInputMethod", /::(keyboardRectangle|isKeyboardRectangle|hasKeyboardRectangle)\s*\(/, "keyboardRectangle")
+property_reader("QInputMethod", /::(inputItemClipRectangle|isInputItemClipRectangle|hasInputItemClipRectangle)\s*\(/, "inputItemClipRectangle")
+property_reader("QInputMethod", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_reader("QInputMethod", /::(animating|isAnimating|hasAnimating)\s*\(/, "animating")
+property_reader("QInputMethod", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
+property_reader("QInputMethod", /::(inputDirection|isInputDirection|hasInputDirection)\s*\(/, "inputDirection")
+property_reader("QIntValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QIntValidator", /::setObjectName\s*\(/, "objectName")
+property_reader("QIntValidator", /::(bottom|isBottom|hasBottom)\s*\(/, "bottom")
+property_writer("QIntValidator", /::setBottom\s*\(/, "bottom")
+property_reader("QIntValidator", /::(top|isTop|hasTop)\s*\(/, "top")
+property_writer("QIntValidator", /::setTop\s*\(/, "top")
+property_reader("QMovie", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMovie", /::setObjectName\s*\(/, "objectName")
+property_reader("QMovie", /::(speed|isSpeed|hasSpeed)\s*\(/, "speed")
+property_writer("QMovie", /::setSpeed\s*\(/, "speed")
+property_reader("QMovie", /::(cacheMode|isCacheMode|hasCacheMode)\s*\(/, "cacheMode")
+property_writer("QMovie", /::setCacheMode\s*\(/, "cacheMode")
+property_reader("QOffscreenSurface", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QOffscreenSurface", /::setObjectName\s*\(/, "objectName")
+property_reader("QPaintDeviceWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPaintDeviceWindow", /::setObjectName\s*\(/, "objectName")
+property_reader("QPaintDeviceWindow", /::(title|isTitle|hasTitle)\s*\(/, "title")
+property_writer("QPaintDeviceWindow", /::setTitle\s*\(/, "title")
+property_reader("QPaintDeviceWindow", /::(modality|isModality|hasModality)\s*\(/, "modality")
+property_writer("QPaintDeviceWindow", /::setModality\s*\(/, "modality")
+property_reader("QPaintDeviceWindow", /::(flags|isFlags|hasFlags)\s*\(/, "flags")
+property_writer("QPaintDeviceWindow", /::setFlags\s*\(/, "flags")
+property_reader("QPaintDeviceWindow", /::(x|isX|hasX)\s*\(/, "x")
+property_writer("QPaintDeviceWindow", /::setX\s*\(/, "x")
+property_reader("QPaintDeviceWindow", /::(y|isY|hasY)\s*\(/, "y")
+property_writer("QPaintDeviceWindow", /::setY\s*\(/, "y")
+property_reader("QPaintDeviceWindow", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_writer("QPaintDeviceWindow", /::setWidth\s*\(/, "width")
+property_reader("QPaintDeviceWindow", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_writer("QPaintDeviceWindow", /::setHeight\s*\(/, "height")
+property_reader("QPaintDeviceWindow", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QPaintDeviceWindow", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QPaintDeviceWindow", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QPaintDeviceWindow", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QPaintDeviceWindow", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QPaintDeviceWindow", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QPaintDeviceWindow", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QPaintDeviceWindow", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QPaintDeviceWindow", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QPaintDeviceWindow", /::setVisible\s*\(/, "visible")
+property_reader("QPaintDeviceWindow", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QPaintDeviceWindow", /::(visibility|isVisibility|hasVisibility)\s*\(/, "visibility")
+property_writer("QPaintDeviceWindow", /::setVisibility\s*\(/, "visibility")
+property_reader("QPaintDeviceWindow", /::(contentOrientation|isContentOrientation|hasContentOrientation)\s*\(/, "contentOrientation")
+property_writer("QPaintDeviceWindow", /::setContentOrientation\s*\(/, "contentOrientation")
+property_reader("QPaintDeviceWindow", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
+property_writer("QPaintDeviceWindow", /::setOpacity\s*\(/, "opacity")
+property_reader("QPaintDeviceWindow", /::(transientParent|isTransientParent|hasTransientParent)\s*\(/, "transientParent")
+property_writer("QPaintDeviceWindow", /::setTransientParent\s*\(/, "transientParent")
+property_reader("QPdfWriter", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPdfWriter", /::setObjectName\s*\(/, "objectName")
+property_reader("QPictureFormatPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPictureFormatPlugin", /::setObjectName\s*\(/, "objectName")
+property_reader("QRasterWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QRasterWindow", /::setObjectName\s*\(/, "objectName")
+property_reader("QRasterWindow", /::(title|isTitle|hasTitle)\s*\(/, "title")
+property_writer("QRasterWindow", /::setTitle\s*\(/, "title")
+property_reader("QRasterWindow", /::(modality|isModality|hasModality)\s*\(/, "modality")
+property_writer("QRasterWindow", /::setModality\s*\(/, "modality")
+property_reader("QRasterWindow", /::(flags|isFlags|hasFlags)\s*\(/, "flags")
+property_writer("QRasterWindow", /::setFlags\s*\(/, "flags")
+property_reader("QRasterWindow", /::(x|isX|hasX)\s*\(/, "x")
+property_writer("QRasterWindow", /::setX\s*\(/, "x")
+property_reader("QRasterWindow", /::(y|isY|hasY)\s*\(/, "y")
+property_writer("QRasterWindow", /::setY\s*\(/, "y")
+property_reader("QRasterWindow", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_writer("QRasterWindow", /::setWidth\s*\(/, "width")
+property_reader("QRasterWindow", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_writer("QRasterWindow", /::setHeight\s*\(/, "height")
+property_reader("QRasterWindow", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QRasterWindow", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QRasterWindow", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QRasterWindow", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QRasterWindow", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QRasterWindow", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QRasterWindow", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QRasterWindow", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QRasterWindow", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QRasterWindow", /::setVisible\s*\(/, "visible")
+property_reader("QRasterWindow", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QRasterWindow", /::(visibility|isVisibility|hasVisibility)\s*\(/, "visibility")
+property_writer("QRasterWindow", /::setVisibility\s*\(/, "visibility")
+property_reader("QRasterWindow", /::(contentOrientation|isContentOrientation|hasContentOrientation)\s*\(/, "contentOrientation")
+property_writer("QRasterWindow", /::setContentOrientation\s*\(/, "contentOrientation")
+property_reader("QRasterWindow", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
+property_writer("QRasterWindow", /::setOpacity\s*\(/, "opacity")
+property_reader("QRasterWindow", /::(transientParent|isTransientParent|hasTransientParent)\s*\(/, "transientParent")
+property_writer("QRasterWindow", /::setTransientParent\s*\(/, "transientParent")
+property_reader("QRegExpValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QRegExpValidator", /::setObjectName\s*\(/, "objectName")
+property_reader("QRegExpValidator", /::(regExp|isRegExp|hasRegExp)\s*\(/, "regExp")
+property_writer("QRegExpValidator", /::setRegExp\s*\(/, "regExp")
+property_reader("QRegularExpressionValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QRegularExpressionValidator", /::setObjectName\s*\(/, "objectName")
+property_reader("QRegularExpressionValidator", /::(regularExpression|isRegularExpression|hasRegularExpression)\s*\(/, "regularExpression")
+property_writer("QRegularExpressionValidator", /::setRegularExpression\s*\(/, "regularExpression")
+property_reader("QScreen", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QScreen", /::setObjectName\s*\(/, "objectName")
+property_reader("QScreen", /::(name|isName|hasName)\s*\(/, "name")
+property_reader("QScreen", /::(manufacturer|isManufacturer|hasManufacturer)\s*\(/, "manufacturer")
+property_reader("QScreen", /::(model|isModel|hasModel)\s*\(/, "model")
+property_reader("QScreen", /::(serialNumber|isSerialNumber|hasSerialNumber)\s*\(/, "serialNumber")
+property_reader("QScreen", /::(depth|isDepth|hasDepth)\s*\(/, "depth")
+property_reader("QScreen", /::(size|isSize|hasSize)\s*\(/, "size")
+property_reader("QScreen", /::(availableSize|isAvailableSize|hasAvailableSize)\s*\(/, "availableSize")
+property_reader("QScreen", /::(virtualSize|isVirtualSize|hasVirtualSize)\s*\(/, "virtualSize")
+property_reader("QScreen", /::(availableVirtualSize|isAvailableVirtualSize|hasAvailableVirtualSize)\s*\(/, "availableVirtualSize")
+property_reader("QScreen", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
+property_reader("QScreen", /::(availableGeometry|isAvailableGeometry|hasAvailableGeometry)\s*\(/, "availableGeometry")
+property_reader("QScreen", /::(virtualGeometry|isVirtualGeometry|hasVirtualGeometry)\s*\(/, "virtualGeometry")
+property_reader("QScreen", /::(availableVirtualGeometry|isAvailableVirtualGeometry|hasAvailableVirtualGeometry)\s*\(/, "availableVirtualGeometry")
+property_reader("QScreen", /::(physicalSize|isPhysicalSize|hasPhysicalSize)\s*\(/, "physicalSize")
+property_reader("QScreen", /::(physicalDotsPerInchX|isPhysicalDotsPerInchX|hasPhysicalDotsPerInchX)\s*\(/, "physicalDotsPerInchX")
+property_reader("QScreen", /::(physicalDotsPerInchY|isPhysicalDotsPerInchY|hasPhysicalDotsPerInchY)\s*\(/, "physicalDotsPerInchY")
+property_reader("QScreen", /::(physicalDotsPerInch|isPhysicalDotsPerInch|hasPhysicalDotsPerInch)\s*\(/, "physicalDotsPerInch")
+property_reader("QScreen", /::(logicalDotsPerInchX|isLogicalDotsPerInchX|hasLogicalDotsPerInchX)\s*\(/, "logicalDotsPerInchX")
+property_reader("QScreen", /::(logicalDotsPerInchY|isLogicalDotsPerInchY|hasLogicalDotsPerInchY)\s*\(/, "logicalDotsPerInchY")
+property_reader("QScreen", /::(logicalDotsPerInch|isLogicalDotsPerInch|hasLogicalDotsPerInch)\s*\(/, "logicalDotsPerInch")
+property_reader("QScreen", /::(devicePixelRatio|isDevicePixelRatio|hasDevicePixelRatio)\s*\(/, "devicePixelRatio")
+property_reader("QScreen", /::(primaryOrientation|isPrimaryOrientation|hasPrimaryOrientation)\s*\(/, "primaryOrientation")
+property_reader("QScreen", /::(orientation|isOrientation|hasOrientation)\s*\(/, "orientation")
+property_reader("QScreen", /::(nativeOrientation|isNativeOrientation|hasNativeOrientation)\s*\(/, "nativeOrientation")
+property_reader("QScreen", /::(refreshRate|isRefreshRate|hasRefreshRate)\s*\(/, "refreshRate")
+property_reader("QSessionManager", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSessionManager", /::setObjectName\s*\(/, "objectName")
+property_reader("QStandardItemModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QStandardItemModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QStandardItemModel", /::(sortRole|isSortRole|hasSortRole)\s*\(/, "sortRole")
+property_writer("QStandardItemModel", /::setSortRole\s*\(/, "sortRole")
+property_reader("QStyleHints", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QStyleHints", /::setObjectName\s*\(/, "objectName")
+property_reader("QStyleHints", /::(cursorFlashTime|isCursorFlashTime|hasCursorFlashTime)\s*\(/, "cursorFlashTime")
+property_reader("QStyleHints", /::(fontSmoothingGamma|isFontSmoothingGamma|hasFontSmoothingGamma)\s*\(/, "fontSmoothingGamma")
+property_reader("QStyleHints", /::(keyboardAutoRepeatRate|isKeyboardAutoRepeatRate|hasKeyboardAutoRepeatRate)\s*\(/, "keyboardAutoRepeatRate")
+property_reader("QStyleHints", /::(keyboardInputInterval|isKeyboardInputInterval|hasKeyboardInputInterval)\s*\(/, "keyboardInputInterval")
+property_reader("QStyleHints", /::(mouseDoubleClickInterval|isMouseDoubleClickInterval|hasMouseDoubleClickInterval)\s*\(/, "mouseDoubleClickInterval")
+property_reader("QStyleHints", /::(mousePressAndHoldInterval|isMousePressAndHoldInterval|hasMousePressAndHoldInterval)\s*\(/, "mousePressAndHoldInterval")
+property_reader("QStyleHints", /::(passwordMaskCharacter|isPasswordMaskCharacter|hasPasswordMaskCharacter)\s*\(/, "passwordMaskCharacter")
+property_reader("QStyleHints", /::(passwordMaskDelay|isPasswordMaskDelay|hasPasswordMaskDelay)\s*\(/, "passwordMaskDelay")
+property_reader("QStyleHints", /::(setFocusOnTouchRelease|isSetFocusOnTouchRelease|hasSetFocusOnTouchRelease)\s*\(/, "setFocusOnTouchRelease")
+property_reader("QStyleHints", /::(showIsFullScreen|isShowIsFullScreen|hasShowIsFullScreen)\s*\(/, "showIsFullScreen")
+property_reader("QStyleHints", /::(showIsMaximized|isShowIsMaximized|hasShowIsMaximized)\s*\(/, "showIsMaximized")
+property_reader("QStyleHints", /::(showShortcutsInContextMenus|isShowShortcutsInContextMenus|hasShowShortcutsInContextMenus)\s*\(/, "showShortcutsInContextMenus")
+property_writer("QStyleHints", /::setShowShortcutsInContextMenus\s*\(/, "showShortcutsInContextMenus")
+property_reader("QStyleHints", /::(startDragDistance|isStartDragDistance|hasStartDragDistance)\s*\(/, "startDragDistance")
+property_reader("QStyleHints", /::(startDragTime|isStartDragTime|hasStartDragTime)\s*\(/, "startDragTime")
+property_reader("QStyleHints", /::(startDragVelocity|isStartDragVelocity|hasStartDragVelocity)\s*\(/, "startDragVelocity")
+property_reader("QStyleHints", /::(useRtlExtensions|isUseRtlExtensions|hasUseRtlExtensions)\s*\(/, "useRtlExtensions")
+property_reader("QStyleHints", /::(tabFocusBehavior|isTabFocusBehavior|hasTabFocusBehavior)\s*\(/, "tabFocusBehavior")
+property_reader("QStyleHints", /::(singleClickActivation|isSingleClickActivation|hasSingleClickActivation)\s*\(/, "singleClickActivation")
+property_reader("QStyleHints", /::(useHoverEffects|isUseHoverEffects|hasUseHoverEffects)\s*\(/, "useHoverEffects")
+property_writer("QStyleHints", /::setUseHoverEffects\s*\(/, "useHoverEffects")
+property_reader("QStyleHints", /::(wheelScrollLines|isWheelScrollLines|hasWheelScrollLines)\s*\(/, "wheelScrollLines")
+property_reader("QStyleHints", /::(mouseQuickSelectionThreshold|isMouseQuickSelectionThreshold|hasMouseQuickSelectionThreshold)\s*\(/, "mouseQuickSelectionThreshold")
+property_writer("QStyleHints", /::setMouseQuickSelectionThreshold\s*\(/, "mouseQuickSelectionThreshold")
+property_reader("QStyleHints", /::(mouseDoubleClickDistance|isMouseDoubleClickDistance|hasMouseDoubleClickDistance)\s*\(/, "mouseDoubleClickDistance")
+property_reader("QStyleHints", /::(touchDoubleTapDistance|isTouchDoubleTapDistance|hasTouchDoubleTapDistance)\s*\(/, "touchDoubleTapDistance")
+property_reader("QSyntaxHighlighter", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSyntaxHighlighter", /::setObjectName\s*\(/, "objectName")
+property_reader("QTextBlockGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTextBlockGroup", /::setObjectName\s*\(/, "objectName")
+property_reader("QTextDocument", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTextDocument", /::setObjectName\s*\(/, "objectName")
+property_reader("QTextDocument", /::(undoRedoEnabled|isUndoRedoEnabled|hasUndoRedoEnabled)\s*\(/, "undoRedoEnabled")
+property_writer("QTextDocument", /::setUndoRedoEnabled\s*\(/, "undoRedoEnabled")
+property_reader("QTextDocument", /::(modified|isModified|hasModified)\s*\(/, "modified")
+property_writer("QTextDocument", /::setModified\s*\(/, "modified")
+property_reader("QTextDocument", /::(pageSize|isPageSize|hasPageSize)\s*\(/, "pageSize")
+property_writer("QTextDocument", /::setPageSize\s*\(/, "pageSize")
+property_reader("QTextDocument", /::(defaultFont|isDefaultFont|hasDefaultFont)\s*\(/, "defaultFont")
+property_writer("QTextDocument", /::setDefaultFont\s*\(/, "defaultFont")
+property_reader("QTextDocument", /::(useDesignMetrics|isUseDesignMetrics|hasUseDesignMetrics)\s*\(/, "useDesignMetrics")
+property_writer("QTextDocument", /::setUseDesignMetrics\s*\(/, "useDesignMetrics")
+property_reader("QTextDocument", /::(size|isSize|hasSize)\s*\(/, "size")
+property_reader("QTextDocument", /::(textWidth|isTextWidth|hasTextWidth)\s*\(/, "textWidth")
+property_writer("QTextDocument", /::setTextWidth\s*\(/, "textWidth")
+property_reader("QTextDocument", /::(blockCount|isBlockCount|hasBlockCount)\s*\(/, "blockCount")
+property_reader("QTextDocument", /::(indentWidth|isIndentWidth|hasIndentWidth)\s*\(/, "indentWidth")
+property_writer("QTextDocument", /::setIndentWidth\s*\(/, "indentWidth")
+property_reader("QTextDocument", /::(defaultStyleSheet|isDefaultStyleSheet|hasDefaultStyleSheet)\s*\(/, "defaultStyleSheet")
+property_writer("QTextDocument", /::setDefaultStyleSheet\s*\(/, "defaultStyleSheet")
+property_reader("QTextDocument", /::(maximumBlockCount|isMaximumBlockCount|hasMaximumBlockCount)\s*\(/, "maximumBlockCount")
+property_writer("QTextDocument", /::setMaximumBlockCount\s*\(/, "maximumBlockCount")
+property_reader("QTextDocument", /::(documentMargin|isDocumentMargin|hasDocumentMargin)\s*\(/, "documentMargin")
+property_writer("QTextDocument", /::setDocumentMargin\s*\(/, "documentMargin")
+property_reader("QTextDocument", /::(baseUrl|isBaseUrl|hasBaseUrl)\s*\(/, "baseUrl")
+property_writer("QTextDocument", /::setBaseUrl\s*\(/, "baseUrl")
+property_reader("QTextFrame", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTextFrame", /::setObjectName\s*\(/, "objectName")
+property_reader("QTextList", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTextList", /::setObjectName\s*\(/, "objectName")
+property_reader("QTextObject", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTextObject", /::setObjectName\s*\(/, "objectName")
+property_reader("QTextTable", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTextTable", /::setObjectName\s*\(/, "objectName")
+property_reader("QValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QValidator", /::setObjectName\s*\(/, "objectName")
+property_reader("QWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QWindow", /::setObjectName\s*\(/, "objectName")
+property_reader("QWindow", /::(title|isTitle|hasTitle)\s*\(/, "title")
+property_writer("QWindow", /::setTitle\s*\(/, "title")
+property_reader("QWindow", /::(modality|isModality|hasModality)\s*\(/, "modality")
+property_writer("QWindow", /::setModality\s*\(/, "modality")
+property_reader("QWindow", /::(flags|isFlags|hasFlags)\s*\(/, "flags")
+property_writer("QWindow", /::setFlags\s*\(/, "flags")
+property_reader("QWindow", /::(x|isX|hasX)\s*\(/, "x")
+property_writer("QWindow", /::setX\s*\(/, "x")
+property_reader("QWindow", /::(y|isY|hasY)\s*\(/, "y")
+property_writer("QWindow", /::setY\s*\(/, "y")
+property_reader("QWindow", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_writer("QWindow", /::setWidth\s*\(/, "width")
+property_reader("QWindow", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_writer("QWindow", /::setHeight\s*\(/, "height")
+property_reader("QWindow", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QWindow", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QWindow", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QWindow", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QWindow", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QWindow", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QWindow", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QWindow", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QWindow", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QWindow", /::setVisible\s*\(/, "visible")
+property_reader("QWindow", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QWindow", /::(visibility|isVisibility|hasVisibility)\s*\(/, "visibility")
+property_writer("QWindow", /::setVisibility\s*\(/, "visibility")
+property_reader("QWindow", /::(contentOrientation|isContentOrientation|hasContentOrientation)\s*\(/, "contentOrientation")
+property_writer("QWindow", /::setContentOrientation\s*\(/, "contentOrientation")
+property_reader("QWindow", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
+property_writer("QWindow", /::setOpacity\s*\(/, "opacity")
+property_reader("QWindow", /::(transientParent|isTransientParent|hasTransientParent)\s*\(/, "transientParent")
+property_writer("QWindow", /::setTransientParent\s*\(/, "transientParent")
property_reader("QAbstractButton", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QAbstractButton", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractButton", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -65,6 +658,8 @@ property_reader("QAbstractButton", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor
property_writer("QAbstractButton", /::setCursor\s*\(/, "cursor")
property_reader("QAbstractButton", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QAbstractButton", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QAbstractButton", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QAbstractButton", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QAbstractButton", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QAbstractButton", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QAbstractButton", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -138,12 +733,8 @@ property_reader("QAbstractButton", /::(autoRepeatInterval|isAutoRepeatInterval|h
property_writer("QAbstractButton", /::setAutoRepeatInterval\s*\(/, "autoRepeatInterval")
property_reader("QAbstractButton", /::(down|isDown|hasDown)\s*\(/, "down")
property_writer("QAbstractButton", /::setDown\s*\(/, "down")
-property_reader("QAbstractEventDispatcher", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractEventDispatcher", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractItemDelegate", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QAbstractItemDelegate", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractItemModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractItemModel", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractItemView", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QAbstractItemView", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractItemView", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -193,6 +784,8 @@ property_reader("QAbstractItemView", /::(cursor|isCursor|hasCursor)\s*\(/, "curs
property_writer("QAbstractItemView", /::setCursor\s*\(/, "cursor")
property_reader("QAbstractItemView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QAbstractItemView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QAbstractItemView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QAbstractItemView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QAbstractItemView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QAbstractItemView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QAbstractItemView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -293,120 +886,6 @@ property_reader("QAbstractItemView", /::(verticalScrollMode|isVerticalScrollMode
property_writer("QAbstractItemView", /::setVerticalScrollMode\s*\(/, "verticalScrollMode")
property_reader("QAbstractItemView", /::(horizontalScrollMode|isHorizontalScrollMode|hasHorizontalScrollMode)\s*\(/, "horizontalScrollMode")
property_writer("QAbstractItemView", /::setHorizontalScrollMode\s*\(/, "horizontalScrollMode")
-property_reader("QAbstractListModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractListModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractMessageHandler", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractMessageHandler", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractNetworkCache", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractNetworkCache", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractPrintDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractPrintDialog", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_reader("QAbstractPrintDialog", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
-property_writer("QAbstractPrintDialog", /::setWindowModality\s*\(/, "windowModality")
-property_reader("QAbstractPrintDialog", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QAbstractPrintDialog", /::setEnabled\s*\(/, "enabled")
-property_reader("QAbstractPrintDialog", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_writer("QAbstractPrintDialog", /::setGeometry\s*\(/, "geometry")
-property_reader("QAbstractPrintDialog", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
-property_reader("QAbstractPrintDialog", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
-property_reader("QAbstractPrintDialog", /::(x|isX|hasX)\s*\(/, "x")
-property_reader("QAbstractPrintDialog", /::(y|isY|hasY)\s*\(/, "y")
-property_reader("QAbstractPrintDialog", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QAbstractPrintDialog", /::setPos\s*\(/, "pos")
-property_reader("QAbstractPrintDialog", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
-property_reader("QAbstractPrintDialog", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QAbstractPrintDialog", /::setSize\s*\(/, "size")
-property_reader("QAbstractPrintDialog", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_reader("QAbstractPrintDialog", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_reader("QAbstractPrintDialog", /::(rect|isRect|hasRect)\s*\(/, "rect")
-property_reader("QAbstractPrintDialog", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
-property_reader("QAbstractPrintDialog", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
-property_reader("QAbstractPrintDialog", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
-property_writer("QAbstractPrintDialog", /::setSizePolicy\s*\(/, "sizePolicy")
-property_reader("QAbstractPrintDialog", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
-property_writer("QAbstractPrintDialog", /::setMinimumSize\s*\(/, "minimumSize")
-property_reader("QAbstractPrintDialog", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
-property_writer("QAbstractPrintDialog", /::setMaximumSize\s*\(/, "maximumSize")
-property_reader("QAbstractPrintDialog", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QAbstractPrintDialog", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QAbstractPrintDialog", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QAbstractPrintDialog", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QAbstractPrintDialog", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QAbstractPrintDialog", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QAbstractPrintDialog", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QAbstractPrintDialog", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QAbstractPrintDialog", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
-property_writer("QAbstractPrintDialog", /::setSizeIncrement\s*\(/, "sizeIncrement")
-property_reader("QAbstractPrintDialog", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
-property_writer("QAbstractPrintDialog", /::setBaseSize\s*\(/, "baseSize")
-property_reader("QAbstractPrintDialog", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
-property_writer("QAbstractPrintDialog", /::setPalette\s*\(/, "palette")
-property_reader("QAbstractPrintDialog", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QAbstractPrintDialog", /::setFont\s*\(/, "font")
-property_reader("QAbstractPrintDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
-property_writer("QAbstractPrintDialog", /::setCursor\s*\(/, "cursor")
-property_reader("QAbstractPrintDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
-property_writer("QAbstractPrintDialog", /::setMouseTracking\s*\(/, "mouseTracking")
-property_reader("QAbstractPrintDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
-property_reader("QAbstractPrintDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
-property_writer("QAbstractPrintDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
-property_reader("QAbstractPrintDialog", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
-property_reader("QAbstractPrintDialog", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
-property_writer("QAbstractPrintDialog", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
-property_reader("QAbstractPrintDialog", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
-property_writer("QAbstractPrintDialog", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
-property_reader("QAbstractPrintDialog", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QAbstractPrintDialog", /::setVisible\s*\(/, "visible")
-property_reader("QAbstractPrintDialog", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
-property_reader("QAbstractPrintDialog", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
-property_reader("QAbstractPrintDialog", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_reader("QAbstractPrintDialog", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
-property_reader("QAbstractPrintDialog", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
-property_reader("QAbstractPrintDialog", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
-property_writer("QAbstractPrintDialog", /::setAcceptDrops\s*\(/, "acceptDrops")
-property_reader("QAbstractPrintDialog", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
-property_writer("QAbstractPrintDialog", /::setWindowTitle\s*\(/, "windowTitle")
-property_reader("QAbstractPrintDialog", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QAbstractPrintDialog", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QAbstractPrintDialog", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
-property_writer("QAbstractPrintDialog", /::setWindowIconText\s*\(/, "windowIconText")
-property_reader("QAbstractPrintDialog", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
-property_writer("QAbstractPrintDialog", /::setWindowOpacity\s*\(/, "windowOpacity")
-property_reader("QAbstractPrintDialog", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
-property_writer("QAbstractPrintDialog", /::setWindowModified\s*\(/, "windowModified")
-property_reader("QAbstractPrintDialog", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QAbstractPrintDialog", /::setToolTip\s*\(/, "toolTip")
-property_reader("QAbstractPrintDialog", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
-property_writer("QAbstractPrintDialog", /::setToolTipDuration\s*\(/, "toolTipDuration")
-property_reader("QAbstractPrintDialog", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QAbstractPrintDialog", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QAbstractPrintDialog", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QAbstractPrintDialog", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QAbstractPrintDialog", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
-property_writer("QAbstractPrintDialog", /::setAccessibleName\s*\(/, "accessibleName")
-property_reader("QAbstractPrintDialog", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
-property_writer("QAbstractPrintDialog", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-property_reader("QAbstractPrintDialog", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QAbstractPrintDialog", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QAbstractPrintDialog", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
-property_writer("QAbstractPrintDialog", /::setAutoFillBackground\s*\(/, "autoFillBackground")
-property_reader("QAbstractPrintDialog", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
-property_writer("QAbstractPrintDialog", /::setStyleSheet\s*\(/, "styleSheet")
-property_reader("QAbstractPrintDialog", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_writer("QAbstractPrintDialog", /::setLocale\s*\(/, "locale")
-property_reader("QAbstractPrintDialog", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
-property_writer("QAbstractPrintDialog", /::setWindowFilePath\s*\(/, "windowFilePath")
-property_reader("QAbstractPrintDialog", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
-property_writer("QAbstractPrintDialog", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QAbstractPrintDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
-property_writer("QAbstractPrintDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
-property_reader("QAbstractPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_writer("QAbstractPrintDialog", /::setModal\s*\(/, "modal")
-property_reader("QAbstractProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractProxyModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractProxyModel", /::(sourceModel|isSourceModel|hasSourceModel)\s*\(/, "sourceModel")
-property_writer("QAbstractProxyModel", /::setSourceModel\s*\(/, "sourceModel")
property_reader("QAbstractScrollArea", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QAbstractScrollArea", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractScrollArea", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -456,6 +935,8 @@ property_reader("QAbstractScrollArea", /::(cursor|isCursor|hasCursor)\s*\(/, "cu
property_writer("QAbstractScrollArea", /::setCursor\s*\(/, "cursor")
property_reader("QAbstractScrollArea", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QAbstractScrollArea", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QAbstractScrollArea", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QAbstractScrollArea", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QAbstractScrollArea", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QAbstractScrollArea", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QAbstractScrollArea", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -573,6 +1054,8 @@ property_reader("QAbstractSlider", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor
property_writer("QAbstractSlider", /::setCursor\s*\(/, "cursor")
property_reader("QAbstractSlider", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QAbstractSlider", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QAbstractSlider", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QAbstractSlider", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QAbstractSlider", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QAbstractSlider", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QAbstractSlider", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -646,8 +1129,6 @@ property_reader("QAbstractSlider", /::(invertedControls|isInvertedControls|hasIn
property_writer("QAbstractSlider", /::setInvertedControls\s*\(/, "invertedControls")
property_reader("QAbstractSlider", /::(sliderDown|isSliderDown|hasSliderDown)\s*\(/, "sliderDown")
property_writer("QAbstractSlider", /::setSliderDown\s*\(/, "sliderDown")
-property_reader("QAbstractSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractSocket", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractSpinBox", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QAbstractSpinBox", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractSpinBox", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -697,6 +1178,8 @@ property_reader("QAbstractSpinBox", /::(cursor|isCursor|hasCursor)\s*\(/, "curso
property_writer("QAbstractSpinBox", /::setCursor\s*\(/, "cursor")
property_reader("QAbstractSpinBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QAbstractSpinBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QAbstractSpinBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QAbstractSpinBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QAbstractSpinBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QAbstractSpinBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QAbstractSpinBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -770,31 +1253,6 @@ property_reader("QAbstractSpinBox", /::(keyboardTracking|isKeyboardTracking|hasK
property_writer("QAbstractSpinBox", /::setKeyboardTracking\s*\(/, "keyboardTracking")
property_reader("QAbstractSpinBox", /::(showGroupSeparator|isShowGroupSeparator|hasShowGroupSeparator)\s*\(/, "showGroupSeparator")
property_writer("QAbstractSpinBox", /::setShowGroupSeparator\s*\(/, "showGroupSeparator")
-property_reader("QAbstractState", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractState", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractState", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QAbstractTableModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractTableModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractTextDocumentLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractTextDocumentLayout", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractTransition", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractTransition", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractTransition", /::(sourceState|isSourceState|hasSourceState)\s*\(/, "sourceState")
-property_reader("QAbstractTransition", /::(targetState|isTargetState|hasTargetState)\s*\(/, "targetState")
-property_writer("QAbstractTransition", /::setTargetState\s*\(/, "targetState")
-property_reader("QAbstractTransition", /::(targetStates|isTargetStates|hasTargetStates)\s*\(/, "targetStates")
-property_writer("QAbstractTransition", /::setTargetStates\s*\(/, "targetStates")
-property_reader("QAbstractTransition", /::(transitionType|isTransitionType|hasTransitionType)\s*\(/, "transitionType")
-property_writer("QAbstractTransition", /::setTransitionType\s*\(/, "transitionType")
-property_reader("QAbstractUriResolver", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractUriResolver", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractVideoFilter", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractVideoFilter", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractVideoFilter", /::(active|isActive|hasActive)\s*\(/, "active")
-property_writer("QAbstractVideoFilter", /::setActive\s*\(/, "active")
-property_reader("QAbstractVideoSurface", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractVideoSurface", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractVideoSurface", /::(nativeResolution|isNativeResolution|hasNativeResolution)\s*\(/, "nativeResolution")
property_reader("QAction", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QAction", /::setObjectName\s*\(/, "objectName")
property_reader("QAction", /::(checkable|isCheckable|hasCheckable)\s*\(/, "checkable")
@@ -829,29 +1287,18 @@ property_reader("QAction", /::(menuRole|isMenuRole|hasMenuRole)\s*\(/, "menuRole
property_writer("QAction", /::setMenuRole\s*\(/, "menuRole")
property_reader("QAction", /::(iconVisibleInMenu|isIconVisibleInMenu|hasIconVisibleInMenu)\s*\(/, "iconVisibleInMenu")
property_writer("QAction", /::setIconVisibleInMenu\s*\(/, "iconVisibleInMenu")
+property_reader("QAction", /::(shortcutVisibleInContextMenu|isShortcutVisibleInContextMenu|hasShortcutVisibleInContextMenu)\s*\(/, "shortcutVisibleInContextMenu")
+property_writer("QAction", /::setShortcutVisibleInContextMenu\s*\(/, "shortcutVisibleInContextMenu")
property_reader("QAction", /::(priority|isPriority|hasPriority)\s*\(/, "priority")
property_writer("QAction", /::setPriority\s*\(/, "priority")
property_reader("QActionGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QActionGroup", /::setObjectName\s*\(/, "objectName")
-property_reader("QActionGroup", /::(exclusive|isExclusive|hasExclusive)\s*\(/, "exclusive")
-property_writer("QActionGroup", /::setExclusive\s*\(/, "exclusive")
+property_reader("QActionGroup", /::(exclusionPolicy|isExclusionPolicy|hasExclusionPolicy)\s*\(/, "exclusionPolicy")
+property_writer("QActionGroup", /::setExclusionPolicy\s*\(/, "exclusionPolicy")
property_reader("QActionGroup", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
property_writer("QActionGroup", /::setEnabled\s*\(/, "enabled")
property_reader("QActionGroup", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
property_writer("QActionGroup", /::setVisible\s*\(/, "visible")
-property_reader("QAnimationDriver", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAnimationDriver", /::setObjectName\s*\(/, "objectName")
-property_reader("QAnimationGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAnimationGroup", /::setObjectName\s*\(/, "objectName")
-property_reader("QAnimationGroup", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QAnimationGroup", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QAnimationGroup", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QAnimationGroup", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QAnimationGroup", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QAnimationGroup", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
-property_reader("QAnimationGroup", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QAnimationGroup", /::setDirection\s*\(/, "direction")
-property_reader("QAnimationGroup", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
property_reader("QApplication", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QApplication", /::setObjectName\s*\(/, "objectName")
property_reader("QApplication", /::(applicationName|isApplicationName|hasApplicationName)\s*\(/, "applicationName")
@@ -868,11 +1315,14 @@ property_reader("QApplication", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/
property_writer("QApplication", /::setWindowIcon\s*\(/, "windowIcon")
property_reader("QApplication", /::(applicationDisplayName|isApplicationDisplayName|hasApplicationDisplayName)\s*\(/, "applicationDisplayName")
property_writer("QApplication", /::setApplicationDisplayName\s*\(/, "applicationDisplayName")
+property_reader("QApplication", /::(desktopFileName|isDesktopFileName|hasDesktopFileName)\s*\(/, "desktopFileName")
+property_writer("QApplication", /::setDesktopFileName\s*\(/, "desktopFileName")
property_reader("QApplication", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
property_writer("QApplication", /::setLayoutDirection\s*\(/, "layoutDirection")
property_reader("QApplication", /::(platformName|isPlatformName|hasPlatformName)\s*\(/, "platformName")
property_reader("QApplication", /::(quitOnLastWindowClosed|isQuitOnLastWindowClosed|hasQuitOnLastWindowClosed)\s*\(/, "quitOnLastWindowClosed")
property_writer("QApplication", /::setQuitOnLastWindowClosed\s*\(/, "quitOnLastWindowClosed")
+property_reader("QApplication", /::(primaryScreen|isPrimaryScreen|hasPrimaryScreen)\s*\(/, "primaryScreen")
property_reader("QApplication", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
property_writer("QApplication", /::setWindowIcon\s*\(/, "windowIcon")
property_reader("QApplication", /::(cursorFlashTime|isCursorFlashTime|hasCursorFlashTime)\s*\(/, "cursorFlashTime")
@@ -893,47 +1343,6 @@ property_reader("QApplication", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/
property_writer("QApplication", /::setStyleSheet\s*\(/, "styleSheet")
property_reader("QApplication", /::(autoSipEnabled|isAutoSipEnabled|hasAutoSipEnabled)\s*\(/, "autoSipEnabled")
property_writer("QApplication", /::setAutoSipEnabled\s*\(/, "autoSipEnabled")
-property_reader("QAudioDecoder", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioDecoder", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioDecoder", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
-property_writer("QAudioDecoder", /::setNotifyInterval\s*\(/, "notifyInterval")
-property_reader("QAudioDecoder", /::(sourceFilename|isSourceFilename|hasSourceFilename)\s*\(/, "sourceFilename")
-property_writer("QAudioDecoder", /::setSourceFilename\s*\(/, "sourceFilename")
-property_reader("QAudioDecoder", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QAudioDecoder", /::(error|isError|hasError)\s*\(/, "error")
-property_reader("QAudioDecoder", /::(bufferAvailable|isBufferAvailable|hasBufferAvailable)\s*\(/, "bufferAvailable")
-property_reader("QAudioDecoderControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioDecoderControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioEncoderSettingsControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioEncoderSettingsControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioInput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioInput", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioInputSelectorControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioInputSelectorControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioOutput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioOutput", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioOutputSelectorControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioOutputSelectorControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioProbe", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioProbe", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioRecorder", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioRecorder", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioRecorder", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QAudioRecorder", /::(status|isStatus|hasStatus)\s*\(/, "status")
-property_reader("QAudioRecorder", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QAudioRecorder", /::(outputLocation|isOutputLocation|hasOutputLocation)\s*\(/, "outputLocation")
-property_writer("QAudioRecorder", /::setOutputLocation\s*\(/, "outputLocation")
-property_reader("QAudioRecorder", /::(actualLocation|isActualLocation|hasActualLocation)\s*\(/, "actualLocation")
-property_reader("QAudioRecorder", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
-property_writer("QAudioRecorder", /::setMuted\s*\(/, "muted")
-property_reader("QAudioRecorder", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
-property_writer("QAudioRecorder", /::setVolume\s*\(/, "volume")
-property_reader("QAudioRecorder", /::(metaDataAvailable|isMetaDataAvailable|hasMetaDataAvailable)\s*\(/, "metaDataAvailable")
-property_reader("QAudioRecorder", /::(metaDataWritable|isMetaDataWritable|hasMetaDataWritable)\s*\(/, "metaDataWritable")
-property_reader("QAudioRecorder", /::(audioInput|isAudioInput|hasAudioInput)\s*\(/, "audioInput")
-property_writer("QAudioRecorder", /::setAudioInput\s*\(/, "audioInput")
-property_reader("QAudioSystemPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioSystemPlugin", /::setObjectName\s*\(/, "objectName")
property_reader("QBoxLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QBoxLayout", /::setObjectName\s*\(/, "objectName")
property_reader("QBoxLayout", /::(margin|isMargin|hasMargin)\s*\(/, "margin")
@@ -942,8 +1351,6 @@ property_reader("QBoxLayout", /::(spacing|isSpacing|hasSpacing)\s*\(/, "spacing"
property_writer("QBoxLayout", /::setSpacing\s*\(/, "spacing")
property_reader("QBoxLayout", /::(sizeConstraint|isSizeConstraint|hasSizeConstraint)\s*\(/, "sizeConstraint")
property_writer("QBoxLayout", /::setSizeConstraint\s*\(/, "sizeConstraint")
-property_reader("QBuffer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QBuffer", /::setObjectName\s*\(/, "objectName")
property_reader("QButtonGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QButtonGroup", /::setObjectName\s*\(/, "objectName")
property_reader("QButtonGroup", /::(exclusive|isExclusive|hasExclusive)\s*\(/, "exclusive")
@@ -997,6 +1404,8 @@ property_reader("QCalendarWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor
property_writer("QCalendarWidget", /::setCursor\s*\(/, "cursor")
property_reader("QCalendarWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QCalendarWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QCalendarWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QCalendarWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QCalendarWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QCalendarWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QCalendarWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -1070,73 +1479,6 @@ property_reader("QCalendarWidget", /::(dateEditEnabled|isDateEditEnabled|hasDate
property_writer("QCalendarWidget", /::setDateEditEnabled\s*\(/, "dateEditEnabled")
property_reader("QCalendarWidget", /::(dateEditAcceptDelay|isDateEditAcceptDelay|hasDateEditAcceptDelay)\s*\(/, "dateEditAcceptDelay")
property_writer("QCalendarWidget", /::setDateEditAcceptDelay\s*\(/, "dateEditAcceptDelay")
-property_reader("QCamera", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCamera", /::setObjectName\s*\(/, "objectName")
-property_reader("QCamera", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
-property_writer("QCamera", /::setNotifyInterval\s*\(/, "notifyInterval")
-property_reader("QCamera", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QCamera", /::(status|isStatus|hasStatus)\s*\(/, "status")
-property_reader("QCamera", /::(captureMode|isCaptureMode|hasCaptureMode)\s*\(/, "captureMode")
-property_writer("QCamera", /::setCaptureMode\s*\(/, "captureMode")
-property_reader("QCamera", /::(lockStatus|isLockStatus|hasLockStatus)\s*\(/, "lockStatus")
-property_reader("QCameraCaptureBufferFormatControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraCaptureBufferFormatControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraCaptureDestinationControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraCaptureDestinationControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraExposure", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraExposure", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraExposure", /::(aperture|isAperture|hasAperture)\s*\(/, "aperture")
-property_reader("QCameraExposure", /::(shutterSpeed|isShutterSpeed|hasShutterSpeed)\s*\(/, "shutterSpeed")
-property_reader("QCameraExposure", /::(isoSensitivity|isIsoSensitivity|hasIsoSensitivity)\s*\(/, "isoSensitivity")
-property_reader("QCameraExposure", /::(exposureCompensation|isExposureCompensation|hasExposureCompensation)\s*\(/, "exposureCompensation")
-property_writer("QCameraExposure", /::setExposureCompensation\s*\(/, "exposureCompensation")
-property_reader("QCameraExposure", /::(flashReady|isFlashReady|hasFlashReady)\s*\(/, "flashReady")
-property_reader("QCameraExposure", /::(flashMode|isFlashMode|hasFlashMode)\s*\(/, "flashMode")
-property_writer("QCameraExposure", /::setFlashMode\s*\(/, "flashMode")
-property_reader("QCameraExposure", /::(exposureMode|isExposureMode|hasExposureMode)\s*\(/, "exposureMode")
-property_writer("QCameraExposure", /::setExposureMode\s*\(/, "exposureMode")
-property_reader("QCameraExposure", /::(meteringMode|isMeteringMode|hasMeteringMode)\s*\(/, "meteringMode")
-property_writer("QCameraExposure", /::setMeteringMode\s*\(/, "meteringMode")
-property_reader("QCameraExposureControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraExposureControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraFeedbackControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraFeedbackControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraFlashControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraFlashControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraFocus", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraFocus", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraFocus", /::(focusMode|isFocusMode|hasFocusMode)\s*\(/, "focusMode")
-property_writer("QCameraFocus", /::setFocusMode\s*\(/, "focusMode")
-property_reader("QCameraFocus", /::(focusPointMode|isFocusPointMode|hasFocusPointMode)\s*\(/, "focusPointMode")
-property_writer("QCameraFocus", /::setFocusPointMode\s*\(/, "focusPointMode")
-property_reader("QCameraFocus", /::(customFocusPoint|isCustomFocusPoint|hasCustomFocusPoint)\s*\(/, "customFocusPoint")
-property_writer("QCameraFocus", /::setCustomFocusPoint\s*\(/, "customFocusPoint")
-property_reader("QCameraFocus", /::(focusZones|isFocusZones|hasFocusZones)\s*\(/, "focusZones")
-property_reader("QCameraFocus", /::(opticalZoom|isOpticalZoom|hasOpticalZoom)\s*\(/, "opticalZoom")
-property_reader("QCameraFocus", /::(digitalZoom|isDigitalZoom|hasDigitalZoom)\s*\(/, "digitalZoom")
-property_reader("QCameraFocusControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraFocusControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraImageCapture", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraImageCapture", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraImageCapture", /::(readyForCapture|isReadyForCapture|hasReadyForCapture)\s*\(/, "readyForCapture")
-property_reader("QCameraImageCaptureControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraImageCaptureControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraImageProcessing", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraImageProcessing", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraImageProcessingControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraImageProcessingControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraInfoControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraInfoControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraLocksControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraLocksControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraViewfinderSettingsControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraViewfinderSettingsControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraViewfinderSettingsControl2", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraViewfinderSettingsControl2", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraZoomControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraZoomControl", /::setObjectName\s*\(/, "objectName")
property_reader("QCheckBox", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QCheckBox", /::setObjectName\s*\(/, "objectName")
property_reader("QCheckBox", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -1186,6 +1528,8 @@ property_reader("QCheckBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QCheckBox", /::setCursor\s*\(/, "cursor")
property_reader("QCheckBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QCheckBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QCheckBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QCheckBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QCheckBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QCheckBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QCheckBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -1261,8 +1605,6 @@ property_reader("QCheckBox", /::(down|isDown|hasDown)\s*\(/, "down")
property_writer("QCheckBox", /::setDown\s*\(/, "down")
property_reader("QCheckBox", /::(tristate|isTristate|hasTristate)\s*\(/, "tristate")
property_writer("QCheckBox", /::setTristate\s*\(/, "tristate")
-property_reader("QClipboard", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QClipboard", /::setObjectName\s*\(/, "objectName")
property_reader("QColorDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QColorDialog", /::setObjectName\s*\(/, "objectName")
property_reader("QColorDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -1312,6 +1654,8 @@ property_reader("QColorDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QColorDialog", /::setCursor\s*\(/, "cursor")
property_reader("QColorDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QColorDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QColorDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QColorDialog", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QColorDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QColorDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QColorDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -1420,6 +1764,8 @@ property_reader("QColumnView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QColumnView", /::setCursor\s*\(/, "cursor")
property_reader("QColumnView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QColumnView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QColumnView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QColumnView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QColumnView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QColumnView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QColumnView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -1571,6 +1917,8 @@ property_reader("QComboBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QComboBox", /::setCursor\s*\(/, "cursor")
property_reader("QComboBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QComboBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QComboBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QComboBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QComboBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QComboBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QComboBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -1642,6 +1990,8 @@ property_reader("QComboBox", /::(minimumContentsLength|isMinimumContentsLength|h
property_writer("QComboBox", /::setMinimumContentsLength\s*\(/, "minimumContentsLength")
property_reader("QComboBox", /::(iconSize|isIconSize|hasIconSize)\s*\(/, "iconSize")
property_writer("QComboBox", /::setIconSize\s*\(/, "iconSize")
+property_reader("QComboBox", /::(placeholderText|isPlaceholderText|hasPlaceholderText)\s*\(/, "placeholderText")
+property_writer("QComboBox", /::setPlaceholderText\s*\(/, "placeholderText")
property_reader("QComboBox", /::(autoCompletion|isAutoCompletion|hasAutoCompletion)\s*\(/, "autoCompletion")
property_writer("QComboBox", /::setAutoCompletion\s*\(/, "autoCompletion")
property_reader("QComboBox", /::(autoCompletionCaseSensitivity|isAutoCompletionCaseSensitivity|hasAutoCompletionCaseSensitivity)\s*\(/, "autoCompletionCaseSensitivity")
@@ -1701,6 +2051,8 @@ property_reader("QCommandLinkButton", /::(cursor|isCursor|hasCursor)\s*\(/, "cur
property_writer("QCommandLinkButton", /::setCursor\s*\(/, "cursor")
property_reader("QCommandLinkButton", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QCommandLinkButton", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QCommandLinkButton", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QCommandLinkButton", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QCommandLinkButton", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QCommandLinkButton", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QCommandLinkButton", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -1806,18 +2158,6 @@ property_reader("QCompleter", /::(caseSensitivity|isCaseSensitivity|hasCaseSensi
property_writer("QCompleter", /::setCaseSensitivity\s*\(/, "caseSensitivity")
property_reader("QCompleter", /::(wrapAround|isWrapAround|hasWrapAround)\s*\(/, "wrapAround")
property_writer("QCompleter", /::setWrapAround\s*\(/, "wrapAround")
-property_reader("QCoreApplication", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCoreApplication", /::setObjectName\s*\(/, "objectName")
-property_reader("QCoreApplication", /::(applicationName|isApplicationName|hasApplicationName)\s*\(/, "applicationName")
-property_writer("QCoreApplication", /::setApplicationName\s*\(/, "applicationName")
-property_reader("QCoreApplication", /::(applicationVersion|isApplicationVersion|hasApplicationVersion)\s*\(/, "applicationVersion")
-property_writer("QCoreApplication", /::setApplicationVersion\s*\(/, "applicationVersion")
-property_reader("QCoreApplication", /::(organizationName|isOrganizationName|hasOrganizationName)\s*\(/, "organizationName")
-property_writer("QCoreApplication", /::setOrganizationName\s*\(/, "organizationName")
-property_reader("QCoreApplication", /::(organizationDomain|isOrganizationDomain|hasOrganizationDomain)\s*\(/, "organizationDomain")
-property_writer("QCoreApplication", /::setOrganizationDomain\s*\(/, "organizationDomain")
-property_reader("QCoreApplication", /::(quitLockEnabled|isQuitLockEnabled|hasQuitLockEnabled)\s*\(/, "quitLockEnabled")
-property_writer("QCoreApplication", /::setQuitLockEnabled\s*\(/, "quitLockEnabled")
property_reader("QDataWidgetMapper", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QDataWidgetMapper", /::setObjectName\s*\(/, "objectName")
property_reader("QDataWidgetMapper", /::(currentIndex|isCurrentIndex|hasCurrentIndex)\s*\(/, "currentIndex")
@@ -1875,6 +2215,8 @@ property_reader("QDateEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QDateEdit", /::setCursor\s*\(/, "cursor")
property_reader("QDateEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDateEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDateEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDateEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDateEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDateEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDateEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2029,6 +2371,8 @@ property_reader("QDateTimeEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QDateTimeEdit", /::setCursor\s*\(/, "cursor")
property_reader("QDateTimeEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDateTimeEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDateTimeEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDateTimeEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDateTimeEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDateTimeEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDateTimeEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2181,6 +2525,8 @@ property_reader("QDesktopWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor"
property_writer("QDesktopWidget", /::setCursor\s*\(/, "cursor")
property_reader("QDesktopWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDesktopWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDesktopWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDesktopWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDesktopWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDesktopWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDesktopWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2284,6 +2630,8 @@ property_reader("QDial", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QDial", /::setCursor\s*\(/, "cursor")
property_reader("QDial", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDial", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDial", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDial", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDial", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDial", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDial", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2413,6 +2761,8 @@ property_reader("QDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QDialog", /::setCursor\s*\(/, "cursor")
property_reader("QDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDialog", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2517,6 +2867,8 @@ property_reader("QDialogButtonBox", /::(cursor|isCursor|hasCursor)\s*\(/, "curso
property_writer("QDialogButtonBox", /::setCursor\s*\(/, "cursor")
property_reader("QDialogButtonBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDialogButtonBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDialogButtonBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDialogButtonBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDialogButtonBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDialogButtonBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDialogButtonBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2582,16 +2934,6 @@ property_reader("QDirModel", /::(readOnly|isReadOnly|hasReadOnly)\s*\(/, "readOn
property_writer("QDirModel", /::setReadOnly\s*\(/, "readOnly")
property_reader("QDirModel", /::(lazyChildCount|isLazyChildCount|hasLazyChildCount)\s*\(/, "lazyChildCount")
property_writer("QDirModel", /::setLazyChildCount\s*\(/, "lazyChildCount")
-property_reader("QDnsLookup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QDnsLookup", /::setObjectName\s*\(/, "objectName")
-property_reader("QDnsLookup", /::(error|isError|hasError)\s*\(/, "error")
-property_reader("QDnsLookup", /::(errorString|isErrorString|hasErrorString)\s*\(/, "errorString")
-property_reader("QDnsLookup", /::(name|isName|hasName)\s*\(/, "name")
-property_writer("QDnsLookup", /::setName\s*\(/, "name")
-property_reader("QDnsLookup", /::(type|isType|hasType)\s*\(/, "type")
-property_writer("QDnsLookup", /::setType\s*\(/, "type")
-property_reader("QDnsLookup", /::(nameserver|isNameserver|hasNameserver)\s*\(/, "nameserver")
-property_writer("QDnsLookup", /::setNameserver\s*\(/, "nameserver")
property_reader("QDockWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QDockWidget", /::setObjectName\s*\(/, "objectName")
property_reader("QDockWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -2641,6 +2983,8 @@ property_reader("QDockWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QDockWidget", /::setCursor\s*\(/, "cursor")
property_reader("QDockWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDockWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDockWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDockWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDockWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDockWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDockWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2749,6 +3093,8 @@ property_reader("QDoubleSpinBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor"
property_writer("QDoubleSpinBox", /::setCursor\s*\(/, "cursor")
property_reader("QDoubleSpinBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDoubleSpinBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDoubleSpinBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDoubleSpinBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDoubleSpinBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDoubleSpinBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDoubleSpinBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2835,20 +3181,10 @@ property_reader("QDoubleSpinBox", /::(maximum|isMaximum|hasMaximum)\s*\(/, "maxi
property_writer("QDoubleSpinBox", /::setMaximum\s*\(/, "maximum")
property_reader("QDoubleSpinBox", /::(singleStep|isSingleStep|hasSingleStep)\s*\(/, "singleStep")
property_writer("QDoubleSpinBox", /::setSingleStep\s*\(/, "singleStep")
+property_reader("QDoubleSpinBox", /::(stepType|isStepType|hasStepType)\s*\(/, "stepType")
+property_writer("QDoubleSpinBox", /::setStepType\s*\(/, "stepType")
property_reader("QDoubleSpinBox", /::(value|isValue|hasValue)\s*\(/, "value")
property_writer("QDoubleSpinBox", /::setValue\s*\(/, "value")
-property_reader("QDoubleValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QDoubleValidator", /::setObjectName\s*\(/, "objectName")
-property_reader("QDoubleValidator", /::(bottom|isBottom|hasBottom)\s*\(/, "bottom")
-property_writer("QDoubleValidator", /::setBottom\s*\(/, "bottom")
-property_reader("QDoubleValidator", /::(top|isTop|hasTop)\s*\(/, "top")
-property_writer("QDoubleValidator", /::setTop\s*\(/, "top")
-property_reader("QDoubleValidator", /::(decimals|isDecimals|hasDecimals)\s*\(/, "decimals")
-property_writer("QDoubleValidator", /::setDecimals\s*\(/, "decimals")
-property_reader("QDoubleValidator", /::(notation|isNotation|hasNotation)\s*\(/, "notation")
-property_writer("QDoubleValidator", /::setNotation\s*\(/, "notation")
-property_reader("QDrag", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QDrag", /::setObjectName\s*\(/, "objectName")
property_reader("QErrorMessage", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QErrorMessage", /::setObjectName\s*\(/, "objectName")
property_reader("QErrorMessage", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -2898,6 +3234,8 @@ property_reader("QErrorMessage", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QErrorMessage", /::setCursor\s*\(/, "cursor")
property_reader("QErrorMessage", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QErrorMessage", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QErrorMessage", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QErrorMessage", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QErrorMessage", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QErrorMessage", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QErrorMessage", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2953,25 +3291,6 @@ property_reader("QErrorMessage", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGr
property_writer("QErrorMessage", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
property_reader("QErrorMessage", /::(modal|isModal|hasModal)\s*\(/, "modal")
property_writer("QErrorMessage", /::setModal\s*\(/, "modal")
-property_reader("QEventLoop", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QEventLoop", /::setObjectName\s*\(/, "objectName")
-property_reader("QEventTransition", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QEventTransition", /::setObjectName\s*\(/, "objectName")
-property_reader("QEventTransition", /::(sourceState|isSourceState|hasSourceState)\s*\(/, "sourceState")
-property_reader("QEventTransition", /::(targetState|isTargetState|hasTargetState)\s*\(/, "targetState")
-property_writer("QEventTransition", /::setTargetState\s*\(/, "targetState")
-property_reader("QEventTransition", /::(targetStates|isTargetStates|hasTargetStates)\s*\(/, "targetStates")
-property_writer("QEventTransition", /::setTargetStates\s*\(/, "targetStates")
-property_reader("QEventTransition", /::(transitionType|isTransitionType|hasTransitionType)\s*\(/, "transitionType")
-property_writer("QEventTransition", /::setTransitionType\s*\(/, "transitionType")
-property_reader("QEventTransition", /::(eventSource|isEventSource|hasEventSource)\s*\(/, "eventSource")
-property_writer("QEventTransition", /::setEventSource\s*\(/, "eventSource")
-property_reader("QEventTransition", /::(eventType|isEventType|hasEventType)\s*\(/, "eventType")
-property_writer("QEventTransition", /::setEventType\s*\(/, "eventType")
-property_reader("QFile", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QFile", /::setObjectName\s*\(/, "objectName")
-property_reader("QFileDevice", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QFileDevice", /::setObjectName\s*\(/, "objectName")
property_reader("QFileDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QFileDialog", /::setObjectName\s*\(/, "objectName")
property_reader("QFileDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -3021,6 +3340,8 @@ property_reader("QFileDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QFileDialog", /::setCursor\s*\(/, "cursor")
property_reader("QFileDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QFileDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QFileDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QFileDialog", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QFileDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QFileDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QFileDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -3082,20 +3403,20 @@ property_reader("QFileDialog", /::(fileMode|isFileMode|hasFileMode)\s*\(/, "file
property_writer("QFileDialog", /::setFileMode\s*\(/, "fileMode")
property_reader("QFileDialog", /::(acceptMode|isAcceptMode|hasAcceptMode)\s*\(/, "acceptMode")
property_writer("QFileDialog", /::setAcceptMode\s*\(/, "acceptMode")
-property_reader("QFileDialog", /::(readOnly|isReadOnly|hasReadOnly)\s*\(/, "readOnly")
-property_writer("QFileDialog", /::setReadOnly\s*\(/, "readOnly")
-property_reader("QFileDialog", /::(resolveSymlinks|isResolveSymlinks|hasResolveSymlinks)\s*\(/, "resolveSymlinks")
-property_writer("QFileDialog", /::setResolveSymlinks\s*\(/, "resolveSymlinks")
-property_reader("QFileDialog", /::(confirmOverwrite|isConfirmOverwrite|hasConfirmOverwrite)\s*\(/, "confirmOverwrite")
-property_writer("QFileDialog", /::setConfirmOverwrite\s*\(/, "confirmOverwrite")
property_reader("QFileDialog", /::(defaultSuffix|isDefaultSuffix|hasDefaultSuffix)\s*\(/, "defaultSuffix")
property_writer("QFileDialog", /::setDefaultSuffix\s*\(/, "defaultSuffix")
+property_reader("QFileDialog", /::(readOnly|isReadOnly|hasReadOnly)\s*\(/, "readOnly")
+property_writer("QFileDialog", /::setReadOnly\s*\(/, "readOnly")
+property_reader("QFileDialog", /::(confirmOverwrite|isConfirmOverwrite|hasConfirmOverwrite)\s*\(/, "confirmOverwrite")
+property_writer("QFileDialog", /::setConfirmOverwrite\s*\(/, "confirmOverwrite")
+property_reader("QFileDialog", /::(resolveSymlinks|isResolveSymlinks|hasResolveSymlinks)\s*\(/, "resolveSymlinks")
+property_writer("QFileDialog", /::setResolveSymlinks\s*\(/, "resolveSymlinks")
property_reader("QFileDialog", /::(nameFilterDetailsVisible|isNameFilterDetailsVisible|hasNameFilterDetailsVisible)\s*\(/, "nameFilterDetailsVisible")
property_writer("QFileDialog", /::setNameFilterDetailsVisible\s*\(/, "nameFilterDetailsVisible")
property_reader("QFileDialog", /::(options|isOptions|hasOptions)\s*\(/, "options")
property_writer("QFileDialog", /::setOptions\s*\(/, "options")
-property_reader("QFileSelector", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QFileSelector", /::setObjectName\s*\(/, "objectName")
+property_reader("QFileDialog", /::(supportedSchemes|isSupportedSchemes|hasSupportedSchemes)\s*\(/, "supportedSchemes")
+property_writer("QFileDialog", /::setSupportedSchemes\s*\(/, "supportedSchemes")
property_reader("QFileSystemModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QFileSystemModel", /::setObjectName\s*\(/, "objectName")
property_reader("QFileSystemModel", /::(resolveSymlinks|isResolveSymlinks|hasResolveSymlinks)\s*\(/, "resolveSymlinks")
@@ -3104,11 +3425,8 @@ property_reader("QFileSystemModel", /::(readOnly|isReadOnly|hasReadOnly)\s*\(/,
property_writer("QFileSystemModel", /::setReadOnly\s*\(/, "readOnly")
property_reader("QFileSystemModel", /::(nameFilterDisables|isNameFilterDisables|hasNameFilterDisables)\s*\(/, "nameFilterDisables")
property_writer("QFileSystemModel", /::setNameFilterDisables\s*\(/, "nameFilterDisables")
-property_reader("QFileSystemWatcher", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QFileSystemWatcher", /::setObjectName\s*\(/, "objectName")
-property_reader("QFinalState", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QFinalState", /::setObjectName\s*\(/, "objectName")
-property_reader("QFinalState", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QFileSystemModel", /::(options|isOptions|hasOptions)\s*\(/, "options")
+property_writer("QFileSystemModel", /::setOptions\s*\(/, "options")
property_reader("QFocusFrame", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QFocusFrame", /::setObjectName\s*\(/, "objectName")
property_reader("QFocusFrame", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -3158,6 +3476,8 @@ property_reader("QFocusFrame", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QFocusFrame", /::setCursor\s*\(/, "cursor")
property_reader("QFocusFrame", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QFocusFrame", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QFocusFrame", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QFocusFrame", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QFocusFrame", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QFocusFrame", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QFocusFrame", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -3258,6 +3578,8 @@ property_reader("QFontComboBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QFontComboBox", /::setCursor\s*\(/, "cursor")
property_reader("QFontComboBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QFontComboBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QFontComboBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QFontComboBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QFontComboBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QFontComboBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QFontComboBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -3329,6 +3651,8 @@ property_reader("QFontComboBox", /::(minimumContentsLength|isMinimumContentsLeng
property_writer("QFontComboBox", /::setMinimumContentsLength\s*\(/, "minimumContentsLength")
property_reader("QFontComboBox", /::(iconSize|isIconSize|hasIconSize)\s*\(/, "iconSize")
property_writer("QFontComboBox", /::setIconSize\s*\(/, "iconSize")
+property_reader("QFontComboBox", /::(placeholderText|isPlaceholderText|hasPlaceholderText)\s*\(/, "placeholderText")
+property_writer("QFontComboBox", /::setPlaceholderText\s*\(/, "placeholderText")
property_reader("QFontComboBox", /::(autoCompletion|isAutoCompletion|hasAutoCompletion)\s*\(/, "autoCompletion")
property_writer("QFontComboBox", /::setAutoCompletion\s*\(/, "autoCompletion")
property_reader("QFontComboBox", /::(autoCompletionCaseSensitivity|isAutoCompletionCaseSensitivity|hasAutoCompletionCaseSensitivity)\s*\(/, "autoCompletionCaseSensitivity")
@@ -3394,6 +3718,8 @@ property_reader("QFontDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QFontDialog", /::setCursor\s*\(/, "cursor")
property_reader("QFontDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QFontDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QFontDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QFontDialog", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QFontDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QFontDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QFontDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -3522,6 +3848,8 @@ property_reader("QFrame", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QFrame", /::setCursor\s*\(/, "cursor")
property_reader("QFrame", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QFrame", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QFrame", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QFrame", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QFrame", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QFrame", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QFrame", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -3584,8 +3912,6 @@ property_writer("QFrame", /::setMidLineWidth\s*\(/, "midLineWidth")
property_reader("QFrame", /::(frameWidth|isFrameWidth|hasFrameWidth)\s*\(/, "frameWidth")
property_reader("QFrame", /::(frameRect|isFrameRect|hasFrameRect)\s*\(/, "frameRect")
property_writer("QFrame", /::setFrameRect\s*\(/, "frameRect")
-property_reader("QGenericPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QGenericPlugin", /::setObjectName\s*\(/, "objectName")
property_reader("QGesture", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QGesture", /::setObjectName\s*\(/, "objectName")
property_reader("QGesture", /::(state|isState|hasState)\s*\(/, "state")
@@ -3775,41 +4101,8 @@ property_reader("QGraphicsScene", /::(stickyFocus|isStickyFocus|hasStickyFocus)\
property_writer("QGraphicsScene", /::setStickyFocus\s*\(/, "stickyFocus")
property_reader("QGraphicsScene", /::(minimumRenderSize|isMinimumRenderSize|hasMinimumRenderSize)\s*\(/, "minimumRenderSize")
property_writer("QGraphicsScene", /::setMinimumRenderSize\s*\(/, "minimumRenderSize")
-property_reader("QGraphicsSvgItem", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QGraphicsSvgItem", /::setObjectName\s*\(/, "objectName")
-property_reader("QGraphicsSvgItem", /::(parent|isParent|hasParent)\s*\(/, "parent")
-property_writer("QGraphicsSvgItem", /::setParent\s*\(/, "parent")
-property_reader("QGraphicsSvgItem", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
-property_writer("QGraphicsSvgItem", /::setOpacity\s*\(/, "opacity")
-property_reader("QGraphicsSvgItem", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QGraphicsSvgItem", /::setEnabled\s*\(/, "enabled")
-property_reader("QGraphicsSvgItem", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QGraphicsSvgItem", /::setVisible\s*\(/, "visible")
-property_reader("QGraphicsSvgItem", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QGraphicsSvgItem", /::setPos\s*\(/, "pos")
-property_reader("QGraphicsSvgItem", /::(x|isX|hasX)\s*\(/, "x")
-property_writer("QGraphicsSvgItem", /::setX\s*\(/, "x")
-property_reader("QGraphicsSvgItem", /::(y|isY|hasY)\s*\(/, "y")
-property_writer("QGraphicsSvgItem", /::setY\s*\(/, "y")
-property_reader("QGraphicsSvgItem", /::(z|isZ|hasZ)\s*\(/, "z")
-property_writer("QGraphicsSvgItem", /::setZ\s*\(/, "z")
-property_reader("QGraphicsSvgItem", /::(rotation|isRotation|hasRotation)\s*\(/, "rotation")
-property_writer("QGraphicsSvgItem", /::setRotation\s*\(/, "rotation")
-property_reader("QGraphicsSvgItem", /::(scale|isScale|hasScale)\s*\(/, "scale")
-property_writer("QGraphicsSvgItem", /::setScale\s*\(/, "scale")
-property_reader("QGraphicsSvgItem", /::(transformOriginPoint|isTransformOriginPoint|hasTransformOriginPoint)\s*\(/, "transformOriginPoint")
-property_writer("QGraphicsSvgItem", /::setTransformOriginPoint\s*\(/, "transformOriginPoint")
-property_reader("QGraphicsSvgItem", /::(effect|isEffect|hasEffect)\s*\(/, "effect")
-property_writer("QGraphicsSvgItem", /::setEffect\s*\(/, "effect")
-property_reader("QGraphicsSvgItem", /::(children|isChildren|hasChildren)\s*\(/, "children")
-property_reader("QGraphicsSvgItem", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_writer("QGraphicsSvgItem", /::setWidth\s*\(/, "width")
-property_reader("QGraphicsSvgItem", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_writer("QGraphicsSvgItem", /::setHeight\s*\(/, "height")
-property_reader("QGraphicsSvgItem", /::(elementId|isElementId|hasElementId)\s*\(/, "elementId")
-property_writer("QGraphicsSvgItem", /::setElementId\s*\(/, "elementId")
-property_reader("QGraphicsSvgItem", /::(maximumCacheSize|isMaximumCacheSize|hasMaximumCacheSize)\s*\(/, "maximumCacheSize")
-property_writer("QGraphicsSvgItem", /::setMaximumCacheSize\s*\(/, "maximumCacheSize")
+property_reader("QGraphicsScene", /::(focusOnTouch|isFocusOnTouch|hasFocusOnTouch)\s*\(/, "focusOnTouch")
+property_writer("QGraphicsScene", /::setFocusOnTouch\s*\(/, "focusOnTouch")
property_reader("QGraphicsTextItem", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QGraphicsTextItem", /::setObjectName\s*\(/, "objectName")
property_reader("QGraphicsTextItem", /::(parent|isParent|hasParent)\s*\(/, "parent")
@@ -3843,46 +4136,6 @@ property_reader("QGraphicsTextItem", /::(height|isHeight|hasHeight)\s*\(/, "heig
property_writer("QGraphicsTextItem", /::setHeight\s*\(/, "height")
property_reader("QGraphicsTransform", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QGraphicsTransform", /::setObjectName\s*\(/, "objectName")
-property_reader("QGraphicsVideoItem", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QGraphicsVideoItem", /::setObjectName\s*\(/, "objectName")
-property_reader("QGraphicsVideoItem", /::(parent|isParent|hasParent)\s*\(/, "parent")
-property_writer("QGraphicsVideoItem", /::setParent\s*\(/, "parent")
-property_reader("QGraphicsVideoItem", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
-property_writer("QGraphicsVideoItem", /::setOpacity\s*\(/, "opacity")
-property_reader("QGraphicsVideoItem", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QGraphicsVideoItem", /::setEnabled\s*\(/, "enabled")
-property_reader("QGraphicsVideoItem", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QGraphicsVideoItem", /::setVisible\s*\(/, "visible")
-property_reader("QGraphicsVideoItem", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QGraphicsVideoItem", /::setPos\s*\(/, "pos")
-property_reader("QGraphicsVideoItem", /::(x|isX|hasX)\s*\(/, "x")
-property_writer("QGraphicsVideoItem", /::setX\s*\(/, "x")
-property_reader("QGraphicsVideoItem", /::(y|isY|hasY)\s*\(/, "y")
-property_writer("QGraphicsVideoItem", /::setY\s*\(/, "y")
-property_reader("QGraphicsVideoItem", /::(z|isZ|hasZ)\s*\(/, "z")
-property_writer("QGraphicsVideoItem", /::setZ\s*\(/, "z")
-property_reader("QGraphicsVideoItem", /::(rotation|isRotation|hasRotation)\s*\(/, "rotation")
-property_writer("QGraphicsVideoItem", /::setRotation\s*\(/, "rotation")
-property_reader("QGraphicsVideoItem", /::(scale|isScale|hasScale)\s*\(/, "scale")
-property_writer("QGraphicsVideoItem", /::setScale\s*\(/, "scale")
-property_reader("QGraphicsVideoItem", /::(transformOriginPoint|isTransformOriginPoint|hasTransformOriginPoint)\s*\(/, "transformOriginPoint")
-property_writer("QGraphicsVideoItem", /::setTransformOriginPoint\s*\(/, "transformOriginPoint")
-property_reader("QGraphicsVideoItem", /::(effect|isEffect|hasEffect)\s*\(/, "effect")
-property_writer("QGraphicsVideoItem", /::setEffect\s*\(/, "effect")
-property_reader("QGraphicsVideoItem", /::(children|isChildren|hasChildren)\s*\(/, "children")
-property_reader("QGraphicsVideoItem", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_writer("QGraphicsVideoItem", /::setWidth\s*\(/, "width")
-property_reader("QGraphicsVideoItem", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_writer("QGraphicsVideoItem", /::setHeight\s*\(/, "height")
-property_reader("QGraphicsVideoItem", /::(mediaObject|isMediaObject|hasMediaObject)\s*\(/, "mediaObject")
-property_writer("QGraphicsVideoItem", /::setMediaObject\s*\(/, "mediaObject")
-property_reader("QGraphicsVideoItem", /::(aspectRatioMode|isAspectRatioMode|hasAspectRatioMode)\s*\(/, "aspectRatioMode")
-property_writer("QGraphicsVideoItem", /::setAspectRatioMode\s*\(/, "aspectRatioMode")
-property_reader("QGraphicsVideoItem", /::(offset|isOffset|hasOffset)\s*\(/, "offset")
-property_writer("QGraphicsVideoItem", /::setOffset\s*\(/, "offset")
-property_reader("QGraphicsVideoItem", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QGraphicsVideoItem", /::setSize\s*\(/, "size")
-property_reader("QGraphicsVideoItem", /::(nativeSize|isNativeSize|hasNativeSize)\s*\(/, "nativeSize")
property_reader("QGraphicsView", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QGraphicsView", /::setObjectName\s*\(/, "objectName")
property_reader("QGraphicsView", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -3932,6 +4185,8 @@ property_reader("QGraphicsView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QGraphicsView", /::setCursor\s*\(/, "cursor")
property_reader("QGraphicsView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QGraphicsView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QGraphicsView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QGraphicsView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QGraphicsView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QGraphicsView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QGraphicsView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4142,6 +4397,8 @@ property_reader("QGroupBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QGroupBox", /::setCursor\s*\(/, "cursor")
property_reader("QGroupBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QGroupBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QGroupBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QGroupBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QGroupBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QGroupBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QGroupBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4203,27 +4460,6 @@ property_reader("QGroupBox", /::(checkable|isCheckable|hasCheckable)\s*\(/, "che
property_writer("QGroupBox", /::setCheckable\s*\(/, "checkable")
property_reader("QGroupBox", /::(checked|isChecked|hasChecked)\s*\(/, "checked")
property_writer("QGroupBox", /::setChecked\s*\(/, "checked")
-property_reader("QGuiApplication", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QGuiApplication", /::setObjectName\s*\(/, "objectName")
-property_reader("QGuiApplication", /::(applicationName|isApplicationName|hasApplicationName)\s*\(/, "applicationName")
-property_writer("QGuiApplication", /::setApplicationName\s*\(/, "applicationName")
-property_reader("QGuiApplication", /::(applicationVersion|isApplicationVersion|hasApplicationVersion)\s*\(/, "applicationVersion")
-property_writer("QGuiApplication", /::setApplicationVersion\s*\(/, "applicationVersion")
-property_reader("QGuiApplication", /::(organizationName|isOrganizationName|hasOrganizationName)\s*\(/, "organizationName")
-property_writer("QGuiApplication", /::setOrganizationName\s*\(/, "organizationName")
-property_reader("QGuiApplication", /::(organizationDomain|isOrganizationDomain|hasOrganizationDomain)\s*\(/, "organizationDomain")
-property_writer("QGuiApplication", /::setOrganizationDomain\s*\(/, "organizationDomain")
-property_reader("QGuiApplication", /::(quitLockEnabled|isQuitLockEnabled|hasQuitLockEnabled)\s*\(/, "quitLockEnabled")
-property_writer("QGuiApplication", /::setQuitLockEnabled\s*\(/, "quitLockEnabled")
-property_reader("QGuiApplication", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QGuiApplication", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QGuiApplication", /::(applicationDisplayName|isApplicationDisplayName|hasApplicationDisplayName)\s*\(/, "applicationDisplayName")
-property_writer("QGuiApplication", /::setApplicationDisplayName\s*\(/, "applicationDisplayName")
-property_reader("QGuiApplication", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QGuiApplication", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QGuiApplication", /::(platformName|isPlatformName|hasPlatformName)\s*\(/, "platformName")
-property_reader("QGuiApplication", /::(quitOnLastWindowClosed|isQuitOnLastWindowClosed|hasQuitOnLastWindowClosed)\s*\(/, "quitOnLastWindowClosed")
-property_writer("QGuiApplication", /::setQuitOnLastWindowClosed\s*\(/, "quitOnLastWindowClosed")
property_reader("QHBoxLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QHBoxLayout", /::setObjectName\s*\(/, "objectName")
property_reader("QHBoxLayout", /::(margin|isMargin|hasMargin)\s*\(/, "margin")
@@ -4281,6 +4517,8 @@ property_reader("QHeaderView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QHeaderView", /::setCursor\s*\(/, "cursor")
property_reader("QHeaderView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QHeaderView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QHeaderView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QHeaderView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QHeaderView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QHeaderView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QHeaderView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4381,6 +4619,8 @@ property_reader("QHeaderView", /::(verticalScrollMode|isVerticalScrollMode|hasVe
property_writer("QHeaderView", /::setVerticalScrollMode\s*\(/, "verticalScrollMode")
property_reader("QHeaderView", /::(horizontalScrollMode|isHorizontalScrollMode|hasHorizontalScrollMode)\s*\(/, "horizontalScrollMode")
property_writer("QHeaderView", /::setHorizontalScrollMode\s*\(/, "horizontalScrollMode")
+property_reader("QHeaderView", /::(firstSectionMovable|isFirstSectionMovable|hasFirstSectionMovable)\s*\(/, "firstSectionMovable")
+property_writer("QHeaderView", /::setFirstSectionMovable\s*\(/, "firstSectionMovable")
property_reader("QHeaderView", /::(showSortIndicator|isShowSortIndicator|hasShowSortIndicator)\s*\(/, "showSortIndicator")
property_writer("QHeaderView", /::setShowSortIndicator\s*\(/, "showSortIndicator")
property_reader("QHeaderView", /::(highlightSections|isHighlightSections|hasHighlightSections)\s*\(/, "highlightSections")
@@ -4397,27 +4637,6 @@ property_reader("QHeaderView", /::(maximumSectionSize|isMaximumSectionSize|hasMa
property_writer("QHeaderView", /::setMaximumSectionSize\s*\(/, "maximumSectionSize")
property_reader("QHeaderView", /::(defaultAlignment|isDefaultAlignment|hasDefaultAlignment)\s*\(/, "defaultAlignment")
property_writer("QHeaderView", /::setDefaultAlignment\s*\(/, "defaultAlignment")
-property_reader("QHistoryState", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QHistoryState", /::setObjectName\s*\(/, "objectName")
-property_reader("QHistoryState", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QHistoryState", /::(defaultState|isDefaultState|hasDefaultState)\s*\(/, "defaultState")
-property_writer("QHistoryState", /::setDefaultState\s*\(/, "defaultState")
-property_reader("QHistoryState", /::(historyType|isHistoryType|hasHistoryType)\s*\(/, "historyType")
-property_writer("QHistoryState", /::setHistoryType\s*\(/, "historyType")
-property_reader("QHttpMultiPart", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QHttpMultiPart", /::setObjectName\s*\(/, "objectName")
-property_reader("QIODevice", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QIODevice", /::setObjectName\s*\(/, "objectName")
-property_reader("QIconEnginePlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QIconEnginePlugin", /::setObjectName\s*\(/, "objectName")
-property_reader("QIdentityProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QIdentityProxyModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QIdentityProxyModel", /::(sourceModel|isSourceModel|hasSourceModel)\s*\(/, "sourceModel")
-property_writer("QIdentityProxyModel", /::setSourceModel\s*\(/, "sourceModel")
-property_reader("QImageEncoderControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QImageEncoderControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QImageIOPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QImageIOPlugin", /::setObjectName\s*\(/, "objectName")
property_reader("QInputDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QInputDialog", /::setObjectName\s*\(/, "objectName")
property_reader("QInputDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -4467,6 +4686,8 @@ property_reader("QInputDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QInputDialog", /::setCursor\s*\(/, "cursor")
property_reader("QInputDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QInputDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QInputDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QInputDialog", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QInputDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QInputDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QInputDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4522,32 +4743,10 @@ property_reader("QInputDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGri
property_writer("QInputDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
property_reader("QInputDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
property_writer("QInputDialog", /::setModal\s*\(/, "modal")
-property_reader("QInputMethod", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QInputMethod", /::setObjectName\s*\(/, "objectName")
-property_reader("QInputMethod", /::(cursorRectangle|isCursorRectangle|hasCursorRectangle)\s*\(/, "cursorRectangle")
-property_reader("QInputMethod", /::(keyboardRectangle|isKeyboardRectangle|hasKeyboardRectangle)\s*\(/, "keyboardRectangle")
-property_reader("QInputMethod", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_reader("QInputMethod", /::(animating|isAnimating|hasAnimating)\s*\(/, "animating")
-property_reader("QInputMethod", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_reader("QInputMethod", /::(inputDirection|isInputDirection|hasInputDirection)\s*\(/, "inputDirection")
-property_reader("QIntValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QIntValidator", /::setObjectName\s*\(/, "objectName")
-property_reader("QIntValidator", /::(bottom|isBottom|hasBottom)\s*\(/, "bottom")
-property_writer("QIntValidator", /::setBottom\s*\(/, "bottom")
-property_reader("QIntValidator", /::(top|isTop|hasTop)\s*\(/, "top")
-property_writer("QIntValidator", /::setTop\s*\(/, "top")
property_reader("QItemDelegate", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QItemDelegate", /::setObjectName\s*\(/, "objectName")
property_reader("QItemDelegate", /::(clipping|isClipping|hasClipping)\s*\(/, "clipping")
property_writer("QItemDelegate", /::setClipping\s*\(/, "clipping")
-property_reader("QItemSelectionModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QItemSelectionModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QItemSelectionModel", /::(model|isModel|hasModel)\s*\(/, "model")
-property_writer("QItemSelectionModel", /::setModel\s*\(/, "model")
-property_reader("QItemSelectionModel", /::(hasSelection|isHasSelection|hasHasSelection)\s*\(/, "hasSelection")
-property_reader("QItemSelectionModel", /::(currentIndex|isCurrentIndex|hasCurrentIndex)\s*\(/, "currentIndex")
-property_reader("QItemSelectionModel", /::(selection|isSelection|hasSelection)\s*\(/, "selection")
-property_reader("QItemSelectionModel", /::(selectedIndexes|isSelectedIndexes|hasSelectedIndexes)\s*\(/, "selectedIndexes")
property_reader("QKeySequenceEdit", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QKeySequenceEdit", /::setObjectName\s*\(/, "objectName")
property_reader("QKeySequenceEdit", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -4597,6 +4796,8 @@ property_reader("QKeySequenceEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "curso
property_writer("QKeySequenceEdit", /::setCursor\s*\(/, "cursor")
property_reader("QKeySequenceEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QKeySequenceEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QKeySequenceEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QKeySequenceEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QKeySequenceEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QKeySequenceEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QKeySequenceEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4699,6 +4900,8 @@ property_reader("QLCDNumber", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QLCDNumber", /::setCursor\s*\(/, "cursor")
property_reader("QLCDNumber", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QLCDNumber", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QLCDNumber", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QLCDNumber", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QLCDNumber", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QLCDNumber", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QLCDNumber", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4822,6 +5025,8 @@ property_reader("QLabel", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QLabel", /::setCursor\s*\(/, "cursor")
property_reader("QLabel", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QLabel", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QLabel", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QLabel", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QLabel", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QLabel", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QLabel", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4914,12 +5119,6 @@ property_reader("QLayout", /::(spacing|isSpacing|hasSpacing)\s*\(/, "spacing")
property_writer("QLayout", /::setSpacing\s*\(/, "spacing")
property_reader("QLayout", /::(sizeConstraint|isSizeConstraint|hasSizeConstraint)\s*\(/, "sizeConstraint")
property_writer("QLayout", /::setSizeConstraint\s*\(/, "sizeConstraint")
-property_reader("QLibrary", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QLibrary", /::setObjectName\s*\(/, "objectName")
-property_reader("QLibrary", /::(fileName|isFileName|hasFileName)\s*\(/, "fileName")
-property_writer("QLibrary", /::setFileName\s*\(/, "fileName")
-property_reader("QLibrary", /::(loadHints|isLoadHints|hasLoadHints)\s*\(/, "loadHints")
-property_writer("QLibrary", /::setLoadHints\s*\(/, "loadHints")
property_reader("QLineEdit", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QLineEdit", /::setObjectName\s*\(/, "objectName")
property_reader("QLineEdit", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -4969,6 +5168,8 @@ property_reader("QLineEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QLineEdit", /::setCursor\s*\(/, "cursor")
property_reader("QLineEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QLineEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QLineEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QLineEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QLineEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QLineEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QLineEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5101,6 +5302,8 @@ property_reader("QListView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QListView", /::setCursor\s*\(/, "cursor")
property_reader("QListView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QListView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QListView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QListView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QListView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QListView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QListView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5227,6 +5430,8 @@ property_reader("QListView", /::(wordWrap|isWordWrap|hasWordWrap)\s*\(/, "wordWr
property_writer("QListView", /::setWordWrap\s*\(/, "wordWrap")
property_reader("QListView", /::(selectionRectVisible|isSelectionRectVisible|hasSelectionRectVisible)\s*\(/, "selectionRectVisible")
property_writer("QListView", /::setSelectionRectVisible\s*\(/, "selectionRectVisible")
+property_reader("QListView", /::(itemAlignment|isItemAlignment|hasItemAlignment)\s*\(/, "itemAlignment")
+property_writer("QListView", /::setItemAlignment\s*\(/, "itemAlignment")
property_reader("QListWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QListWidget", /::setObjectName\s*\(/, "objectName")
property_reader("QListWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -5276,6 +5481,8 @@ property_reader("QListWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QListWidget", /::setCursor\s*\(/, "cursor")
property_reader("QListWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QListWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QListWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QListWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QListWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QListWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QListWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5402,17 +5609,13 @@ property_reader("QListWidget", /::(wordWrap|isWordWrap|hasWordWrap)\s*\(/, "word
property_writer("QListWidget", /::setWordWrap\s*\(/, "wordWrap")
property_reader("QListWidget", /::(selectionRectVisible|isSelectionRectVisible|hasSelectionRectVisible)\s*\(/, "selectionRectVisible")
property_writer("QListWidget", /::setSelectionRectVisible\s*\(/, "selectionRectVisible")
+property_reader("QListWidget", /::(itemAlignment|isItemAlignment|hasItemAlignment)\s*\(/, "itemAlignment")
+property_writer("QListWidget", /::setItemAlignment\s*\(/, "itemAlignment")
property_reader("QListWidget", /::(count|isCount|hasCount)\s*\(/, "count")
property_reader("QListWidget", /::(currentRow|isCurrentRow|hasCurrentRow)\s*\(/, "currentRow")
property_writer("QListWidget", /::setCurrentRow\s*\(/, "currentRow")
property_reader("QListWidget", /::(sortingEnabled|isSortingEnabled|hasSortingEnabled)\s*\(/, "sortingEnabled")
property_writer("QListWidget", /::setSortingEnabled\s*\(/, "sortingEnabled")
-property_reader("QLocalServer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QLocalServer", /::setObjectName\s*\(/, "objectName")
-property_reader("QLocalServer", /::(socketOptions|isSocketOptions|hasSocketOptions)\s*\(/, "socketOptions")
-property_writer("QLocalServer", /::setSocketOptions\s*\(/, "socketOptions")
-property_reader("QLocalSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QLocalSocket", /::setObjectName\s*\(/, "objectName")
property_reader("QMainWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QMainWindow", /::setObjectName\s*\(/, "objectName")
property_reader("QMainWindow", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -5462,6 +5665,8 @@ property_reader("QMainWindow", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QMainWindow", /::setCursor\s*\(/, "cursor")
property_reader("QMainWindow", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QMainWindow", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QMainWindow", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QMainWindow", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QMainWindow", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QMainWindow", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QMainWindow", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5578,6 +5783,8 @@ property_reader("QMdiArea", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QMdiArea", /::setCursor\s*\(/, "cursor")
property_reader("QMdiArea", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QMdiArea", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QMdiArea", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QMdiArea", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QMdiArea", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QMdiArea", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QMdiArea", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5711,6 +5918,8 @@ property_reader("QMdiSubWindow", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QMdiSubWindow", /::setCursor\s*\(/, "cursor")
property_reader("QMdiSubWindow", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QMdiSubWindow", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QMdiSubWindow", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QMdiSubWindow", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QMdiSubWindow", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QMdiSubWindow", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QMdiSubWindow", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5766,80 +5975,6 @@ property_reader("QMdiSubWindow", /::(keyboardSingleStep|isKeyboardSingleStep|has
property_writer("QMdiSubWindow", /::setKeyboardSingleStep\s*\(/, "keyboardSingleStep")
property_reader("QMdiSubWindow", /::(keyboardPageStep|isKeyboardPageStep|hasKeyboardPageStep)\s*\(/, "keyboardPageStep")
property_writer("QMdiSubWindow", /::setKeyboardPageStep\s*\(/, "keyboardPageStep")
-property_reader("QMediaAudioProbeControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaAudioProbeControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaAvailabilityControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaAvailabilityControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaContainerControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaContainerControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaGaplessPlaybackControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaGaplessPlaybackControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaNetworkAccessControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaNetworkAccessControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaObject", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaObject", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaObject", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
-property_writer("QMediaObject", /::setNotifyInterval\s*\(/, "notifyInterval")
-property_reader("QMediaPlayer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaPlayer", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaPlayer", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
-property_writer("QMediaPlayer", /::setNotifyInterval\s*\(/, "notifyInterval")
-property_reader("QMediaPlayer", /::(media|isMedia|hasMedia)\s*\(/, "media")
-property_writer("QMediaPlayer", /::setMedia\s*\(/, "media")
-property_reader("QMediaPlayer", /::(currentMedia|isCurrentMedia|hasCurrentMedia)\s*\(/, "currentMedia")
-property_reader("QMediaPlayer", /::(playlist|isPlaylist|hasPlaylist)\s*\(/, "playlist")
-property_writer("QMediaPlayer", /::setPlaylist\s*\(/, "playlist")
-property_reader("QMediaPlayer", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QMediaPlayer", /::(position|isPosition|hasPosition)\s*\(/, "position")
-property_writer("QMediaPlayer", /::setPosition\s*\(/, "position")
-property_reader("QMediaPlayer", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
-property_writer("QMediaPlayer", /::setVolume\s*\(/, "volume")
-property_reader("QMediaPlayer", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
-property_writer("QMediaPlayer", /::setMuted\s*\(/, "muted")
-property_reader("QMediaPlayer", /::(bufferStatus|isBufferStatus|hasBufferStatus)\s*\(/, "bufferStatus")
-property_reader("QMediaPlayer", /::(audioAvailable|isAudioAvailable|hasAudioAvailable)\s*\(/, "audioAvailable")
-property_reader("QMediaPlayer", /::(videoAvailable|isVideoAvailable|hasVideoAvailable)\s*\(/, "videoAvailable")
-property_reader("QMediaPlayer", /::(seekable|isSeekable|hasSeekable)\s*\(/, "seekable")
-property_reader("QMediaPlayer", /::(playbackRate|isPlaybackRate|hasPlaybackRate)\s*\(/, "playbackRate")
-property_writer("QMediaPlayer", /::setPlaybackRate\s*\(/, "playbackRate")
-property_reader("QMediaPlayer", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QMediaPlayer", /::(mediaStatus|isMediaStatus|hasMediaStatus)\s*\(/, "mediaStatus")
-property_reader("QMediaPlayer", /::(error|isError|hasError)\s*\(/, "error")
-property_reader("QMediaPlayerControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaPlayerControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaPlaylist", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaPlaylist", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaPlaylist", /::(playbackMode|isPlaybackMode|hasPlaybackMode)\s*\(/, "playbackMode")
-property_writer("QMediaPlaylist", /::setPlaybackMode\s*\(/, "playbackMode")
-property_reader("QMediaPlaylist", /::(currentMedia|isCurrentMedia|hasCurrentMedia)\s*\(/, "currentMedia")
-property_reader("QMediaPlaylist", /::(currentIndex|isCurrentIndex|hasCurrentIndex)\s*\(/, "currentIndex")
-property_writer("QMediaPlaylist", /::setCurrentIndex\s*\(/, "currentIndex")
-property_reader("QMediaRecorder", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaRecorder", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaRecorder", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QMediaRecorder", /::(status|isStatus|hasStatus)\s*\(/, "status")
-property_reader("QMediaRecorder", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QMediaRecorder", /::(outputLocation|isOutputLocation|hasOutputLocation)\s*\(/, "outputLocation")
-property_writer("QMediaRecorder", /::setOutputLocation\s*\(/, "outputLocation")
-property_reader("QMediaRecorder", /::(actualLocation|isActualLocation|hasActualLocation)\s*\(/, "actualLocation")
-property_reader("QMediaRecorder", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
-property_writer("QMediaRecorder", /::setMuted\s*\(/, "muted")
-property_reader("QMediaRecorder", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
-property_writer("QMediaRecorder", /::setVolume\s*\(/, "volume")
-property_reader("QMediaRecorder", /::(metaDataAvailable|isMetaDataAvailable|hasMetaDataAvailable)\s*\(/, "metaDataAvailable")
-property_reader("QMediaRecorder", /::(metaDataWritable|isMetaDataWritable|hasMetaDataWritable)\s*\(/, "metaDataWritable")
-property_reader("QMediaRecorderControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaRecorderControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaService", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaService", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaServiceProviderPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaServiceProviderPlugin", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaStreamsControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaStreamsControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaVideoProbeControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaVideoProbeControl", /::setObjectName\s*\(/, "objectName")
property_reader("QMenu", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QMenu", /::setObjectName\s*\(/, "objectName")
property_reader("QMenu", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -5889,6 +6024,8 @@ property_reader("QMenu", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QMenu", /::setCursor\s*\(/, "cursor")
property_reader("QMenu", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QMenu", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QMenu", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QMenu", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QMenu", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QMenu", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QMenu", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5999,6 +6136,8 @@ property_reader("QMenuBar", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QMenuBar", /::setCursor\s*\(/, "cursor")
property_reader("QMenuBar", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QMenuBar", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QMenuBar", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QMenuBar", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QMenuBar", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QMenuBar", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QMenuBar", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -6103,6 +6242,8 @@ property_reader("QMessageBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QMessageBox", /::setCursor\s*\(/, "cursor")
property_reader("QMessageBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QMessageBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QMessageBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QMessageBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QMessageBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QMessageBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QMessageBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -6174,67 +6315,6 @@ property_reader("QMessageBox", /::(informativeText|isInformativeText|hasInformat
property_writer("QMessageBox", /::setInformativeText\s*\(/, "informativeText")
property_reader("QMessageBox", /::(textInteractionFlags|isTextInteractionFlags|hasTextInteractionFlags)\s*\(/, "textInteractionFlags")
property_writer("QMessageBox", /::setTextInteractionFlags\s*\(/, "textInteractionFlags")
-property_reader("QMetaDataReaderControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMetaDataReaderControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMetaDataWriterControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMetaDataWriterControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMimeData", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMimeData", /::setObjectName\s*\(/, "objectName")
-property_reader("QMovie", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMovie", /::setObjectName\s*\(/, "objectName")
-property_reader("QMovie", /::(speed|isSpeed|hasSpeed)\s*\(/, "speed")
-property_writer("QMovie", /::setSpeed\s*\(/, "speed")
-property_reader("QMovie", /::(cacheMode|isCacheMode|hasCacheMode)\s*\(/, "cacheMode")
-property_writer("QMovie", /::setCacheMode\s*\(/, "cacheMode")
-property_reader("QNetworkAccessManager", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QNetworkAccessManager", /::setObjectName\s*\(/, "objectName")
-property_reader("QNetworkAccessManager", /::(networkAccessible|isNetworkAccessible|hasNetworkAccessible)\s*\(/, "networkAccessible")
-property_writer("QNetworkAccessManager", /::setNetworkAccessible\s*\(/, "networkAccessible")
-property_reader("QNetworkConfigurationManager", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QNetworkConfigurationManager", /::setObjectName\s*\(/, "objectName")
-property_reader("QNetworkCookieJar", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QNetworkCookieJar", /::setObjectName\s*\(/, "objectName")
-property_reader("QNetworkDiskCache", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QNetworkDiskCache", /::setObjectName\s*\(/, "objectName")
-property_reader("QNetworkReply", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QNetworkReply", /::setObjectName\s*\(/, "objectName")
-property_reader("QNetworkSession", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QNetworkSession", /::setObjectName\s*\(/, "objectName")
-property_reader("QOffscreenSurface", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QOffscreenSurface", /::setObjectName\s*\(/, "objectName")
-property_reader("QPaintDeviceWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPaintDeviceWindow", /::setObjectName\s*\(/, "objectName")
-property_reader("QPaintDeviceWindow", /::(title|isTitle|hasTitle)\s*\(/, "title")
-property_writer("QPaintDeviceWindow", /::setTitle\s*\(/, "title")
-property_reader("QPaintDeviceWindow", /::(modality|isModality|hasModality)\s*\(/, "modality")
-property_writer("QPaintDeviceWindow", /::setModality\s*\(/, "modality")
-property_reader("QPaintDeviceWindow", /::(flags|isFlags|hasFlags)\s*\(/, "flags")
-property_writer("QPaintDeviceWindow", /::setFlags\s*\(/, "flags")
-property_reader("QPaintDeviceWindow", /::(x|isX|hasX)\s*\(/, "x")
-property_writer("QPaintDeviceWindow", /::setX\s*\(/, "x")
-property_reader("QPaintDeviceWindow", /::(y|isY|hasY)\s*\(/, "y")
-property_writer("QPaintDeviceWindow", /::setY\s*\(/, "y")
-property_reader("QPaintDeviceWindow", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_writer("QPaintDeviceWindow", /::setWidth\s*\(/, "width")
-property_reader("QPaintDeviceWindow", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_writer("QPaintDeviceWindow", /::setHeight\s*\(/, "height")
-property_reader("QPaintDeviceWindow", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QPaintDeviceWindow", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QPaintDeviceWindow", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QPaintDeviceWindow", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QPaintDeviceWindow", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QPaintDeviceWindow", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QPaintDeviceWindow", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QPaintDeviceWindow", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QPaintDeviceWindow", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QPaintDeviceWindow", /::setVisible\s*\(/, "visible")
-property_reader("QPaintDeviceWindow", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QPaintDeviceWindow", /::(visibility|isVisibility|hasVisibility)\s*\(/, "visibility")
-property_writer("QPaintDeviceWindow", /::setVisibility\s*\(/, "visibility")
-property_reader("QPaintDeviceWindow", /::(contentOrientation|isContentOrientation|hasContentOrientation)\s*\(/, "contentOrientation")
-property_writer("QPaintDeviceWindow", /::setContentOrientation\s*\(/, "contentOrientation")
-property_reader("QPaintDeviceWindow", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
-property_writer("QPaintDeviceWindow", /::setOpacity\s*\(/, "opacity")
property_reader("QPanGesture", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QPanGesture", /::setObjectName\s*\(/, "objectName")
property_reader("QPanGesture", /::(state|isState|hasState)\s*\(/, "state")
@@ -6255,34 +6335,6 @@ property_reader("QPanGesture", /::(horizontalVelocity|isHorizontalVelocity|hasHo
property_writer("QPanGesture", /::setHorizontalVelocity\s*\(/, "horizontalVelocity")
property_reader("QPanGesture", /::(verticalVelocity|isVerticalVelocity|hasVerticalVelocity)\s*\(/, "verticalVelocity")
property_writer("QPanGesture", /::setVerticalVelocity\s*\(/, "verticalVelocity")
-property_reader("QParallelAnimationGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QParallelAnimationGroup", /::setObjectName\s*\(/, "objectName")
-property_reader("QParallelAnimationGroup", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QParallelAnimationGroup", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QParallelAnimationGroup", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QParallelAnimationGroup", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QParallelAnimationGroup", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QParallelAnimationGroup", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
-property_reader("QParallelAnimationGroup", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QParallelAnimationGroup", /::setDirection\s*\(/, "direction")
-property_reader("QParallelAnimationGroup", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QPauseAnimation", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPauseAnimation", /::setObjectName\s*\(/, "objectName")
-property_reader("QPauseAnimation", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QPauseAnimation", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QPauseAnimation", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QPauseAnimation", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QPauseAnimation", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QPauseAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
-property_reader("QPauseAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QPauseAnimation", /::setDirection\s*\(/, "direction")
-property_reader("QPauseAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QPauseAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_writer("QPauseAnimation", /::setDuration\s*\(/, "duration")
-property_reader("QPdfWriter", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPdfWriter", /::setObjectName\s*\(/, "objectName")
-property_reader("QPictureFormatPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPictureFormatPlugin", /::setObjectName\s*\(/, "objectName")
property_reader("QPinchGesture", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QPinchGesture", /::setObjectName\s*\(/, "objectName")
property_reader("QPinchGesture", /::(state|isState|hasState)\s*\(/, "state")
@@ -6367,6 +6419,8 @@ property_reader("QPlainTextEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor"
property_writer("QPlainTextEdit", /::setCursor\s*\(/, "cursor")
property_reader("QPlainTextEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QPlainTextEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QPlainTextEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QPlainTextEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QPlainTextEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QPlainTextEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QPlainTextEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -6451,6 +6505,8 @@ property_reader("QPlainTextEdit", /::(overwriteMode|isOverwriteMode|hasOverwrite
property_writer("QPlainTextEdit", /::setOverwriteMode\s*\(/, "overwriteMode")
property_reader("QPlainTextEdit", /::(tabStopWidth|isTabStopWidth|hasTabStopWidth)\s*\(/, "tabStopWidth")
property_writer("QPlainTextEdit", /::setTabStopWidth\s*\(/, "tabStopWidth")
+property_reader("QPlainTextEdit", /::(tabStopDistance|isTabStopDistance|hasTabStopDistance)\s*\(/, "tabStopDistance")
+property_writer("QPlainTextEdit", /::setTabStopDistance\s*\(/, "tabStopDistance")
property_reader("QPlainTextEdit", /::(cursorWidth|isCursorWidth|hasCursorWidth)\s*\(/, "cursorWidth")
property_writer("QPlainTextEdit", /::setCursorWidth\s*\(/, "cursorWidth")
property_reader("QPlainTextEdit", /::(textInteractionFlags|isTextInteractionFlags|hasTextInteractionFlags)\s*\(/, "textInteractionFlags")
@@ -6464,324 +6520,6 @@ property_reader("QPlainTextEdit", /::(centerOnScroll|isCenterOnScroll|hasCenterO
property_writer("QPlainTextEdit", /::setCenterOnScroll\s*\(/, "centerOnScroll")
property_reader("QPlainTextEdit", /::(placeholderText|isPlaceholderText|hasPlaceholderText)\s*\(/, "placeholderText")
property_writer("QPlainTextEdit", /::setPlaceholderText\s*\(/, "placeholderText")
-property_reader("QPluginLoader", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPluginLoader", /::setObjectName\s*\(/, "objectName")
-property_reader("QPluginLoader", /::(fileName|isFileName|hasFileName)\s*\(/, "fileName")
-property_writer("QPluginLoader", /::setFileName\s*\(/, "fileName")
-property_reader("QPluginLoader", /::(loadHints|isLoadHints|hasLoadHints)\s*\(/, "loadHints")
-property_writer("QPluginLoader", /::setLoadHints\s*\(/, "loadHints")
-property_reader("QPrintDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPrintDialog", /::setObjectName\s*\(/, "objectName")
-property_reader("QPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_reader("QPrintDialog", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
-property_writer("QPrintDialog", /::setWindowModality\s*\(/, "windowModality")
-property_reader("QPrintDialog", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QPrintDialog", /::setEnabled\s*\(/, "enabled")
-property_reader("QPrintDialog", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_writer("QPrintDialog", /::setGeometry\s*\(/, "geometry")
-property_reader("QPrintDialog", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
-property_reader("QPrintDialog", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
-property_reader("QPrintDialog", /::(x|isX|hasX)\s*\(/, "x")
-property_reader("QPrintDialog", /::(y|isY|hasY)\s*\(/, "y")
-property_reader("QPrintDialog", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QPrintDialog", /::setPos\s*\(/, "pos")
-property_reader("QPrintDialog", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
-property_reader("QPrintDialog", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QPrintDialog", /::setSize\s*\(/, "size")
-property_reader("QPrintDialog", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_reader("QPrintDialog", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_reader("QPrintDialog", /::(rect|isRect|hasRect)\s*\(/, "rect")
-property_reader("QPrintDialog", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
-property_reader("QPrintDialog", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
-property_reader("QPrintDialog", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
-property_writer("QPrintDialog", /::setSizePolicy\s*\(/, "sizePolicy")
-property_reader("QPrintDialog", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
-property_writer("QPrintDialog", /::setMinimumSize\s*\(/, "minimumSize")
-property_reader("QPrintDialog", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
-property_writer("QPrintDialog", /::setMaximumSize\s*\(/, "maximumSize")
-property_reader("QPrintDialog", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QPrintDialog", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QPrintDialog", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QPrintDialog", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QPrintDialog", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QPrintDialog", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QPrintDialog", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QPrintDialog", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QPrintDialog", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
-property_writer("QPrintDialog", /::setSizeIncrement\s*\(/, "sizeIncrement")
-property_reader("QPrintDialog", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
-property_writer("QPrintDialog", /::setBaseSize\s*\(/, "baseSize")
-property_reader("QPrintDialog", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
-property_writer("QPrintDialog", /::setPalette\s*\(/, "palette")
-property_reader("QPrintDialog", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QPrintDialog", /::setFont\s*\(/, "font")
-property_reader("QPrintDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
-property_writer("QPrintDialog", /::setCursor\s*\(/, "cursor")
-property_reader("QPrintDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
-property_writer("QPrintDialog", /::setMouseTracking\s*\(/, "mouseTracking")
-property_reader("QPrintDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
-property_reader("QPrintDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
-property_writer("QPrintDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
-property_reader("QPrintDialog", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
-property_reader("QPrintDialog", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
-property_writer("QPrintDialog", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
-property_reader("QPrintDialog", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
-property_writer("QPrintDialog", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
-property_reader("QPrintDialog", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QPrintDialog", /::setVisible\s*\(/, "visible")
-property_reader("QPrintDialog", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
-property_reader("QPrintDialog", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
-property_reader("QPrintDialog", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_reader("QPrintDialog", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
-property_reader("QPrintDialog", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
-property_reader("QPrintDialog", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
-property_writer("QPrintDialog", /::setAcceptDrops\s*\(/, "acceptDrops")
-property_reader("QPrintDialog", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
-property_writer("QPrintDialog", /::setWindowTitle\s*\(/, "windowTitle")
-property_reader("QPrintDialog", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QPrintDialog", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QPrintDialog", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
-property_writer("QPrintDialog", /::setWindowIconText\s*\(/, "windowIconText")
-property_reader("QPrintDialog", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
-property_writer("QPrintDialog", /::setWindowOpacity\s*\(/, "windowOpacity")
-property_reader("QPrintDialog", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
-property_writer("QPrintDialog", /::setWindowModified\s*\(/, "windowModified")
-property_reader("QPrintDialog", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QPrintDialog", /::setToolTip\s*\(/, "toolTip")
-property_reader("QPrintDialog", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
-property_writer("QPrintDialog", /::setToolTipDuration\s*\(/, "toolTipDuration")
-property_reader("QPrintDialog", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QPrintDialog", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QPrintDialog", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QPrintDialog", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QPrintDialog", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
-property_writer("QPrintDialog", /::setAccessibleName\s*\(/, "accessibleName")
-property_reader("QPrintDialog", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
-property_writer("QPrintDialog", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-property_reader("QPrintDialog", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QPrintDialog", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QPrintDialog", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
-property_writer("QPrintDialog", /::setAutoFillBackground\s*\(/, "autoFillBackground")
-property_reader("QPrintDialog", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
-property_writer("QPrintDialog", /::setStyleSheet\s*\(/, "styleSheet")
-property_reader("QPrintDialog", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_writer("QPrintDialog", /::setLocale\s*\(/, "locale")
-property_reader("QPrintDialog", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
-property_writer("QPrintDialog", /::setWindowFilePath\s*\(/, "windowFilePath")
-property_reader("QPrintDialog", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
-property_writer("QPrintDialog", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QPrintDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
-property_writer("QPrintDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
-property_reader("QPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_writer("QPrintDialog", /::setModal\s*\(/, "modal")
-property_reader("QPrintDialog", /::(options|isOptions|hasOptions)\s*\(/, "options")
-property_writer("QPrintDialog", /::setOptions\s*\(/, "options")
-property_reader("QPrintPreviewDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPrintPreviewDialog", /::setObjectName\s*\(/, "objectName")
-property_reader("QPrintPreviewDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_reader("QPrintPreviewDialog", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
-property_writer("QPrintPreviewDialog", /::setWindowModality\s*\(/, "windowModality")
-property_reader("QPrintPreviewDialog", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QPrintPreviewDialog", /::setEnabled\s*\(/, "enabled")
-property_reader("QPrintPreviewDialog", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_writer("QPrintPreviewDialog", /::setGeometry\s*\(/, "geometry")
-property_reader("QPrintPreviewDialog", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
-property_reader("QPrintPreviewDialog", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
-property_reader("QPrintPreviewDialog", /::(x|isX|hasX)\s*\(/, "x")
-property_reader("QPrintPreviewDialog", /::(y|isY|hasY)\s*\(/, "y")
-property_reader("QPrintPreviewDialog", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QPrintPreviewDialog", /::setPos\s*\(/, "pos")
-property_reader("QPrintPreviewDialog", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
-property_reader("QPrintPreviewDialog", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QPrintPreviewDialog", /::setSize\s*\(/, "size")
-property_reader("QPrintPreviewDialog", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_reader("QPrintPreviewDialog", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_reader("QPrintPreviewDialog", /::(rect|isRect|hasRect)\s*\(/, "rect")
-property_reader("QPrintPreviewDialog", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
-property_reader("QPrintPreviewDialog", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
-property_reader("QPrintPreviewDialog", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
-property_writer("QPrintPreviewDialog", /::setSizePolicy\s*\(/, "sizePolicy")
-property_reader("QPrintPreviewDialog", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
-property_writer("QPrintPreviewDialog", /::setMinimumSize\s*\(/, "minimumSize")
-property_reader("QPrintPreviewDialog", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
-property_writer("QPrintPreviewDialog", /::setMaximumSize\s*\(/, "maximumSize")
-property_reader("QPrintPreviewDialog", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QPrintPreviewDialog", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QPrintPreviewDialog", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QPrintPreviewDialog", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QPrintPreviewDialog", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QPrintPreviewDialog", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QPrintPreviewDialog", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QPrintPreviewDialog", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QPrintPreviewDialog", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
-property_writer("QPrintPreviewDialog", /::setSizeIncrement\s*\(/, "sizeIncrement")
-property_reader("QPrintPreviewDialog", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
-property_writer("QPrintPreviewDialog", /::setBaseSize\s*\(/, "baseSize")
-property_reader("QPrintPreviewDialog", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
-property_writer("QPrintPreviewDialog", /::setPalette\s*\(/, "palette")
-property_reader("QPrintPreviewDialog", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QPrintPreviewDialog", /::setFont\s*\(/, "font")
-property_reader("QPrintPreviewDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
-property_writer("QPrintPreviewDialog", /::setCursor\s*\(/, "cursor")
-property_reader("QPrintPreviewDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
-property_writer("QPrintPreviewDialog", /::setMouseTracking\s*\(/, "mouseTracking")
-property_reader("QPrintPreviewDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
-property_reader("QPrintPreviewDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
-property_writer("QPrintPreviewDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
-property_reader("QPrintPreviewDialog", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
-property_reader("QPrintPreviewDialog", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
-property_writer("QPrintPreviewDialog", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
-property_reader("QPrintPreviewDialog", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
-property_writer("QPrintPreviewDialog", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
-property_reader("QPrintPreviewDialog", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QPrintPreviewDialog", /::setVisible\s*\(/, "visible")
-property_reader("QPrintPreviewDialog", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
-property_reader("QPrintPreviewDialog", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
-property_reader("QPrintPreviewDialog", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_reader("QPrintPreviewDialog", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
-property_reader("QPrintPreviewDialog", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
-property_reader("QPrintPreviewDialog", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
-property_writer("QPrintPreviewDialog", /::setAcceptDrops\s*\(/, "acceptDrops")
-property_reader("QPrintPreviewDialog", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
-property_writer("QPrintPreviewDialog", /::setWindowTitle\s*\(/, "windowTitle")
-property_reader("QPrintPreviewDialog", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QPrintPreviewDialog", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QPrintPreviewDialog", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
-property_writer("QPrintPreviewDialog", /::setWindowIconText\s*\(/, "windowIconText")
-property_reader("QPrintPreviewDialog", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
-property_writer("QPrintPreviewDialog", /::setWindowOpacity\s*\(/, "windowOpacity")
-property_reader("QPrintPreviewDialog", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
-property_writer("QPrintPreviewDialog", /::setWindowModified\s*\(/, "windowModified")
-property_reader("QPrintPreviewDialog", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QPrintPreviewDialog", /::setToolTip\s*\(/, "toolTip")
-property_reader("QPrintPreviewDialog", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
-property_writer("QPrintPreviewDialog", /::setToolTipDuration\s*\(/, "toolTipDuration")
-property_reader("QPrintPreviewDialog", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QPrintPreviewDialog", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QPrintPreviewDialog", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QPrintPreviewDialog", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QPrintPreviewDialog", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
-property_writer("QPrintPreviewDialog", /::setAccessibleName\s*\(/, "accessibleName")
-property_reader("QPrintPreviewDialog", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
-property_writer("QPrintPreviewDialog", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-property_reader("QPrintPreviewDialog", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QPrintPreviewDialog", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QPrintPreviewDialog", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
-property_writer("QPrintPreviewDialog", /::setAutoFillBackground\s*\(/, "autoFillBackground")
-property_reader("QPrintPreviewDialog", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
-property_writer("QPrintPreviewDialog", /::setStyleSheet\s*\(/, "styleSheet")
-property_reader("QPrintPreviewDialog", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_writer("QPrintPreviewDialog", /::setLocale\s*\(/, "locale")
-property_reader("QPrintPreviewDialog", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
-property_writer("QPrintPreviewDialog", /::setWindowFilePath\s*\(/, "windowFilePath")
-property_reader("QPrintPreviewDialog", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
-property_writer("QPrintPreviewDialog", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QPrintPreviewDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
-property_writer("QPrintPreviewDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
-property_reader("QPrintPreviewDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_writer("QPrintPreviewDialog", /::setModal\s*\(/, "modal")
-property_reader("QPrintPreviewWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPrintPreviewWidget", /::setObjectName\s*\(/, "objectName")
-property_reader("QPrintPreviewWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_reader("QPrintPreviewWidget", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
-property_writer("QPrintPreviewWidget", /::setWindowModality\s*\(/, "windowModality")
-property_reader("QPrintPreviewWidget", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QPrintPreviewWidget", /::setEnabled\s*\(/, "enabled")
-property_reader("QPrintPreviewWidget", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_writer("QPrintPreviewWidget", /::setGeometry\s*\(/, "geometry")
-property_reader("QPrintPreviewWidget", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
-property_reader("QPrintPreviewWidget", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
-property_reader("QPrintPreviewWidget", /::(x|isX|hasX)\s*\(/, "x")
-property_reader("QPrintPreviewWidget", /::(y|isY|hasY)\s*\(/, "y")
-property_reader("QPrintPreviewWidget", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QPrintPreviewWidget", /::setPos\s*\(/, "pos")
-property_reader("QPrintPreviewWidget", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
-property_reader("QPrintPreviewWidget", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QPrintPreviewWidget", /::setSize\s*\(/, "size")
-property_reader("QPrintPreviewWidget", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_reader("QPrintPreviewWidget", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_reader("QPrintPreviewWidget", /::(rect|isRect|hasRect)\s*\(/, "rect")
-property_reader("QPrintPreviewWidget", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
-property_reader("QPrintPreviewWidget", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
-property_reader("QPrintPreviewWidget", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
-property_writer("QPrintPreviewWidget", /::setSizePolicy\s*\(/, "sizePolicy")
-property_reader("QPrintPreviewWidget", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
-property_writer("QPrintPreviewWidget", /::setMinimumSize\s*\(/, "minimumSize")
-property_reader("QPrintPreviewWidget", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
-property_writer("QPrintPreviewWidget", /::setMaximumSize\s*\(/, "maximumSize")
-property_reader("QPrintPreviewWidget", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QPrintPreviewWidget", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QPrintPreviewWidget", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QPrintPreviewWidget", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QPrintPreviewWidget", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QPrintPreviewWidget", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QPrintPreviewWidget", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QPrintPreviewWidget", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QPrintPreviewWidget", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
-property_writer("QPrintPreviewWidget", /::setSizeIncrement\s*\(/, "sizeIncrement")
-property_reader("QPrintPreviewWidget", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
-property_writer("QPrintPreviewWidget", /::setBaseSize\s*\(/, "baseSize")
-property_reader("QPrintPreviewWidget", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
-property_writer("QPrintPreviewWidget", /::setPalette\s*\(/, "palette")
-property_reader("QPrintPreviewWidget", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QPrintPreviewWidget", /::setFont\s*\(/, "font")
-property_reader("QPrintPreviewWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
-property_writer("QPrintPreviewWidget", /::setCursor\s*\(/, "cursor")
-property_reader("QPrintPreviewWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
-property_writer("QPrintPreviewWidget", /::setMouseTracking\s*\(/, "mouseTracking")
-property_reader("QPrintPreviewWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
-property_reader("QPrintPreviewWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
-property_writer("QPrintPreviewWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
-property_reader("QPrintPreviewWidget", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
-property_reader("QPrintPreviewWidget", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
-property_writer("QPrintPreviewWidget", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
-property_reader("QPrintPreviewWidget", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
-property_writer("QPrintPreviewWidget", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
-property_reader("QPrintPreviewWidget", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QPrintPreviewWidget", /::setVisible\s*\(/, "visible")
-property_reader("QPrintPreviewWidget", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
-property_reader("QPrintPreviewWidget", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
-property_reader("QPrintPreviewWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_reader("QPrintPreviewWidget", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
-property_reader("QPrintPreviewWidget", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
-property_reader("QPrintPreviewWidget", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
-property_writer("QPrintPreviewWidget", /::setAcceptDrops\s*\(/, "acceptDrops")
-property_reader("QPrintPreviewWidget", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
-property_writer("QPrintPreviewWidget", /::setWindowTitle\s*\(/, "windowTitle")
-property_reader("QPrintPreviewWidget", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QPrintPreviewWidget", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QPrintPreviewWidget", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
-property_writer("QPrintPreviewWidget", /::setWindowIconText\s*\(/, "windowIconText")
-property_reader("QPrintPreviewWidget", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
-property_writer("QPrintPreviewWidget", /::setWindowOpacity\s*\(/, "windowOpacity")
-property_reader("QPrintPreviewWidget", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
-property_writer("QPrintPreviewWidget", /::setWindowModified\s*\(/, "windowModified")
-property_reader("QPrintPreviewWidget", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QPrintPreviewWidget", /::setToolTip\s*\(/, "toolTip")
-property_reader("QPrintPreviewWidget", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
-property_writer("QPrintPreviewWidget", /::setToolTipDuration\s*\(/, "toolTipDuration")
-property_reader("QPrintPreviewWidget", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QPrintPreviewWidget", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QPrintPreviewWidget", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QPrintPreviewWidget", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QPrintPreviewWidget", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
-property_writer("QPrintPreviewWidget", /::setAccessibleName\s*\(/, "accessibleName")
-property_reader("QPrintPreviewWidget", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
-property_writer("QPrintPreviewWidget", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-property_reader("QPrintPreviewWidget", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QPrintPreviewWidget", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QPrintPreviewWidget", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
-property_writer("QPrintPreviewWidget", /::setAutoFillBackground\s*\(/, "autoFillBackground")
-property_reader("QPrintPreviewWidget", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
-property_writer("QPrintPreviewWidget", /::setStyleSheet\s*\(/, "styleSheet")
-property_reader("QPrintPreviewWidget", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_writer("QPrintPreviewWidget", /::setLocale\s*\(/, "locale")
-property_reader("QPrintPreviewWidget", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
-property_writer("QPrintPreviewWidget", /::setWindowFilePath\s*\(/, "windowFilePath")
-property_reader("QPrintPreviewWidget", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
-property_writer("QPrintPreviewWidget", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QProcess", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QProcess", /::setObjectName\s*\(/, "objectName")
property_reader("QProgressBar", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QProgressBar", /::setObjectName\s*\(/, "objectName")
property_reader("QProgressBar", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -6831,6 +6569,8 @@ property_reader("QProgressBar", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QProgressBar", /::setCursor\s*\(/, "cursor")
property_reader("QProgressBar", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QProgressBar", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QProgressBar", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QProgressBar", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QProgressBar", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QProgressBar", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QProgressBar", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -6950,6 +6690,8 @@ property_reader("QProgressDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor
property_writer("QProgressDialog", /::setCursor\s*\(/, "cursor")
property_reader("QProgressDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QProgressDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QProgressDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QProgressDialog", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QProgressDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QProgressDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QProgressDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7020,30 +6762,6 @@ property_reader("QProgressDialog", /::(minimumDuration|isMinimumDuration|hasMini
property_writer("QProgressDialog", /::setMinimumDuration\s*\(/, "minimumDuration")
property_reader("QProgressDialog", /::(labelText|isLabelText|hasLabelText)\s*\(/, "labelText")
property_writer("QProgressDialog", /::setLabelText\s*\(/, "labelText")
-property_reader("QPropertyAnimation", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPropertyAnimation", /::setObjectName\s*\(/, "objectName")
-property_reader("QPropertyAnimation", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QPropertyAnimation", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QPropertyAnimation", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QPropertyAnimation", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QPropertyAnimation", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QPropertyAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
-property_reader("QPropertyAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QPropertyAnimation", /::setDirection\s*\(/, "direction")
-property_reader("QPropertyAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QPropertyAnimation", /::(startValue|isStartValue|hasStartValue)\s*\(/, "startValue")
-property_writer("QPropertyAnimation", /::setStartValue\s*\(/, "startValue")
-property_reader("QPropertyAnimation", /::(endValue|isEndValue|hasEndValue)\s*\(/, "endValue")
-property_writer("QPropertyAnimation", /::setEndValue\s*\(/, "endValue")
-property_reader("QPropertyAnimation", /::(currentValue|isCurrentValue|hasCurrentValue)\s*\(/, "currentValue")
-property_reader("QPropertyAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_writer("QPropertyAnimation", /::setDuration\s*\(/, "duration")
-property_reader("QPropertyAnimation", /::(easingCurve|isEasingCurve|hasEasingCurve)\s*\(/, "easingCurve")
-property_writer("QPropertyAnimation", /::setEasingCurve\s*\(/, "easingCurve")
-property_reader("QPropertyAnimation", /::(propertyName|isPropertyName|hasPropertyName)\s*\(/, "propertyName")
-property_writer("QPropertyAnimation", /::setPropertyName\s*\(/, "propertyName")
-property_reader("QPropertyAnimation", /::(targetObject|isTargetObject|hasTargetObject)\s*\(/, "targetObject")
-property_writer("QPropertyAnimation", /::setTargetObject\s*\(/, "targetObject")
property_reader("QPushButton", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QPushButton", /::setObjectName\s*\(/, "objectName")
property_reader("QPushButton", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -7093,6 +6811,8 @@ property_reader("QPushButton", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QPushButton", /::setCursor\s*\(/, "cursor")
property_reader("QPushButton", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QPushButton", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QPushButton", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QPushButton", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QPushButton", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QPushButton", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QPushButton", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7221,6 +6941,8 @@ property_reader("QRadioButton", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QRadioButton", /::setCursor\s*\(/, "cursor")
property_reader("QRadioButton", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QRadioButton", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QRadioButton", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QRadioButton", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QRadioButton", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QRadioButton", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QRadioButton", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7294,80 +7016,6 @@ property_reader("QRadioButton", /::(autoRepeatInterval|isAutoRepeatInterval|hasA
property_writer("QRadioButton", /::setAutoRepeatInterval\s*\(/, "autoRepeatInterval")
property_reader("QRadioButton", /::(down|isDown|hasDown)\s*\(/, "down")
property_writer("QRadioButton", /::setDown\s*\(/, "down")
-property_reader("QRadioData", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRadioData", /::setObjectName\s*\(/, "objectName")
-property_reader("QRadioData", /::(stationId|isStationId|hasStationId)\s*\(/, "stationId")
-property_reader("QRadioData", /::(programType|isProgramType|hasProgramType)\s*\(/, "programType")
-property_reader("QRadioData", /::(programTypeName|isProgramTypeName|hasProgramTypeName)\s*\(/, "programTypeName")
-property_reader("QRadioData", /::(stationName|isStationName|hasStationName)\s*\(/, "stationName")
-property_reader("QRadioData", /::(radioText|isRadioText|hasRadioText)\s*\(/, "radioText")
-property_reader("QRadioData", /::(alternativeFrequenciesEnabled|isAlternativeFrequenciesEnabled|hasAlternativeFrequenciesEnabled)\s*\(/, "alternativeFrequenciesEnabled")
-property_writer("QRadioData", /::setAlternativeFrequenciesEnabled\s*\(/, "alternativeFrequenciesEnabled")
-property_reader("QRadioDataControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRadioDataControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QRadioTuner", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRadioTuner", /::setObjectName\s*\(/, "objectName")
-property_reader("QRadioTuner", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
-property_writer("QRadioTuner", /::setNotifyInterval\s*\(/, "notifyInterval")
-property_reader("QRadioTuner", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QRadioTuner", /::(band|isBand|hasBand)\s*\(/, "band")
-property_writer("QRadioTuner", /::setBand\s*\(/, "band")
-property_reader("QRadioTuner", /::(frequency|isFrequency|hasFrequency)\s*\(/, "frequency")
-property_writer("QRadioTuner", /::setFrequency\s*\(/, "frequency")
-property_reader("QRadioTuner", /::(stereo|isStereo|hasStereo)\s*\(/, "stereo")
-property_reader("QRadioTuner", /::(stereoMode|isStereoMode|hasStereoMode)\s*\(/, "stereoMode")
-property_writer("QRadioTuner", /::setStereoMode\s*\(/, "stereoMode")
-property_reader("QRadioTuner", /::(signalStrength|isSignalStrength|hasSignalStrength)\s*\(/, "signalStrength")
-property_reader("QRadioTuner", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
-property_writer("QRadioTuner", /::setVolume\s*\(/, "volume")
-property_reader("QRadioTuner", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
-property_writer("QRadioTuner", /::setMuted\s*\(/, "muted")
-property_reader("QRadioTuner", /::(searching|isSearching|hasSearching)\s*\(/, "searching")
-property_reader("QRadioTuner", /::(antennaConnected|isAntennaConnected|hasAntennaConnected)\s*\(/, "antennaConnected")
-property_reader("QRadioTuner", /::(radioData|isRadioData|hasRadioData)\s*\(/, "radioData")
-property_reader("QRadioTunerControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRadioTunerControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QRasterWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRasterWindow", /::setObjectName\s*\(/, "objectName")
-property_reader("QRasterWindow", /::(title|isTitle|hasTitle)\s*\(/, "title")
-property_writer("QRasterWindow", /::setTitle\s*\(/, "title")
-property_reader("QRasterWindow", /::(modality|isModality|hasModality)\s*\(/, "modality")
-property_writer("QRasterWindow", /::setModality\s*\(/, "modality")
-property_reader("QRasterWindow", /::(flags|isFlags|hasFlags)\s*\(/, "flags")
-property_writer("QRasterWindow", /::setFlags\s*\(/, "flags")
-property_reader("QRasterWindow", /::(x|isX|hasX)\s*\(/, "x")
-property_writer("QRasterWindow", /::setX\s*\(/, "x")
-property_reader("QRasterWindow", /::(y|isY|hasY)\s*\(/, "y")
-property_writer("QRasterWindow", /::setY\s*\(/, "y")
-property_reader("QRasterWindow", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_writer("QRasterWindow", /::setWidth\s*\(/, "width")
-property_reader("QRasterWindow", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_writer("QRasterWindow", /::setHeight\s*\(/, "height")
-property_reader("QRasterWindow", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QRasterWindow", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QRasterWindow", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QRasterWindow", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QRasterWindow", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QRasterWindow", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QRasterWindow", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QRasterWindow", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QRasterWindow", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QRasterWindow", /::setVisible\s*\(/, "visible")
-property_reader("QRasterWindow", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QRasterWindow", /::(visibility|isVisibility|hasVisibility)\s*\(/, "visibility")
-property_writer("QRasterWindow", /::setVisibility\s*\(/, "visibility")
-property_reader("QRasterWindow", /::(contentOrientation|isContentOrientation|hasContentOrientation)\s*\(/, "contentOrientation")
-property_writer("QRasterWindow", /::setContentOrientation\s*\(/, "contentOrientation")
-property_reader("QRasterWindow", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
-property_writer("QRasterWindow", /::setOpacity\s*\(/, "opacity")
-property_reader("QRegExpValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRegExpValidator", /::setObjectName\s*\(/, "objectName")
-property_reader("QRegExpValidator", /::(regExp|isRegExp|hasRegExp)\s*\(/, "regExp")
-property_writer("QRegExpValidator", /::setRegExp\s*\(/, "regExp")
-property_reader("QRegularExpressionValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRegularExpressionValidator", /::setObjectName\s*\(/, "objectName")
-property_reader("QRegularExpressionValidator", /::(regularExpression|isRegularExpression|hasRegularExpression)\s*\(/, "regularExpression")
-property_writer("QRegularExpressionValidator", /::setRegularExpression\s*\(/, "regularExpression")
property_reader("QRubberBand", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QRubberBand", /::setObjectName\s*\(/, "objectName")
property_reader("QRubberBand", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -7417,6 +7065,8 @@ property_reader("QRubberBand", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QRubberBand", /::setCursor\s*\(/, "cursor")
property_reader("QRubberBand", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QRubberBand", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QRubberBand", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QRubberBand", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QRubberBand", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QRubberBand", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QRubberBand", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7468,32 +7118,6 @@ property_reader("QRubberBand", /::(windowFilePath|isWindowFilePath|hasWindowFile
property_writer("QRubberBand", /::setWindowFilePath\s*\(/, "windowFilePath")
property_reader("QRubberBand", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
property_writer("QRubberBand", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QSaveFile", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSaveFile", /::setObjectName\s*\(/, "objectName")
-property_reader("QScreen", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QScreen", /::setObjectName\s*\(/, "objectName")
-property_reader("QScreen", /::(name|isName|hasName)\s*\(/, "name")
-property_reader("QScreen", /::(depth|isDepth|hasDepth)\s*\(/, "depth")
-property_reader("QScreen", /::(size|isSize|hasSize)\s*\(/, "size")
-property_reader("QScreen", /::(availableSize|isAvailableSize|hasAvailableSize)\s*\(/, "availableSize")
-property_reader("QScreen", /::(virtualSize|isVirtualSize|hasVirtualSize)\s*\(/, "virtualSize")
-property_reader("QScreen", /::(availableVirtualSize|isAvailableVirtualSize|hasAvailableVirtualSize)\s*\(/, "availableVirtualSize")
-property_reader("QScreen", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_reader("QScreen", /::(availableGeometry|isAvailableGeometry|hasAvailableGeometry)\s*\(/, "availableGeometry")
-property_reader("QScreen", /::(virtualGeometry|isVirtualGeometry|hasVirtualGeometry)\s*\(/, "virtualGeometry")
-property_reader("QScreen", /::(availableVirtualGeometry|isAvailableVirtualGeometry|hasAvailableVirtualGeometry)\s*\(/, "availableVirtualGeometry")
-property_reader("QScreen", /::(physicalSize|isPhysicalSize|hasPhysicalSize)\s*\(/, "physicalSize")
-property_reader("QScreen", /::(physicalDotsPerInchX|isPhysicalDotsPerInchX|hasPhysicalDotsPerInchX)\s*\(/, "physicalDotsPerInchX")
-property_reader("QScreen", /::(physicalDotsPerInchY|isPhysicalDotsPerInchY|hasPhysicalDotsPerInchY)\s*\(/, "physicalDotsPerInchY")
-property_reader("QScreen", /::(physicalDotsPerInch|isPhysicalDotsPerInch|hasPhysicalDotsPerInch)\s*\(/, "physicalDotsPerInch")
-property_reader("QScreen", /::(logicalDotsPerInchX|isLogicalDotsPerInchX|hasLogicalDotsPerInchX)\s*\(/, "logicalDotsPerInchX")
-property_reader("QScreen", /::(logicalDotsPerInchY|isLogicalDotsPerInchY|hasLogicalDotsPerInchY)\s*\(/, "logicalDotsPerInchY")
-property_reader("QScreen", /::(logicalDotsPerInch|isLogicalDotsPerInch|hasLogicalDotsPerInch)\s*\(/, "logicalDotsPerInch")
-property_reader("QScreen", /::(devicePixelRatio|isDevicePixelRatio|hasDevicePixelRatio)\s*\(/, "devicePixelRatio")
-property_reader("QScreen", /::(primaryOrientation|isPrimaryOrientation|hasPrimaryOrientation)\s*\(/, "primaryOrientation")
-property_reader("QScreen", /::(orientation|isOrientation|hasOrientation)\s*\(/, "orientation")
-property_reader("QScreen", /::(nativeOrientation|isNativeOrientation|hasNativeOrientation)\s*\(/, "nativeOrientation")
-property_reader("QScreen", /::(refreshRate|isRefreshRate|hasRefreshRate)\s*\(/, "refreshRate")
property_reader("QScrollArea", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QScrollArea", /::setObjectName\s*\(/, "objectName")
property_reader("QScrollArea", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -7543,6 +7167,8 @@ property_reader("QScrollArea", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QScrollArea", /::setCursor\s*\(/, "cursor")
property_reader("QScrollArea", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QScrollArea", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QScrollArea", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QScrollArea", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QScrollArea", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QScrollArea", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QScrollArea", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7664,6 +7290,8 @@ property_reader("QScrollBar", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QScrollBar", /::setCursor\s*\(/, "cursor")
property_reader("QScrollBar", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QScrollBar", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QScrollBar", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QScrollBar", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QScrollBar", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QScrollBar", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QScrollBar", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7742,24 +7370,6 @@ property_writer("QScroller", /::setObjectName\s*\(/, "objectName")
property_reader("QScroller", /::(state|isState|hasState)\s*\(/, "state")
property_reader("QScroller", /::(scrollerProperties|isScrollerProperties|hasScrollerProperties)\s*\(/, "scrollerProperties")
property_writer("QScroller", /::setScrollerProperties\s*\(/, "scrollerProperties")
-property_reader("QSequentialAnimationGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSequentialAnimationGroup", /::setObjectName\s*\(/, "objectName")
-property_reader("QSequentialAnimationGroup", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QSequentialAnimationGroup", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QSequentialAnimationGroup", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QSequentialAnimationGroup", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QSequentialAnimationGroup", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QSequentialAnimationGroup", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
-property_reader("QSequentialAnimationGroup", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QSequentialAnimationGroup", /::setDirection\s*\(/, "direction")
-property_reader("QSequentialAnimationGroup", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QSequentialAnimationGroup", /::(currentAnimation|isCurrentAnimation|hasCurrentAnimation)\s*\(/, "currentAnimation")
-property_reader("QSessionManager", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSessionManager", /::setObjectName\s*\(/, "objectName")
-property_reader("QSettings", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSettings", /::setObjectName\s*\(/, "objectName")
-property_reader("QSharedMemory", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSharedMemory", /::setObjectName\s*\(/, "objectName")
property_reader("QShortcut", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QShortcut", /::setObjectName\s*\(/, "objectName")
property_reader("QShortcut", /::(key|isKey|hasKey)\s*\(/, "key")
@@ -7772,21 +7382,6 @@ property_reader("QShortcut", /::(autoRepeat|isAutoRepeat|hasAutoRepeat)\s*\(/, "
property_writer("QShortcut", /::setAutoRepeat\s*\(/, "autoRepeat")
property_reader("QShortcut", /::(context|isContext|hasContext)\s*\(/, "context")
property_writer("QShortcut", /::setContext\s*\(/, "context")
-property_reader("QSignalMapper", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSignalMapper", /::setObjectName\s*\(/, "objectName")
-property_reader("QSignalTransition", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSignalTransition", /::setObjectName\s*\(/, "objectName")
-property_reader("QSignalTransition", /::(sourceState|isSourceState|hasSourceState)\s*\(/, "sourceState")
-property_reader("QSignalTransition", /::(targetState|isTargetState|hasTargetState)\s*\(/, "targetState")
-property_writer("QSignalTransition", /::setTargetState\s*\(/, "targetState")
-property_reader("QSignalTransition", /::(targetStates|isTargetStates|hasTargetStates)\s*\(/, "targetStates")
-property_writer("QSignalTransition", /::setTargetStates\s*\(/, "targetStates")
-property_reader("QSignalTransition", /::(transitionType|isTransitionType|hasTransitionType)\s*\(/, "transitionType")
-property_writer("QSignalTransition", /::setTransitionType\s*\(/, "transitionType")
-property_reader("QSignalTransition", /::(senderObject|isSenderObject|hasSenderObject)\s*\(/, "senderObject")
-property_writer("QSignalTransition", /::setSenderObject\s*\(/, "senderObject")
-property_reader("QSignalTransition", /::(signal|isSignal|hasSignal)\s*\(/, "signal")
-property_writer("QSignalTransition", /::setSignal\s*\(/, "signal")
property_reader("QSizeGrip", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QSizeGrip", /::setObjectName\s*\(/, "objectName")
property_reader("QSizeGrip", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -7836,6 +7431,8 @@ property_reader("QSizeGrip", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QSizeGrip", /::setCursor\s*\(/, "cursor")
property_reader("QSizeGrip", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QSizeGrip", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QSizeGrip", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QSizeGrip", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QSizeGrip", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QSizeGrip", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QSizeGrip", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7936,6 +7533,8 @@ property_reader("QSlider", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QSlider", /::setCursor\s*\(/, "cursor")
property_reader("QSlider", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QSlider", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QSlider", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QSlider", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QSlider", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QSlider", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QSlider", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8013,45 +7612,6 @@ property_reader("QSlider", /::(tickPosition|isTickPosition|hasTickPosition)\s*\(
property_writer("QSlider", /::setTickPosition\s*\(/, "tickPosition")
property_reader("QSlider", /::(tickInterval|isTickInterval|hasTickInterval)\s*\(/, "tickInterval")
property_writer("QSlider", /::setTickInterval\s*\(/, "tickInterval")
-property_reader("QSocketNotifier", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSocketNotifier", /::setObjectName\s*\(/, "objectName")
-property_reader("QSortFilterProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSortFilterProxyModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QSortFilterProxyModel", /::(sourceModel|isSourceModel|hasSourceModel)\s*\(/, "sourceModel")
-property_writer("QSortFilterProxyModel", /::setSourceModel\s*\(/, "sourceModel")
-property_reader("QSortFilterProxyModel", /::(filterRegExp|isFilterRegExp|hasFilterRegExp)\s*\(/, "filterRegExp")
-property_writer("QSortFilterProxyModel", /::setFilterRegExp\s*\(/, "filterRegExp")
-property_reader("QSortFilterProxyModel", /::(filterKeyColumn|isFilterKeyColumn|hasFilterKeyColumn)\s*\(/, "filterKeyColumn")
-property_writer("QSortFilterProxyModel", /::setFilterKeyColumn\s*\(/, "filterKeyColumn")
-property_reader("QSortFilterProxyModel", /::(dynamicSortFilter|isDynamicSortFilter|hasDynamicSortFilter)\s*\(/, "dynamicSortFilter")
-property_writer("QSortFilterProxyModel", /::setDynamicSortFilter\s*\(/, "dynamicSortFilter")
-property_reader("QSortFilterProxyModel", /::(filterCaseSensitivity|isFilterCaseSensitivity|hasFilterCaseSensitivity)\s*\(/, "filterCaseSensitivity")
-property_writer("QSortFilterProxyModel", /::setFilterCaseSensitivity\s*\(/, "filterCaseSensitivity")
-property_reader("QSortFilterProxyModel", /::(sortCaseSensitivity|isSortCaseSensitivity|hasSortCaseSensitivity)\s*\(/, "sortCaseSensitivity")
-property_writer("QSortFilterProxyModel", /::setSortCaseSensitivity\s*\(/, "sortCaseSensitivity")
-property_reader("QSortFilterProxyModel", /::(isSortLocaleAware|isIsSortLocaleAware|hasIsSortLocaleAware)\s*\(/, "isSortLocaleAware")
-property_writer("QSortFilterProxyModel", /::setIsSortLocaleAware\s*\(/, "isSortLocaleAware")
-property_reader("QSortFilterProxyModel", /::(sortRole|isSortRole|hasSortRole)\s*\(/, "sortRole")
-property_writer("QSortFilterProxyModel", /::setSortRole\s*\(/, "sortRole")
-property_reader("QSortFilterProxyModel", /::(filterRole|isFilterRole|hasFilterRole)\s*\(/, "filterRole")
-property_writer("QSortFilterProxyModel", /::setFilterRole\s*\(/, "filterRole")
-property_reader("QSound", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSound", /::setObjectName\s*\(/, "objectName")
-property_reader("QSoundEffect", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSoundEffect", /::setObjectName\s*\(/, "objectName")
-property_reader("QSoundEffect", /::(source|isSource|hasSource)\s*\(/, "source")
-property_writer("QSoundEffect", /::setSource\s*\(/, "source")
-property_reader("QSoundEffect", /::(loops|isLoops|hasLoops)\s*\(/, "loops")
-property_writer("QSoundEffect", /::setLoops\s*\(/, "loops")
-property_reader("QSoundEffect", /::(loopsRemaining|isLoopsRemaining|hasLoopsRemaining)\s*\(/, "loopsRemaining")
-property_reader("QSoundEffect", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
-property_writer("QSoundEffect", /::setVolume\s*\(/, "volume")
-property_reader("QSoundEffect", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
-property_writer("QSoundEffect", /::setMuted\s*\(/, "muted")
-property_reader("QSoundEffect", /::(playing|isPlaying|hasPlaying)\s*\(/, "playing")
-property_reader("QSoundEffect", /::(status|isStatus|hasStatus)\s*\(/, "status")
-property_reader("QSoundEffect", /::(category|isCategory|hasCategory)\s*\(/, "category")
-property_writer("QSoundEffect", /::setCategory\s*\(/, "category")
property_reader("QSpinBox", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QSpinBox", /::setObjectName\s*\(/, "objectName")
property_reader("QSpinBox", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -8101,6 +7661,8 @@ property_reader("QSpinBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QSpinBox", /::setCursor\s*\(/, "cursor")
property_reader("QSpinBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QSpinBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QSpinBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QSpinBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QSpinBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QSpinBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QSpinBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8185,6 +7747,8 @@ property_reader("QSpinBox", /::(maximum|isMaximum|hasMaximum)\s*\(/, "maximum")
property_writer("QSpinBox", /::setMaximum\s*\(/, "maximum")
property_reader("QSpinBox", /::(singleStep|isSingleStep|hasSingleStep)\s*\(/, "singleStep")
property_writer("QSpinBox", /::setSingleStep\s*\(/, "singleStep")
+property_reader("QSpinBox", /::(stepType|isStepType|hasStepType)\s*\(/, "stepType")
+property_writer("QSpinBox", /::setStepType\s*\(/, "stepType")
property_reader("QSpinBox", /::(value|isValue|hasValue)\s*\(/, "value")
property_writer("QSpinBox", /::setValue\s*\(/, "value")
property_reader("QSpinBox", /::(displayIntegerBase|isDisplayIntegerBase|hasDisplayIntegerBase)\s*\(/, "displayIntegerBase")
@@ -8238,6 +7802,8 @@ property_reader("QSplashScreen", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QSplashScreen", /::setCursor\s*\(/, "cursor")
property_reader("QSplashScreen", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QSplashScreen", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QSplashScreen", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QSplashScreen", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QSplashScreen", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QSplashScreen", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QSplashScreen", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8338,6 +7904,8 @@ property_reader("QSplitter", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QSplitter", /::setCursor\s*\(/, "cursor")
property_reader("QSplitter", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QSplitter", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QSplitter", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QSplitter", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QSplitter", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QSplitter", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QSplitter", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8457,6 +8025,8 @@ property_reader("QSplitterHandle", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor
property_writer("QSplitterHandle", /::setCursor\s*\(/, "cursor")
property_reader("QSplitterHandle", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QSplitterHandle", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QSplitterHandle", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QSplitterHandle", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QSplitterHandle", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QSplitterHandle", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QSplitterHandle", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8508,16 +8078,6 @@ property_reader("QSplitterHandle", /::(windowFilePath|isWindowFilePath|hasWindow
property_writer("QSplitterHandle", /::setWindowFilePath\s*\(/, "windowFilePath")
property_reader("QSplitterHandle", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
property_writer("QSplitterHandle", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QSqlDriver", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSqlDriver", /::setObjectName\s*\(/, "objectName")
-property_reader("QSqlQueryModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSqlQueryModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QSqlRelationalTableModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSqlRelationalTableModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QSqlTableModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSqlTableModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QSslSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSslSocket", /::setObjectName\s*\(/, "objectName")
property_reader("QStackedLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QStackedLayout", /::setObjectName\s*\(/, "objectName")
property_reader("QStackedLayout", /::(margin|isMargin|hasMargin)\s*\(/, "margin")
@@ -8579,6 +8139,8 @@ property_reader("QStackedWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor"
property_writer("QStackedWidget", /::setCursor\s*\(/, "cursor")
property_reader("QStackedWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QStackedWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QStackedWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QStackedWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QStackedWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QStackedWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QStackedWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8644,35 +8206,6 @@ property_writer("QStackedWidget", /::setFrameRect\s*\(/, "frameRect")
property_reader("QStackedWidget", /::(currentIndex|isCurrentIndex|hasCurrentIndex)\s*\(/, "currentIndex")
property_writer("QStackedWidget", /::setCurrentIndex\s*\(/, "currentIndex")
property_reader("QStackedWidget", /::(count|isCount|hasCount)\s*\(/, "count")
-property_reader("QStandardItemModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QStandardItemModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QStandardItemModel", /::(sortRole|isSortRole|hasSortRole)\s*\(/, "sortRole")
-property_writer("QStandardItemModel", /::setSortRole\s*\(/, "sortRole")
-property_reader("QState", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QState", /::setObjectName\s*\(/, "objectName")
-property_reader("QState", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QState", /::(initialState|isInitialState|hasInitialState)\s*\(/, "initialState")
-property_writer("QState", /::setInitialState\s*\(/, "initialState")
-property_reader("QState", /::(errorState|isErrorState|hasErrorState)\s*\(/, "errorState")
-property_writer("QState", /::setErrorState\s*\(/, "errorState")
-property_reader("QState", /::(childMode|isChildMode|hasChildMode)\s*\(/, "childMode")
-property_writer("QState", /::setChildMode\s*\(/, "childMode")
-property_reader("QStateMachine", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QStateMachine", /::setObjectName\s*\(/, "objectName")
-property_reader("QStateMachine", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QStateMachine", /::(initialState|isInitialState|hasInitialState)\s*\(/, "initialState")
-property_writer("QStateMachine", /::setInitialState\s*\(/, "initialState")
-property_reader("QStateMachine", /::(errorState|isErrorState|hasErrorState)\s*\(/, "errorState")
-property_writer("QStateMachine", /::setErrorState\s*\(/, "errorState")
-property_reader("QStateMachine", /::(childMode|isChildMode|hasChildMode)\s*\(/, "childMode")
-property_writer("QStateMachine", /::setChildMode\s*\(/, "childMode")
-property_reader("QStateMachine", /::(errorString|isErrorString|hasErrorString)\s*\(/, "errorString")
-property_reader("QStateMachine", /::(globalRestorePolicy|isGlobalRestorePolicy|hasGlobalRestorePolicy)\s*\(/, "globalRestorePolicy")
-property_writer("QStateMachine", /::setGlobalRestorePolicy\s*\(/, "globalRestorePolicy")
-property_reader("QStateMachine", /::(running|isRunning|hasRunning)\s*\(/, "running")
-property_writer("QStateMachine", /::setRunning\s*\(/, "running")
-property_reader("QStateMachine", /::(animated|isAnimated|hasAnimated)\s*\(/, "animated")
-property_writer("QStateMachine", /::setAnimated\s*\(/, "animated")
property_reader("QStatusBar", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QStatusBar", /::setObjectName\s*\(/, "objectName")
property_reader("QStatusBar", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -8722,6 +8255,8 @@ property_reader("QStatusBar", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QStatusBar", /::setCursor\s*\(/, "cursor")
property_reader("QStatusBar", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QStatusBar", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QStatusBar", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QStatusBar", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QStatusBar", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QStatusBar", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QStatusBar", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8775,140 +8310,12 @@ property_reader("QStatusBar", /::(inputMethodHints|isInputMethodHints|hasInputMe
property_writer("QStatusBar", /::setInputMethodHints\s*\(/, "inputMethodHints")
property_reader("QStatusBar", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
property_writer("QStatusBar", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
-property_reader("QStringListModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QStringListModel", /::setObjectName\s*\(/, "objectName")
property_reader("QStyle", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QStyle", /::setObjectName\s*\(/, "objectName")
-property_reader("QStyleHints", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QStyleHints", /::setObjectName\s*\(/, "objectName")
-property_reader("QStyleHints", /::(cursorFlashTime|isCursorFlashTime|hasCursorFlashTime)\s*\(/, "cursorFlashTime")
-property_reader("QStyleHints", /::(fontSmoothingGamma|isFontSmoothingGamma|hasFontSmoothingGamma)\s*\(/, "fontSmoothingGamma")
-property_reader("QStyleHints", /::(keyboardAutoRepeatRate|isKeyboardAutoRepeatRate|hasKeyboardAutoRepeatRate)\s*\(/, "keyboardAutoRepeatRate")
-property_reader("QStyleHints", /::(keyboardInputInterval|isKeyboardInputInterval|hasKeyboardInputInterval)\s*\(/, "keyboardInputInterval")
-property_reader("QStyleHints", /::(mouseDoubleClickInterval|isMouseDoubleClickInterval|hasMouseDoubleClickInterval)\s*\(/, "mouseDoubleClickInterval")
-property_reader("QStyleHints", /::(mousePressAndHoldInterval|isMousePressAndHoldInterval|hasMousePressAndHoldInterval)\s*\(/, "mousePressAndHoldInterval")
-property_reader("QStyleHints", /::(passwordMaskCharacter|isPasswordMaskCharacter|hasPasswordMaskCharacter)\s*\(/, "passwordMaskCharacter")
-property_reader("QStyleHints", /::(passwordMaskDelay|isPasswordMaskDelay|hasPasswordMaskDelay)\s*\(/, "passwordMaskDelay")
-property_reader("QStyleHints", /::(setFocusOnTouchRelease|isSetFocusOnTouchRelease|hasSetFocusOnTouchRelease)\s*\(/, "setFocusOnTouchRelease")
-property_reader("QStyleHints", /::(showIsFullScreen|isShowIsFullScreen|hasShowIsFullScreen)\s*\(/, "showIsFullScreen")
-property_reader("QStyleHints", /::(startDragDistance|isStartDragDistance|hasStartDragDistance)\s*\(/, "startDragDistance")
-property_reader("QStyleHints", /::(startDragTime|isStartDragTime|hasStartDragTime)\s*\(/, "startDragTime")
-property_reader("QStyleHints", /::(startDragVelocity|isStartDragVelocity|hasStartDragVelocity)\s*\(/, "startDragVelocity")
-property_reader("QStyleHints", /::(useRtlExtensions|isUseRtlExtensions|hasUseRtlExtensions)\s*\(/, "useRtlExtensions")
-property_reader("QStyleHints", /::(tabFocusBehavior|isTabFocusBehavior|hasTabFocusBehavior)\s*\(/, "tabFocusBehavior")
-property_reader("QStyleHints", /::(singleClickActivation|isSingleClickActivation|hasSingleClickActivation)\s*\(/, "singleClickActivation")
property_reader("QStylePlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QStylePlugin", /::setObjectName\s*\(/, "objectName")
property_reader("QStyledItemDelegate", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QStyledItemDelegate", /::setObjectName\s*\(/, "objectName")
-property_reader("QSvgRenderer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSvgRenderer", /::setObjectName\s*\(/, "objectName")
-property_reader("QSvgRenderer", /::(viewBox|isViewBox|hasViewBox)\s*\(/, "viewBox")
-property_writer("QSvgRenderer", /::setViewBox\s*\(/, "viewBox")
-property_reader("QSvgRenderer", /::(framesPerSecond|isFramesPerSecond|hasFramesPerSecond)\s*\(/, "framesPerSecond")
-property_writer("QSvgRenderer", /::setFramesPerSecond\s*\(/, "framesPerSecond")
-property_reader("QSvgRenderer", /::(currentFrame|isCurrentFrame|hasCurrentFrame)\s*\(/, "currentFrame")
-property_writer("QSvgRenderer", /::setCurrentFrame\s*\(/, "currentFrame")
-property_reader("QSvgWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSvgWidget", /::setObjectName\s*\(/, "objectName")
-property_reader("QSvgWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_reader("QSvgWidget", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
-property_writer("QSvgWidget", /::setWindowModality\s*\(/, "windowModality")
-property_reader("QSvgWidget", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QSvgWidget", /::setEnabled\s*\(/, "enabled")
-property_reader("QSvgWidget", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_writer("QSvgWidget", /::setGeometry\s*\(/, "geometry")
-property_reader("QSvgWidget", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
-property_reader("QSvgWidget", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
-property_reader("QSvgWidget", /::(x|isX|hasX)\s*\(/, "x")
-property_reader("QSvgWidget", /::(y|isY|hasY)\s*\(/, "y")
-property_reader("QSvgWidget", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QSvgWidget", /::setPos\s*\(/, "pos")
-property_reader("QSvgWidget", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
-property_reader("QSvgWidget", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QSvgWidget", /::setSize\s*\(/, "size")
-property_reader("QSvgWidget", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_reader("QSvgWidget", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_reader("QSvgWidget", /::(rect|isRect|hasRect)\s*\(/, "rect")
-property_reader("QSvgWidget", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
-property_reader("QSvgWidget", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
-property_reader("QSvgWidget", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
-property_writer("QSvgWidget", /::setSizePolicy\s*\(/, "sizePolicy")
-property_reader("QSvgWidget", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
-property_writer("QSvgWidget", /::setMinimumSize\s*\(/, "minimumSize")
-property_reader("QSvgWidget", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
-property_writer("QSvgWidget", /::setMaximumSize\s*\(/, "maximumSize")
-property_reader("QSvgWidget", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QSvgWidget", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QSvgWidget", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QSvgWidget", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QSvgWidget", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QSvgWidget", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QSvgWidget", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QSvgWidget", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QSvgWidget", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
-property_writer("QSvgWidget", /::setSizeIncrement\s*\(/, "sizeIncrement")
-property_reader("QSvgWidget", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
-property_writer("QSvgWidget", /::setBaseSize\s*\(/, "baseSize")
-property_reader("QSvgWidget", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
-property_writer("QSvgWidget", /::setPalette\s*\(/, "palette")
-property_reader("QSvgWidget", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QSvgWidget", /::setFont\s*\(/, "font")
-property_reader("QSvgWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
-property_writer("QSvgWidget", /::setCursor\s*\(/, "cursor")
-property_reader("QSvgWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
-property_writer("QSvgWidget", /::setMouseTracking\s*\(/, "mouseTracking")
-property_reader("QSvgWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
-property_reader("QSvgWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
-property_writer("QSvgWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
-property_reader("QSvgWidget", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
-property_reader("QSvgWidget", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
-property_writer("QSvgWidget", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
-property_reader("QSvgWidget", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
-property_writer("QSvgWidget", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
-property_reader("QSvgWidget", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QSvgWidget", /::setVisible\s*\(/, "visible")
-property_reader("QSvgWidget", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
-property_reader("QSvgWidget", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
-property_reader("QSvgWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_reader("QSvgWidget", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
-property_reader("QSvgWidget", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
-property_reader("QSvgWidget", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
-property_writer("QSvgWidget", /::setAcceptDrops\s*\(/, "acceptDrops")
-property_reader("QSvgWidget", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
-property_writer("QSvgWidget", /::setWindowTitle\s*\(/, "windowTitle")
-property_reader("QSvgWidget", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QSvgWidget", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QSvgWidget", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
-property_writer("QSvgWidget", /::setWindowIconText\s*\(/, "windowIconText")
-property_reader("QSvgWidget", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
-property_writer("QSvgWidget", /::setWindowOpacity\s*\(/, "windowOpacity")
-property_reader("QSvgWidget", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
-property_writer("QSvgWidget", /::setWindowModified\s*\(/, "windowModified")
-property_reader("QSvgWidget", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QSvgWidget", /::setToolTip\s*\(/, "toolTip")
-property_reader("QSvgWidget", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
-property_writer("QSvgWidget", /::setToolTipDuration\s*\(/, "toolTipDuration")
-property_reader("QSvgWidget", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QSvgWidget", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QSvgWidget", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QSvgWidget", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QSvgWidget", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
-property_writer("QSvgWidget", /::setAccessibleName\s*\(/, "accessibleName")
-property_reader("QSvgWidget", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
-property_writer("QSvgWidget", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-property_reader("QSvgWidget", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QSvgWidget", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QSvgWidget", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
-property_writer("QSvgWidget", /::setAutoFillBackground\s*\(/, "autoFillBackground")
-property_reader("QSvgWidget", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
-property_writer("QSvgWidget", /::setStyleSheet\s*\(/, "styleSheet")
-property_reader("QSvgWidget", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_writer("QSvgWidget", /::setLocale\s*\(/, "locale")
-property_reader("QSvgWidget", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
-property_writer("QSvgWidget", /::setWindowFilePath\s*\(/, "windowFilePath")
-property_reader("QSvgWidget", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
-property_writer("QSvgWidget", /::setInputMethodHints\s*\(/, "inputMethodHints")
property_reader("QSwipeGesture", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QSwipeGesture", /::setObjectName\s*\(/, "objectName")
property_reader("QSwipeGesture", /::(state|isState|hasState)\s*\(/, "state")
@@ -8924,8 +8331,6 @@ property_reader("QSwipeGesture", /::(swipeAngle|isSwipeAngle|hasSwipeAngle)\s*\(
property_writer("QSwipeGesture", /::setSwipeAngle\s*\(/, "swipeAngle")
property_reader("QSwipeGesture", /::(velocity|isVelocity|hasVelocity)\s*\(/, "velocity")
property_writer("QSwipeGesture", /::setVelocity\s*\(/, "velocity")
-property_reader("QSyntaxHighlighter", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSyntaxHighlighter", /::setObjectName\s*\(/, "objectName")
property_reader("QSystemTrayIcon", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QSystemTrayIcon", /::setObjectName\s*\(/, "objectName")
property_reader("QSystemTrayIcon", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
@@ -8983,6 +8388,8 @@ property_reader("QTabBar", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTabBar", /::setCursor\s*\(/, "cursor")
property_reader("QTabBar", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTabBar", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTabBar", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTabBar", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTabBar", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTabBar", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTabBar", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -9110,6 +8517,8 @@ property_reader("QTabWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTabWidget", /::setCursor\s*\(/, "cursor")
property_reader("QTabWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTabWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTabWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTabWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTabWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTabWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTabWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -9231,6 +8640,8 @@ property_reader("QTableView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTableView", /::setCursor\s*\(/, "cursor")
property_reader("QTableView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTableView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTableView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTableView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTableView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTableView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTableView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -9390,6 +8801,8 @@ property_reader("QTableWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTableWidget", /::setCursor\s*\(/, "cursor")
property_reader("QTableWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTableWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTableWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTableWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTableWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTableWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTableWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -9526,14 +8939,6 @@ property_writer("QTapGesture", /::setHotSpot\s*\(/, "hotSpot")
property_reader("QTapGesture", /::(hasHotSpot|isHasHotSpot|hasHasHotSpot)\s*\(/, "hasHotSpot")
property_reader("QTapGesture", /::(position|isPosition|hasPosition)\s*\(/, "position")
property_writer("QTapGesture", /::setPosition\s*\(/, "position")
-property_reader("QTcpServer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTcpServer", /::setObjectName\s*\(/, "objectName")
-property_reader("QTcpSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTcpSocket", /::setObjectName\s*\(/, "objectName")
-property_reader("QTemporaryFile", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTemporaryFile", /::setObjectName\s*\(/, "objectName")
-property_reader("QTextBlockGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTextBlockGroup", /::setObjectName\s*\(/, "objectName")
property_reader("QTextBrowser", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QTextBrowser", /::setObjectName\s*\(/, "objectName")
property_reader("QTextBrowser", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -9583,6 +8988,8 @@ property_reader("QTextBrowser", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTextBrowser", /::setCursor\s*\(/, "cursor")
property_reader("QTextBrowser", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTextBrowser", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTextBrowser", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTextBrowser", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTextBrowser", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTextBrowser", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTextBrowser", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -9665,6 +9072,8 @@ property_reader("QTextBrowser", /::(lineWrapColumnOrWidth|isLineWrapColumnOrWidt
property_writer("QTextBrowser", /::setLineWrapColumnOrWidth\s*\(/, "lineWrapColumnOrWidth")
property_reader("QTextBrowser", /::(readOnly|isReadOnly|hasReadOnly)\s*\(/, "readOnly")
property_writer("QTextBrowser", /::setReadOnly\s*\(/, "readOnly")
+property_reader("QTextBrowser", /::(markdown|isMarkdown|hasMarkdown)\s*\(/, "markdown")
+property_writer("QTextBrowser", /::setMarkdown\s*\(/, "markdown")
property_reader("QTextBrowser", /::(html|isHtml|hasHtml)\s*\(/, "html")
property_writer("QTextBrowser", /::setHtml\s*\(/, "html")
property_reader("QTextBrowser", /::(plainText|isPlainText|hasPlainText)\s*\(/, "plainText")
@@ -9673,6 +9082,8 @@ property_reader("QTextBrowser", /::(overwriteMode|isOverwriteMode|hasOverwriteMo
property_writer("QTextBrowser", /::setOverwriteMode\s*\(/, "overwriteMode")
property_reader("QTextBrowser", /::(tabStopWidth|isTabStopWidth|hasTabStopWidth)\s*\(/, "tabStopWidth")
property_writer("QTextBrowser", /::setTabStopWidth\s*\(/, "tabStopWidth")
+property_reader("QTextBrowser", /::(tabStopDistance|isTabStopDistance|hasTabStopDistance)\s*\(/, "tabStopDistance")
+property_writer("QTextBrowser", /::setTabStopDistance\s*\(/, "tabStopDistance")
property_reader("QTextBrowser", /::(acceptRichText|isAcceptRichText|hasAcceptRichText)\s*\(/, "acceptRichText")
property_writer("QTextBrowser", /::setAcceptRichText\s*\(/, "acceptRichText")
property_reader("QTextBrowser", /::(cursorWidth|isCursorWidth|hasCursorWidth)\s*\(/, "cursorWidth")
@@ -9685,38 +9096,13 @@ property_reader("QTextBrowser", /::(placeholderText|isPlaceholderText|hasPlaceho
property_writer("QTextBrowser", /::setPlaceholderText\s*\(/, "placeholderText")
property_reader("QTextBrowser", /::(source|isSource|hasSource)\s*\(/, "source")
property_writer("QTextBrowser", /::setSource\s*\(/, "source")
+property_reader("QTextBrowser", /::(sourceType|isSourceType|hasSourceType)\s*\(/, "sourceType")
property_reader("QTextBrowser", /::(searchPaths|isSearchPaths|hasSearchPaths)\s*\(/, "searchPaths")
property_writer("QTextBrowser", /::setSearchPaths\s*\(/, "searchPaths")
property_reader("QTextBrowser", /::(openExternalLinks|isOpenExternalLinks|hasOpenExternalLinks)\s*\(/, "openExternalLinks")
property_writer("QTextBrowser", /::setOpenExternalLinks\s*\(/, "openExternalLinks")
property_reader("QTextBrowser", /::(openLinks|isOpenLinks|hasOpenLinks)\s*\(/, "openLinks")
property_writer("QTextBrowser", /::setOpenLinks\s*\(/, "openLinks")
-property_reader("QTextDocument", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTextDocument", /::setObjectName\s*\(/, "objectName")
-property_reader("QTextDocument", /::(undoRedoEnabled|isUndoRedoEnabled|hasUndoRedoEnabled)\s*\(/, "undoRedoEnabled")
-property_writer("QTextDocument", /::setUndoRedoEnabled\s*\(/, "undoRedoEnabled")
-property_reader("QTextDocument", /::(modified|isModified|hasModified)\s*\(/, "modified")
-property_writer("QTextDocument", /::setModified\s*\(/, "modified")
-property_reader("QTextDocument", /::(pageSize|isPageSize|hasPageSize)\s*\(/, "pageSize")
-property_writer("QTextDocument", /::setPageSize\s*\(/, "pageSize")
-property_reader("QTextDocument", /::(defaultFont|isDefaultFont|hasDefaultFont)\s*\(/, "defaultFont")
-property_writer("QTextDocument", /::setDefaultFont\s*\(/, "defaultFont")
-property_reader("QTextDocument", /::(useDesignMetrics|isUseDesignMetrics|hasUseDesignMetrics)\s*\(/, "useDesignMetrics")
-property_writer("QTextDocument", /::setUseDesignMetrics\s*\(/, "useDesignMetrics")
-property_reader("QTextDocument", /::(size|isSize|hasSize)\s*\(/, "size")
-property_reader("QTextDocument", /::(textWidth|isTextWidth|hasTextWidth)\s*\(/, "textWidth")
-property_writer("QTextDocument", /::setTextWidth\s*\(/, "textWidth")
-property_reader("QTextDocument", /::(blockCount|isBlockCount|hasBlockCount)\s*\(/, "blockCount")
-property_reader("QTextDocument", /::(indentWidth|isIndentWidth|hasIndentWidth)\s*\(/, "indentWidth")
-property_writer("QTextDocument", /::setIndentWidth\s*\(/, "indentWidth")
-property_reader("QTextDocument", /::(defaultStyleSheet|isDefaultStyleSheet|hasDefaultStyleSheet)\s*\(/, "defaultStyleSheet")
-property_writer("QTextDocument", /::setDefaultStyleSheet\s*\(/, "defaultStyleSheet")
-property_reader("QTextDocument", /::(maximumBlockCount|isMaximumBlockCount|hasMaximumBlockCount)\s*\(/, "maximumBlockCount")
-property_writer("QTextDocument", /::setMaximumBlockCount\s*\(/, "maximumBlockCount")
-property_reader("QTextDocument", /::(documentMargin|isDocumentMargin|hasDocumentMargin)\s*\(/, "documentMargin")
-property_writer("QTextDocument", /::setDocumentMargin\s*\(/, "documentMargin")
-property_reader("QTextDocument", /::(baseUrl|isBaseUrl|hasBaseUrl)\s*\(/, "baseUrl")
-property_writer("QTextDocument", /::setBaseUrl\s*\(/, "baseUrl")
property_reader("QTextEdit", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QTextEdit", /::setObjectName\s*\(/, "objectName")
property_reader("QTextEdit", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -9766,6 +9152,8 @@ property_reader("QTextEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTextEdit", /::setCursor\s*\(/, "cursor")
property_reader("QTextEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTextEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTextEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTextEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTextEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTextEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTextEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -9848,6 +9236,8 @@ property_reader("QTextEdit", /::(lineWrapColumnOrWidth|isLineWrapColumnOrWidth|h
property_writer("QTextEdit", /::setLineWrapColumnOrWidth\s*\(/, "lineWrapColumnOrWidth")
property_reader("QTextEdit", /::(readOnly|isReadOnly|hasReadOnly)\s*\(/, "readOnly")
property_writer("QTextEdit", /::setReadOnly\s*\(/, "readOnly")
+property_reader("QTextEdit", /::(markdown|isMarkdown|hasMarkdown)\s*\(/, "markdown")
+property_writer("QTextEdit", /::setMarkdown\s*\(/, "markdown")
property_reader("QTextEdit", /::(html|isHtml|hasHtml)\s*\(/, "html")
property_writer("QTextEdit", /::setHtml\s*\(/, "html")
property_reader("QTextEdit", /::(plainText|isPlainText|hasPlainText)\s*\(/, "plainText")
@@ -9856,6 +9246,8 @@ property_reader("QTextEdit", /::(overwriteMode|isOverwriteMode|hasOverwriteMode)
property_writer("QTextEdit", /::setOverwriteMode\s*\(/, "overwriteMode")
property_reader("QTextEdit", /::(tabStopWidth|isTabStopWidth|hasTabStopWidth)\s*\(/, "tabStopWidth")
property_writer("QTextEdit", /::setTabStopWidth\s*\(/, "tabStopWidth")
+property_reader("QTextEdit", /::(tabStopDistance|isTabStopDistance|hasTabStopDistance)\s*\(/, "tabStopDistance")
+property_writer("QTextEdit", /::setTabStopDistance\s*\(/, "tabStopDistance")
property_reader("QTextEdit", /::(acceptRichText|isAcceptRichText|hasAcceptRichText)\s*\(/, "acceptRichText")
property_writer("QTextEdit", /::setAcceptRichText\s*\(/, "acceptRichText")
property_reader("QTextEdit", /::(cursorWidth|isCursorWidth|hasCursorWidth)\s*\(/, "cursorWidth")
@@ -9866,23 +9258,6 @@ property_reader("QTextEdit", /::(document|isDocument|hasDocument)\s*\(/, "docume
property_writer("QTextEdit", /::setDocument\s*\(/, "document")
property_reader("QTextEdit", /::(placeholderText|isPlaceholderText|hasPlaceholderText)\s*\(/, "placeholderText")
property_writer("QTextEdit", /::setPlaceholderText\s*\(/, "placeholderText")
-property_reader("QTextFrame", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTextFrame", /::setObjectName\s*\(/, "objectName")
-property_reader("QTextList", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTextList", /::setObjectName\s*\(/, "objectName")
-property_reader("QTextObject", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTextObject", /::setObjectName\s*\(/, "objectName")
-property_reader("QTextTable", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTextTable", /::setObjectName\s*\(/, "objectName")
-property_reader("QThread", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QThread", /::setObjectName\s*\(/, "objectName")
-property_reader("QThreadPool", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QThreadPool", /::setObjectName\s*\(/, "objectName")
-property_reader("QThreadPool", /::(expiryTimeout|isExpiryTimeout|hasExpiryTimeout)\s*\(/, "expiryTimeout")
-property_writer("QThreadPool", /::setExpiryTimeout\s*\(/, "expiryTimeout")
-property_reader("QThreadPool", /::(maxThreadCount|isMaxThreadCount|hasMaxThreadCount)\s*\(/, "maxThreadCount")
-property_writer("QThreadPool", /::setMaxThreadCount\s*\(/, "maxThreadCount")
-property_reader("QThreadPool", /::(activeThreadCount|isActiveThreadCount|hasActiveThreadCount)\s*\(/, "activeThreadCount")
property_reader("QTimeEdit", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QTimeEdit", /::setObjectName\s*\(/, "objectName")
property_reader("QTimeEdit", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -9932,6 +9307,8 @@ property_reader("QTimeEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTimeEdit", /::setCursor\s*\(/, "cursor")
property_reader("QTimeEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTimeEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTimeEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTimeEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTimeEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTimeEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTimeEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10037,32 +9414,6 @@ property_reader("QTimeEdit", /::(timeSpec|isTimeSpec|hasTimeSpec)\s*\(/, "timeSp
property_writer("QTimeEdit", /::setTimeSpec\s*\(/, "timeSpec")
property_reader("QTimeEdit", /::(time|isTime|hasTime)\s*\(/, "time")
property_writer("QTimeEdit", /::setTime\s*\(/, "time")
-property_reader("QTimeLine", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTimeLine", /::setObjectName\s*\(/, "objectName")
-property_reader("QTimeLine", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_writer("QTimeLine", /::setDuration\s*\(/, "duration")
-property_reader("QTimeLine", /::(updateInterval|isUpdateInterval|hasUpdateInterval)\s*\(/, "updateInterval")
-property_writer("QTimeLine", /::setUpdateInterval\s*\(/, "updateInterval")
-property_reader("QTimeLine", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QTimeLine", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QTimeLine", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QTimeLine", /::setDirection\s*\(/, "direction")
-property_reader("QTimeLine", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QTimeLine", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QTimeLine", /::(curveShape|isCurveShape|hasCurveShape)\s*\(/, "curveShape")
-property_writer("QTimeLine", /::setCurveShape\s*\(/, "curveShape")
-property_reader("QTimeLine", /::(easingCurve|isEasingCurve|hasEasingCurve)\s*\(/, "easingCurve")
-property_writer("QTimeLine", /::setEasingCurve\s*\(/, "easingCurve")
-property_reader("QTimer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTimer", /::setObjectName\s*\(/, "objectName")
-property_reader("QTimer", /::(singleShot|isSingleShot|hasSingleShot)\s*\(/, "singleShot")
-property_writer("QTimer", /::setSingleShot\s*\(/, "singleShot")
-property_reader("QTimer", /::(interval|isInterval|hasInterval)\s*\(/, "interval")
-property_writer("QTimer", /::setInterval\s*\(/, "interval")
-property_reader("QTimer", /::(remainingTime|isRemainingTime|hasRemainingTime)\s*\(/, "remainingTime")
-property_reader("QTimer", /::(timerType|isTimerType|hasTimerType)\s*\(/, "timerType")
-property_writer("QTimer", /::setTimerType\s*\(/, "timerType")
-property_reader("QTimer", /::(active|isActive|hasActive)\s*\(/, "active")
property_reader("QToolBar", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QToolBar", /::setObjectName\s*\(/, "objectName")
property_reader("QToolBar", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -10112,6 +9463,8 @@ property_reader("QToolBar", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QToolBar", /::setCursor\s*\(/, "cursor")
property_reader("QToolBar", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QToolBar", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QToolBar", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QToolBar", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QToolBar", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QToolBar", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QToolBar", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10225,6 +9578,8 @@ property_reader("QToolBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QToolBox", /::setCursor\s*\(/, "cursor")
property_reader("QToolBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QToolBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QToolBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QToolBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QToolBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QToolBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QToolBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10339,6 +9694,8 @@ property_reader("QToolButton", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QToolButton", /::setCursor\s*\(/, "cursor")
property_reader("QToolButton", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QToolButton", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QToolButton", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QToolButton", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QToolButton", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QToolButton", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QToolButton", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10420,8 +9777,6 @@ property_reader("QToolButton", /::(autoRaise|isAutoRaise|hasAutoRaise)\s*\(/, "a
property_writer("QToolButton", /::setAutoRaise\s*\(/, "autoRaise")
property_reader("QToolButton", /::(arrowType|isArrowType|hasArrowType)\s*\(/, "arrowType")
property_writer("QToolButton", /::setArrowType\s*\(/, "arrowType")
-property_reader("QTranslator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTranslator", /::setObjectName\s*\(/, "objectName")
property_reader("QTreeView", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QTreeView", /::setObjectName\s*\(/, "objectName")
property_reader("QTreeView", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -10471,6 +9826,8 @@ property_reader("QTreeView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTreeView", /::setCursor\s*\(/, "cursor")
property_reader("QTreeView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTreeView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTreeView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTreeView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTreeView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTreeView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTreeView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10642,6 +9999,8 @@ property_reader("QTreeWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTreeWidget", /::setCursor\s*\(/, "cursor")
property_reader("QTreeWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTreeWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTreeWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTreeWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTreeWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTreeWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTreeWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10767,8 +10126,6 @@ property_writer("QTreeWidget", /::setExpandsOnDoubleClick\s*\(/, "expandsOnDoubl
property_reader("QTreeWidget", /::(columnCount|isColumnCount|hasColumnCount)\s*\(/, "columnCount")
property_writer("QTreeWidget", /::setColumnCount\s*\(/, "columnCount")
property_reader("QTreeWidget", /::(topLevelItemCount|isTopLevelItemCount|hasTopLevelItemCount)\s*\(/, "topLevelItemCount")
-property_reader("QUdpSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QUdpSocket", /::setObjectName\s*\(/, "objectName")
property_reader("QUndoGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QUndoGroup", /::setObjectName\s*\(/, "objectName")
property_reader("QUndoStack", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
@@ -10777,6 +10134,11 @@ property_reader("QUndoStack", /::(active|isActive|hasActive)\s*\(/, "active")
property_writer("QUndoStack", /::setActive\s*\(/, "active")
property_reader("QUndoStack", /::(undoLimit|isUndoLimit|hasUndoLimit)\s*\(/, "undoLimit")
property_writer("QUndoStack", /::setUndoLimit\s*\(/, "undoLimit")
+property_reader("QUndoStack", /::(canUndo|isCanUndo|hasCanUndo)\s*\(/, "canUndo")
+property_reader("QUndoStack", /::(canRedo|isCanRedo|hasCanRedo)\s*\(/, "canRedo")
+property_reader("QUndoStack", /::(undoText|isUndoText|hasUndoText)\s*\(/, "undoText")
+property_reader("QUndoStack", /::(redoText|isRedoText|hasRedoText)\s*\(/, "redoText")
+property_reader("QUndoStack", /::(clean|isClean|hasClean)\s*\(/, "clean")
property_reader("QUndoView", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QUndoView", /::setObjectName\s*\(/, "objectName")
property_reader("QUndoView", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -10826,6 +10188,8 @@ property_reader("QUndoView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QUndoView", /::setCursor\s*\(/, "cursor")
property_reader("QUndoView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QUndoView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QUndoView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QUndoView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QUndoView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QUndoView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QUndoView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10952,6 +10316,8 @@ property_reader("QUndoView", /::(wordWrap|isWordWrap|hasWordWrap)\s*\(/, "wordWr
property_writer("QUndoView", /::setWordWrap\s*\(/, "wordWrap")
property_reader("QUndoView", /::(selectionRectVisible|isSelectionRectVisible|hasSelectionRectVisible)\s*\(/, "selectionRectVisible")
property_writer("QUndoView", /::setSelectionRectVisible\s*\(/, "selectionRectVisible")
+property_reader("QUndoView", /::(itemAlignment|isItemAlignment|hasItemAlignment)\s*\(/, "itemAlignment")
+property_writer("QUndoView", /::setItemAlignment\s*\(/, "itemAlignment")
property_reader("QUndoView", /::(emptyLabel|isEmptyLabel|hasEmptyLabel)\s*\(/, "emptyLabel")
property_writer("QUndoView", /::setEmptyLabel\s*\(/, "emptyLabel")
property_reader("QUndoView", /::(cleanIcon|isCleanIcon|hasCleanIcon)\s*\(/, "cleanIcon")
@@ -10964,152 +10330,6 @@ property_reader("QVBoxLayout", /::(spacing|isSpacing|hasSpacing)\s*\(/, "spacing
property_writer("QVBoxLayout", /::setSpacing\s*\(/, "spacing")
property_reader("QVBoxLayout", /::(sizeConstraint|isSizeConstraint|hasSizeConstraint)\s*\(/, "sizeConstraint")
property_writer("QVBoxLayout", /::setSizeConstraint\s*\(/, "sizeConstraint")
-property_reader("QValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QValidator", /::setObjectName\s*\(/, "objectName")
-property_reader("QVariantAnimation", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVariantAnimation", /::setObjectName\s*\(/, "objectName")
-property_reader("QVariantAnimation", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QVariantAnimation", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QVariantAnimation", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QVariantAnimation", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QVariantAnimation", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QVariantAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
-property_reader("QVariantAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QVariantAnimation", /::setDirection\s*\(/, "direction")
-property_reader("QVariantAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QVariantAnimation", /::(startValue|isStartValue|hasStartValue)\s*\(/, "startValue")
-property_writer("QVariantAnimation", /::setStartValue\s*\(/, "startValue")
-property_reader("QVariantAnimation", /::(endValue|isEndValue|hasEndValue)\s*\(/, "endValue")
-property_writer("QVariantAnimation", /::setEndValue\s*\(/, "endValue")
-property_reader("QVariantAnimation", /::(currentValue|isCurrentValue|hasCurrentValue)\s*\(/, "currentValue")
-property_reader("QVariantAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_writer("QVariantAnimation", /::setDuration\s*\(/, "duration")
-property_reader("QVariantAnimation", /::(easingCurve|isEasingCurve|hasEasingCurve)\s*\(/, "easingCurve")
-property_writer("QVariantAnimation", /::setEasingCurve\s*\(/, "easingCurve")
-property_reader("QVideoDeviceSelectorControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVideoDeviceSelectorControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QVideoEncoderSettingsControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVideoEncoderSettingsControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QVideoProbe", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVideoProbe", /::setObjectName\s*\(/, "objectName")
-property_reader("QVideoRendererControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVideoRendererControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QVideoWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVideoWidget", /::setObjectName\s*\(/, "objectName")
-property_reader("QVideoWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_reader("QVideoWidget", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
-property_writer("QVideoWidget", /::setWindowModality\s*\(/, "windowModality")
-property_reader("QVideoWidget", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QVideoWidget", /::setEnabled\s*\(/, "enabled")
-property_reader("QVideoWidget", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_writer("QVideoWidget", /::setGeometry\s*\(/, "geometry")
-property_reader("QVideoWidget", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
-property_reader("QVideoWidget", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
-property_reader("QVideoWidget", /::(x|isX|hasX)\s*\(/, "x")
-property_reader("QVideoWidget", /::(y|isY|hasY)\s*\(/, "y")
-property_reader("QVideoWidget", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QVideoWidget", /::setPos\s*\(/, "pos")
-property_reader("QVideoWidget", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
-property_reader("QVideoWidget", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QVideoWidget", /::setSize\s*\(/, "size")
-property_reader("QVideoWidget", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_reader("QVideoWidget", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_reader("QVideoWidget", /::(rect|isRect|hasRect)\s*\(/, "rect")
-property_reader("QVideoWidget", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
-property_reader("QVideoWidget", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
-property_reader("QVideoWidget", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
-property_writer("QVideoWidget", /::setSizePolicy\s*\(/, "sizePolicy")
-property_reader("QVideoWidget", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
-property_writer("QVideoWidget", /::setMinimumSize\s*\(/, "minimumSize")
-property_reader("QVideoWidget", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
-property_writer("QVideoWidget", /::setMaximumSize\s*\(/, "maximumSize")
-property_reader("QVideoWidget", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QVideoWidget", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QVideoWidget", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QVideoWidget", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QVideoWidget", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QVideoWidget", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QVideoWidget", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QVideoWidget", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QVideoWidget", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
-property_writer("QVideoWidget", /::setSizeIncrement\s*\(/, "sizeIncrement")
-property_reader("QVideoWidget", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
-property_writer("QVideoWidget", /::setBaseSize\s*\(/, "baseSize")
-property_reader("QVideoWidget", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
-property_writer("QVideoWidget", /::setPalette\s*\(/, "palette")
-property_reader("QVideoWidget", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QVideoWidget", /::setFont\s*\(/, "font")
-property_reader("QVideoWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
-property_writer("QVideoWidget", /::setCursor\s*\(/, "cursor")
-property_reader("QVideoWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
-property_writer("QVideoWidget", /::setMouseTracking\s*\(/, "mouseTracking")
-property_reader("QVideoWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
-property_reader("QVideoWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
-property_writer("QVideoWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
-property_reader("QVideoWidget", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
-property_reader("QVideoWidget", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
-property_writer("QVideoWidget", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
-property_reader("QVideoWidget", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
-property_writer("QVideoWidget", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
-property_reader("QVideoWidget", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QVideoWidget", /::setVisible\s*\(/, "visible")
-property_reader("QVideoWidget", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
-property_reader("QVideoWidget", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
-property_reader("QVideoWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_reader("QVideoWidget", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
-property_reader("QVideoWidget", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
-property_reader("QVideoWidget", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
-property_writer("QVideoWidget", /::setAcceptDrops\s*\(/, "acceptDrops")
-property_reader("QVideoWidget", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
-property_writer("QVideoWidget", /::setWindowTitle\s*\(/, "windowTitle")
-property_reader("QVideoWidget", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QVideoWidget", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QVideoWidget", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
-property_writer("QVideoWidget", /::setWindowIconText\s*\(/, "windowIconText")
-property_reader("QVideoWidget", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
-property_writer("QVideoWidget", /::setWindowOpacity\s*\(/, "windowOpacity")
-property_reader("QVideoWidget", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
-property_writer("QVideoWidget", /::setWindowModified\s*\(/, "windowModified")
-property_reader("QVideoWidget", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QVideoWidget", /::setToolTip\s*\(/, "toolTip")
-property_reader("QVideoWidget", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
-property_writer("QVideoWidget", /::setToolTipDuration\s*\(/, "toolTipDuration")
-property_reader("QVideoWidget", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QVideoWidget", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QVideoWidget", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QVideoWidget", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QVideoWidget", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
-property_writer("QVideoWidget", /::setAccessibleName\s*\(/, "accessibleName")
-property_reader("QVideoWidget", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
-property_writer("QVideoWidget", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-property_reader("QVideoWidget", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QVideoWidget", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QVideoWidget", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
-property_writer("QVideoWidget", /::setAutoFillBackground\s*\(/, "autoFillBackground")
-property_reader("QVideoWidget", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
-property_writer("QVideoWidget", /::setStyleSheet\s*\(/, "styleSheet")
-property_reader("QVideoWidget", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_writer("QVideoWidget", /::setLocale\s*\(/, "locale")
-property_reader("QVideoWidget", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
-property_writer("QVideoWidget", /::setWindowFilePath\s*\(/, "windowFilePath")
-property_reader("QVideoWidget", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
-property_writer("QVideoWidget", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QVideoWidget", /::(mediaObject|isMediaObject|hasMediaObject)\s*\(/, "mediaObject")
-property_writer("QVideoWidget", /::setMediaObject\s*\(/, "mediaObject")
-property_reader("QVideoWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_writer("QVideoWidget", /::setFullScreen\s*\(/, "fullScreen")
-property_reader("QVideoWidget", /::(aspectRatioMode|isAspectRatioMode|hasAspectRatioMode)\s*\(/, "aspectRatioMode")
-property_writer("QVideoWidget", /::setAspectRatioMode\s*\(/, "aspectRatioMode")
-property_reader("QVideoWidget", /::(brightness|isBrightness|hasBrightness)\s*\(/, "brightness")
-property_writer("QVideoWidget", /::setBrightness\s*\(/, "brightness")
-property_reader("QVideoWidget", /::(contrast|isContrast|hasContrast)\s*\(/, "contrast")
-property_writer("QVideoWidget", /::setContrast\s*\(/, "contrast")
-property_reader("QVideoWidget", /::(hue|isHue|hasHue)\s*\(/, "hue")
-property_writer("QVideoWidget", /::setHue\s*\(/, "hue")
-property_reader("QVideoWidget", /::(saturation|isSaturation|hasSaturation)\s*\(/, "saturation")
-property_writer("QVideoWidget", /::setSaturation\s*\(/, "saturation")
-property_reader("QVideoWindowControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVideoWindowControl", /::setObjectName\s*\(/, "objectName")
property_reader("QWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QWidget", /::setObjectName\s*\(/, "objectName")
property_reader("QWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -11159,6 +10379,8 @@ property_reader("QWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QWidget", /::setCursor\s*\(/, "cursor")
property_reader("QWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -11244,41 +10466,10 @@ property_reader("QWidgetAction", /::(menuRole|isMenuRole|hasMenuRole)\s*\(/, "me
property_writer("QWidgetAction", /::setMenuRole\s*\(/, "menuRole")
property_reader("QWidgetAction", /::(iconVisibleInMenu|isIconVisibleInMenu|hasIconVisibleInMenu)\s*\(/, "iconVisibleInMenu")
property_writer("QWidgetAction", /::setIconVisibleInMenu\s*\(/, "iconVisibleInMenu")
+property_reader("QWidgetAction", /::(shortcutVisibleInContextMenu|isShortcutVisibleInContextMenu|hasShortcutVisibleInContextMenu)\s*\(/, "shortcutVisibleInContextMenu")
+property_writer("QWidgetAction", /::setShortcutVisibleInContextMenu\s*\(/, "shortcutVisibleInContextMenu")
property_reader("QWidgetAction", /::(priority|isPriority|hasPriority)\s*\(/, "priority")
property_writer("QWidgetAction", /::setPriority\s*\(/, "priority")
-property_reader("QWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QWindow", /::setObjectName\s*\(/, "objectName")
-property_reader("QWindow", /::(title|isTitle|hasTitle)\s*\(/, "title")
-property_writer("QWindow", /::setTitle\s*\(/, "title")
-property_reader("QWindow", /::(modality|isModality|hasModality)\s*\(/, "modality")
-property_writer("QWindow", /::setModality\s*\(/, "modality")
-property_reader("QWindow", /::(flags|isFlags|hasFlags)\s*\(/, "flags")
-property_writer("QWindow", /::setFlags\s*\(/, "flags")
-property_reader("QWindow", /::(x|isX|hasX)\s*\(/, "x")
-property_writer("QWindow", /::setX\s*\(/, "x")
-property_reader("QWindow", /::(y|isY|hasY)\s*\(/, "y")
-property_writer("QWindow", /::setY\s*\(/, "y")
-property_reader("QWindow", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_writer("QWindow", /::setWidth\s*\(/, "width")
-property_reader("QWindow", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_writer("QWindow", /::setHeight\s*\(/, "height")
-property_reader("QWindow", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QWindow", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QWindow", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QWindow", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QWindow", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QWindow", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QWindow", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QWindow", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QWindow", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QWindow", /::setVisible\s*\(/, "visible")
-property_reader("QWindow", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QWindow", /::(visibility|isVisibility|hasVisibility)\s*\(/, "visibility")
-property_writer("QWindow", /::setVisibility\s*\(/, "visibility")
-property_reader("QWindow", /::(contentOrientation|isContentOrientation|hasContentOrientation)\s*\(/, "contentOrientation")
-property_writer("QWindow", /::setContentOrientation\s*\(/, "contentOrientation")
-property_reader("QWindow", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
-property_writer("QWindow", /::setOpacity\s*\(/, "opacity")
property_reader("QWizard", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QWizard", /::setObjectName\s*\(/, "objectName")
property_reader("QWizard", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -11328,6 +10519,8 @@ property_reader("QWizard", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QWizard", /::setCursor\s*\(/, "cursor")
property_reader("QWizard", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QWizard", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QWizard", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QWizard", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QWizard", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QWizard", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QWizard", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -11443,6 +10636,8 @@ property_reader("QWizardPage", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QWizardPage", /::setCursor\s*\(/, "cursor")
property_reader("QWizardPage", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QWizardPage", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QWizardPage", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QWizardPage", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QWizardPage", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QWizardPage", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QWizardPage", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -11498,98 +10693,1621 @@ property_reader("QWizardPage", /::(title|isTitle|hasTitle)\s*\(/, "title")
property_writer("QWizardPage", /::setTitle\s*\(/, "title")
property_reader("QWizardPage", /::(subTitle|isSubTitle|hasSubTitle)\s*\(/, "subTitle")
property_writer("QWizardPage", /::setSubTitle\s*\(/, "subTitle")
+property_reader("QAbstractMessageHandler", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractMessageHandler", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractUriResolver", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractUriResolver", /::setObjectName\s*\(/, "objectName")
+property_reader("QGraphicsSvgItem", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QGraphicsSvgItem", /::setObjectName\s*\(/, "objectName")
+property_reader("QGraphicsSvgItem", /::(parent|isParent|hasParent)\s*\(/, "parent")
+property_writer("QGraphicsSvgItem", /::setParent\s*\(/, "parent")
+property_reader("QGraphicsSvgItem", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
+property_writer("QGraphicsSvgItem", /::setOpacity\s*\(/, "opacity")
+property_reader("QGraphicsSvgItem", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QGraphicsSvgItem", /::setEnabled\s*\(/, "enabled")
+property_reader("QGraphicsSvgItem", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QGraphicsSvgItem", /::setVisible\s*\(/, "visible")
+property_reader("QGraphicsSvgItem", /::(pos|isPos|hasPos)\s*\(/, "pos")
+property_writer("QGraphicsSvgItem", /::setPos\s*\(/, "pos")
+property_reader("QGraphicsSvgItem", /::(x|isX|hasX)\s*\(/, "x")
+property_writer("QGraphicsSvgItem", /::setX\s*\(/, "x")
+property_reader("QGraphicsSvgItem", /::(y|isY|hasY)\s*\(/, "y")
+property_writer("QGraphicsSvgItem", /::setY\s*\(/, "y")
+property_reader("QGraphicsSvgItem", /::(z|isZ|hasZ)\s*\(/, "z")
+property_writer("QGraphicsSvgItem", /::setZ\s*\(/, "z")
+property_reader("QGraphicsSvgItem", /::(rotation|isRotation|hasRotation)\s*\(/, "rotation")
+property_writer("QGraphicsSvgItem", /::setRotation\s*\(/, "rotation")
+property_reader("QGraphicsSvgItem", /::(scale|isScale|hasScale)\s*\(/, "scale")
+property_writer("QGraphicsSvgItem", /::setScale\s*\(/, "scale")
+property_reader("QGraphicsSvgItem", /::(transformOriginPoint|isTransformOriginPoint|hasTransformOriginPoint)\s*\(/, "transformOriginPoint")
+property_writer("QGraphicsSvgItem", /::setTransformOriginPoint\s*\(/, "transformOriginPoint")
+property_reader("QGraphicsSvgItem", /::(effect|isEffect|hasEffect)\s*\(/, "effect")
+property_writer("QGraphicsSvgItem", /::setEffect\s*\(/, "effect")
+property_reader("QGraphicsSvgItem", /::(children|isChildren|hasChildren)\s*\(/, "children")
+property_reader("QGraphicsSvgItem", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_writer("QGraphicsSvgItem", /::setWidth\s*\(/, "width")
+property_reader("QGraphicsSvgItem", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_writer("QGraphicsSvgItem", /::setHeight\s*\(/, "height")
+property_reader("QGraphicsSvgItem", /::(elementId|isElementId|hasElementId)\s*\(/, "elementId")
+property_writer("QGraphicsSvgItem", /::setElementId\s*\(/, "elementId")
+property_reader("QGraphicsSvgItem", /::(maximumCacheSize|isMaximumCacheSize|hasMaximumCacheSize)\s*\(/, "maximumCacheSize")
+property_writer("QGraphicsSvgItem", /::setMaximumCacheSize\s*\(/, "maximumCacheSize")
+property_reader("QSvgRenderer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSvgRenderer", /::setObjectName\s*\(/, "objectName")
+property_reader("QSvgRenderer", /::(viewBox|isViewBox|hasViewBox)\s*\(/, "viewBox")
+property_writer("QSvgRenderer", /::setViewBox\s*\(/, "viewBox")
+property_reader("QSvgRenderer", /::(framesPerSecond|isFramesPerSecond|hasFramesPerSecond)\s*\(/, "framesPerSecond")
+property_writer("QSvgRenderer", /::setFramesPerSecond\s*\(/, "framesPerSecond")
+property_reader("QSvgRenderer", /::(currentFrame|isCurrentFrame|hasCurrentFrame)\s*\(/, "currentFrame")
+property_writer("QSvgRenderer", /::setCurrentFrame\s*\(/, "currentFrame")
+property_reader("QSvgRenderer", /::(aspectRatioMode|isAspectRatioMode|hasAspectRatioMode)\s*\(/, "aspectRatioMode")
+property_writer("QSvgRenderer", /::setAspectRatioMode\s*\(/, "aspectRatioMode")
+property_reader("QSvgWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSvgWidget", /::setObjectName\s*\(/, "objectName")
+property_reader("QSvgWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_reader("QSvgWidget", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
+property_writer("QSvgWidget", /::setWindowModality\s*\(/, "windowModality")
+property_reader("QSvgWidget", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QSvgWidget", /::setEnabled\s*\(/, "enabled")
+property_reader("QSvgWidget", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
+property_writer("QSvgWidget", /::setGeometry\s*\(/, "geometry")
+property_reader("QSvgWidget", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
+property_reader("QSvgWidget", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
+property_reader("QSvgWidget", /::(x|isX|hasX)\s*\(/, "x")
+property_reader("QSvgWidget", /::(y|isY|hasY)\s*\(/, "y")
+property_reader("QSvgWidget", /::(pos|isPos|hasPos)\s*\(/, "pos")
+property_writer("QSvgWidget", /::setPos\s*\(/, "pos")
+property_reader("QSvgWidget", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
+property_reader("QSvgWidget", /::(size|isSize|hasSize)\s*\(/, "size")
+property_writer("QSvgWidget", /::setSize\s*\(/, "size")
+property_reader("QSvgWidget", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_reader("QSvgWidget", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_reader("QSvgWidget", /::(rect|isRect|hasRect)\s*\(/, "rect")
+property_reader("QSvgWidget", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
+property_reader("QSvgWidget", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
+property_reader("QSvgWidget", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
+property_writer("QSvgWidget", /::setSizePolicy\s*\(/, "sizePolicy")
+property_reader("QSvgWidget", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
+property_writer("QSvgWidget", /::setMinimumSize\s*\(/, "minimumSize")
+property_reader("QSvgWidget", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
+property_writer("QSvgWidget", /::setMaximumSize\s*\(/, "maximumSize")
+property_reader("QSvgWidget", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QSvgWidget", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QSvgWidget", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QSvgWidget", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QSvgWidget", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QSvgWidget", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QSvgWidget", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QSvgWidget", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QSvgWidget", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
+property_writer("QSvgWidget", /::setSizeIncrement\s*\(/, "sizeIncrement")
+property_reader("QSvgWidget", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
+property_writer("QSvgWidget", /::setBaseSize\s*\(/, "baseSize")
+property_reader("QSvgWidget", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
+property_writer("QSvgWidget", /::setPalette\s*\(/, "palette")
+property_reader("QSvgWidget", /::(font|isFont|hasFont)\s*\(/, "font")
+property_writer("QSvgWidget", /::setFont\s*\(/, "font")
+property_reader("QSvgWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
+property_writer("QSvgWidget", /::setCursor\s*\(/, "cursor")
+property_reader("QSvgWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
+property_writer("QSvgWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QSvgWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QSvgWidget", /::setTabletTracking\s*\(/, "tabletTracking")
+property_reader("QSvgWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
+property_reader("QSvgWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
+property_writer("QSvgWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
+property_reader("QSvgWidget", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
+property_reader("QSvgWidget", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
+property_writer("QSvgWidget", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
+property_reader("QSvgWidget", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
+property_writer("QSvgWidget", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
+property_reader("QSvgWidget", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QSvgWidget", /::setVisible\s*\(/, "visible")
+property_reader("QSvgWidget", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
+property_reader("QSvgWidget", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
+property_reader("QSvgWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
+property_reader("QSvgWidget", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
+property_reader("QSvgWidget", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
+property_reader("QSvgWidget", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
+property_writer("QSvgWidget", /::setAcceptDrops\s*\(/, "acceptDrops")
+property_reader("QSvgWidget", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
+property_writer("QSvgWidget", /::setWindowTitle\s*\(/, "windowTitle")
+property_reader("QSvgWidget", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
+property_writer("QSvgWidget", /::setWindowIcon\s*\(/, "windowIcon")
+property_reader("QSvgWidget", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
+property_writer("QSvgWidget", /::setWindowIconText\s*\(/, "windowIconText")
+property_reader("QSvgWidget", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
+property_writer("QSvgWidget", /::setWindowOpacity\s*\(/, "windowOpacity")
+property_reader("QSvgWidget", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
+property_writer("QSvgWidget", /::setWindowModified\s*\(/, "windowModified")
+property_reader("QSvgWidget", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
+property_writer("QSvgWidget", /::setToolTip\s*\(/, "toolTip")
+property_reader("QSvgWidget", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
+property_writer("QSvgWidget", /::setToolTipDuration\s*\(/, "toolTipDuration")
+property_reader("QSvgWidget", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
+property_writer("QSvgWidget", /::setStatusTip\s*\(/, "statusTip")
+property_reader("QSvgWidget", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
+property_writer("QSvgWidget", /::setWhatsThis\s*\(/, "whatsThis")
+property_reader("QSvgWidget", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
+property_writer("QSvgWidget", /::setAccessibleName\s*\(/, "accessibleName")
+property_reader("QSvgWidget", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
+property_writer("QSvgWidget", /::setAccessibleDescription\s*\(/, "accessibleDescription")
+property_reader("QSvgWidget", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
+property_writer("QSvgWidget", /::setLayoutDirection\s*\(/, "layoutDirection")
+property_reader("QSvgWidget", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
+property_writer("QSvgWidget", /::setAutoFillBackground\s*\(/, "autoFillBackground")
+property_reader("QSvgWidget", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
+property_writer("QSvgWidget", /::setStyleSheet\s*\(/, "styleSheet")
+property_reader("QSvgWidget", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
+property_writer("QSvgWidget", /::setLocale\s*\(/, "locale")
+property_reader("QSvgWidget", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
+property_writer("QSvgWidget", /::setWindowFilePath\s*\(/, "windowFilePath")
+property_reader("QSvgWidget", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
+property_writer("QSvgWidget", /::setInputMethodHints\s*\(/, "inputMethodHints")
+property_reader("QAbstractPrintDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractPrintDialog", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_reader("QAbstractPrintDialog", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
+property_writer("QAbstractPrintDialog", /::setWindowModality\s*\(/, "windowModality")
+property_reader("QAbstractPrintDialog", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QAbstractPrintDialog", /::setEnabled\s*\(/, "enabled")
+property_reader("QAbstractPrintDialog", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
+property_writer("QAbstractPrintDialog", /::setGeometry\s*\(/, "geometry")
+property_reader("QAbstractPrintDialog", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
+property_reader("QAbstractPrintDialog", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
+property_reader("QAbstractPrintDialog", /::(x|isX|hasX)\s*\(/, "x")
+property_reader("QAbstractPrintDialog", /::(y|isY|hasY)\s*\(/, "y")
+property_reader("QAbstractPrintDialog", /::(pos|isPos|hasPos)\s*\(/, "pos")
+property_writer("QAbstractPrintDialog", /::setPos\s*\(/, "pos")
+property_reader("QAbstractPrintDialog", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
+property_reader("QAbstractPrintDialog", /::(size|isSize|hasSize)\s*\(/, "size")
+property_writer("QAbstractPrintDialog", /::setSize\s*\(/, "size")
+property_reader("QAbstractPrintDialog", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_reader("QAbstractPrintDialog", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_reader("QAbstractPrintDialog", /::(rect|isRect|hasRect)\s*\(/, "rect")
+property_reader("QAbstractPrintDialog", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
+property_reader("QAbstractPrintDialog", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
+property_reader("QAbstractPrintDialog", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
+property_writer("QAbstractPrintDialog", /::setSizePolicy\s*\(/, "sizePolicy")
+property_reader("QAbstractPrintDialog", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
+property_writer("QAbstractPrintDialog", /::setMinimumSize\s*\(/, "minimumSize")
+property_reader("QAbstractPrintDialog", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
+property_writer("QAbstractPrintDialog", /::setMaximumSize\s*\(/, "maximumSize")
+property_reader("QAbstractPrintDialog", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QAbstractPrintDialog", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QAbstractPrintDialog", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QAbstractPrintDialog", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QAbstractPrintDialog", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QAbstractPrintDialog", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QAbstractPrintDialog", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QAbstractPrintDialog", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QAbstractPrintDialog", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
+property_writer("QAbstractPrintDialog", /::setSizeIncrement\s*\(/, "sizeIncrement")
+property_reader("QAbstractPrintDialog", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
+property_writer("QAbstractPrintDialog", /::setBaseSize\s*\(/, "baseSize")
+property_reader("QAbstractPrintDialog", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
+property_writer("QAbstractPrintDialog", /::setPalette\s*\(/, "palette")
+property_reader("QAbstractPrintDialog", /::(font|isFont|hasFont)\s*\(/, "font")
+property_writer("QAbstractPrintDialog", /::setFont\s*\(/, "font")
+property_reader("QAbstractPrintDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
+property_writer("QAbstractPrintDialog", /::setCursor\s*\(/, "cursor")
+property_reader("QAbstractPrintDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
+property_writer("QAbstractPrintDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QAbstractPrintDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QAbstractPrintDialog", /::setTabletTracking\s*\(/, "tabletTracking")
+property_reader("QAbstractPrintDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
+property_reader("QAbstractPrintDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
+property_writer("QAbstractPrintDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
+property_reader("QAbstractPrintDialog", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
+property_reader("QAbstractPrintDialog", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
+property_writer("QAbstractPrintDialog", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
+property_reader("QAbstractPrintDialog", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
+property_writer("QAbstractPrintDialog", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
+property_reader("QAbstractPrintDialog", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QAbstractPrintDialog", /::setVisible\s*\(/, "visible")
+property_reader("QAbstractPrintDialog", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
+property_reader("QAbstractPrintDialog", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
+property_reader("QAbstractPrintDialog", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
+property_reader("QAbstractPrintDialog", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
+property_reader("QAbstractPrintDialog", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
+property_reader("QAbstractPrintDialog", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
+property_writer("QAbstractPrintDialog", /::setAcceptDrops\s*\(/, "acceptDrops")
+property_reader("QAbstractPrintDialog", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
+property_writer("QAbstractPrintDialog", /::setWindowTitle\s*\(/, "windowTitle")
+property_reader("QAbstractPrintDialog", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
+property_writer("QAbstractPrintDialog", /::setWindowIcon\s*\(/, "windowIcon")
+property_reader("QAbstractPrintDialog", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
+property_writer("QAbstractPrintDialog", /::setWindowIconText\s*\(/, "windowIconText")
+property_reader("QAbstractPrintDialog", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
+property_writer("QAbstractPrintDialog", /::setWindowOpacity\s*\(/, "windowOpacity")
+property_reader("QAbstractPrintDialog", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
+property_writer("QAbstractPrintDialog", /::setWindowModified\s*\(/, "windowModified")
+property_reader("QAbstractPrintDialog", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
+property_writer("QAbstractPrintDialog", /::setToolTip\s*\(/, "toolTip")
+property_reader("QAbstractPrintDialog", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
+property_writer("QAbstractPrintDialog", /::setToolTipDuration\s*\(/, "toolTipDuration")
+property_reader("QAbstractPrintDialog", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
+property_writer("QAbstractPrintDialog", /::setStatusTip\s*\(/, "statusTip")
+property_reader("QAbstractPrintDialog", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
+property_writer("QAbstractPrintDialog", /::setWhatsThis\s*\(/, "whatsThis")
+property_reader("QAbstractPrintDialog", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
+property_writer("QAbstractPrintDialog", /::setAccessibleName\s*\(/, "accessibleName")
+property_reader("QAbstractPrintDialog", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
+property_writer("QAbstractPrintDialog", /::setAccessibleDescription\s*\(/, "accessibleDescription")
+property_reader("QAbstractPrintDialog", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
+property_writer("QAbstractPrintDialog", /::setLayoutDirection\s*\(/, "layoutDirection")
+property_reader("QAbstractPrintDialog", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
+property_writer("QAbstractPrintDialog", /::setAutoFillBackground\s*\(/, "autoFillBackground")
+property_reader("QAbstractPrintDialog", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
+property_writer("QAbstractPrintDialog", /::setStyleSheet\s*\(/, "styleSheet")
+property_reader("QAbstractPrintDialog", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
+property_writer("QAbstractPrintDialog", /::setLocale\s*\(/, "locale")
+property_reader("QAbstractPrintDialog", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
+property_writer("QAbstractPrintDialog", /::setWindowFilePath\s*\(/, "windowFilePath")
+property_reader("QAbstractPrintDialog", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
+property_writer("QAbstractPrintDialog", /::setInputMethodHints\s*\(/, "inputMethodHints")
+property_reader("QAbstractPrintDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
+property_writer("QAbstractPrintDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
+property_reader("QAbstractPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_writer("QAbstractPrintDialog", /::setModal\s*\(/, "modal")
+property_reader("QPrintDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPrintDialog", /::setObjectName\s*\(/, "objectName")
+property_reader("QPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_reader("QPrintDialog", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
+property_writer("QPrintDialog", /::setWindowModality\s*\(/, "windowModality")
+property_reader("QPrintDialog", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QPrintDialog", /::setEnabled\s*\(/, "enabled")
+property_reader("QPrintDialog", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
+property_writer("QPrintDialog", /::setGeometry\s*\(/, "geometry")
+property_reader("QPrintDialog", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
+property_reader("QPrintDialog", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
+property_reader("QPrintDialog", /::(x|isX|hasX)\s*\(/, "x")
+property_reader("QPrintDialog", /::(y|isY|hasY)\s*\(/, "y")
+property_reader("QPrintDialog", /::(pos|isPos|hasPos)\s*\(/, "pos")
+property_writer("QPrintDialog", /::setPos\s*\(/, "pos")
+property_reader("QPrintDialog", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
+property_reader("QPrintDialog", /::(size|isSize|hasSize)\s*\(/, "size")
+property_writer("QPrintDialog", /::setSize\s*\(/, "size")
+property_reader("QPrintDialog", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_reader("QPrintDialog", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_reader("QPrintDialog", /::(rect|isRect|hasRect)\s*\(/, "rect")
+property_reader("QPrintDialog", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
+property_reader("QPrintDialog", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
+property_reader("QPrintDialog", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
+property_writer("QPrintDialog", /::setSizePolicy\s*\(/, "sizePolicy")
+property_reader("QPrintDialog", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
+property_writer("QPrintDialog", /::setMinimumSize\s*\(/, "minimumSize")
+property_reader("QPrintDialog", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
+property_writer("QPrintDialog", /::setMaximumSize\s*\(/, "maximumSize")
+property_reader("QPrintDialog", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QPrintDialog", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QPrintDialog", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QPrintDialog", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QPrintDialog", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QPrintDialog", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QPrintDialog", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QPrintDialog", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QPrintDialog", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
+property_writer("QPrintDialog", /::setSizeIncrement\s*\(/, "sizeIncrement")
+property_reader("QPrintDialog", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
+property_writer("QPrintDialog", /::setBaseSize\s*\(/, "baseSize")
+property_reader("QPrintDialog", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
+property_writer("QPrintDialog", /::setPalette\s*\(/, "palette")
+property_reader("QPrintDialog", /::(font|isFont|hasFont)\s*\(/, "font")
+property_writer("QPrintDialog", /::setFont\s*\(/, "font")
+property_reader("QPrintDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
+property_writer("QPrintDialog", /::setCursor\s*\(/, "cursor")
+property_reader("QPrintDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
+property_writer("QPrintDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QPrintDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QPrintDialog", /::setTabletTracking\s*\(/, "tabletTracking")
+property_reader("QPrintDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
+property_reader("QPrintDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
+property_writer("QPrintDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
+property_reader("QPrintDialog", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
+property_reader("QPrintDialog", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
+property_writer("QPrintDialog", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
+property_reader("QPrintDialog", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
+property_writer("QPrintDialog", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
+property_reader("QPrintDialog", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QPrintDialog", /::setVisible\s*\(/, "visible")
+property_reader("QPrintDialog", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
+property_reader("QPrintDialog", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
+property_reader("QPrintDialog", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
+property_reader("QPrintDialog", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
+property_reader("QPrintDialog", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
+property_reader("QPrintDialog", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
+property_writer("QPrintDialog", /::setAcceptDrops\s*\(/, "acceptDrops")
+property_reader("QPrintDialog", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
+property_writer("QPrintDialog", /::setWindowTitle\s*\(/, "windowTitle")
+property_reader("QPrintDialog", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
+property_writer("QPrintDialog", /::setWindowIcon\s*\(/, "windowIcon")
+property_reader("QPrintDialog", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
+property_writer("QPrintDialog", /::setWindowIconText\s*\(/, "windowIconText")
+property_reader("QPrintDialog", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
+property_writer("QPrintDialog", /::setWindowOpacity\s*\(/, "windowOpacity")
+property_reader("QPrintDialog", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
+property_writer("QPrintDialog", /::setWindowModified\s*\(/, "windowModified")
+property_reader("QPrintDialog", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
+property_writer("QPrintDialog", /::setToolTip\s*\(/, "toolTip")
+property_reader("QPrintDialog", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
+property_writer("QPrintDialog", /::setToolTipDuration\s*\(/, "toolTipDuration")
+property_reader("QPrintDialog", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
+property_writer("QPrintDialog", /::setStatusTip\s*\(/, "statusTip")
+property_reader("QPrintDialog", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
+property_writer("QPrintDialog", /::setWhatsThis\s*\(/, "whatsThis")
+property_reader("QPrintDialog", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
+property_writer("QPrintDialog", /::setAccessibleName\s*\(/, "accessibleName")
+property_reader("QPrintDialog", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
+property_writer("QPrintDialog", /::setAccessibleDescription\s*\(/, "accessibleDescription")
+property_reader("QPrintDialog", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
+property_writer("QPrintDialog", /::setLayoutDirection\s*\(/, "layoutDirection")
+property_reader("QPrintDialog", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
+property_writer("QPrintDialog", /::setAutoFillBackground\s*\(/, "autoFillBackground")
+property_reader("QPrintDialog", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
+property_writer("QPrintDialog", /::setStyleSheet\s*\(/, "styleSheet")
+property_reader("QPrintDialog", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
+property_writer("QPrintDialog", /::setLocale\s*\(/, "locale")
+property_reader("QPrintDialog", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
+property_writer("QPrintDialog", /::setWindowFilePath\s*\(/, "windowFilePath")
+property_reader("QPrintDialog", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
+property_writer("QPrintDialog", /::setInputMethodHints\s*\(/, "inputMethodHints")
+property_reader("QPrintDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
+property_writer("QPrintDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
+property_reader("QPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_writer("QPrintDialog", /::setModal\s*\(/, "modal")
+property_reader("QPrintDialog", /::(options|isOptions|hasOptions)\s*\(/, "options")
+property_writer("QPrintDialog", /::setOptions\s*\(/, "options")
+property_reader("QPrintPreviewDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPrintPreviewDialog", /::setObjectName\s*\(/, "objectName")
+property_reader("QPrintPreviewDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_reader("QPrintPreviewDialog", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
+property_writer("QPrintPreviewDialog", /::setWindowModality\s*\(/, "windowModality")
+property_reader("QPrintPreviewDialog", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QPrintPreviewDialog", /::setEnabled\s*\(/, "enabled")
+property_reader("QPrintPreviewDialog", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
+property_writer("QPrintPreviewDialog", /::setGeometry\s*\(/, "geometry")
+property_reader("QPrintPreviewDialog", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
+property_reader("QPrintPreviewDialog", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
+property_reader("QPrintPreviewDialog", /::(x|isX|hasX)\s*\(/, "x")
+property_reader("QPrintPreviewDialog", /::(y|isY|hasY)\s*\(/, "y")
+property_reader("QPrintPreviewDialog", /::(pos|isPos|hasPos)\s*\(/, "pos")
+property_writer("QPrintPreviewDialog", /::setPos\s*\(/, "pos")
+property_reader("QPrintPreviewDialog", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
+property_reader("QPrintPreviewDialog", /::(size|isSize|hasSize)\s*\(/, "size")
+property_writer("QPrintPreviewDialog", /::setSize\s*\(/, "size")
+property_reader("QPrintPreviewDialog", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_reader("QPrintPreviewDialog", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_reader("QPrintPreviewDialog", /::(rect|isRect|hasRect)\s*\(/, "rect")
+property_reader("QPrintPreviewDialog", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
+property_reader("QPrintPreviewDialog", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
+property_reader("QPrintPreviewDialog", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
+property_writer("QPrintPreviewDialog", /::setSizePolicy\s*\(/, "sizePolicy")
+property_reader("QPrintPreviewDialog", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
+property_writer("QPrintPreviewDialog", /::setMinimumSize\s*\(/, "minimumSize")
+property_reader("QPrintPreviewDialog", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
+property_writer("QPrintPreviewDialog", /::setMaximumSize\s*\(/, "maximumSize")
+property_reader("QPrintPreviewDialog", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QPrintPreviewDialog", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QPrintPreviewDialog", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QPrintPreviewDialog", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QPrintPreviewDialog", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QPrintPreviewDialog", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QPrintPreviewDialog", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QPrintPreviewDialog", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QPrintPreviewDialog", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
+property_writer("QPrintPreviewDialog", /::setSizeIncrement\s*\(/, "sizeIncrement")
+property_reader("QPrintPreviewDialog", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
+property_writer("QPrintPreviewDialog", /::setBaseSize\s*\(/, "baseSize")
+property_reader("QPrintPreviewDialog", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
+property_writer("QPrintPreviewDialog", /::setPalette\s*\(/, "palette")
+property_reader("QPrintPreviewDialog", /::(font|isFont|hasFont)\s*\(/, "font")
+property_writer("QPrintPreviewDialog", /::setFont\s*\(/, "font")
+property_reader("QPrintPreviewDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
+property_writer("QPrintPreviewDialog", /::setCursor\s*\(/, "cursor")
+property_reader("QPrintPreviewDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
+property_writer("QPrintPreviewDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QPrintPreviewDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QPrintPreviewDialog", /::setTabletTracking\s*\(/, "tabletTracking")
+property_reader("QPrintPreviewDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
+property_reader("QPrintPreviewDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
+property_writer("QPrintPreviewDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
+property_reader("QPrintPreviewDialog", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
+property_reader("QPrintPreviewDialog", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
+property_writer("QPrintPreviewDialog", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
+property_reader("QPrintPreviewDialog", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
+property_writer("QPrintPreviewDialog", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
+property_reader("QPrintPreviewDialog", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QPrintPreviewDialog", /::setVisible\s*\(/, "visible")
+property_reader("QPrintPreviewDialog", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
+property_reader("QPrintPreviewDialog", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
+property_reader("QPrintPreviewDialog", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
+property_reader("QPrintPreviewDialog", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
+property_reader("QPrintPreviewDialog", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
+property_reader("QPrintPreviewDialog", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
+property_writer("QPrintPreviewDialog", /::setAcceptDrops\s*\(/, "acceptDrops")
+property_reader("QPrintPreviewDialog", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
+property_writer("QPrintPreviewDialog", /::setWindowTitle\s*\(/, "windowTitle")
+property_reader("QPrintPreviewDialog", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
+property_writer("QPrintPreviewDialog", /::setWindowIcon\s*\(/, "windowIcon")
+property_reader("QPrintPreviewDialog", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
+property_writer("QPrintPreviewDialog", /::setWindowIconText\s*\(/, "windowIconText")
+property_reader("QPrintPreviewDialog", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
+property_writer("QPrintPreviewDialog", /::setWindowOpacity\s*\(/, "windowOpacity")
+property_reader("QPrintPreviewDialog", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
+property_writer("QPrintPreviewDialog", /::setWindowModified\s*\(/, "windowModified")
+property_reader("QPrintPreviewDialog", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
+property_writer("QPrintPreviewDialog", /::setToolTip\s*\(/, "toolTip")
+property_reader("QPrintPreviewDialog", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
+property_writer("QPrintPreviewDialog", /::setToolTipDuration\s*\(/, "toolTipDuration")
+property_reader("QPrintPreviewDialog", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
+property_writer("QPrintPreviewDialog", /::setStatusTip\s*\(/, "statusTip")
+property_reader("QPrintPreviewDialog", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
+property_writer("QPrintPreviewDialog", /::setWhatsThis\s*\(/, "whatsThis")
+property_reader("QPrintPreviewDialog", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
+property_writer("QPrintPreviewDialog", /::setAccessibleName\s*\(/, "accessibleName")
+property_reader("QPrintPreviewDialog", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
+property_writer("QPrintPreviewDialog", /::setAccessibleDescription\s*\(/, "accessibleDescription")
+property_reader("QPrintPreviewDialog", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
+property_writer("QPrintPreviewDialog", /::setLayoutDirection\s*\(/, "layoutDirection")
+property_reader("QPrintPreviewDialog", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
+property_writer("QPrintPreviewDialog", /::setAutoFillBackground\s*\(/, "autoFillBackground")
+property_reader("QPrintPreviewDialog", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
+property_writer("QPrintPreviewDialog", /::setStyleSheet\s*\(/, "styleSheet")
+property_reader("QPrintPreviewDialog", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
+property_writer("QPrintPreviewDialog", /::setLocale\s*\(/, "locale")
+property_reader("QPrintPreviewDialog", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
+property_writer("QPrintPreviewDialog", /::setWindowFilePath\s*\(/, "windowFilePath")
+property_reader("QPrintPreviewDialog", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
+property_writer("QPrintPreviewDialog", /::setInputMethodHints\s*\(/, "inputMethodHints")
+property_reader("QPrintPreviewDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
+property_writer("QPrintPreviewDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
+property_reader("QPrintPreviewDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_writer("QPrintPreviewDialog", /::setModal\s*\(/, "modal")
+property_reader("QPrintPreviewWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPrintPreviewWidget", /::setObjectName\s*\(/, "objectName")
+property_reader("QPrintPreviewWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_reader("QPrintPreviewWidget", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
+property_writer("QPrintPreviewWidget", /::setWindowModality\s*\(/, "windowModality")
+property_reader("QPrintPreviewWidget", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QPrintPreviewWidget", /::setEnabled\s*\(/, "enabled")
+property_reader("QPrintPreviewWidget", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
+property_writer("QPrintPreviewWidget", /::setGeometry\s*\(/, "geometry")
+property_reader("QPrintPreviewWidget", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
+property_reader("QPrintPreviewWidget", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
+property_reader("QPrintPreviewWidget", /::(x|isX|hasX)\s*\(/, "x")
+property_reader("QPrintPreviewWidget", /::(y|isY|hasY)\s*\(/, "y")
+property_reader("QPrintPreviewWidget", /::(pos|isPos|hasPos)\s*\(/, "pos")
+property_writer("QPrintPreviewWidget", /::setPos\s*\(/, "pos")
+property_reader("QPrintPreviewWidget", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
+property_reader("QPrintPreviewWidget", /::(size|isSize|hasSize)\s*\(/, "size")
+property_writer("QPrintPreviewWidget", /::setSize\s*\(/, "size")
+property_reader("QPrintPreviewWidget", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_reader("QPrintPreviewWidget", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_reader("QPrintPreviewWidget", /::(rect|isRect|hasRect)\s*\(/, "rect")
+property_reader("QPrintPreviewWidget", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
+property_reader("QPrintPreviewWidget", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
+property_reader("QPrintPreviewWidget", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
+property_writer("QPrintPreviewWidget", /::setSizePolicy\s*\(/, "sizePolicy")
+property_reader("QPrintPreviewWidget", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
+property_writer("QPrintPreviewWidget", /::setMinimumSize\s*\(/, "minimumSize")
+property_reader("QPrintPreviewWidget", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
+property_writer("QPrintPreviewWidget", /::setMaximumSize\s*\(/, "maximumSize")
+property_reader("QPrintPreviewWidget", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QPrintPreviewWidget", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QPrintPreviewWidget", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QPrintPreviewWidget", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QPrintPreviewWidget", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QPrintPreviewWidget", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QPrintPreviewWidget", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QPrintPreviewWidget", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QPrintPreviewWidget", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
+property_writer("QPrintPreviewWidget", /::setSizeIncrement\s*\(/, "sizeIncrement")
+property_reader("QPrintPreviewWidget", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
+property_writer("QPrintPreviewWidget", /::setBaseSize\s*\(/, "baseSize")
+property_reader("QPrintPreviewWidget", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
+property_writer("QPrintPreviewWidget", /::setPalette\s*\(/, "palette")
+property_reader("QPrintPreviewWidget", /::(font|isFont|hasFont)\s*\(/, "font")
+property_writer("QPrintPreviewWidget", /::setFont\s*\(/, "font")
+property_reader("QPrintPreviewWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
+property_writer("QPrintPreviewWidget", /::setCursor\s*\(/, "cursor")
+property_reader("QPrintPreviewWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
+property_writer("QPrintPreviewWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QPrintPreviewWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QPrintPreviewWidget", /::setTabletTracking\s*\(/, "tabletTracking")
+property_reader("QPrintPreviewWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
+property_reader("QPrintPreviewWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
+property_writer("QPrintPreviewWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
+property_reader("QPrintPreviewWidget", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
+property_reader("QPrintPreviewWidget", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
+property_writer("QPrintPreviewWidget", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
+property_reader("QPrintPreviewWidget", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
+property_writer("QPrintPreviewWidget", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
+property_reader("QPrintPreviewWidget", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QPrintPreviewWidget", /::setVisible\s*\(/, "visible")
+property_reader("QPrintPreviewWidget", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
+property_reader("QPrintPreviewWidget", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
+property_reader("QPrintPreviewWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
+property_reader("QPrintPreviewWidget", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
+property_reader("QPrintPreviewWidget", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
+property_reader("QPrintPreviewWidget", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
+property_writer("QPrintPreviewWidget", /::setAcceptDrops\s*\(/, "acceptDrops")
+property_reader("QPrintPreviewWidget", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
+property_writer("QPrintPreviewWidget", /::setWindowTitle\s*\(/, "windowTitle")
+property_reader("QPrintPreviewWidget", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
+property_writer("QPrintPreviewWidget", /::setWindowIcon\s*\(/, "windowIcon")
+property_reader("QPrintPreviewWidget", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
+property_writer("QPrintPreviewWidget", /::setWindowIconText\s*\(/, "windowIconText")
+property_reader("QPrintPreviewWidget", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
+property_writer("QPrintPreviewWidget", /::setWindowOpacity\s*\(/, "windowOpacity")
+property_reader("QPrintPreviewWidget", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
+property_writer("QPrintPreviewWidget", /::setWindowModified\s*\(/, "windowModified")
+property_reader("QPrintPreviewWidget", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
+property_writer("QPrintPreviewWidget", /::setToolTip\s*\(/, "toolTip")
+property_reader("QPrintPreviewWidget", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
+property_writer("QPrintPreviewWidget", /::setToolTipDuration\s*\(/, "toolTipDuration")
+property_reader("QPrintPreviewWidget", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
+property_writer("QPrintPreviewWidget", /::setStatusTip\s*\(/, "statusTip")
+property_reader("QPrintPreviewWidget", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
+property_writer("QPrintPreviewWidget", /::setWhatsThis\s*\(/, "whatsThis")
+property_reader("QPrintPreviewWidget", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
+property_writer("QPrintPreviewWidget", /::setAccessibleName\s*\(/, "accessibleName")
+property_reader("QPrintPreviewWidget", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
+property_writer("QPrintPreviewWidget", /::setAccessibleDescription\s*\(/, "accessibleDescription")
+property_reader("QPrintPreviewWidget", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
+property_writer("QPrintPreviewWidget", /::setLayoutDirection\s*\(/, "layoutDirection")
+property_reader("QPrintPreviewWidget", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
+property_writer("QPrintPreviewWidget", /::setAutoFillBackground\s*\(/, "autoFillBackground")
+property_reader("QPrintPreviewWidget", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
+property_writer("QPrintPreviewWidget", /::setStyleSheet\s*\(/, "styleSheet")
+property_reader("QPrintPreviewWidget", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
+property_writer("QPrintPreviewWidget", /::setLocale\s*\(/, "locale")
+property_reader("QPrintPreviewWidget", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
+property_writer("QPrintPreviewWidget", /::setWindowFilePath\s*\(/, "windowFilePath")
+property_reader("QPrintPreviewWidget", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
+property_writer("QPrintPreviewWidget", /::setInputMethodHints\s*\(/, "inputMethodHints")
+property_reader("QAbstractAudioDeviceInfo", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractAudioDeviceInfo", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractAudioInput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractAudioInput", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractAudioOutput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractAudioOutput", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractVideoFilter", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractVideoFilter", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractVideoFilter", /::(active|isActive|hasActive)\s*\(/, "active")
+property_writer("QAbstractVideoFilter", /::setActive\s*\(/, "active")
+property_reader("QAbstractVideoSurface", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractVideoSurface", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractVideoSurface", /::(nativeResolution|isNativeResolution|hasNativeResolution)\s*\(/, "nativeResolution")
+property_reader("QAudioDecoder", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioDecoder", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioDecoder", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
+property_writer("QAudioDecoder", /::setNotifyInterval\s*\(/, "notifyInterval")
+property_reader("QAudioDecoder", /::(sourceFilename|isSourceFilename|hasSourceFilename)\s*\(/, "sourceFilename")
+property_writer("QAudioDecoder", /::setSourceFilename\s*\(/, "sourceFilename")
+property_reader("QAudioDecoder", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QAudioDecoder", /::(bufferAvailable|isBufferAvailable|hasBufferAvailable)\s*\(/, "bufferAvailable")
+property_reader("QAudioDecoderControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioDecoderControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioEncoderSettingsControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioEncoderSettingsControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioInput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioInput", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioInputSelectorControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioInputSelectorControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioOutput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioOutput", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioOutputSelectorControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioOutputSelectorControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioProbe", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioProbe", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioRecorder", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioRecorder", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioRecorder", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QAudioRecorder", /::(status|isStatus|hasStatus)\s*\(/, "status")
+property_reader("QAudioRecorder", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QAudioRecorder", /::(outputLocation|isOutputLocation|hasOutputLocation)\s*\(/, "outputLocation")
+property_writer("QAudioRecorder", /::setOutputLocation\s*\(/, "outputLocation")
+property_reader("QAudioRecorder", /::(actualLocation|isActualLocation|hasActualLocation)\s*\(/, "actualLocation")
+property_reader("QAudioRecorder", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
+property_writer("QAudioRecorder", /::setMuted\s*\(/, "muted")
+property_reader("QAudioRecorder", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
+property_writer("QAudioRecorder", /::setVolume\s*\(/, "volume")
+property_reader("QAudioRecorder", /::(metaDataAvailable|isMetaDataAvailable|hasMetaDataAvailable)\s*\(/, "metaDataAvailable")
+property_reader("QAudioRecorder", /::(metaDataWritable|isMetaDataWritable|hasMetaDataWritable)\s*\(/, "metaDataWritable")
+property_reader("QAudioRecorder", /::(audioInput|isAudioInput|hasAudioInput)\s*\(/, "audioInput")
+property_writer("QAudioRecorder", /::setAudioInput\s*\(/, "audioInput")
+property_reader("QAudioRoleControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioRoleControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioSystemPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioSystemPlugin", /::setObjectName\s*\(/, "objectName")
+property_reader("QCamera", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCamera", /::setObjectName\s*\(/, "objectName")
+property_reader("QCamera", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
+property_writer("QCamera", /::setNotifyInterval\s*\(/, "notifyInterval")
+property_reader("QCamera", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QCamera", /::(status|isStatus|hasStatus)\s*\(/, "status")
+property_reader("QCamera", /::(captureMode|isCaptureMode|hasCaptureMode)\s*\(/, "captureMode")
+property_writer("QCamera", /::setCaptureMode\s*\(/, "captureMode")
+property_reader("QCamera", /::(lockStatus|isLockStatus|hasLockStatus)\s*\(/, "lockStatus")
+property_reader("QCameraCaptureBufferFormatControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraCaptureBufferFormatControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraCaptureDestinationControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraCaptureDestinationControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraExposure", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraExposure", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraExposure", /::(aperture|isAperture|hasAperture)\s*\(/, "aperture")
+property_reader("QCameraExposure", /::(shutterSpeed|isShutterSpeed|hasShutterSpeed)\s*\(/, "shutterSpeed")
+property_reader("QCameraExposure", /::(isoSensitivity|isIsoSensitivity|hasIsoSensitivity)\s*\(/, "isoSensitivity")
+property_reader("QCameraExposure", /::(exposureCompensation|isExposureCompensation|hasExposureCompensation)\s*\(/, "exposureCompensation")
+property_writer("QCameraExposure", /::setExposureCompensation\s*\(/, "exposureCompensation")
+property_reader("QCameraExposure", /::(flashMode|isFlashMode|hasFlashMode)\s*\(/, "flashMode")
+property_writer("QCameraExposure", /::setFlashMode\s*\(/, "flashMode")
+property_reader("QCameraExposure", /::(exposureMode|isExposureMode|hasExposureMode)\s*\(/, "exposureMode")
+property_writer("QCameraExposure", /::setExposureMode\s*\(/, "exposureMode")
+property_reader("QCameraExposure", /::(meteringMode|isMeteringMode|hasMeteringMode)\s*\(/, "meteringMode")
+property_writer("QCameraExposure", /::setMeteringMode\s*\(/, "meteringMode")
+property_reader("QCameraExposureControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraExposureControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraFeedbackControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraFeedbackControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraFlashControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraFlashControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraFocus", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraFocus", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraFocus", /::(focusMode|isFocusMode|hasFocusMode)\s*\(/, "focusMode")
+property_writer("QCameraFocus", /::setFocusMode\s*\(/, "focusMode")
+property_reader("QCameraFocus", /::(focusPointMode|isFocusPointMode|hasFocusPointMode)\s*\(/, "focusPointMode")
+property_writer("QCameraFocus", /::setFocusPointMode\s*\(/, "focusPointMode")
+property_reader("QCameraFocus", /::(customFocusPoint|isCustomFocusPoint|hasCustomFocusPoint)\s*\(/, "customFocusPoint")
+property_writer("QCameraFocus", /::setCustomFocusPoint\s*\(/, "customFocusPoint")
+property_reader("QCameraFocus", /::(focusZones|isFocusZones|hasFocusZones)\s*\(/, "focusZones")
+property_reader("QCameraFocus", /::(opticalZoom|isOpticalZoom|hasOpticalZoom)\s*\(/, "opticalZoom")
+property_reader("QCameraFocus", /::(digitalZoom|isDigitalZoom|hasDigitalZoom)\s*\(/, "digitalZoom")
+property_reader("QCameraFocusControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraFocusControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraImageCapture", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraImageCapture", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraImageCapture", /::(readyForCapture|isReadyForCapture|hasReadyForCapture)\s*\(/, "readyForCapture")
+property_reader("QCameraImageCaptureControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraImageCaptureControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraImageProcessing", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraImageProcessing", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraImageProcessingControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraImageProcessingControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraInfoControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraInfoControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraLocksControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraLocksControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraViewfinderSettingsControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraViewfinderSettingsControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraViewfinderSettingsControl2", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraViewfinderSettingsControl2", /::setObjectName\s*\(/, "objectName")
+property_reader("QCameraZoomControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCameraZoomControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QCustomAudioRoleControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCustomAudioRoleControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QGraphicsVideoItem", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QGraphicsVideoItem", /::setObjectName\s*\(/, "objectName")
+property_reader("QGraphicsVideoItem", /::(parent|isParent|hasParent)\s*\(/, "parent")
+property_writer("QGraphicsVideoItem", /::setParent\s*\(/, "parent")
+property_reader("QGraphicsVideoItem", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
+property_writer("QGraphicsVideoItem", /::setOpacity\s*\(/, "opacity")
+property_reader("QGraphicsVideoItem", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QGraphicsVideoItem", /::setEnabled\s*\(/, "enabled")
+property_reader("QGraphicsVideoItem", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QGraphicsVideoItem", /::setVisible\s*\(/, "visible")
+property_reader("QGraphicsVideoItem", /::(pos|isPos|hasPos)\s*\(/, "pos")
+property_writer("QGraphicsVideoItem", /::setPos\s*\(/, "pos")
+property_reader("QGraphicsVideoItem", /::(x|isX|hasX)\s*\(/, "x")
+property_writer("QGraphicsVideoItem", /::setX\s*\(/, "x")
+property_reader("QGraphicsVideoItem", /::(y|isY|hasY)\s*\(/, "y")
+property_writer("QGraphicsVideoItem", /::setY\s*\(/, "y")
+property_reader("QGraphicsVideoItem", /::(z|isZ|hasZ)\s*\(/, "z")
+property_writer("QGraphicsVideoItem", /::setZ\s*\(/, "z")
+property_reader("QGraphicsVideoItem", /::(rotation|isRotation|hasRotation)\s*\(/, "rotation")
+property_writer("QGraphicsVideoItem", /::setRotation\s*\(/, "rotation")
+property_reader("QGraphicsVideoItem", /::(scale|isScale|hasScale)\s*\(/, "scale")
+property_writer("QGraphicsVideoItem", /::setScale\s*\(/, "scale")
+property_reader("QGraphicsVideoItem", /::(transformOriginPoint|isTransformOriginPoint|hasTransformOriginPoint)\s*\(/, "transformOriginPoint")
+property_writer("QGraphicsVideoItem", /::setTransformOriginPoint\s*\(/, "transformOriginPoint")
+property_reader("QGraphicsVideoItem", /::(effect|isEffect|hasEffect)\s*\(/, "effect")
+property_writer("QGraphicsVideoItem", /::setEffect\s*\(/, "effect")
+property_reader("QGraphicsVideoItem", /::(children|isChildren|hasChildren)\s*\(/, "children")
+property_reader("QGraphicsVideoItem", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_writer("QGraphicsVideoItem", /::setWidth\s*\(/, "width")
+property_reader("QGraphicsVideoItem", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_writer("QGraphicsVideoItem", /::setHeight\s*\(/, "height")
+property_reader("QGraphicsVideoItem", /::(mediaObject|isMediaObject|hasMediaObject)\s*\(/, "mediaObject")
+property_writer("QGraphicsVideoItem", /::setMediaObject\s*\(/, "mediaObject")
+property_reader("QGraphicsVideoItem", /::(aspectRatioMode|isAspectRatioMode|hasAspectRatioMode)\s*\(/, "aspectRatioMode")
+property_writer("QGraphicsVideoItem", /::setAspectRatioMode\s*\(/, "aspectRatioMode")
+property_reader("QGraphicsVideoItem", /::(offset|isOffset|hasOffset)\s*\(/, "offset")
+property_writer("QGraphicsVideoItem", /::setOffset\s*\(/, "offset")
+property_reader("QGraphicsVideoItem", /::(size|isSize|hasSize)\s*\(/, "size")
+property_writer("QGraphicsVideoItem", /::setSize\s*\(/, "size")
+property_reader("QGraphicsVideoItem", /::(nativeSize|isNativeSize|hasNativeSize)\s*\(/, "nativeSize")
+property_reader("QGraphicsVideoItem", /::(videoSurface|isVideoSurface|hasVideoSurface)\s*\(/, "videoSurface")
+property_reader("QImageEncoderControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QImageEncoderControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaAudioProbeControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaAudioProbeControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaAvailabilityControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaAvailabilityControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaContainerControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaContainerControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaGaplessPlaybackControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaGaplessPlaybackControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaNetworkAccessControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaNetworkAccessControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaObject", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaObject", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaObject", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
+property_writer("QMediaObject", /::setNotifyInterval\s*\(/, "notifyInterval")
+property_reader("QMediaPlayer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaPlayer", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaPlayer", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
+property_writer("QMediaPlayer", /::setNotifyInterval\s*\(/, "notifyInterval")
+property_reader("QMediaPlayer", /::(media|isMedia|hasMedia)\s*\(/, "media")
+property_writer("QMediaPlayer", /::setMedia\s*\(/, "media")
+property_reader("QMediaPlayer", /::(currentMedia|isCurrentMedia|hasCurrentMedia)\s*\(/, "currentMedia")
+property_reader("QMediaPlayer", /::(playlist|isPlaylist|hasPlaylist)\s*\(/, "playlist")
+property_writer("QMediaPlayer", /::setPlaylist\s*\(/, "playlist")
+property_reader("QMediaPlayer", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QMediaPlayer", /::(position|isPosition|hasPosition)\s*\(/, "position")
+property_writer("QMediaPlayer", /::setPosition\s*\(/, "position")
+property_reader("QMediaPlayer", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
+property_writer("QMediaPlayer", /::setVolume\s*\(/, "volume")
+property_reader("QMediaPlayer", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
+property_writer("QMediaPlayer", /::setMuted\s*\(/, "muted")
+property_reader("QMediaPlayer", /::(bufferStatus|isBufferStatus|hasBufferStatus)\s*\(/, "bufferStatus")
+property_reader("QMediaPlayer", /::(audioAvailable|isAudioAvailable|hasAudioAvailable)\s*\(/, "audioAvailable")
+property_reader("QMediaPlayer", /::(videoAvailable|isVideoAvailable|hasVideoAvailable)\s*\(/, "videoAvailable")
+property_reader("QMediaPlayer", /::(seekable|isSeekable|hasSeekable)\s*\(/, "seekable")
+property_reader("QMediaPlayer", /::(playbackRate|isPlaybackRate|hasPlaybackRate)\s*\(/, "playbackRate")
+property_writer("QMediaPlayer", /::setPlaybackRate\s*\(/, "playbackRate")
+property_reader("QMediaPlayer", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QMediaPlayer", /::(mediaStatus|isMediaStatus|hasMediaStatus)\s*\(/, "mediaStatus")
+property_reader("QMediaPlayer", /::(audioRole|isAudioRole|hasAudioRole)\s*\(/, "audioRole")
+property_writer("QMediaPlayer", /::setAudioRole\s*\(/, "audioRole")
+property_reader("QMediaPlayer", /::(customAudioRole|isCustomAudioRole|hasCustomAudioRole)\s*\(/, "customAudioRole")
+property_writer("QMediaPlayer", /::setCustomAudioRole\s*\(/, "customAudioRole")
+property_reader("QMediaPlayerControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaPlayerControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaPlaylist", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaPlaylist", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaPlaylist", /::(playbackMode|isPlaybackMode|hasPlaybackMode)\s*\(/, "playbackMode")
+property_writer("QMediaPlaylist", /::setPlaybackMode\s*\(/, "playbackMode")
+property_reader("QMediaPlaylist", /::(currentMedia|isCurrentMedia|hasCurrentMedia)\s*\(/, "currentMedia")
+property_reader("QMediaPlaylist", /::(currentIndex|isCurrentIndex|hasCurrentIndex)\s*\(/, "currentIndex")
+property_writer("QMediaPlaylist", /::setCurrentIndex\s*\(/, "currentIndex")
+property_reader("QMediaRecorder", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaRecorder", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaRecorder", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QMediaRecorder", /::(status|isStatus|hasStatus)\s*\(/, "status")
+property_reader("QMediaRecorder", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QMediaRecorder", /::(outputLocation|isOutputLocation|hasOutputLocation)\s*\(/, "outputLocation")
+property_writer("QMediaRecorder", /::setOutputLocation\s*\(/, "outputLocation")
+property_reader("QMediaRecorder", /::(actualLocation|isActualLocation|hasActualLocation)\s*\(/, "actualLocation")
+property_reader("QMediaRecorder", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
+property_writer("QMediaRecorder", /::setMuted\s*\(/, "muted")
+property_reader("QMediaRecorder", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
+property_writer("QMediaRecorder", /::setVolume\s*\(/, "volume")
+property_reader("QMediaRecorder", /::(metaDataAvailable|isMetaDataAvailable|hasMetaDataAvailable)\s*\(/, "metaDataAvailable")
+property_reader("QMediaRecorder", /::(metaDataWritable|isMetaDataWritable|hasMetaDataWritable)\s*\(/, "metaDataWritable")
+property_reader("QMediaRecorderControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaRecorderControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaService", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaService", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaServiceProviderPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaServiceProviderPlugin", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaStreamsControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaStreamsControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaVideoProbeControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaVideoProbeControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QMetaDataReaderControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMetaDataReaderControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QMetaDataWriterControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMetaDataWriterControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QRadioData", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QRadioData", /::setObjectName\s*\(/, "objectName")
+property_reader("QRadioData", /::(stationId|isStationId|hasStationId)\s*\(/, "stationId")
+property_reader("QRadioData", /::(programType|isProgramType|hasProgramType)\s*\(/, "programType")
+property_reader("QRadioData", /::(programTypeName|isProgramTypeName|hasProgramTypeName)\s*\(/, "programTypeName")
+property_reader("QRadioData", /::(stationName|isStationName|hasStationName)\s*\(/, "stationName")
+property_reader("QRadioData", /::(radioText|isRadioText|hasRadioText)\s*\(/, "radioText")
+property_reader("QRadioData", /::(alternativeFrequenciesEnabled|isAlternativeFrequenciesEnabled|hasAlternativeFrequenciesEnabled)\s*\(/, "alternativeFrequenciesEnabled")
+property_writer("QRadioData", /::setAlternativeFrequenciesEnabled\s*\(/, "alternativeFrequenciesEnabled")
+property_reader("QRadioDataControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QRadioDataControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QRadioTuner", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QRadioTuner", /::setObjectName\s*\(/, "objectName")
+property_reader("QRadioTuner", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
+property_writer("QRadioTuner", /::setNotifyInterval\s*\(/, "notifyInterval")
+property_reader("QRadioTuner", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QRadioTuner", /::(band|isBand|hasBand)\s*\(/, "band")
+property_writer("QRadioTuner", /::setBand\s*\(/, "band")
+property_reader("QRadioTuner", /::(frequency|isFrequency|hasFrequency)\s*\(/, "frequency")
+property_writer("QRadioTuner", /::setFrequency\s*\(/, "frequency")
+property_reader("QRadioTuner", /::(stereo|isStereo|hasStereo)\s*\(/, "stereo")
+property_reader("QRadioTuner", /::(stereoMode|isStereoMode|hasStereoMode)\s*\(/, "stereoMode")
+property_writer("QRadioTuner", /::setStereoMode\s*\(/, "stereoMode")
+property_reader("QRadioTuner", /::(signalStrength|isSignalStrength|hasSignalStrength)\s*\(/, "signalStrength")
+property_reader("QRadioTuner", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
+property_writer("QRadioTuner", /::setVolume\s*\(/, "volume")
+property_reader("QRadioTuner", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
+property_writer("QRadioTuner", /::setMuted\s*\(/, "muted")
+property_reader("QRadioTuner", /::(searching|isSearching|hasSearching)\s*\(/, "searching")
+property_reader("QRadioTuner", /::(antennaConnected|isAntennaConnected|hasAntennaConnected)\s*\(/, "antennaConnected")
+property_reader("QRadioTuner", /::(radioData|isRadioData|hasRadioData)\s*\(/, "radioData")
+property_reader("QRadioTunerControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QRadioTunerControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QSound", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSound", /::setObjectName\s*\(/, "objectName")
+property_reader("QSoundEffect", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSoundEffect", /::setObjectName\s*\(/, "objectName")
+property_reader("QSoundEffect", /::(source|isSource|hasSource)\s*\(/, "source")
+property_writer("QSoundEffect", /::setSource\s*\(/, "source")
+property_reader("QSoundEffect", /::(loops|isLoops|hasLoops)\s*\(/, "loops")
+property_writer("QSoundEffect", /::setLoops\s*\(/, "loops")
+property_reader("QSoundEffect", /::(loopsRemaining|isLoopsRemaining|hasLoopsRemaining)\s*\(/, "loopsRemaining")
+property_reader("QSoundEffect", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
+property_writer("QSoundEffect", /::setVolume\s*\(/, "volume")
+property_reader("QSoundEffect", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
+property_writer("QSoundEffect", /::setMuted\s*\(/, "muted")
+property_reader("QSoundEffect", /::(playing|isPlaying|hasPlaying)\s*\(/, "playing")
+property_reader("QSoundEffect", /::(status|isStatus|hasStatus)\s*\(/, "status")
+property_reader("QSoundEffect", /::(category|isCategory|hasCategory)\s*\(/, "category")
+property_writer("QSoundEffect", /::setCategory\s*\(/, "category")
+property_reader("QVideoDeviceSelectorControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QVideoDeviceSelectorControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QVideoEncoderSettingsControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QVideoEncoderSettingsControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QVideoProbe", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QVideoProbe", /::setObjectName\s*\(/, "objectName")
+property_reader("QVideoRendererControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QVideoRendererControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QVideoWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QVideoWidget", /::setObjectName\s*\(/, "objectName")
+property_reader("QVideoWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_reader("QVideoWidget", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
+property_writer("QVideoWidget", /::setWindowModality\s*\(/, "windowModality")
+property_reader("QVideoWidget", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QVideoWidget", /::setEnabled\s*\(/, "enabled")
+property_reader("QVideoWidget", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
+property_writer("QVideoWidget", /::setGeometry\s*\(/, "geometry")
+property_reader("QVideoWidget", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
+property_reader("QVideoWidget", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
+property_reader("QVideoWidget", /::(x|isX|hasX)\s*\(/, "x")
+property_reader("QVideoWidget", /::(y|isY|hasY)\s*\(/, "y")
+property_reader("QVideoWidget", /::(pos|isPos|hasPos)\s*\(/, "pos")
+property_writer("QVideoWidget", /::setPos\s*\(/, "pos")
+property_reader("QVideoWidget", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
+property_reader("QVideoWidget", /::(size|isSize|hasSize)\s*\(/, "size")
+property_writer("QVideoWidget", /::setSize\s*\(/, "size")
+property_reader("QVideoWidget", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_reader("QVideoWidget", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_reader("QVideoWidget", /::(rect|isRect|hasRect)\s*\(/, "rect")
+property_reader("QVideoWidget", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
+property_reader("QVideoWidget", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
+property_reader("QVideoWidget", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
+property_writer("QVideoWidget", /::setSizePolicy\s*\(/, "sizePolicy")
+property_reader("QVideoWidget", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
+property_writer("QVideoWidget", /::setMinimumSize\s*\(/, "minimumSize")
+property_reader("QVideoWidget", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
+property_writer("QVideoWidget", /::setMaximumSize\s*\(/, "maximumSize")
+property_reader("QVideoWidget", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QVideoWidget", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QVideoWidget", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QVideoWidget", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QVideoWidget", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QVideoWidget", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QVideoWidget", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QVideoWidget", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QVideoWidget", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
+property_writer("QVideoWidget", /::setSizeIncrement\s*\(/, "sizeIncrement")
+property_reader("QVideoWidget", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
+property_writer("QVideoWidget", /::setBaseSize\s*\(/, "baseSize")
+property_reader("QVideoWidget", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
+property_writer("QVideoWidget", /::setPalette\s*\(/, "palette")
+property_reader("QVideoWidget", /::(font|isFont|hasFont)\s*\(/, "font")
+property_writer("QVideoWidget", /::setFont\s*\(/, "font")
+property_reader("QVideoWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
+property_writer("QVideoWidget", /::setCursor\s*\(/, "cursor")
+property_reader("QVideoWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
+property_writer("QVideoWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QVideoWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QVideoWidget", /::setTabletTracking\s*\(/, "tabletTracking")
+property_reader("QVideoWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
+property_reader("QVideoWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
+property_writer("QVideoWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
+property_reader("QVideoWidget", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
+property_reader("QVideoWidget", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
+property_writer("QVideoWidget", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
+property_reader("QVideoWidget", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
+property_writer("QVideoWidget", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
+property_reader("QVideoWidget", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QVideoWidget", /::setVisible\s*\(/, "visible")
+property_reader("QVideoWidget", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
+property_reader("QVideoWidget", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
+property_reader("QVideoWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
+property_reader("QVideoWidget", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
+property_reader("QVideoWidget", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
+property_reader("QVideoWidget", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
+property_writer("QVideoWidget", /::setAcceptDrops\s*\(/, "acceptDrops")
+property_reader("QVideoWidget", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
+property_writer("QVideoWidget", /::setWindowTitle\s*\(/, "windowTitle")
+property_reader("QVideoWidget", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
+property_writer("QVideoWidget", /::setWindowIcon\s*\(/, "windowIcon")
+property_reader("QVideoWidget", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
+property_writer("QVideoWidget", /::setWindowIconText\s*\(/, "windowIconText")
+property_reader("QVideoWidget", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
+property_writer("QVideoWidget", /::setWindowOpacity\s*\(/, "windowOpacity")
+property_reader("QVideoWidget", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
+property_writer("QVideoWidget", /::setWindowModified\s*\(/, "windowModified")
+property_reader("QVideoWidget", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
+property_writer("QVideoWidget", /::setToolTip\s*\(/, "toolTip")
+property_reader("QVideoWidget", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
+property_writer("QVideoWidget", /::setToolTipDuration\s*\(/, "toolTipDuration")
+property_reader("QVideoWidget", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
+property_writer("QVideoWidget", /::setStatusTip\s*\(/, "statusTip")
+property_reader("QVideoWidget", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
+property_writer("QVideoWidget", /::setWhatsThis\s*\(/, "whatsThis")
+property_reader("QVideoWidget", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
+property_writer("QVideoWidget", /::setAccessibleName\s*\(/, "accessibleName")
+property_reader("QVideoWidget", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
+property_writer("QVideoWidget", /::setAccessibleDescription\s*\(/, "accessibleDescription")
+property_reader("QVideoWidget", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
+property_writer("QVideoWidget", /::setLayoutDirection\s*\(/, "layoutDirection")
+property_reader("QVideoWidget", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
+property_writer("QVideoWidget", /::setAutoFillBackground\s*\(/, "autoFillBackground")
+property_reader("QVideoWidget", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
+property_writer("QVideoWidget", /::setStyleSheet\s*\(/, "styleSheet")
+property_reader("QVideoWidget", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
+property_writer("QVideoWidget", /::setLocale\s*\(/, "locale")
+property_reader("QVideoWidget", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
+property_writer("QVideoWidget", /::setWindowFilePath\s*\(/, "windowFilePath")
+property_reader("QVideoWidget", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
+property_writer("QVideoWidget", /::setInputMethodHints\s*\(/, "inputMethodHints")
+property_reader("QVideoWidget", /::(mediaObject|isMediaObject|hasMediaObject)\s*\(/, "mediaObject")
+property_writer("QVideoWidget", /::setMediaObject\s*\(/, "mediaObject")
+property_reader("QVideoWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
+property_writer("QVideoWidget", /::setFullScreen\s*\(/, "fullScreen")
+property_reader("QVideoWidget", /::(aspectRatioMode|isAspectRatioMode|hasAspectRatioMode)\s*\(/, "aspectRatioMode")
+property_writer("QVideoWidget", /::setAspectRatioMode\s*\(/, "aspectRatioMode")
+property_reader("QVideoWidget", /::(brightness|isBrightness|hasBrightness)\s*\(/, "brightness")
+property_writer("QVideoWidget", /::setBrightness\s*\(/, "brightness")
+property_reader("QVideoWidget", /::(contrast|isContrast|hasContrast)\s*\(/, "contrast")
+property_writer("QVideoWidget", /::setContrast\s*\(/, "contrast")
+property_reader("QVideoWidget", /::(hue|isHue|hasHue)\s*\(/, "hue")
+property_writer("QVideoWidget", /::setHue\s*\(/, "hue")
+property_reader("QVideoWidget", /::(saturation|isSaturation|hasSaturation)\s*\(/, "saturation")
+property_writer("QVideoWidget", /::setSaturation\s*\(/, "saturation")
+property_reader("QVideoWidget", /::(videoSurface|isVideoSurface|hasVideoSurface)\s*\(/, "videoSurface")
+property_reader("QVideoWindowControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QVideoWindowControl", /::setObjectName\s*\(/, "objectName")
+property_reader("QUiLoader", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QUiLoader", /::setObjectName\s*\(/, "objectName")
+property_reader("QSqlDriver", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSqlDriver", /::setObjectName\s*\(/, "objectName")
+property_reader("QSqlQueryModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSqlQueryModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QSqlRelationalTableModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSqlRelationalTableModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QSqlTableModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSqlTableModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractNetworkCache", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractNetworkCache", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractSocket", /::setObjectName\s*\(/, "objectName")
+property_reader("QDnsLookup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QDnsLookup", /::setObjectName\s*\(/, "objectName")
+property_reader("QDnsLookup", /::(error|isError|hasError)\s*\(/, "error")
+property_reader("QDnsLookup", /::(errorString|isErrorString|hasErrorString)\s*\(/, "errorString")
+property_reader("QDnsLookup", /::(name|isName|hasName)\s*\(/, "name")
+property_writer("QDnsLookup", /::setName\s*\(/, "name")
+property_reader("QDnsLookup", /::(type|isType|hasType)\s*\(/, "type")
+property_writer("QDnsLookup", /::setType\s*\(/, "type")
+property_reader("QDnsLookup", /::(nameserver|isNameserver|hasNameserver)\s*\(/, "nameserver")
+property_writer("QDnsLookup", /::setNameserver\s*\(/, "nameserver")
+property_reader("QDtls", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QDtls", /::setObjectName\s*\(/, "objectName")
+property_reader("QDtlsClientVerifier", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QDtlsClientVerifier", /::setObjectName\s*\(/, "objectName")
+property_reader("QHttpMultiPart", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QHttpMultiPart", /::setObjectName\s*\(/, "objectName")
+property_reader("QLocalServer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QLocalServer", /::setObjectName\s*\(/, "objectName")
+property_reader("QLocalServer", /::(socketOptions|isSocketOptions|hasSocketOptions)\s*\(/, "socketOptions")
+property_writer("QLocalServer", /::setSocketOptions\s*\(/, "socketOptions")
+property_reader("QLocalSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QLocalSocket", /::setObjectName\s*\(/, "objectName")
+property_reader("QNetworkAccessManager", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QNetworkAccessManager", /::setObjectName\s*\(/, "objectName")
+property_reader("QNetworkAccessManager", /::(networkAccessible|isNetworkAccessible|hasNetworkAccessible)\s*\(/, "networkAccessible")
+property_writer("QNetworkAccessManager", /::setNetworkAccessible\s*\(/, "networkAccessible")
+property_reader("QNetworkConfigurationManager", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QNetworkConfigurationManager", /::setObjectName\s*\(/, "objectName")
+property_reader("QNetworkCookieJar", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QNetworkCookieJar", /::setObjectName\s*\(/, "objectName")
+property_reader("QNetworkDiskCache", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QNetworkDiskCache", /::setObjectName\s*\(/, "objectName")
+property_reader("QNetworkReply", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QNetworkReply", /::setObjectName\s*\(/, "objectName")
+property_reader("QNetworkSession", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QNetworkSession", /::setObjectName\s*\(/, "objectName")
+property_reader("QSslSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSslSocket", /::setObjectName\s*\(/, "objectName")
+property_reader("QTcpServer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTcpServer", /::setObjectName\s*\(/, "objectName")
+property_reader("QTcpSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTcpSocket", /::setObjectName\s*\(/, "objectName")
+property_reader("QUdpSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QUdpSocket", /::setObjectName\s*\(/, "objectName")
# Synthetic properties
-# Property bufferSize (int)
-property_reader("QAbstractAudioInput", /::bufferSize\s*\(/, "bufferSize")
-property_writer("QAbstractAudioInput", /::setBufferSize\s*\(/, "bufferSize")
-# Property format (QAudioFormat)
-property_reader("QAbstractAudioInput", /::format\s*\(/, "format")
-property_writer("QAbstractAudioInput", /::setFormat\s*\(/, "format")
-# Property notifyInterval (int)
-property_reader("QAbstractAudioInput", /::notifyInterval\s*\(/, "notifyInterval")
-property_writer("QAbstractAudioInput", /::setNotifyInterval\s*\(/, "notifyInterval")
-# Property volume (double)
-property_reader("QAbstractAudioInput", /::volume\s*\(/, "volume")
-property_writer("QAbstractAudioInput", /::setVolume\s*\(/, "volume")
-# Property bufferSize (int)
-property_reader("QAbstractAudioOutput", /::bufferSize\s*\(/, "bufferSize")
-property_writer("QAbstractAudioOutput", /::setBufferSize\s*\(/, "bufferSize")
-# Property category (string)
-property_reader("QAbstractAudioOutput", /::category\s*\(/, "category")
-property_writer("QAbstractAudioOutput", /::setCategory\s*\(/, "category")
-# Property format (QAudioFormat)
-property_reader("QAbstractAudioOutput", /::format\s*\(/, "format")
-property_writer("QAbstractAudioOutput", /::setFormat\s*\(/, "format")
-# Property notifyInterval (int)
-property_reader("QAbstractAudioOutput", /::notifyInterval\s*\(/, "notifyInterval")
-property_writer("QAbstractAudioOutput", /::setNotifyInterval\s*\(/, "notifyInterval")
-# Property volume (double)
-property_reader("QAbstractAudioOutput", /::volume\s*\(/, "volume")
-property_writer("QAbstractAudioOutput", /::setVolume\s*\(/, "volume")
-# Property workingDirectory (QDir)
-property_reader("QAbstractFormBuilder", /::workingDirectory\s*\(/, "workingDirectory")
-property_writer("QAbstractFormBuilder", /::setWorkingDirectory\s*\(/, "workingDirectory")
-# Property brush (QBrush)
-property_reader("QAbstractGraphicsShapeItem", /::brush\s*\(/, "brush")
-property_writer("QAbstractGraphicsShapeItem", /::setBrush\s*\(/, "brush")
-# Property pen (QPen)
-property_reader("QAbstractGraphicsShapeItem", /::pen\s*\(/, "pen")
-property_writer("QAbstractGraphicsShapeItem", /::setPen\s*\(/, "pen")
# Property parent (QObject_Native *)
property_reader("QAbstractItemModel", /::parent\s*\(/, "parent")
property_writer("QObject", /::setParent\s*\(/, "parent")
-# Property currentIndex (QModelIndex)
-property_reader("QAbstractItemView", /::currentIndex\s*\(/, "currentIndex")
-property_writer("QAbstractItemView", /::setCurrentIndex\s*\(/, "currentIndex")
-# Property itemDelegate (QAbstractItemDelegate_Native *)
-property_reader("QAbstractItemView", /::itemDelegate\s*\(/, "itemDelegate")
-property_writer("QAbstractItemView", /::setItemDelegate\s*\(/, "itemDelegate")
-# Property model (QAbstractItemModel_Native *)
-property_reader("QAbstractItemView", /::model\s*\(/, "model")
-property_writer("QAbstractItemView", /::setModel\s*\(/, "model")
-# Property rootIndex (QModelIndex)
-property_reader("QAbstractItemView", /::rootIndex\s*\(/, "rootIndex")
-property_writer("QAbstractItemView", /::setRootIndex\s*\(/, "rootIndex")
-# Property selectionModel (QItemSelectionModel_Native *)
-property_reader("QAbstractItemView", /::selectionModel\s*\(/, "selectionModel")
-property_writer("QAbstractItemView", /::setSelectionModel\s*\(/, "selectionModel")
# Property parent (QObject_Native *)
property_reader("QAbstractListModel", /::parent\s*\(/, "parent")
property_writer("QObject", /::setParent\s*\(/, "parent")
-# Property enabledOptions (QAbstractPrintDialog_QFlags_PrintDialogOption)
-property_reader("QAbstractPrintDialog", /::enabledOptions\s*\(/, "enabledOptions")
-property_writer("QAbstractPrintDialog", /::setEnabledOptions\s*\(/, "enabledOptions")
-# Property printRange (QAbstractPrintDialog_PrintRange)
-property_reader("QAbstractPrintDialog", /::printRange\s*\(/, "printRange")
-property_writer("QAbstractPrintDialog", /::setPrintRange\s*\(/, "printRange")
-# Property cornerWidget (QWidget_Native *)
-property_reader("QAbstractScrollArea", /::cornerWidget\s*\(/, "cornerWidget")
-property_writer("QAbstractScrollArea", /::setCornerWidget\s*\(/, "cornerWidget")
-# Property horizontalScrollBar (QScrollBar_Native *)
-property_reader("QAbstractScrollArea", /::horizontalScrollBar\s*\(/, "horizontalScrollBar")
-property_writer("QAbstractScrollArea", /::setHorizontalScrollBar\s*\(/, "horizontalScrollBar")
-# Property verticalScrollBar (QScrollBar_Native *)
-property_reader("QAbstractScrollArea", /::verticalScrollBar\s*\(/, "verticalScrollBar")
-property_writer("QAbstractScrollArea", /::setVerticalScrollBar\s*\(/, "verticalScrollBar")
-# Property viewport (QWidget_Native *)
-property_reader("QAbstractScrollArea", /::viewport\s*\(/, "viewport")
-property_writer("QAbstractScrollArea", /::setViewport\s*\(/, "viewport")
-# Property pauseMode (QAbstractSocket_QFlags_PauseMode)
-property_reader("QAbstractSocket", /::pauseMode\s*\(/, "pauseMode")
-property_writer("QAbstractSocket", /::setPauseMode\s*\(/, "pauseMode")
-# Property proxy (QNetworkProxy)
-property_reader("QAbstractSocket", /::proxy\s*\(/, "proxy")
-property_writer("QAbstractSocket", /::setProxy\s*\(/, "proxy")
-# Property readBufferSize (long long)
-property_reader("QAbstractSocket", /::readBufferSize\s*\(/, "readBufferSize")
-property_writer("QAbstractSocket", /::setReadBufferSize\s*\(/, "readBufferSize")
-# Property groupSeparatorShown (bool)
-property_reader("QAbstractSpinBox", /::isGroupSeparatorShown\s*\(/, "groupSeparatorShown")
-property_writer("QAbstractSpinBox", /::setGroupSeparatorShown\s*\(/, "groupSeparatorShown")
# Property parent (QObject_Native *)
property_reader("QAbstractTableModel", /::parent\s*\(/, "parent")
property_writer("QObject", /::setParent\s*\(/, "parent")
+# Property startTime (long long)
+property_reader("QAnimationDriver", /::startTime\s*\(/, "startTime")
+property_writer("QAnimationDriver", /::setStartTime\s*\(/, "startTime")
+# Property data (byte array)
+property_reader("QBuffer", /::data\s*\(/, "data")
+property_writer("QBuffer", /::setData\s*\(/, "data")
+# Property pattern (byte array)
+property_reader("QByteArrayMatcher", /::pattern\s*\(/, "pattern")
+property_writer("QByteArrayMatcher", /::setPattern\s*\(/, "pattern")
+# Property caseSensitivity (Qt_CaseSensitivity)
+property_reader("QCollator", /::caseSensitivity\s*\(/, "caseSensitivity")
+property_writer("QCollator", /::setCaseSensitivity\s*\(/, "caseSensitivity")
+# Property ignorePunctuation (bool)
+property_reader("QCollator", /::ignorePunctuation\s*\(/, "ignorePunctuation")
+property_writer("QCollator", /::setIgnorePunctuation\s*\(/, "ignorePunctuation")
+# Property locale (QLocale)
+property_reader("QCollator", /::locale\s*\(/, "locale")
+property_writer("QCollator", /::setLocale\s*\(/, "locale")
+# Property numericMode (bool)
+property_reader("QCollator", /::numericMode\s*\(/, "numericMode")
+property_writer("QCollator", /::setNumericMode\s*\(/, "numericMode")
+# Property defaultValues (string[])
+property_reader("QCommandLineOption", /::defaultValues\s*\(/, "defaultValues")
+property_writer("QCommandLineOption", /::setDefaultValues\s*\(/, "defaultValues")
+# Property description (string)
+property_reader("QCommandLineOption", /::description\s*\(/, "description")
+property_writer("QCommandLineOption", /::setDescription\s*\(/, "description")
+# Property flags (QCommandLineOption_QFlags_Flag)
+property_reader("QCommandLineOption", /::flags\s*\(/, "flags")
+property_writer("QCommandLineOption", /::setFlags\s*\(/, "flags")
+# Property hidden (bool)
+property_reader("QCommandLineOption", /::isHidden\s*\(/, "hidden")
+property_writer("QCommandLineOption", /::setHidden\s*\(/, "hidden")
+# Property valueName (string)
+property_reader("QCommandLineOption", /::valueName\s*\(/, "valueName")
+property_writer("QCommandLineOption", /::setValueName\s*\(/, "valueName")
+# Property applicationDescription (string)
+property_reader("QCommandLineParser", /::applicationDescription\s*\(/, "applicationDescription")
+property_writer("QCommandLineParser", /::setApplicationDescription\s*\(/, "applicationDescription")
+# Property eventDispatcher (QAbstractEventDispatcher_Native *)
+property_reader("QCoreApplication", /::eventDispatcher\s*\(/, "eventDispatcher")
+property_writer("QCoreApplication", /::setEventDispatcher\s*\(/, "eventDispatcher")
+# Property libraryPaths (string[])
+property_reader("QCoreApplication", /::libraryPaths\s*\(/, "libraryPaths")
+property_writer("QCoreApplication", /::setLibraryPaths\s*\(/, "libraryPaths")
+# Property setuidAllowed (bool)
+property_reader("QCoreApplication", /::isSetuidAllowed\s*\(/, "setuidAllowed")
+property_writer("QCoreApplication", /::setSetuidAllowed\s*\(/, "setuidAllowed")
+# Property byteOrder (QDataStream_ByteOrder)
+property_reader("QDataStream", /::byteOrder\s*\(/, "byteOrder")
+property_writer("QDataStream", /::setByteOrder\s*\(/, "byteOrder")
+# Property device (QIODevice *)
+property_reader("QDataStream", /::device\s*\(/, "device")
+property_writer("QDataStream", /::setDevice\s*\(/, "device")
+# Property floatingPointPrecision (QDataStream_FloatingPointPrecision)
+property_reader("QDataStream", /::floatingPointPrecision\s*\(/, "floatingPointPrecision")
+property_writer("QDataStream", /::setFloatingPointPrecision\s*\(/, "floatingPointPrecision")
+# Property status (QDataStream_Status)
+property_reader("QDataStream", /::status\s*\(/, "status")
+property_writer("QDataStream", /::setStatus\s*\(/, "status")
+# Property version (int)
+property_reader("QDataStream", /::version\s*\(/, "version")
+property_writer("QDataStream", /::setVersion\s*\(/, "version")
+# Property date (QDate)
+property_reader("QDateTime", /::date\s*\(/, "date")
+property_writer("QDateTime", /::setDate\s*\(/, "date")
+# Property offsetFromUtc (int)
+property_reader("QDateTime", /::offsetFromUtc\s*\(/, "offsetFromUtc")
+property_writer("QDateTime", /::setOffsetFromUtc\s*\(/, "offsetFromUtc")
+# Property time (QTime)
+property_reader("QDateTime", /::time\s*\(/, "time")
+property_writer("QDateTime", /::setTime\s*\(/, "time")
+# Property timeSpec (Qt_TimeSpec)
+property_reader("QDateTime", /::timeSpec\s*\(/, "timeSpec")
+property_writer("QDateTime", /::setTimeSpec\s*\(/, "timeSpec")
+# Property timeZone (QTimeZone)
+property_reader("QDateTime", /::timeZone\s*\(/, "timeZone")
+property_writer("QDateTime", /::setTimeZone\s*\(/, "timeZone")
+# Property utcOffset (int)
+property_reader("QDateTime", /::utcOffset\s*\(/, "utcOffset")
+property_writer("QDateTime", /::setUtcOffset\s*\(/, "utcOffset")
+# Property deadline (long long)
+property_reader("QDeadlineTimer", /::deadline\s*\(/, "deadline")
+property_writer("QDeadlineTimer", /::setDeadline\s*\(/, "deadline")
+# Property remainingTime (long long)
+property_reader("QDeadlineTimer", /::remainingTime\s*\(/, "remainingTime")
+property_writer("QDeadlineTimer", /::setRemainingTime\s*\(/, "remainingTime")
+# Property timerType (Qt_TimerType)
+property_reader("QDeadlineTimer", /::timerType\s*\(/, "timerType")
+property_writer("QDeadlineTimer", /::setTimerType\s*\(/, "timerType")
+# Property autoInsertSpaces (bool)
+property_reader("QDebug", /::autoInsertSpaces\s*\(/, "autoInsertSpaces")
+property_writer("QDebug", /::setAutoInsertSpaces\s*\(/, "autoInsertSpaces")
+# Property verbosity (int)
+property_reader("QDebug", /::verbosity\s*\(/, "verbosity")
+property_writer("QDebug", /::setVerbosity\s*\(/, "verbosity")
+# Property filter (QDir_QFlags_Filter)
+property_reader("QDir", /::filter\s*\(/, "filter")
+property_writer("QDir", /::setFilter\s*\(/, "filter")
+# Property nameFilters (string[])
+property_reader("QDir", /::nameFilters\s*\(/, "nameFilters")
+property_writer("QDir", /::setNameFilters\s*\(/, "nameFilters")
+# Property path (string)
+property_reader("QDir", /::path\s*\(/, "path")
+property_writer("QDir", /::setPath\s*\(/, "path")
+# Property sorting (QDir_QFlags_SortFlag)
+property_reader("QDir", /::sorting\s*\(/, "sorting")
+property_writer("QDir", /::setSorting\s*\(/, "sorting")
+# Property amplitude (double)
+property_reader("QEasingCurve", /::amplitude\s*\(/, "amplitude")
+property_writer("QEasingCurve", /::setAmplitude\s*\(/, "amplitude")
+# Property overshoot (double)
+property_reader("QEasingCurve", /::overshoot\s*\(/, "overshoot")
+property_writer("QEasingCurve", /::setOvershoot\s*\(/, "overshoot")
+# Property period (double)
+property_reader("QEasingCurve", /::period\s*\(/, "period")
+property_writer("QEasingCurve", /::setPeriod\s*\(/, "period")
+# Property type (QEasingCurve_Type)
+property_reader("QEasingCurve", /::type\s*\(/, "type")
+property_writer("QEasingCurve", /::setType\s*\(/, "type")
+# Property accepted (bool)
+property_reader("QEvent", /::isAccepted\s*\(/, "accepted")
+property_writer("QEvent", /::setAccepted\s*\(/, "accepted")
+# Property fileName (string)
+property_reader("QFile", /::fileName\s*\(/, "fileName")
+property_writer("QFile", /::setFileName\s*\(/, "fileName")
+# Property caching (bool)
+property_reader("QFileInfo", /::caching\s*\(/, "caching")
+property_writer("QFileInfo", /::setCaching\s*\(/, "caching")
+# Property extraSelectors (string[])
+property_reader("QFileSelector", /::extraSelectors\s*\(/, "extraSelectors")
+property_writer("QFileSelector", /::setExtraSelectors\s*\(/, "extraSelectors")
+# Property currentReadChannel (int)
+property_reader("QIODevice", /::currentReadChannel\s*\(/, "currentReadChannel")
+property_writer("QIODevice", /::setCurrentReadChannel\s*\(/, "currentReadChannel")
+# Property currentWriteChannel (int)
+property_reader("QIODevice", /::currentWriteChannel\s*\(/, "currentWriteChannel")
+property_writer("QIODevice", /::setCurrentWriteChannel\s*\(/, "currentWriteChannel")
+# Property textModeEnabled (bool)
+property_reader("QIODevice", /::isTextModeEnabled\s*\(/, "textModeEnabled")
+property_writer("QIODevice", /::setTextModeEnabled\s*\(/, "textModeEnabled")
+# Property parent (QObject_Native *)
+property_reader("QIdentityProxyModel", /::parent\s*\(/, "parent")
+property_writer("QObject", /::setParent\s*\(/, "parent")
+# Property array (QJsonArray)
+property_reader("QJsonDocument", /::array\s*\(/, "array")
+property_writer("QJsonDocument", /::setArray\s*\(/, "array")
+# Property p1 (QPoint)
+property_reader("QLine", /::p1\s*\(/, "p1")
+property_writer("QLine", /::setP1\s*\(/, "p1")
+# Property p2 (QPoint)
+property_reader("QLine", /::p2\s*\(/, "p2")
+property_writer("QLine", /::setP2\s*\(/, "p2")
+# Property angle (double)
+property_reader("QLineF", /::angle\s*\(/, "angle")
+property_writer("QLineF", /::setAngle\s*\(/, "angle")
+# Property length (double)
+property_reader("QLineF", /::length\s*\(/, "length")
+property_writer("QLineF", /::setLength\s*\(/, "length")
+# Property p1 (QPointF)
+property_reader("QLineF", /::p1\s*\(/, "p1")
+property_writer("QLineF", /::setP1\s*\(/, "p1")
+# Property p2 (QPointF)
+property_reader("QLineF", /::p2\s*\(/, "p2")
+property_writer("QLineF", /::setP2\s*\(/, "p2")
+# Property numberOptions (QLocale_QFlags_NumberOption)
+property_reader("QLocale", /::numberOptions\s*\(/, "numberOptions")
+property_writer("QLocale", /::setNumberOptions\s*\(/, "numberOptions")
+# Property staleLockTime (int)
+property_reader("QLockFile", /::staleLockTime\s*\(/, "staleLockTime")
+property_writer("QLockFile", /::setStaleLockTime\s*\(/, "staleLockTime")
+# Property color (QMapNodeBase_Color)
+property_reader("QMapNodeBase", /::color\s*\(/, "color")
+property_writer("QMapNodeBase", /::setColor\s*\(/, "color")
+# Property parent (QMapNodeBase *)
+property_reader("QMapNodeBase", /::parent\s*\(/, "parent")
+property_writer("QMapNodeBase", /::setParent\s*\(/, "parent")
+# Property bottom (int)
+property_reader("QMargins", /::bottom\s*\(/, "bottom")
+property_writer("QMargins", /::setBottom\s*\(/, "bottom")
+# Property left (int)
+property_reader("QMargins", /::left\s*\(/, "left")
+property_writer("QMargins", /::setLeft\s*\(/, "left")
+# Property right (int)
+property_reader("QMargins", /::right\s*\(/, "right")
+property_writer("QMargins", /::setRight\s*\(/, "right")
+# Property top (int)
+property_reader("QMargins", /::top\s*\(/, "top")
+property_writer("QMargins", /::setTop\s*\(/, "top")
+# Property bottom (double)
+property_reader("QMarginsF", /::bottom\s*\(/, "bottom")
+property_writer("QMarginsF", /::setBottom\s*\(/, "bottom")
+# Property left (double)
+property_reader("QMarginsF", /::left\s*\(/, "left")
+property_writer("QMarginsF", /::setLeft\s*\(/, "left")
+# Property right (double)
+property_reader("QMarginsF", /::right\s*\(/, "right")
+property_writer("QMarginsF", /::setRight\s*\(/, "right")
+# Property top (double)
+property_reader("QMarginsF", /::top\s*\(/, "top")
+property_writer("QMarginsF", /::setTop\s*\(/, "top")
+# Property colorData (variant)
+property_reader("QMimeData", /::colorData\s*\(/, "colorData")
+property_writer("QMimeData", /::setColorData\s*\(/, "colorData")
+# Property imageData (variant)
+property_reader("QMimeData", /::imageData\s*\(/, "imageData")
+property_writer("QMimeData", /::setImageData\s*\(/, "imageData")
+# Property objectName (string)
+property_reader("QObject", /::objectName\s*\(/, "objectName")
+property_writer("QObject", /::setObjectName\s*\(/, "objectName")
+# Property parent (QObject_Native *)
+property_reader("QObject", /::parent\s*\(/, "parent")
+property_writer("QObject", /::setParent\s*\(/, "parent")
+# Property x (int)
+property_reader("QPoint", /::x\s*\(/, "x")
+property_writer("QPoint", /::setX\s*\(/, "x")
+# Property y (int)
+property_reader("QPoint", /::y\s*\(/, "y")
+property_writer("QPoint", /::setY\s*\(/, "y")
+# Property x (double)
+property_reader("QPointF", /::x\s*\(/, "x")
+property_writer("QPointF", /::setX\s*\(/, "x")
+# Property y (double)
+property_reader("QPointF", /::y\s*\(/, "y")
+property_writer("QPointF", /::setY\s*\(/, "y")
+# Property arguments (string[])
+property_reader("QProcess", /::arguments\s*\(/, "arguments")
+property_writer("QProcess", /::setArguments\s*\(/, "arguments")
+# Property environment (string[])
+property_reader("QProcess", /::environment\s*\(/, "environment")
+property_writer("QProcess", /::setEnvironment\s*\(/, "environment")
+# Property inputChannelMode (QProcess_InputChannelMode)
+property_reader("QProcess", /::inputChannelMode\s*\(/, "inputChannelMode")
+property_writer("QProcess", /::setInputChannelMode\s*\(/, "inputChannelMode")
+# Property processChannelMode (QProcess_ProcessChannelMode)
+property_reader("QProcess", /::processChannelMode\s*\(/, "processChannelMode")
+property_writer("QProcess", /::setProcessChannelMode\s*\(/, "processChannelMode")
+# Property processEnvironment (QProcessEnvironment)
+property_reader("QProcess", /::processEnvironment\s*\(/, "processEnvironment")
+property_writer("QProcess", /::setProcessEnvironment\s*\(/, "processEnvironment")
+# Property program (string)
+property_reader("QProcess", /::program\s*\(/, "program")
+property_writer("QProcess", /::setProgram\s*\(/, "program")
+# Property readChannel (QProcess_ProcessChannel)
+property_reader("QProcess", /::readChannel\s*\(/, "readChannel")
+property_writer("QProcess", /::setReadChannel\s*\(/, "readChannel")
+# Property readChannelMode (QProcess_ProcessChannelMode)
+property_reader("QProcess", /::readChannelMode\s*\(/, "readChannelMode")
+property_writer("QProcess", /::setReadChannelMode\s*\(/, "readChannelMode")
+# Property workingDirectory (string)
+property_reader("QProcess", /::workingDirectory\s*\(/, "workingDirectory")
+property_writer("QProcess", /::setWorkingDirectory\s*\(/, "workingDirectory")
+# Property bottom (int)
+property_reader("QRect", /::bottom\s*\(/, "bottom")
+property_writer("QRect", /::setBottom\s*\(/, "bottom")
+# Property bottomLeft (QPoint)
+property_reader("QRect", /::bottomLeft\s*\(/, "bottomLeft")
+property_writer("QRect", /::setBottomLeft\s*\(/, "bottomLeft")
+# Property bottomRight (QPoint)
+property_reader("QRect", /::bottomRight\s*\(/, "bottomRight")
+property_writer("QRect", /::setBottomRight\s*\(/, "bottomRight")
+# Property height (int)
+property_reader("QRect", /::height\s*\(/, "height")
+property_writer("QRect", /::setHeight\s*\(/, "height")
+# Property left (int)
+property_reader("QRect", /::left\s*\(/, "left")
+property_writer("QRect", /::setLeft\s*\(/, "left")
+# Property right (int)
+property_reader("QRect", /::right\s*\(/, "right")
+property_writer("QRect", /::setRight\s*\(/, "right")
+# Property size (QSize)
+property_reader("QRect", /::size\s*\(/, "size")
+property_writer("QRect", /::setSize\s*\(/, "size")
+# Property top (int)
+property_reader("QRect", /::top\s*\(/, "top")
+property_writer("QRect", /::setTop\s*\(/, "top")
+# Property topLeft (QPoint)
+property_reader("QRect", /::topLeft\s*\(/, "topLeft")
+property_writer("QRect", /::setTopLeft\s*\(/, "topLeft")
+# Property topRight (QPoint)
+property_reader("QRect", /::topRight\s*\(/, "topRight")
+property_writer("QRect", /::setTopRight\s*\(/, "topRight")
+# Property width (int)
+property_reader("QRect", /::width\s*\(/, "width")
+property_writer("QRect", /::setWidth\s*\(/, "width")
+# Property x (int)
+property_reader("QRect", /::x\s*\(/, "x")
+property_writer("QRect", /::setX\s*\(/, "x")
+# Property y (int)
+property_reader("QRect", /::y\s*\(/, "y")
+property_writer("QRect", /::setY\s*\(/, "y")
+# Property bottom (double)
+property_reader("QRectF", /::bottom\s*\(/, "bottom")
+property_writer("QRectF", /::setBottom\s*\(/, "bottom")
+# Property bottomLeft (QPointF)
+property_reader("QRectF", /::bottomLeft\s*\(/, "bottomLeft")
+property_writer("QRectF", /::setBottomLeft\s*\(/, "bottomLeft")
+# Property bottomRight (QPointF)
+property_reader("QRectF", /::bottomRight\s*\(/, "bottomRight")
+property_writer("QRectF", /::setBottomRight\s*\(/, "bottomRight")
+# Property height (double)
+property_reader("QRectF", /::height\s*\(/, "height")
+property_writer("QRectF", /::setHeight\s*\(/, "height")
+# Property left (double)
+property_reader("QRectF", /::left\s*\(/, "left")
+property_writer("QRectF", /::setLeft\s*\(/, "left")
+# Property right (double)
+property_reader("QRectF", /::right\s*\(/, "right")
+property_writer("QRectF", /::setRight\s*\(/, "right")
+# Property size (QSizeF)
+property_reader("QRectF", /::size\s*\(/, "size")
+property_writer("QRectF", /::setSize\s*\(/, "size")
+# Property top (double)
+property_reader("QRectF", /::top\s*\(/, "top")
+property_writer("QRectF", /::setTop\s*\(/, "top")
+# Property topLeft (QPointF)
+property_reader("QRectF", /::topLeft\s*\(/, "topLeft")
+property_writer("QRectF", /::setTopLeft\s*\(/, "topLeft")
+# Property topRight (QPointF)
+property_reader("QRectF", /::topRight\s*\(/, "topRight")
+property_writer("QRectF", /::setTopRight\s*\(/, "topRight")
+# Property width (double)
+property_reader("QRectF", /::width\s*\(/, "width")
+property_writer("QRectF", /::setWidth\s*\(/, "width")
+# Property x (double)
+property_reader("QRectF", /::x\s*\(/, "x")
+property_writer("QRectF", /::setX\s*\(/, "x")
+# Property y (double)
+property_reader("QRectF", /::y\s*\(/, "y")
+property_writer("QRectF", /::setY\s*\(/, "y")
+# Property caseSensitivity (Qt_CaseSensitivity)
+property_reader("QRegExp", /::caseSensitivity\s*\(/, "caseSensitivity")
+property_writer("QRegExp", /::setCaseSensitivity\s*\(/, "caseSensitivity")
+# Property minimal (bool)
+property_reader("QRegExp", /::isMinimal\s*\(/, "minimal")
+property_writer("QRegExp", /::setMinimal\s*\(/, "minimal")
+# Property pattern (string)
+property_reader("QRegExp", /::pattern\s*\(/, "pattern")
+property_writer("QRegExp", /::setPattern\s*\(/, "pattern")
+# Property patternSyntax (QRegExp_PatternSyntax)
+property_reader("QRegExp", /::patternSyntax\s*\(/, "patternSyntax")
+property_writer("QRegExp", /::setPatternSyntax\s*\(/, "patternSyntax")
+# Property pattern (string)
+property_reader("QRegularExpression", /::pattern\s*\(/, "pattern")
+property_writer("QRegularExpression", /::setPattern\s*\(/, "pattern")
+# Property patternOptions (QRegularExpression_QFlags_PatternOption)
+property_reader("QRegularExpression", /::patternOptions\s*\(/, "patternOptions")
+property_writer("QRegularExpression", /::setPatternOptions\s*\(/, "patternOptions")
+# Property fileName (string)
+property_reader("QResource", /::fileName\s*\(/, "fileName")
+property_writer("QResource", /::setFileName\s*\(/, "fileName")
+# Property locale (QLocale)
+property_reader("QResource", /::locale\s*\(/, "locale")
+property_writer("QResource", /::setLocale\s*\(/, "locale")
+# Property autoDelete (bool)
+property_reader("QRunnable", /::autoDelete\s*\(/, "autoDelete")
+property_writer("QRunnable", /::setAutoDelete\s*\(/, "autoDelete")
+# Property directWriteFallback (bool)
+property_reader("QSaveFile", /::directWriteFallback\s*\(/, "directWriteFallback")
+property_writer("QSaveFile", /::setDirectWriteFallback\s*\(/, "directWriteFallback")
+# Property fileName (string)
+property_reader("QSaveFile", /::fileName\s*\(/, "fileName")
+property_writer("QSaveFile", /::setFileName\s*\(/, "fileName")
+# Property atomicSyncRequired (bool)
+property_reader("QSettings", /::isAtomicSyncRequired\s*\(/, "atomicSyncRequired")
+property_writer("QSettings", /::setAtomicSyncRequired\s*\(/, "atomicSyncRequired")
+# Property defaultFormat (QSettings_Format)
+property_reader("QSettings", /::defaultFormat\s*\(/, "defaultFormat")
+property_writer("QSettings", /::setDefaultFormat\s*\(/, "defaultFormat")
+# Property fallbacksEnabled (bool)
+property_reader("QSettings", /::fallbacksEnabled\s*\(/, "fallbacksEnabled")
+property_writer("QSettings", /::setFallbacksEnabled\s*\(/, "fallbacksEnabled")
+# Property key (string)
+property_reader("QSharedMemory", /::key\s*\(/, "key")
+property_writer("QSharedMemory", /::setKey\s*\(/, "key")
+# Property nativeKey (string)
+property_reader("QSharedMemory", /::nativeKey\s*\(/, "nativeKey")
+property_writer("QSharedMemory", /::setNativeKey\s*\(/, "nativeKey")
+# Property height (int)
+property_reader("QSize", /::height\s*\(/, "height")
+property_writer("QSize", /::setHeight\s*\(/, "height")
+# Property width (int)
+property_reader("QSize", /::width\s*\(/, "width")
+property_writer("QSize", /::setWidth\s*\(/, "width")
+# Property height (double)
+property_reader("QSizeF", /::height\s*\(/, "height")
+property_writer("QSizeF", /::setHeight\s*\(/, "height")
+# Property width (double)
+property_reader("QSizeF", /::width\s*\(/, "width")
+property_writer("QSizeF", /::setWidth\s*\(/, "width")
+# Property enabled (bool)
+property_reader("QSocketNotifier", /::isEnabled\s*\(/, "enabled")
+property_writer("QSocketNotifier", /::setEnabled\s*\(/, "enabled")
+# Property parent (QObject_Native *)
+property_reader("QSortFilterProxyModel", /::parent\s*\(/, "parent")
+property_writer("QObject", /::setParent\s*\(/, "parent")
+# Property testModeEnabled (bool)
+property_reader("QStandardPaths", /::isTestModeEnabled\s*\(/, "testModeEnabled")
+property_writer("QStandardPaths", /::setTestModeEnabled\s*\(/, "testModeEnabled")
+# Property stringList (string[])
+property_reader("QStringListModel", /::stringList\s*\(/, "stringList")
+property_writer("QStringListModel", /::setStringList\s*\(/, "stringList")
+# Property caseSensitivity (Qt_CaseSensitivity)
+property_reader("QStringMatcher", /::caseSensitivity\s*\(/, "caseSensitivity")
+property_writer("QStringMatcher", /::setCaseSensitivity\s*\(/, "caseSensitivity")
+# Property pattern (string)
+property_reader("QStringMatcher", /::pattern\s*\(/, "pattern")
+property_writer("QStringMatcher", /::setPattern\s*\(/, "pattern")
+# Property key (string)
+property_reader("QSystemSemaphore", /::key\s*\(/, "key")
+property_writer("QSystemSemaphore", /::setKey\s*\(/, "key")
+# Property autoRemove (bool)
+property_reader("QTemporaryDir", /::autoRemove\s*\(/, "autoRemove")
+property_writer("QTemporaryDir", /::setAutoRemove\s*\(/, "autoRemove")
+# Property autoRemove (bool)
+property_reader("QTemporaryFile", /::autoRemove\s*\(/, "autoRemove")
+property_writer("QTemporaryFile", /::setAutoRemove\s*\(/, "autoRemove")
+# Property fileName (string)
+property_reader("QTemporaryFile", /::fileName\s*\(/, "fileName")
+property_writer("QFile", /::setFileName\s*\(/, "fileName")
+# Property fileTemplate (string)
+property_reader("QTemporaryFile", /::fileTemplate\s*\(/, "fileTemplate")
+property_writer("QTemporaryFile", /::setFileTemplate\s*\(/, "fileTemplate")
+# Property position (int)
+property_reader("QTextBoundaryFinder", /::position\s*\(/, "position")
+property_writer("QTextBoundaryFinder", /::setPosition\s*\(/, "position")
+# Property codecForLocale (QTextCodec_Native *)
+property_reader("QTextCodec", /::codecForLocale\s*\(/, "codecForLocale")
+property_writer("QTextCodec", /::setCodecForLocale\s*\(/, "codecForLocale")
+# Property autoDetectUnicode (bool)
+property_reader("QTextStream", /::autoDetectUnicode\s*\(/, "autoDetectUnicode")
+property_writer("QTextStream", /::setAutoDetectUnicode\s*\(/, "autoDetectUnicode")
+# Property codec (QTextCodec_Native *)
+property_reader("QTextStream", /::codec\s*\(/, "codec")
+property_writer("QTextStream", /::setCodec\s*\(/, "codec")
+# Property device (QIODevice *)
+property_reader("QTextStream", /::device\s*\(/, "device")
+property_writer("QTextStream", /::setDevice\s*\(/, "device")
+# Property fieldAlignment (QTextStream_FieldAlignment)
+property_reader("QTextStream", /::fieldAlignment\s*\(/, "fieldAlignment")
+property_writer("QTextStream", /::setFieldAlignment\s*\(/, "fieldAlignment")
+# Property fieldWidth (int)
+property_reader("QTextStream", /::fieldWidth\s*\(/, "fieldWidth")
+property_writer("QTextStream", /::setFieldWidth\s*\(/, "fieldWidth")
+# Property generateByteOrderMark (bool)
+property_reader("QTextStream", /::generateByteOrderMark\s*\(/, "generateByteOrderMark")
+property_writer("QTextStream", /::setGenerateByteOrderMark\s*\(/, "generateByteOrderMark")
+# Property integerBase (int)
+property_reader("QTextStream", /::integerBase\s*\(/, "integerBase")
+property_writer("QTextStream", /::setIntegerBase\s*\(/, "integerBase")
+# Property locale (QLocale)
+property_reader("QTextStream", /::locale\s*\(/, "locale")
+property_writer("QTextStream", /::setLocale\s*\(/, "locale")
+# Property numberFlags (QTextStream_QFlags_NumberFlag)
+property_reader("QTextStream", /::numberFlags\s*\(/, "numberFlags")
+property_writer("QTextStream", /::setNumberFlags\s*\(/, "numberFlags")
+# Property padChar (unsigned int)
+property_reader("QTextStream", /::padChar\s*\(/, "padChar")
+property_writer("QTextStream", /::setPadChar\s*\(/, "padChar")
+# Property realNumberNotation (QTextStream_RealNumberNotation)
+property_reader("QTextStream", /::realNumberNotation\s*\(/, "realNumberNotation")
+property_writer("QTextStream", /::setRealNumberNotation\s*\(/, "realNumberNotation")
+# Property realNumberPrecision (int)
+property_reader("QTextStream", /::realNumberPrecision\s*\(/, "realNumberPrecision")
+property_writer("QTextStream", /::setRealNumberPrecision\s*\(/, "realNumberPrecision")
+# Property status (QTextStream_Status)
+property_reader("QTextStream", /::status\s*\(/, "status")
+property_writer("QTextStream", /::setStatus\s*\(/, "status")
+# Property string (string *)
+property_reader("QTextStream", /::string\s*\(/, "string")
+property_writer("QTextStream", /::setString\s*\(/, "string")
+# Property eventDispatcher (QAbstractEventDispatcher_Native *)
+property_reader("QThread", /::eventDispatcher\s*\(/, "eventDispatcher")
+property_writer("QThread", /::setEventDispatcher\s*\(/, "eventDispatcher")
+# Property priority (QThread_Priority)
+property_reader("QThread", /::priority\s*\(/, "priority")
+property_writer("QThread", /::setPriority\s*\(/, "priority")
+# Property stackSize (unsigned int)
+property_reader("QThread", /::stackSize\s*\(/, "stackSize")
+property_writer("QThread", /::setStackSize\s*\(/, "stackSize")
+# Property endFrame (int)
+property_reader("QTimeLine", /::endFrame\s*\(/, "endFrame")
+property_writer("QTimeLine", /::setEndFrame\s*\(/, "endFrame")
+# Property startFrame (int)
+property_reader("QTimeLine", /::startFrame\s*\(/, "startFrame")
+property_writer("QTimeLine", /::setStartFrame\s*\(/, "startFrame")
+# Property authority (string)
+property_reader("QUrl", /::authority\s*\(/, "authority")
+property_writer("QUrl", /::setAuthority\s*\(/, "authority")
+# Property fragment (string)
+property_reader("QUrl", /::fragment\s*\(/, "fragment")
+property_writer("QUrl", /::setFragment\s*\(/, "fragment")
+# Property host (string)
+property_reader("QUrl", /::host\s*\(/, "host")
+property_writer("QUrl", /::setHost\s*\(/, "host")
+# Property idnWhitelist (string[])
+property_reader("QUrl", /::idnWhitelist\s*\(/, "idnWhitelist")
+property_writer("QUrl", /::setIdnWhitelist\s*\(/, "idnWhitelist")
+# Property password (string)
+property_reader("QUrl", /::password\s*\(/, "password")
+property_writer("QUrl", /::setPassword\s*\(/, "password")
+# Property path (string)
+property_reader("QUrl", /::path\s*\(/, "path")
+property_writer("QUrl", /::setPath\s*\(/, "path")
+# Property port (int)
+property_reader("QUrl", /::port\s*\(/, "port")
+property_writer("QUrl", /::setPort\s*\(/, "port")
+# Property scheme (string)
+property_reader("QUrl", /::scheme\s*\(/, "scheme")
+property_writer("QUrl", /::setScheme\s*\(/, "scheme")
+# Property url (string)
+property_reader("QUrl", /::url\s*\(/, "url")
+property_writer("QUrl", /::setUrl\s*\(/, "url")
+# Property userInfo (string)
+property_reader("QUrl", /::userInfo\s*\(/, "userInfo")
+property_writer("QUrl", /::setUserInfo\s*\(/, "userInfo")
+# Property userName (string)
+property_reader("QUrl", /::userName\s*\(/, "userName")
+property_writer("QUrl", /::setUserName\s*\(/, "userName")
+# Property query (string)
+property_reader("QUrlQuery", /::query\s*\(/, "query")
+property_writer("QUrlQuery", /::setQuery\s*\(/, "query")
+# Property queryItems (QPair_QString_QString[])
+property_reader("QUrlQuery", /::queryItems\s*\(/, "queryItems")
+property_writer("QUrlQuery", /::setQueryItems\s*\(/, "queryItems")
+# Property keyValues (QPair_double_QVariant[])
+property_reader("QVariantAnimation", /::keyValues\s*\(/, "keyValues")
+property_writer("QVariantAnimation", /::setKeyValues\s*\(/, "keyValues")
+# Property device (QIODevice *)
+property_reader("QXmlStreamReader", /::device\s*\(/, "device")
+property_writer("QXmlStreamReader", /::setDevice\s*\(/, "device")
+# Property entityResolver (QXmlStreamEntityResolver_Native *)
+property_reader("QXmlStreamReader", /::entityResolver\s*\(/, "entityResolver")
+property_writer("QXmlStreamReader", /::setEntityResolver\s*\(/, "entityResolver")
+# Property namespaceProcessing (bool)
+property_reader("QXmlStreamReader", /::namespaceProcessing\s*\(/, "namespaceProcessing")
+property_writer("QXmlStreamReader", /::setNamespaceProcessing\s*\(/, "namespaceProcessing")
+# Property autoFormatting (bool)
+property_reader("QXmlStreamWriter", /::autoFormatting\s*\(/, "autoFormatting")
+property_writer("QXmlStreamWriter", /::setAutoFormatting\s*\(/, "autoFormatting")
+# Property autoFormattingIndent (int)
+property_reader("QXmlStreamWriter", /::autoFormattingIndent\s*\(/, "autoFormattingIndent")
+property_writer("QXmlStreamWriter", /::setAutoFormattingIndent\s*\(/, "autoFormattingIndent")
+# Property codec (QTextCodec_Native *)
+property_reader("QXmlStreamWriter", /::codec\s*\(/, "codec")
+property_writer("QXmlStreamWriter", /::setCodec\s*\(/, "codec")
+# Property device (QIODevice *)
+property_reader("QXmlStreamWriter", /::device\s*\(/, "device")
+property_writer("QXmlStreamWriter", /::setDevice\s*\(/, "device")
# Property paintDevice (QPaintDevice_Native *)
property_reader("QAbstractTextDocumentLayout", /::paintDevice\s*\(/, "paintDevice")
property_writer("QAbstractTextDocumentLayout", /::setPaintDevice\s*\(/, "paintDevice")
@@ -11626,138 +12344,6 @@ property_writer("QAccessibleValueChangeEvent", /::setValue\s*\(/, "value")
# Property currentValue (variant)
property_reader("QAccessibleValueInterface", /::currentValue\s*\(/, "currentValue")
property_writer("QAccessibleValueInterface", /::setCurrentValue\s*\(/, "currentValue")
-# Property actionGroup (QActionGroup_Native *)
-property_reader("QAction", /::actionGroup\s*\(/, "actionGroup")
-property_writer("QAction", /::setActionGroup\s*\(/, "actionGroup")
-# Property data (variant)
-property_reader("QAction", /::data\s*\(/, "data")
-property_writer("QAction", /::setData\s*\(/, "data")
-# Property menu (QMenu_Native *)
-property_reader("QAction", /::menu\s*\(/, "menu")
-property_writer("QAction", /::setMenu\s*\(/, "menu")
-# Property separator (bool)
-property_reader("QAction", /::isSeparator\s*\(/, "separator")
-property_writer("QAction", /::setSeparator\s*\(/, "separator")
-# Property shortcuts (QKeySequence[])
-property_reader("QAction", /::shortcuts\s*\(/, "shortcuts")
-property_writer("QAction", /::setShortcuts\s*\(/, "shortcuts")
-# Property startTime (long long)
-property_reader("QAnimationDriver", /::startTime\s*\(/, "startTime")
-property_writer("QAnimationDriver", /::setStartTime\s*\(/, "startTime")
-# Property activeWindow (QWidget_Native *)
-property_reader("QApplication", /::activeWindow\s*\(/, "activeWindow")
-property_writer("QApplication", /::setActiveWindow\s*\(/, "activeWindow")
-# Property colorSpec (int)
-property_reader("QApplication", /::colorSpec\s*\(/, "colorSpec")
-property_writer("QApplication", /::setColorSpec\s*\(/, "colorSpec")
-# Property font (QFont)
-property_reader("QApplication", /::font\s*\(/, "font")
-property_writer("QApplication", /::setFont\s*\(/, "font")
-# Property palette (QPalette)
-property_reader("QApplication", /::palette\s*\(/, "palette")
-property_writer("QApplication", /::setPalette\s*\(/, "palette")
-# Property style (QStyle_Native *)
-property_reader("QApplication", /::style\s*\(/, "style")
-property_writer("QApplication", /::setStyle\s*\(/, "style")
-# Property audioFormat (QAudioFormat)
-property_reader("QAudioDecoder", /::audioFormat\s*\(/, "audioFormat")
-property_writer("QAudioDecoder", /::setAudioFormat\s*\(/, "audioFormat")
-# Property sourceDevice (QIODevice *)
-property_reader("QAudioDecoder", /::sourceDevice\s*\(/, "sourceDevice")
-property_writer("QAudioDecoder", /::setSourceDevice\s*\(/, "sourceDevice")
-# Property audioFormat (QAudioFormat)
-property_reader("QAudioDecoderControl", /::audioFormat\s*\(/, "audioFormat")
-property_writer("QAudioDecoderControl", /::setAudioFormat\s*\(/, "audioFormat")
-# Property sourceDevice (QIODevice *)
-property_reader("QAudioDecoderControl", /::sourceDevice\s*\(/, "sourceDevice")
-property_writer("QAudioDecoderControl", /::setSourceDevice\s*\(/, "sourceDevice")
-# Property sourceFilename (string)
-property_reader("QAudioDecoderControl", /::sourceFilename\s*\(/, "sourceFilename")
-property_writer("QAudioDecoderControl", /::setSourceFilename\s*\(/, "sourceFilename")
-# Property bitRate (int)
-property_reader("QAudioEncoderSettings", /::bitRate\s*\(/, "bitRate")
-property_writer("QAudioEncoderSettings", /::setBitRate\s*\(/, "bitRate")
-# Property channelCount (int)
-property_reader("QAudioEncoderSettings", /::channelCount\s*\(/, "channelCount")
-property_writer("QAudioEncoderSettings", /::setChannelCount\s*\(/, "channelCount")
-# Property codec (string)
-property_reader("QAudioEncoderSettings", /::codec\s*\(/, "codec")
-property_writer("QAudioEncoderSettings", /::setCodec\s*\(/, "codec")
-# Property encodingMode (QMultimedia_EncodingMode)
-property_reader("QAudioEncoderSettings", /::encodingMode\s*\(/, "encodingMode")
-property_writer("QAudioEncoderSettings", /::setEncodingMode\s*\(/, "encodingMode")
-# Property encodingOptions (map)
-property_reader("QAudioEncoderSettings", /::encodingOptions\s*\(/, "encodingOptions")
-property_writer("QAudioEncoderSettings", /::setEncodingOptions\s*\(/, "encodingOptions")
-# Property quality (QMultimedia_EncodingQuality)
-property_reader("QAudioEncoderSettings", /::quality\s*\(/, "quality")
-property_writer("QAudioEncoderSettings", /::setQuality\s*\(/, "quality")
-# Property sampleRate (int)
-property_reader("QAudioEncoderSettings", /::sampleRate\s*\(/, "sampleRate")
-property_writer("QAudioEncoderSettings", /::setSampleRate\s*\(/, "sampleRate")
-# Property audioSettings (QAudioEncoderSettings)
-property_reader("QAudioEncoderSettingsControl", /::audioSettings\s*\(/, "audioSettings")
-property_writer("QAudioEncoderSettingsControl", /::setAudioSettings\s*\(/, "audioSettings")
-# Property byteOrder (QAudioFormat_Endian)
-property_reader("QAudioFormat", /::byteOrder\s*\(/, "byteOrder")
-property_writer("QAudioFormat", /::setByteOrder\s*\(/, "byteOrder")
-# Property channelCount (int)
-property_reader("QAudioFormat", /::channelCount\s*\(/, "channelCount")
-property_writer("QAudioFormat", /::setChannelCount\s*\(/, "channelCount")
-# Property codec (string)
-property_reader("QAudioFormat", /::codec\s*\(/, "codec")
-property_writer("QAudioFormat", /::setCodec\s*\(/, "codec")
-# Property sampleRate (int)
-property_reader("QAudioFormat", /::sampleRate\s*\(/, "sampleRate")
-property_writer("QAudioFormat", /::setSampleRate\s*\(/, "sampleRate")
-# Property sampleSize (int)
-property_reader("QAudioFormat", /::sampleSize\s*\(/, "sampleSize")
-property_writer("QAudioFormat", /::setSampleSize\s*\(/, "sampleSize")
-# Property sampleType (QAudioFormat_SampleType)
-property_reader("QAudioFormat", /::sampleType\s*\(/, "sampleType")
-property_writer("QAudioFormat", /::setSampleType\s*\(/, "sampleType")
-# Property bufferSize (int)
-property_reader("QAudioInput", /::bufferSize\s*\(/, "bufferSize")
-property_writer("QAudioInput", /::setBufferSize\s*\(/, "bufferSize")
-# Property notifyInterval (int)
-property_reader("QAudioInput", /::notifyInterval\s*\(/, "notifyInterval")
-property_writer("QAudioInput", /::setNotifyInterval\s*\(/, "notifyInterval")
-# Property volume (double)
-property_reader("QAudioInput", /::volume\s*\(/, "volume")
-property_writer("QAudioInput", /::setVolume\s*\(/, "volume")
-# Property activeInput (string)
-property_reader("QAudioInputSelectorControl", /::activeInput\s*\(/, "activeInput")
-property_writer("QAudioInputSelectorControl", /::setActiveInput\s*\(/, "activeInput")
-# Property bufferSize (int)
-property_reader("QAudioOutput", /::bufferSize\s*\(/, "bufferSize")
-property_writer("QAudioOutput", /::setBufferSize\s*\(/, "bufferSize")
-# Property category (string)
-property_reader("QAudioOutput", /::category\s*\(/, "category")
-property_writer("QAudioOutput", /::setCategory\s*\(/, "category")
-# Property notifyInterval (int)
-property_reader("QAudioOutput", /::notifyInterval\s*\(/, "notifyInterval")
-property_writer("QAudioOutput", /::setNotifyInterval\s*\(/, "notifyInterval")
-# Property volume (double)
-property_reader("QAudioOutput", /::volume\s*\(/, "volume")
-property_writer("QAudioOutput", /::setVolume\s*\(/, "volume")
-# Property activeOutput (string)
-property_reader("QAudioOutputSelectorControl", /::activeOutput\s*\(/, "activeOutput")
-property_writer("QAudioOutputSelectorControl", /::setActiveOutput\s*\(/, "activeOutput")
-# Property password (string)
-property_reader("QAuthenticator", /::password\s*\(/, "password")
-property_writer("QAuthenticator", /::setPassword\s*\(/, "password")
-# Property realm (string)
-property_reader("QAuthenticator", /::realm\s*\(/, "realm")
-property_writer("QAuthenticator", /::setRealm\s*\(/, "realm")
-# Property user (string)
-property_reader("QAuthenticator", /::user\s*\(/, "user")
-property_writer("QAuthenticator", /::setUser\s*\(/, "user")
-# Property direction (QBoxLayout_Direction)
-property_reader("QBoxLayout", /::direction\s*\(/, "direction")
-property_writer("QBoxLayout", /::setDirection\s*\(/, "direction")
-# Property geometry (QRect)
-property_reader("QLayout", /::geometry\s*\(/, "geometry")
-property_writer("QBoxLayout", /::setGeometry\s*\(/, "geometry")
# Property color (QColor)
property_reader("QBrush", /::color\s*\(/, "color")
property_writer("QBrush", /::setColor\s*\(/, "color")
@@ -11776,102 +12362,6 @@ property_writer("QBrush", /::setTextureImage\s*\(/, "textureImage")
# Property transform (QTransform)
property_reader("QBrush", /::transform\s*\(/, "transform")
property_writer("QBrush", /::setTransform\s*\(/, "transform")
-# Property data (string)
-property_reader("QBuffer", /::data\s*\(/, "data")
-property_writer("QBuffer", /::setData\s*\(/, "data")
-# Property pattern (string)
-property_reader("QByteArrayMatcher", /::pattern\s*\(/, "pattern")
-property_writer("QByteArrayMatcher", /::setPattern\s*\(/, "pattern")
-# Property headerTextFormat (QTextCharFormat)
-property_reader("QCalendarWidget", /::headerTextFormat\s*\(/, "headerTextFormat")
-property_writer("QCalendarWidget", /::setHeaderTextFormat\s*\(/, "headerTextFormat")
-# Property viewfinderSettings (QCameraViewfinderSettings)
-property_reader("QCamera", /::viewfinderSettings\s*\(/, "viewfinderSettings")
-property_writer("QCamera", /::setViewfinderSettings\s*\(/, "viewfinderSettings")
-# Property bufferFormat (QVideoFrame_PixelFormat)
-property_reader("QCameraCaptureBufferFormatControl", /::bufferFormat\s*\(/, "bufferFormat")
-property_writer("QCameraCaptureBufferFormatControl", /::setBufferFormat\s*\(/, "bufferFormat")
-# Property captureDestination (QCameraImageCapture_QFlags_CaptureDestination)
-property_reader("QCameraCaptureDestinationControl", /::captureDestination\s*\(/, "captureDestination")
-property_writer("QCameraCaptureDestinationControl", /::setCaptureDestination\s*\(/, "captureDestination")
-# Property captureMode (QCamera_QFlags_CaptureMode)
-property_reader("QCameraControl", /::captureMode\s*\(/, "captureMode")
-property_writer("QCameraControl", /::setCaptureMode\s*\(/, "captureMode")
-# Property state (QCamera_State)
-property_reader("QCameraControl", /::state\s*\(/, "state")
-property_writer("QCameraControl", /::setState\s*\(/, "state")
-# Property spotMeteringPoint (QPointF)
-property_reader("QCameraExposure", /::spotMeteringPoint\s*\(/, "spotMeteringPoint")
-property_writer("QCameraExposure", /::setSpotMeteringPoint\s*\(/, "spotMeteringPoint")
-# Property flashMode (QCameraExposure_QFlags_FlashMode)
-property_reader("QCameraFlashControl", /::flashMode\s*\(/, "flashMode")
-property_writer("QCameraFlashControl", /::setFlashMode\s*\(/, "flashMode")
-# Property customFocusPoint (QPointF)
-property_reader("QCameraFocusControl", /::customFocusPoint\s*\(/, "customFocusPoint")
-property_writer("QCameraFocusControl", /::setCustomFocusPoint\s*\(/, "customFocusPoint")
-# Property focusMode (QCameraFocus_QFlags_FocusMode)
-property_reader("QCameraFocusControl", /::focusMode\s*\(/, "focusMode")
-property_writer("QCameraFocusControl", /::setFocusMode\s*\(/, "focusMode")
-# Property focusPointMode (QCameraFocus_FocusPointMode)
-property_reader("QCameraFocusControl", /::focusPointMode\s*\(/, "focusPointMode")
-property_writer("QCameraFocusControl", /::setFocusPointMode\s*\(/, "focusPointMode")
-# Property status (QCameraFocusZone_FocusZoneStatus)
-property_reader("QCameraFocusZone", /::status\s*\(/, "status")
-property_writer("QCameraFocusZone", /::setStatus\s*\(/, "status")
-# Property bufferFormat (QVideoFrame_PixelFormat)
-property_reader("QCameraImageCapture", /::bufferFormat\s*\(/, "bufferFormat")
-property_writer("QCameraImageCapture", /::setBufferFormat\s*\(/, "bufferFormat")
-# Property captureDestination (QCameraImageCapture_QFlags_CaptureDestination)
-property_reader("QCameraImageCapture", /::captureDestination\s*\(/, "captureDestination")
-property_writer("QCameraImageCapture", /::setCaptureDestination\s*\(/, "captureDestination")
-# Property encodingSettings (QImageEncoderSettings)
-property_reader("QCameraImageCapture", /::encodingSettings\s*\(/, "encodingSettings")
-property_writer("QCameraImageCapture", /::setEncodingSettings\s*\(/, "encodingSettings")
-# Property driveMode (QCameraImageCapture_DriveMode)
-property_reader("QCameraImageCaptureControl", /::driveMode\s*\(/, "driveMode")
-property_writer("QCameraImageCaptureControl", /::setDriveMode\s*\(/, "driveMode")
-# Property colorFilter (QCameraImageProcessing_ColorFilter)
-property_reader("QCameraImageProcessing", /::colorFilter\s*\(/, "colorFilter")
-property_writer("QCameraImageProcessing", /::setColorFilter\s*\(/, "colorFilter")
-# Property contrast (double)
-property_reader("QCameraImageProcessing", /::contrast\s*\(/, "contrast")
-property_writer("QCameraImageProcessing", /::setContrast\s*\(/, "contrast")
-# Property denoisingLevel (double)
-property_reader("QCameraImageProcessing", /::denoisingLevel\s*\(/, "denoisingLevel")
-property_writer("QCameraImageProcessing", /::setDenoisingLevel\s*\(/, "denoisingLevel")
-# Property manualWhiteBalance (double)
-property_reader("QCameraImageProcessing", /::manualWhiteBalance\s*\(/, "manualWhiteBalance")
-property_writer("QCameraImageProcessing", /::setManualWhiteBalance\s*\(/, "manualWhiteBalance")
-# Property saturation (double)
-property_reader("QCameraImageProcessing", /::saturation\s*\(/, "saturation")
-property_writer("QCameraImageProcessing", /::setSaturation\s*\(/, "saturation")
-# Property sharpeningLevel (double)
-property_reader("QCameraImageProcessing", /::sharpeningLevel\s*\(/, "sharpeningLevel")
-property_writer("QCameraImageProcessing", /::setSharpeningLevel\s*\(/, "sharpeningLevel")
-# Property whiteBalanceMode (QCameraImageProcessing_WhiteBalanceMode)
-property_reader("QCameraImageProcessing", /::whiteBalanceMode\s*\(/, "whiteBalanceMode")
-property_writer("QCameraImageProcessing", /::setWhiteBalanceMode\s*\(/, "whiteBalanceMode")
-# Property maximumFrameRate (double)
-property_reader("QCameraViewfinderSettings", /::maximumFrameRate\s*\(/, "maximumFrameRate")
-property_writer("QCameraViewfinderSettings", /::setMaximumFrameRate\s*\(/, "maximumFrameRate")
-# Property minimumFrameRate (double)
-property_reader("QCameraViewfinderSettings", /::minimumFrameRate\s*\(/, "minimumFrameRate")
-property_writer("QCameraViewfinderSettings", /::setMinimumFrameRate\s*\(/, "minimumFrameRate")
-# Property pixelAspectRatio (QSize)
-property_reader("QCameraViewfinderSettings", /::pixelAspectRatio\s*\(/, "pixelAspectRatio")
-property_writer("QCameraViewfinderSettings", /::setPixelAspectRatio\s*\(/, "pixelAspectRatio")
-# Property pixelFormat (QVideoFrame_PixelFormat)
-property_reader("QCameraViewfinderSettings", /::pixelFormat\s*\(/, "pixelFormat")
-property_writer("QCameraViewfinderSettings", /::setPixelFormat\s*\(/, "pixelFormat")
-# Property resolution (QSize)
-property_reader("QCameraViewfinderSettings", /::resolution\s*\(/, "resolution")
-property_writer("QCameraViewfinderSettings", /::setResolution\s*\(/, "resolution")
-# Property viewfinderSettings (QCameraViewfinderSettings)
-property_reader("QCameraViewfinderSettingsControl2", /::viewfinderSettings\s*\(/, "viewfinderSettings")
-property_writer("QCameraViewfinderSettingsControl2", /::setViewfinderSettings\s*\(/, "viewfinderSettings")
-# Property checkState (Qt_CheckState)
-property_reader("QCheckBox", /::checkState\s*\(/, "checkState")
-property_writer("QCheckBox", /::setCheckState\s*\(/, "checkState")
# Property image (QImage_Native)
property_reader("QClipboard", /::image\s*\(/, "image")
property_writer("QClipboard", /::setImage\s*\(/, "image")
@@ -11884,18 +12374,6 @@ property_writer("QClipboard", /::setPixmap\s*\(/, "pixmap")
# Property text (string)
property_reader("QClipboard", /::text\s*\(/, "text")
property_writer("QClipboard", /::setText\s*\(/, "text")
-# Property caseSensitivity (Qt_CaseSensitivity)
-property_reader("QCollator", /::caseSensitivity\s*\(/, "caseSensitivity")
-property_writer("QCollator", /::setCaseSensitivity\s*\(/, "caseSensitivity")
-# Property ignorePunctuation (bool)
-property_reader("QCollator", /::ignorePunctuation\s*\(/, "ignorePunctuation")
-property_writer("QCollator", /::setIgnorePunctuation\s*\(/, "ignorePunctuation")
-# Property locale (QLocale)
-property_reader("QCollator", /::locale\s*\(/, "locale")
-property_writer("QCollator", /::setLocale\s*\(/, "locale")
-# Property numericMode (bool)
-property_reader("QCollator", /::numericMode\s*\(/, "numericMode")
-property_writer("QCollator", /::setNumericMode\s*\(/, "numericMode")
# Property alpha (int)
property_reader("QColor", /::alpha\s*\(/, "alpha")
property_writer("QColor", /::setAlpha\s*\(/, "alpha")
@@ -11926,195 +12404,21 @@ property_writer("QColor", /::setRgb\s*\(/, "rgb")
# Property rgba (unsigned int)
property_reader("QColor", /::rgba\s*\(/, "rgba")
property_writer("QColor", /::setRgba\s*\(/, "rgba")
-# Property columnWidths (int[])
-property_reader("QColumnView", /::columnWidths\s*\(/, "columnWidths")
-property_writer("QColumnView", /::setColumnWidths\s*\(/, "columnWidths")
-# Property model (QAbstractItemModel_Native *)
-property_reader("QAbstractItemView", /::model\s*\(/, "model")
-property_writer("QColumnView", /::setModel\s*\(/, "model")
-# Property previewWidget (QWidget_Native *)
-property_reader("QColumnView", /::previewWidget\s*\(/, "previewWidget")
-property_writer("QColumnView", /::setPreviewWidget\s*\(/, "previewWidget")
-# Property rootIndex (QModelIndex)
-property_reader("QAbstractItemView", /::rootIndex\s*\(/, "rootIndex")
-property_writer("QColumnView", /::setRootIndex\s*\(/, "rootIndex")
-# Property selectionModel (QItemSelectionModel_Native *)
-property_reader("QAbstractItemView", /::selectionModel\s*\(/, "selectionModel")
-property_writer("QColumnView", /::setSelectionModel\s*\(/, "selectionModel")
-# Property completer (QCompleter_Native *)
-property_reader("QComboBox", /::completer\s*\(/, "completer")
-property_writer("QComboBox", /::setCompleter\s*\(/, "completer")
-# Property itemDelegate (QAbstractItemDelegate_Native *)
-property_reader("QComboBox", /::itemDelegate\s*\(/, "itemDelegate")
-property_writer("QComboBox", /::setItemDelegate\s*\(/, "itemDelegate")
-# Property lineEdit (QLineEdit_Native *)
-property_reader("QComboBox", /::lineEdit\s*\(/, "lineEdit")
-property_writer("QComboBox", /::setLineEdit\s*\(/, "lineEdit")
-# Property model (QAbstractItemModel_Native *)
-property_reader("QComboBox", /::model\s*\(/, "model")
-property_writer("QComboBox", /::setModel\s*\(/, "model")
-# Property rootModelIndex (QModelIndex)
-property_reader("QComboBox", /::rootModelIndex\s*\(/, "rootModelIndex")
-property_writer("QComboBox", /::setRootModelIndex\s*\(/, "rootModelIndex")
-# Property validator (QValidator_Native *)
-property_reader("QComboBox", /::validator\s*\(/, "validator")
-property_writer("QComboBox", /::setValidator\s*\(/, "validator")
-# Property view (QAbstractItemView_Native *)
-property_reader("QComboBox", /::view\s*\(/, "view")
-property_writer("QComboBox", /::setView\s*\(/, "view")
-# Property defaultValues (string[])
-property_reader("QCommandLineOption", /::defaultValues\s*\(/, "defaultValues")
-property_writer("QCommandLineOption", /::setDefaultValues\s*\(/, "defaultValues")
-# Property description (string)
-property_reader("QCommandLineOption", /::description\s*\(/, "description")
-property_writer("QCommandLineOption", /::setDescription\s*\(/, "description")
-# Property valueName (string)
-property_reader("QCommandLineOption", /::valueName\s*\(/, "valueName")
-property_writer("QCommandLineOption", /::setValueName\s*\(/, "valueName")
-# Property applicationDescription (string)
-property_reader("QCommandLineParser", /::applicationDescription\s*\(/, "applicationDescription")
-property_writer("QCommandLineParser", /::setApplicationDescription\s*\(/, "applicationDescription")
-# Property model (QAbstractItemModel_Native *)
-property_reader("QCompleter", /::model\s*\(/, "model")
-property_writer("QCompleter", /::setModel\s*\(/, "model")
-# Property popup (QAbstractItemView_Native *)
-property_reader("QCompleter", /::popup\s*\(/, "popup")
-property_writer("QCompleter", /::setPopup\s*\(/, "popup")
-# Property widget (QWidget_Native *)
-property_reader("QCompleter", /::widget\s*\(/, "widget")
-property_writer("QCompleter", /::setWidget\s*\(/, "widget")
+# Property rgba64 (QRgba64)
+property_reader("QColor", /::rgba64\s*\(/, "rgba64")
+property_writer("QColor", /::setRgba64\s*\(/, "rgba64")
# Property angle (double)
property_reader("QConicalGradient", /::angle\s*\(/, "angle")
property_writer("QConicalGradient", /::setAngle\s*\(/, "angle")
# Property center (QPointF)
property_reader("QConicalGradient", /::center\s*\(/, "center")
property_writer("QConicalGradient", /::setCenter\s*\(/, "center")
-# Property eventDispatcher (QAbstractEventDispatcher_Native *)
-property_reader("QCoreApplication", /::eventDispatcher\s*\(/, "eventDispatcher")
-property_writer("QCoreApplication", /::setEventDispatcher\s*\(/, "eventDispatcher")
-# Property libraryPaths (string[])
-property_reader("QCoreApplication", /::libraryPaths\s*\(/, "libraryPaths")
-property_writer("QCoreApplication", /::setLibraryPaths\s*\(/, "libraryPaths")
-# Property setuidAllowed (bool)
-property_reader("QCoreApplication", /::isSetuidAllowed\s*\(/, "setuidAllowed")
-property_writer("QCoreApplication", /::setSetuidAllowed\s*\(/, "setuidAllowed")
# Property pos (QPoint)
property_reader("QCursor", /::pos\s*\(/, "pos")
property_writer("QCursor", /::setPos\s*\(/, "pos")
# Property shape (Qt_CursorShape)
property_reader("QCursor", /::shape\s*\(/, "shape")
property_writer("QCursor", /::setShape\s*\(/, "shape")
-# Property byteOrder (QDataStream_ByteOrder)
-property_reader("QDataStream", /::byteOrder\s*\(/, "byteOrder")
-property_writer("QDataStream", /::setByteOrder\s*\(/, "byteOrder")
-# Property device (QIODevice *)
-property_reader("QDataStream", /::device\s*\(/, "device")
-property_writer("QDataStream", /::setDevice\s*\(/, "device")
-# Property floatingPointPrecision (QDataStream_FloatingPointPrecision)
-property_reader("QDataStream", /::floatingPointPrecision\s*\(/, "floatingPointPrecision")
-property_writer("QDataStream", /::setFloatingPointPrecision\s*\(/, "floatingPointPrecision")
-# Property status (QDataStream_Status)
-property_reader("QDataStream", /::status\s*\(/, "status")
-property_writer("QDataStream", /::setStatus\s*\(/, "status")
-# Property version (int)
-property_reader("QDataStream", /::version\s*\(/, "version")
-property_writer("QDataStream", /::setVersion\s*\(/, "version")
-# Property itemDelegate (QAbstractItemDelegate_Native *)
-property_reader("QDataWidgetMapper", /::itemDelegate\s*\(/, "itemDelegate")
-property_writer("QDataWidgetMapper", /::setItemDelegate\s*\(/, "itemDelegate")
-# Property model (QAbstractItemModel_Native *)
-property_reader("QDataWidgetMapper", /::model\s*\(/, "model")
-property_writer("QDataWidgetMapper", /::setModel\s*\(/, "model")
-# Property rootIndex (QModelIndex)
-property_reader("QDataWidgetMapper", /::rootIndex\s*\(/, "rootIndex")
-property_writer("QDataWidgetMapper", /::setRootIndex\s*\(/, "rootIndex")
-# Property date (QDate)
-property_reader("QDateTime", /::date\s*\(/, "date")
-property_writer("QDateTime", /::setDate\s*\(/, "date")
-# Property offsetFromUtc (int)
-property_reader("QDateTime", /::offsetFromUtc\s*\(/, "offsetFromUtc")
-property_writer("QDateTime", /::setOffsetFromUtc\s*\(/, "offsetFromUtc")
-# Property time (QTime)
-property_reader("QDateTime", /::time\s*\(/, "time")
-property_writer("QDateTime", /::setTime\s*\(/, "time")
-# Property timeSpec (Qt_TimeSpec)
-property_reader("QDateTime", /::timeSpec\s*\(/, "timeSpec")
-property_writer("QDateTime", /::setTimeSpec\s*\(/, "timeSpec")
-# Property timeZone (QTimeZone)
-property_reader("QDateTime", /::timeZone\s*\(/, "timeZone")
-property_writer("QDateTime", /::setTimeZone\s*\(/, "timeZone")
-# Property utcOffset (int)
-property_reader("QDateTime", /::utcOffset\s*\(/, "utcOffset")
-property_writer("QDateTime", /::setUtcOffset\s*\(/, "utcOffset")
-# Property calendarWidget (QCalendarWidget_Native *)
-property_reader("QDateTimeEdit", /::calendarWidget\s*\(/, "calendarWidget")
-property_writer("QDateTimeEdit", /::setCalendarWidget\s*\(/, "calendarWidget")
-# Property autoInsertSpaces (bool)
-property_reader("QDebug", /::autoInsertSpaces\s*\(/, "autoInsertSpaces")
-property_writer("QDebug", /::setAutoInsertSpaces\s*\(/, "autoInsertSpaces")
-# Property extension (QWidget_Native *)
-property_reader("QDialog", /::extension\s*\(/, "extension")
-property_writer("QDialog", /::setExtension\s*\(/, "extension")
-# Property orientation (Qt_Orientation)
-property_reader("QDialog", /::orientation\s*\(/, "orientation")
-property_writer("QDialog", /::setOrientation\s*\(/, "orientation")
-# Property result (int)
-property_reader("QDialog", /::result\s*\(/, "result")
-property_writer("QDialog", /::setResult\s*\(/, "result")
-# Property filter (QDir_QFlags_Filter)
-property_reader("QDir", /::filter\s*\(/, "filter")
-property_writer("QDir", /::setFilter\s*\(/, "filter")
-# Property nameFilters (string[])
-property_reader("QDir", /::nameFilters\s*\(/, "nameFilters")
-property_writer("QDir", /::setNameFilters\s*\(/, "nameFilters")
-# Property path (string)
-property_reader("QDir", /::path\s*\(/, "path")
-property_writer("QDir", /::setPath\s*\(/, "path")
-# Property sorting (QDir_QFlags_SortFlag)
-property_reader("QDir", /::sorting\s*\(/, "sorting")
-property_writer("QDir", /::setSorting\s*\(/, "sorting")
-# Property filter (QDir_QFlags_Filter)
-property_reader("QDirModel", /::filter\s*\(/, "filter")
-property_writer("QDirModel", /::setFilter\s*\(/, "filter")
-# Property iconProvider (QFileIconProvider_Native *)
-property_reader("QDirModel", /::iconProvider\s*\(/, "iconProvider")
-property_writer("QDirModel", /::setIconProvider\s*\(/, "iconProvider")
-# Property nameFilters (string[])
-property_reader("QDirModel", /::nameFilters\s*\(/, "nameFilters")
-property_writer("QDirModel", /::setNameFilters\s*\(/, "nameFilters")
-# Property parent (QObject_Native *)
-property_reader("QDirModel", /::parent\s*\(/, "parent")
-property_writer("QObject", /::setParent\s*\(/, "parent")
-# Property sorting (QDir_QFlags_SortFlag)
-property_reader("QDirModel", /::sorting\s*\(/, "sorting")
-property_writer("QDirModel", /::setSorting\s*\(/, "sorting")
-# Property titleBarWidget (QWidget_Native *)
-property_reader("QDockWidget", /::titleBarWidget\s*\(/, "titleBarWidget")
-property_writer("QDockWidget", /::setTitleBarWidget\s*\(/, "titleBarWidget")
-# Property widget (QWidget_Native *)
-property_reader("QDockWidget", /::widget\s*\(/, "widget")
-property_writer("QDockWidget", /::setWidget\s*\(/, "widget")
-# Property value (string)
-property_reader("QDomAttr", /::value\s*\(/, "value")
-property_writer("QDomAttr", /::setValue\s*\(/, "value")
-# Property data (string)
-property_reader("QDomCharacterData", /::data\s*\(/, "data")
-property_writer("QDomCharacterData", /::setData\s*\(/, "data")
-# Property tagName (string)
-property_reader("QDomElement", /::tagName\s*\(/, "tagName")
-property_writer("QDomElement", /::setTagName\s*\(/, "tagName")
-# Property invalidDataPolicy (QDomImplementation_InvalidDataPolicy)
-property_reader("QDomImplementation", /::invalidDataPolicy\s*\(/, "invalidDataPolicy")
-property_writer("QDomImplementation", /::setInvalidDataPolicy\s*\(/, "invalidDataPolicy")
-# Property nodeValue (string)
-property_reader("QDomNode", /::nodeValue\s*\(/, "nodeValue")
-property_writer("QDomNode", /::setNodeValue\s*\(/, "nodeValue")
-# Property prefix (string)
-property_reader("QDomNode", /::prefix\s*\(/, "prefix")
-property_writer("QDomNode", /::setPrefix\s*\(/, "prefix")
-# Property data (string)
-property_reader("QDomProcessingInstruction", /::data\s*\(/, "data")
-property_writer("QDomProcessingInstruction", /::setData\s*\(/, "data")
# Property hotSpot (QPoint)
property_reader("QDrag", /::hotSpot\s*\(/, "hotSpot")
property_writer("QDrag", /::setHotSpot\s*\(/, "hotSpot")
@@ -12127,72 +12431,6 @@ property_writer("QDrag", /::setPixmap\s*\(/, "pixmap")
# Property dropAction (Qt_DropAction)
property_reader("QDropEvent", /::dropAction\s*\(/, "dropAction")
property_writer("QDropEvent", /::setDropAction\s*\(/, "dropAction")
-# Property amplitude (double)
-property_reader("QEasingCurve", /::amplitude\s*\(/, "amplitude")
-property_writer("QEasingCurve", /::setAmplitude\s*\(/, "amplitude")
-# Property overshoot (double)
-property_reader("QEasingCurve", /::overshoot\s*\(/, "overshoot")
-property_writer("QEasingCurve", /::setOvershoot\s*\(/, "overshoot")
-# Property period (double)
-property_reader("QEasingCurve", /::period\s*\(/, "period")
-property_writer("QEasingCurve", /::setPeriod\s*\(/, "period")
-# Property type (QEasingCurve_Type)
-property_reader("QEasingCurve", /::type\s*\(/, "type")
-property_writer("QEasingCurve", /::setType\s*\(/, "type")
-# Property accepted (bool)
-property_reader("QEvent", /::isAccepted\s*\(/, "accepted")
-property_writer("QEvent", /::setAccepted\s*\(/, "accepted")
-# Property fileName (string)
-property_reader("QFile", /::fileName\s*\(/, "fileName")
-property_writer("QFile", /::setFileName\s*\(/, "fileName")
-# Property directoryUrl (QUrl)
-property_reader("QFileDialog", /::directoryUrl\s*\(/, "directoryUrl")
-property_writer("QFileDialog", /::setDirectoryUrl\s*\(/, "directoryUrl")
-# Property filter (QDir_QFlags_Filter)
-property_reader("QFileDialog", /::filter\s*\(/, "filter")
-property_writer("QFileDialog", /::setFilter\s*\(/, "filter")
-# Property history (string[])
-property_reader("QFileDialog", /::history\s*\(/, "history")
-property_writer("QFileDialog", /::setHistory\s*\(/, "history")
-# Property iconProvider (QFileIconProvider_Native *)
-property_reader("QFileDialog", /::iconProvider\s*\(/, "iconProvider")
-property_writer("QFileDialog", /::setIconProvider\s*\(/, "iconProvider")
-# Property itemDelegate (QAbstractItemDelegate_Native *)
-property_reader("QFileDialog", /::itemDelegate\s*\(/, "itemDelegate")
-property_writer("QFileDialog", /::setItemDelegate\s*\(/, "itemDelegate")
-# Property mimeTypeFilters (string[])
-property_reader("QFileDialog", /::mimeTypeFilters\s*\(/, "mimeTypeFilters")
-property_writer("QFileDialog", /::setMimeTypeFilters\s*\(/, "mimeTypeFilters")
-# Property nameFilters (string[])
-property_reader("QFileDialog", /::nameFilters\s*\(/, "nameFilters")
-property_writer("QFileDialog", /::setNameFilters\s*\(/, "nameFilters")
-# Property proxyModel (QAbstractProxyModel_Native *)
-property_reader("QFileDialog", /::proxyModel\s*\(/, "proxyModel")
-property_writer("QFileDialog", /::setProxyModel\s*\(/, "proxyModel")
-# Property sidebarUrls (QUrl[])
-property_reader("QFileDialog", /::sidebarUrls\s*\(/, "sidebarUrls")
-property_writer("QFileDialog", /::setSidebarUrls\s*\(/, "sidebarUrls")
-# Property options (QFileIconProvider_QFlags_Option)
-property_reader("QFileIconProvider", /::options\s*\(/, "options")
-property_writer("QFileIconProvider", /::setOptions\s*\(/, "options")
-# Property caching (bool)
-property_reader("QFileInfo", /::caching\s*\(/, "caching")
-property_writer("QFileInfo", /::setCaching\s*\(/, "caching")
-# Property extraSelectors (string[])
-property_reader("QFileSelector", /::extraSelectors\s*\(/, "extraSelectors")
-property_writer("QFileSelector", /::setExtraSelectors\s*\(/, "extraSelectors")
-# Property filter (QDir_QFlags_Filter)
-property_reader("QFileSystemModel", /::filter\s*\(/, "filter")
-property_writer("QFileSystemModel", /::setFilter\s*\(/, "filter")
-# Property iconProvider (QFileIconProvider_Native *)
-property_reader("QFileSystemModel", /::iconProvider\s*\(/, "iconProvider")
-property_writer("QFileSystemModel", /::setIconProvider\s*\(/, "iconProvider")
-# Property nameFilters (string[])
-property_reader("QFileSystemModel", /::nameFilters\s*\(/, "nameFilters")
-property_writer("QFileSystemModel", /::setNameFilters\s*\(/, "nameFilters")
-# Property widget (QWidget_Native *)
-property_reader("QFocusFrame", /::widget\s*\(/, "widget")
-property_writer("QFocusFrame", /::setWidget\s*\(/, "widget")
# Property bold (bool)
property_reader("QFont", /::bold\s*\(/, "bold")
property_writer("QFont", /::setBold\s*\(/, "bold")
@@ -12259,18 +12497,6 @@ property_writer("QFont", /::setWeight\s*\(/, "weight")
# Property wordSpacing (double)
property_reader("QFont", /::wordSpacing\s*\(/, "wordSpacing")
property_writer("QFont", /::setWordSpacing\s*\(/, "wordSpacing")
-# Property geometry (QRect)
-property_reader("QLayout", /::geometry\s*\(/, "geometry")
-property_writer("QFormLayout", /::setGeometry\s*\(/, "geometry")
-# Property frameStyle (int)
-property_reader("QFrame", /::frameStyle\s*\(/, "frameStyle")
-property_writer("QFrame", /::setFrameStyle\s*\(/, "frameStyle")
-# Property accepted (bool)
-property_reader("QGestureEvent", /::isAccepted\s*\(/, "accepted")
-property_writer("QGestureEvent", /::setAccepted\s*\(/, "accepted")
-# Property widget (QWidget_Native *)
-property_reader("QGestureEvent", /::widget\s*\(/, "widget")
-property_writer("QGestureEvent", /::setWidget\s*\(/, "widget")
# Property boundingRect (QRectF)
property_reader("QGlyphRun", /::boundingRect\s*\(/, "boundingRect")
property_writer("QGlyphRun", /::setBoundingRect\s*\(/, "boundingRect")
@@ -12310,6 +12536,1338 @@ property_writer("QGradient", /::setSpread\s*\(/, "spread")
# Property stops (QPair_double_QColor[])
property_reader("QGradient", /::stops\s*\(/, "stops")
property_writer("QGradient", /::setStops\s*\(/, "stops")
+# Property desktopSettingsAware (bool)
+property_reader("QGuiApplication", /::desktopSettingsAware\s*\(/, "desktopSettingsAware")
+property_writer("QGuiApplication", /::setDesktopSettingsAware\s*\(/, "desktopSettingsAware")
+# Property fallbackSessionManagementEnabled (bool)
+property_reader("QGuiApplication", /::isFallbackSessionManagementEnabled\s*\(/, "fallbackSessionManagementEnabled")
+property_writer("QGuiApplication", /::setFallbackSessionManagementEnabled\s*\(/, "fallbackSessionManagementEnabled")
+# Property font (QFont)
+property_reader("QGuiApplication", /::font\s*\(/, "font")
+property_writer("QGuiApplication", /::setFont\s*\(/, "font")
+# Property palette (QPalette)
+property_reader("QGuiApplication", /::palette\s*\(/, "palette")
+property_writer("QGuiApplication", /::setPalette\s*\(/, "palette")
+# Property fallbackSearchPaths (string[])
+property_reader("QIcon", /::fallbackSearchPaths\s*\(/, "fallbackSearchPaths")
+property_writer("QIcon", /::setFallbackSearchPaths\s*\(/, "fallbackSearchPaths")
+# Property fallbackThemeName (string)
+property_reader("QIcon", /::fallbackThemeName\s*\(/, "fallbackThemeName")
+property_writer("QIcon", /::setFallbackThemeName\s*\(/, "fallbackThemeName")
+# Property themeName (string)
+property_reader("QIcon", /::themeName\s*\(/, "themeName")
+property_writer("QIcon", /::setThemeName\s*\(/, "themeName")
+# Property themeSearchPaths (string[])
+property_reader("QIcon", /::themeSearchPaths\s*\(/, "themeSearchPaths")
+property_writer("QIcon", /::setThemeSearchPaths\s*\(/, "themeSearchPaths")
+# Property alphaChannel (QImage_Native)
+property_reader("QImage", /::alphaChannel\s*\(/, "alphaChannel")
+property_writer("QImage", /::setAlphaChannel\s*\(/, "alphaChannel")
+# Property colorCount (int)
+property_reader("QImage", /::colorCount\s*\(/, "colorCount")
+property_writer("QImage", /::setColorCount\s*\(/, "colorCount")
+# Property devicePixelRatio (double)
+property_reader("QImage", /::devicePixelRatio\s*\(/, "devicePixelRatio")
+property_writer("QImage", /::setDevicePixelRatio\s*\(/, "devicePixelRatio")
+# Property dotsPerMeterX (int)
+property_reader("QImage", /::dotsPerMeterX\s*\(/, "dotsPerMeterX")
+property_writer("QImage", /::setDotsPerMeterX\s*\(/, "dotsPerMeterX")
+# Property dotsPerMeterY (int)
+property_reader("QImage", /::dotsPerMeterY\s*\(/, "dotsPerMeterY")
+property_writer("QImage", /::setDotsPerMeterY\s*\(/, "dotsPerMeterY")
+# Property offset (QPoint)
+property_reader("QImage", /::offset\s*\(/, "offset")
+property_writer("QImage", /::setOffset\s*\(/, "offset")
+# Property device (QIODevice *)
+property_reader("QImageIOHandler", /::device\s*\(/, "device")
+property_writer("QImageIOHandler", /::setDevice\s*\(/, "device")
+# Property format (byte array)
+property_reader("QImageIOHandler", /::format\s*\(/, "format")
+property_writer("QImageIOHandler", /::setFormat\s*\(/, "format")
+# Property autoDetectImageFormat (bool)
+property_reader("QImageReader", /::autoDetectImageFormat\s*\(/, "autoDetectImageFormat")
+property_writer("QImageReader", /::setAutoDetectImageFormat\s*\(/, "autoDetectImageFormat")
+# Property autoTransform (bool)
+property_reader("QImageReader", /::autoTransform\s*\(/, "autoTransform")
+property_writer("QImageReader", /::setAutoTransform\s*\(/, "autoTransform")
+# Property backgroundColor (QColor)
+property_reader("QImageReader", /::backgroundColor\s*\(/, "backgroundColor")
+property_writer("QImageReader", /::setBackgroundColor\s*\(/, "backgroundColor")
+# Property clipRect (QRect)
+property_reader("QImageReader", /::clipRect\s*\(/, "clipRect")
+property_writer("QImageReader", /::setClipRect\s*\(/, "clipRect")
+# Property decideFormatFromContent (bool)
+property_reader("QImageReader", /::decideFormatFromContent\s*\(/, "decideFormatFromContent")
+property_writer("QImageReader", /::setDecideFormatFromContent\s*\(/, "decideFormatFromContent")
+# Property device (QIODevice *)
+property_reader("QImageReader", /::device\s*\(/, "device")
+property_writer("QImageReader", /::setDevice\s*\(/, "device")
+# Property fileName (string)
+property_reader("QImageReader", /::fileName\s*\(/, "fileName")
+property_writer("QImageReader", /::setFileName\s*\(/, "fileName")
+# Property format (byte array)
+property_reader("QImageReader", /::format\s*\(/, "format")
+property_writer("QImageReader", /::setFormat\s*\(/, "format")
+# Property gamma (float)
+property_reader("QImageReader", /::gamma\s*\(/, "gamma")
+property_writer("QImageReader", /::setGamma\s*\(/, "gamma")
+# Property quality (int)
+property_reader("QImageReader", /::quality\s*\(/, "quality")
+property_writer("QImageReader", /::setQuality\s*\(/, "quality")
+# Property scaledClipRect (QRect)
+property_reader("QImageReader", /::scaledClipRect\s*\(/, "scaledClipRect")
+property_writer("QImageReader", /::setScaledClipRect\s*\(/, "scaledClipRect")
+# Property scaledSize (QSize)
+property_reader("QImageReader", /::scaledSize\s*\(/, "scaledSize")
+property_writer("QImageReader", /::setScaledSize\s*\(/, "scaledSize")
+# Property compression (int)
+property_reader("QImageWriter", /::compression\s*\(/, "compression")
+property_writer("QImageWriter", /::setCompression\s*\(/, "compression")
+# Property description (string)
+property_reader("QImageWriter", /::description\s*\(/, "description")
+property_writer("QImageWriter", /::setDescription\s*\(/, "description")
+# Property device (QIODevice *)
+property_reader("QImageWriter", /::device\s*\(/, "device")
+property_writer("QImageWriter", /::setDevice\s*\(/, "device")
+# Property fileName (string)
+property_reader("QImageWriter", /::fileName\s*\(/, "fileName")
+property_writer("QImageWriter", /::setFileName\s*\(/, "fileName")
+# Property format (byte array)
+property_reader("QImageWriter", /::format\s*\(/, "format")
+property_writer("QImageWriter", /::setFormat\s*\(/, "format")
+# Property gamma (float)
+property_reader("QImageWriter", /::gamma\s*\(/, "gamma")
+property_writer("QImageWriter", /::setGamma\s*\(/, "gamma")
+# Property optimizedWrite (bool)
+property_reader("QImageWriter", /::optimizedWrite\s*\(/, "optimizedWrite")
+property_writer("QImageWriter", /::setOptimizedWrite\s*\(/, "optimizedWrite")
+# Property progressiveScanWrite (bool)
+property_reader("QImageWriter", /::progressiveScanWrite\s*\(/, "progressiveScanWrite")
+property_writer("QImageWriter", /::setProgressiveScanWrite\s*\(/, "progressiveScanWrite")
+# Property quality (int)
+property_reader("QImageWriter", /::quality\s*\(/, "quality")
+property_writer("QImageWriter", /::setQuality\s*\(/, "quality")
+# Property subType (byte array)
+property_reader("QImageWriter", /::subType\s*\(/, "subType")
+property_writer("QImageWriter", /::setSubType\s*\(/, "subType")
+# Property transformation (QImageIOHandler_QFlags_Transformation)
+property_reader("QImageWriter", /::transformation\s*\(/, "transformation")
+property_writer("QImageWriter", /::setTransformation\s*\(/, "transformation")
+# Property modifiers (Qt_QFlags_KeyboardModifier)
+property_reader("QInputEvent", /::modifiers\s*\(/, "modifiers")
+property_writer("QInputEvent", /::setModifiers\s*\(/, "modifiers")
+# Property timestamp (unsigned long)
+property_reader("QInputEvent", /::timestamp\s*\(/, "timestamp")
+property_writer("QInputEvent", /::setTimestamp\s*\(/, "timestamp")
+# Property inputItemRectangle (QRectF)
+property_reader("QInputMethod", /::inputItemRectangle\s*\(/, "inputItemRectangle")
+property_writer("QInputMethod", /::setInputItemRectangle\s*\(/, "inputItemRectangle")
+# Property inputItemTransform (QTransform)
+property_reader("QInputMethod", /::inputItemTransform\s*\(/, "inputItemTransform")
+property_writer("QInputMethod", /::setInputItemTransform\s*\(/, "inputItemTransform")
+# Property commitString (string)
+property_reader("QInputMethodEvent", /::commitString\s*\(/, "commitString")
+property_writer("QInputMethodEvent", /::setCommitString\s*\(/, "commitString")
+# Property modifiers (Qt_QFlags_KeyboardModifier)
+property_reader("QKeyEvent", /::modifiers\s*\(/, "modifiers")
+property_writer("QInputEvent", /::setModifiers\s*\(/, "modifiers")
+# Property finalStop (QPointF)
+property_reader("QLinearGradient", /::finalStop\s*\(/, "finalStop")
+property_writer("QLinearGradient", /::setFinalStop\s*\(/, "finalStop")
+# Property start (QPointF)
+property_reader("QLinearGradient", /::start\s*\(/, "start")
+property_writer("QLinearGradient", /::setStart\s*\(/, "start")
+# Property localPos (QPointF)
+property_reader("QMouseEvent", /::localPos\s*\(/, "localPos")
+property_writer("QMouseEvent", /::setLocalPos\s*\(/, "localPos")
+# Property backgroundColor (QColor)
+property_reader("QMovie", /::backgroundColor\s*\(/, "backgroundColor")
+property_writer("QMovie", /::setBackgroundColor\s*\(/, "backgroundColor")
+# Property device (QIODevice *)
+property_reader("QMovie", /::device\s*\(/, "device")
+property_writer("QMovie", /::setDevice\s*\(/, "device")
+# Property fileName (string)
+property_reader("QMovie", /::fileName\s*\(/, "fileName")
+property_writer("QMovie", /::setFileName\s*\(/, "fileName")
+# Property format (byte array)
+property_reader("QMovie", /::format\s*\(/, "format")
+property_writer("QMovie", /::setFormat\s*\(/, "format")
+# Property scaledSize (QSize)
+property_reader("QMovie", /::scaledSize\s*\(/, "scaledSize")
+property_writer("QMovie", /::setScaledSize\s*\(/, "scaledSize")
+# Property format (QSurfaceFormat)
+property_reader("QOffscreenSurface", /::format\s*\(/, "format")
+property_writer("QOffscreenSurface", /::setFormat\s*\(/, "format")
+# Property nativeHandle (void *)
+property_reader("QOffscreenSurface", /::nativeHandle\s*\(/, "nativeHandle")
+property_writer("QOffscreenSurface", /::setNativeHandle\s*\(/, "nativeHandle")
+# Property screen (QScreen_Native *)
+property_reader("QOffscreenSurface", /::screen\s*\(/, "screen")
+property_writer("QOffscreenSurface", /::setScreen\s*\(/, "screen")
+# Property minimumMargins (QMarginsF)
+property_reader("QPageLayout", /::minimumMargins\s*\(/, "minimumMargins")
+property_writer("QPageLayout", /::setMinimumMargins\s*\(/, "minimumMargins")
+# Property mode (QPageLayout_Mode)
+property_reader("QPageLayout", /::mode\s*\(/, "mode")
+property_writer("QPageLayout", /::setMode\s*\(/, "mode")
+# Property orientation (QPageLayout_Orientation)
+property_reader("QPageLayout", /::orientation\s*\(/, "orientation")
+property_writer("QPageLayout", /::setOrientation\s*\(/, "orientation")
+# Property pageSize (QPageSize)
+property_reader("QPageLayout", /::pageSize\s*\(/, "pageSize")
+property_writer("QPageLayout", /::setPageSize\s*\(/, "pageSize")
+# Property units (QPageLayout_Unit)
+property_reader("QPageLayout", /::units\s*\(/, "units")
+property_writer("QPageLayout", /::setUnits\s*\(/, "units")
+# Property margins (QPagedPaintDevice_Margins)
+property_reader("QPagedPaintDevice", /::margins\s*\(/, "margins")
+property_writer("QPagedPaintDevice", /::setMargins\s*\(/, "margins")
+# Property pageSize (QPagedPaintDevice_PageSize)
+property_reader("QPagedPaintDevice", /::pageSize\s*\(/, "pageSize")
+property_writer("QPagedPaintDevice", /::setPageSize\s*\(/, "pageSize")
+# Property pageSizeMM (QSizeF)
+property_reader("QPagedPaintDevice", /::pageSizeMM\s*\(/, "pageSizeMM")
+property_writer("QPagedPaintDevice", /::setPageSizeMM\s*\(/, "pageSizeMM")
+# Property active (bool)
+property_reader("QPaintEngine", /::isActive\s*\(/, "active")
+property_writer("QPaintEngine", /::setActive\s*\(/, "active")
+# Property paintDevice (QPaintDevice_Native *)
+property_reader("QPaintEngine", /::paintDevice\s*\(/, "paintDevice")
+property_writer("QPaintEngine", /::setPaintDevice\s*\(/, "paintDevice")
+# Property systemClip (QRegion)
+property_reader("QPaintEngine", /::systemClip\s*\(/, "systemClip")
+property_writer("QPaintEngine", /::setSystemClip\s*\(/, "systemClip")
+# Property systemRect (QRect)
+property_reader("QPaintEngine", /::systemRect\s*\(/, "systemRect")
+property_writer("QPaintEngine", /::setSystemRect\s*\(/, "systemRect")
+# Property background (QBrush)
+property_reader("QPainter", /::background\s*\(/, "background")
+property_writer("QPainter", /::setBackground\s*\(/, "background")
+# Property backgroundMode (Qt_BGMode)
+property_reader("QPainter", /::backgroundMode\s*\(/, "backgroundMode")
+property_writer("QPainter", /::setBackgroundMode\s*\(/, "backgroundMode")
+# Property brush (QBrush)
+property_reader("QPainter", /::brush\s*\(/, "brush")
+property_writer("QPainter", /::setBrush\s*\(/, "brush")
+# Property brushOrigin (QPoint)
+property_reader("QPainter", /::brushOrigin\s*\(/, "brushOrigin")
+property_writer("QPainter", /::setBrushOrigin\s*\(/, "brushOrigin")
+# Property clipPath (QPainterPath)
+property_reader("QPainter", /::clipPath\s*\(/, "clipPath")
+property_writer("QPainter", /::setClipPath\s*\(/, "clipPath")
+# Property clipRegion (QRegion)
+property_reader("QPainter", /::clipRegion\s*\(/, "clipRegion")
+property_writer("QPainter", /::setClipRegion\s*\(/, "clipRegion")
+# Property clipping (bool)
+property_reader("QPainter", /::hasClipping\s*\(/, "clipping")
+property_writer("QPainter", /::setClipping\s*\(/, "clipping")
+# Property compositionMode (QPainter_CompositionMode)
+property_reader("QPainter", /::compositionMode\s*\(/, "compositionMode")
+property_writer("QPainter", /::setCompositionMode\s*\(/, "compositionMode")
+# Property font (QFont)
+property_reader("QPainter", /::font\s*\(/, "font")
+property_writer("QPainter", /::setFont\s*\(/, "font")
+# Property layoutDirection (Qt_LayoutDirection)
+property_reader("QPainter", /::layoutDirection\s*\(/, "layoutDirection")
+property_writer("QPainter", /::setLayoutDirection\s*\(/, "layoutDirection")
+# Property matrix (QMatrix)
+property_reader("QPainter", /::matrix\s*\(/, "matrix")
+property_writer("QPainter", /::setMatrix\s*\(/, "matrix")
+# Property matrixEnabled (bool)
+property_reader("QPainter", /::matrixEnabled\s*\(/, "matrixEnabled")
+property_writer("QPainter", /::setMatrixEnabled\s*\(/, "matrixEnabled")
+# Property opacity (double)
+property_reader("QPainter", /::opacity\s*\(/, "opacity")
+property_writer("QPainter", /::setOpacity\s*\(/, "opacity")
+# Property renderHints (QPainter_QFlags_RenderHint)
+property_reader("QPainter", /::renderHints\s*\(/, "renderHints")
+property_writer("QPainter", /::setRenderHints\s*\(/, "renderHints")
+# Property transform (QTransform)
+property_reader("QPainter", /::transform\s*\(/, "transform")
+property_writer("QPainter", /::setTransform\s*\(/, "transform")
+# Property viewTransformEnabled (bool)
+property_reader("QPainter", /::viewTransformEnabled\s*\(/, "viewTransformEnabled")
+property_writer("QPainter", /::setViewTransformEnabled\s*\(/, "viewTransformEnabled")
+# Property viewport (QRect)
+property_reader("QPainter", /::viewport\s*\(/, "viewport")
+property_writer("QPainter", /::setViewport\s*\(/, "viewport")
+# Property window (QRect)
+property_reader("QPainter", /::window\s*\(/, "window")
+property_writer("QPainter", /::setWindow\s*\(/, "window")
+# Property worldMatrix (QMatrix)
+property_reader("QPainter", /::worldMatrix\s*\(/, "worldMatrix")
+property_writer("QPainter", /::setWorldMatrix\s*\(/, "worldMatrix")
+# Property worldMatrixEnabled (bool)
+property_reader("QPainter", /::worldMatrixEnabled\s*\(/, "worldMatrixEnabled")
+property_writer("QPainter", /::setWorldMatrixEnabled\s*\(/, "worldMatrixEnabled")
+# Property worldTransform (QTransform)
+property_reader("QPainter", /::worldTransform\s*\(/, "worldTransform")
+property_writer("QPainter", /::setWorldTransform\s*\(/, "worldTransform")
+# Property fillRule (Qt_FillRule)
+property_reader("QPainterPath", /::fillRule\s*\(/, "fillRule")
+property_writer("QPainterPath", /::setFillRule\s*\(/, "fillRule")
+# Property capStyle (Qt_PenCapStyle)
+property_reader("QPainterPathStroker", /::capStyle\s*\(/, "capStyle")
+property_writer("QPainterPathStroker", /::setCapStyle\s*\(/, "capStyle")
+# Property curveThreshold (double)
+property_reader("QPainterPathStroker", /::curveThreshold\s*\(/, "curveThreshold")
+property_writer("QPainterPathStroker", /::setCurveThreshold\s*\(/, "curveThreshold")
+# Property dashOffset (double)
+property_reader("QPainterPathStroker", /::dashOffset\s*\(/, "dashOffset")
+property_writer("QPainterPathStroker", /::setDashOffset\s*\(/, "dashOffset")
+# Property joinStyle (Qt_PenJoinStyle)
+property_reader("QPainterPathStroker", /::joinStyle\s*\(/, "joinStyle")
+property_writer("QPainterPathStroker", /::setJoinStyle\s*\(/, "joinStyle")
+# Property miterLimit (double)
+property_reader("QPainterPathStroker", /::miterLimit\s*\(/, "miterLimit")
+property_writer("QPainterPathStroker", /::setMiterLimit\s*\(/, "miterLimit")
+# Property width (double)
+property_reader("QPainterPathStroker", /::width\s*\(/, "width")
+property_writer("QPainterPathStroker", /::setWidth\s*\(/, "width")
+# Property currentColorGroup (QPalette_ColorGroup)
+property_reader("QPalette", /::currentColorGroup\s*\(/, "currentColorGroup")
+property_writer("QPalette", /::setCurrentColorGroup\s*\(/, "currentColorGroup")
+# Property creator (string)
+property_reader("QPdfWriter", /::creator\s*\(/, "creator")
+property_writer("QPdfWriter", /::setCreator\s*\(/, "creator")
+# Property pdfVersion (QPagedPaintDevice_PdfVersion)
+property_reader("QPdfWriter", /::pdfVersion\s*\(/, "pdfVersion")
+property_writer("QPdfWriter", /::setPdfVersion\s*\(/, "pdfVersion")
+# Property resolution (int)
+property_reader("QPdfWriter", /::resolution\s*\(/, "resolution")
+property_writer("QPdfWriter", /::setResolution\s*\(/, "resolution")
+# Property title (string)
+property_reader("QPdfWriter", /::title\s*\(/, "title")
+property_writer("QPdfWriter", /::setTitle\s*\(/, "title")
+# Property brush (QBrush)
+property_reader("QPen", /::brush\s*\(/, "brush")
+property_writer("QPen", /::setBrush\s*\(/, "brush")
+# Property capStyle (Qt_PenCapStyle)
+property_reader("QPen", /::capStyle\s*\(/, "capStyle")
+property_writer("QPen", /::setCapStyle\s*\(/, "capStyle")
+# Property color (QColor)
+property_reader("QPen", /::color\s*\(/, "color")
+property_writer("QPen", /::setColor\s*\(/, "color")
+# Property cosmetic (bool)
+property_reader("QPen", /::isCosmetic\s*\(/, "cosmetic")
+property_writer("QPen", /::setCosmetic\s*\(/, "cosmetic")
+# Property dashOffset (double)
+property_reader("QPen", /::dashOffset\s*\(/, "dashOffset")
+property_writer("QPen", /::setDashOffset\s*\(/, "dashOffset")
+# Property dashPattern (double[])
+property_reader("QPen", /::dashPattern\s*\(/, "dashPattern")
+property_writer("QPen", /::setDashPattern\s*\(/, "dashPattern")
+# Property joinStyle (Qt_PenJoinStyle)
+property_reader("QPen", /::joinStyle\s*\(/, "joinStyle")
+property_writer("QPen", /::setJoinStyle\s*\(/, "joinStyle")
+# Property miterLimit (double)
+property_reader("QPen", /::miterLimit\s*\(/, "miterLimit")
+property_writer("QPen", /::setMiterLimit\s*\(/, "miterLimit")
+# Property style (Qt_PenStyle)
+property_reader("QPen", /::style\s*\(/, "style")
+property_writer("QPen", /::setStyle\s*\(/, "style")
+# Property width (int)
+property_reader("QPen", /::width\s*\(/, "width")
+property_writer("QPen", /::setWidth\s*\(/, "width")
+# Property widthF (double)
+property_reader("QPen", /::widthF\s*\(/, "widthF")
+property_writer("QPen", /::setWidthF\s*\(/, "widthF")
+# Property boundingRect (QRect)
+property_reader("QPicture", /::boundingRect\s*\(/, "boundingRect")
+property_writer("QPicture", /::setBoundingRect\s*\(/, "boundingRect")
+# Property devicePixelRatio (double)
+property_reader("QPixmap", /::devicePixelRatio\s*\(/, "devicePixelRatio")
+property_writer("QPixmap", /::setDevicePixelRatio\s*\(/, "devicePixelRatio")
+# Property mask (QBitmap_Native)
+property_reader("QPixmap", /::mask\s*\(/, "mask")
+property_writer("QPixmap", /::setMask\s*\(/, "mask")
+# Property cacheLimit (int)
+property_reader("QPixmapCache", /::cacheLimit\s*\(/, "cacheLimit")
+property_writer("QPixmapCache", /::setCacheLimit\s*\(/, "cacheLimit")
+# Property scalar (float)
+property_reader("QQuaternion", /::scalar\s*\(/, "scalar")
+property_writer("QQuaternion", /::setScalar\s*\(/, "scalar")
+# Property vector (QVector3D)
+property_reader("QQuaternion", /::vector\s*\(/, "vector")
+property_writer("QQuaternion", /::setVector\s*\(/, "vector")
+# Property x (float)
+property_reader("QQuaternion", /::x\s*\(/, "x")
+property_writer("QQuaternion", /::setX\s*\(/, "x")
+# Property y (float)
+property_reader("QQuaternion", /::y\s*\(/, "y")
+property_writer("QQuaternion", /::setY\s*\(/, "y")
+# Property z (float)
+property_reader("QQuaternion", /::z\s*\(/, "z")
+property_writer("QQuaternion", /::setZ\s*\(/, "z")
+# Property center (QPointF)
+property_reader("QRadialGradient", /::center\s*\(/, "center")
+property_writer("QRadialGradient", /::setCenter\s*\(/, "center")
+# Property centerRadius (double)
+property_reader("QRadialGradient", /::centerRadius\s*\(/, "centerRadius")
+property_writer("QRadialGradient", /::setCenterRadius\s*\(/, "centerRadius")
+# Property focalPoint (QPointF)
+property_reader("QRadialGradient", /::focalPoint\s*\(/, "focalPoint")
+property_writer("QRadialGradient", /::setFocalPoint\s*\(/, "focalPoint")
+# Property focalRadius (double)
+property_reader("QRadialGradient", /::focalRadius\s*\(/, "focalRadius")
+property_writer("QRadialGradient", /::setFocalRadius\s*\(/, "focalRadius")
+# Property radius (double)
+property_reader("QRadialGradient", /::radius\s*\(/, "radius")
+property_writer("QRadialGradient", /::setRadius\s*\(/, "radius")
+# Property pixelSize (double)
+property_reader("QRawFont", /::pixelSize\s*\(/, "pixelSize")
+property_writer("QRawFont", /::setPixelSize\s*\(/, "pixelSize")
+# Property rects (QRect[])
+property_reader("QRegion", /::rects\s*\(/, "rects")
+property_writer("QRegion", /::setRects\s*\(/, "rects")
+# Property alpha (unsigned short)
+property_reader("QRgba64", /::alpha\s*\(/, "alpha")
+property_writer("QRgba64", /::setAlpha\s*\(/, "alpha")
+# Property blue (unsigned short)
+property_reader("QRgba64", /::blue\s*\(/, "blue")
+property_writer("QRgba64", /::setBlue\s*\(/, "blue")
+# Property green (unsigned short)
+property_reader("QRgba64", /::green\s*\(/, "green")
+property_writer("QRgba64", /::setGreen\s*\(/, "green")
+# Property red (unsigned short)
+property_reader("QRgba64", /::red\s*\(/, "red")
+property_writer("QRgba64", /::setRed\s*\(/, "red")
+# Property orientationUpdateMask (Qt_QFlags_ScreenOrientation)
+property_reader("QScreen", /::orientationUpdateMask\s*\(/, "orientationUpdateMask")
+property_writer("QScreen", /::setOrientationUpdateMask\s*\(/, "orientationUpdateMask")
+# Property contentPos (QPointF)
+property_reader("QScrollPrepareEvent", /::contentPos\s*\(/, "contentPos")
+property_writer("QScrollPrepareEvent", /::setContentPos\s*\(/, "contentPos")
+# Property contentPosRange (QRectF)
+property_reader("QScrollPrepareEvent", /::contentPosRange\s*\(/, "contentPosRange")
+property_writer("QScrollPrepareEvent", /::setContentPosRange\s*\(/, "contentPosRange")
+# Property viewportSize (QSizeF)
+property_reader("QScrollPrepareEvent", /::viewportSize\s*\(/, "viewportSize")
+property_writer("QScrollPrepareEvent", /::setViewportSize\s*\(/, "viewportSize")
+# Property discardCommand (string[])
+property_reader("QSessionManager", /::discardCommand\s*\(/, "discardCommand")
+property_writer("QSessionManager", /::setDiscardCommand\s*\(/, "discardCommand")
+# Property restartCommand (string[])
+property_reader("QSessionManager", /::restartCommand\s*\(/, "restartCommand")
+property_writer("QSessionManager", /::setRestartCommand\s*\(/, "restartCommand")
+# Property restartHint (QSessionManager_RestartHint)
+property_reader("QSessionManager", /::restartHint\s*\(/, "restartHint")
+property_writer("QSessionManager", /::setRestartHint\s*\(/, "restartHint")
+# Property accessibleDescription (string)
+property_reader("QStandardItem", /::accessibleDescription\s*\(/, "accessibleDescription")
+property_writer("QStandardItem", /::setAccessibleDescription\s*\(/, "accessibleDescription")
+# Property accessibleText (string)
+property_reader("QStandardItem", /::accessibleText\s*\(/, "accessibleText")
+property_writer("QStandardItem", /::setAccessibleText\s*\(/, "accessibleText")
+# Property autoTristate (bool)
+property_reader("QStandardItem", /::isAutoTristate\s*\(/, "autoTristate")
+property_writer("QStandardItem", /::setAutoTristate\s*\(/, "autoTristate")
+# Property background (QBrush)
+property_reader("QStandardItem", /::background\s*\(/, "background")
+property_writer("QStandardItem", /::setBackground\s*\(/, "background")
+# Property checkState (Qt_CheckState)
+property_reader("QStandardItem", /::checkState\s*\(/, "checkState")
+property_writer("QStandardItem", /::setCheckState\s*\(/, "checkState")
+# Property checkable (bool)
+property_reader("QStandardItem", /::isCheckable\s*\(/, "checkable")
+property_writer("QStandardItem", /::setCheckable\s*\(/, "checkable")
+# Property columnCount (int)
+property_reader("QStandardItem", /::columnCount\s*\(/, "columnCount")
+property_writer("QStandardItem", /::setColumnCount\s*\(/, "columnCount")
+# Property data (variant)
+property_reader("QStandardItem", /::data\s*\(/, "data")
+property_writer("QStandardItem", /::setData\s*\(/, "data")
+# Property dragEnabled (bool)
+property_reader("QStandardItem", /::isDragEnabled\s*\(/, "dragEnabled")
+property_writer("QStandardItem", /::setDragEnabled\s*\(/, "dragEnabled")
+# Property dropEnabled (bool)
+property_reader("QStandardItem", /::isDropEnabled\s*\(/, "dropEnabled")
+property_writer("QStandardItem", /::setDropEnabled\s*\(/, "dropEnabled")
+# Property editable (bool)
+property_reader("QStandardItem", /::isEditable\s*\(/, "editable")
+property_writer("QStandardItem", /::setEditable\s*\(/, "editable")
+# Property enabled (bool)
+property_reader("QStandardItem", /::isEnabled\s*\(/, "enabled")
+property_writer("QStandardItem", /::setEnabled\s*\(/, "enabled")
+# Property flags (Qt_QFlags_ItemFlag)
+property_reader("QStandardItem", /::flags\s*\(/, "flags")
+property_writer("QStandardItem", /::setFlags\s*\(/, "flags")
+# Property font (QFont)
+property_reader("QStandardItem", /::font\s*\(/, "font")
+property_writer("QStandardItem", /::setFont\s*\(/, "font")
+# Property foreground (QBrush)
+property_reader("QStandardItem", /::foreground\s*\(/, "foreground")
+property_writer("QStandardItem", /::setForeground\s*\(/, "foreground")
+# Property icon (QIcon)
+property_reader("QStandardItem", /::icon\s*\(/, "icon")
+property_writer("QStandardItem", /::setIcon\s*\(/, "icon")
+# Property rowCount (int)
+property_reader("QStandardItem", /::rowCount\s*\(/, "rowCount")
+property_writer("QStandardItem", /::setRowCount\s*\(/, "rowCount")
+# Property selectable (bool)
+property_reader("QStandardItem", /::isSelectable\s*\(/, "selectable")
+property_writer("QStandardItem", /::setSelectable\s*\(/, "selectable")
+# Property sizeHint (QSize)
+property_reader("QStandardItem", /::sizeHint\s*\(/, "sizeHint")
+property_writer("QStandardItem", /::setSizeHint\s*\(/, "sizeHint")
+# Property statusTip (string)
+property_reader("QStandardItem", /::statusTip\s*\(/, "statusTip")
+property_writer("QStandardItem", /::setStatusTip\s*\(/, "statusTip")
+# Property text (string)
+property_reader("QStandardItem", /::text\s*\(/, "text")
+property_writer("QStandardItem", /::setText\s*\(/, "text")
+# Property textAlignment (Qt_QFlags_AlignmentFlag)
+property_reader("QStandardItem", /::textAlignment\s*\(/, "textAlignment")
+property_writer("QStandardItem", /::setTextAlignment\s*\(/, "textAlignment")
+# Property toolTip (string)
+property_reader("QStandardItem", /::toolTip\s*\(/, "toolTip")
+property_writer("QStandardItem", /::setToolTip\s*\(/, "toolTip")
+# Property tristate (bool)
+property_reader("QStandardItem", /::isTristate\s*\(/, "tristate")
+property_writer("QStandardItem", /::setTristate\s*\(/, "tristate")
+# Property userTristate (bool)
+property_reader("QStandardItem", /::isUserTristate\s*\(/, "userTristate")
+property_writer("QStandardItem", /::setUserTristate\s*\(/, "userTristate")
+# Property whatsThis (string)
+property_reader("QStandardItem", /::whatsThis\s*\(/, "whatsThis")
+property_writer("QStandardItem", /::setWhatsThis\s*\(/, "whatsThis")
+# Property columnCount (int)
+property_reader("QStandardItemModel", /::columnCount\s*\(/, "columnCount")
+property_writer("QStandardItemModel", /::setColumnCount\s*\(/, "columnCount")
+# Property itemPrototype (QStandardItem_Native *)
+property_reader("QStandardItemModel", /::itemPrototype\s*\(/, "itemPrototype")
+property_writer("QStandardItemModel", /::setItemPrototype\s*\(/, "itemPrototype")
+# Property parent (QObject_Native *)
+property_reader("QStandardItemModel", /::parent\s*\(/, "parent")
+property_writer("QObject", /::setParent\s*\(/, "parent")
+# Property rowCount (int)
+property_reader("QStandardItemModel", /::rowCount\s*\(/, "rowCount")
+property_writer("QStandardItemModel", /::setRowCount\s*\(/, "rowCount")
+# Property performanceHint (QStaticText_PerformanceHint)
+property_reader("QStaticText", /::performanceHint\s*\(/, "performanceHint")
+property_writer("QStaticText", /::setPerformanceHint\s*\(/, "performanceHint")
+# Property text (string)
+property_reader("QStaticText", /::text\s*\(/, "text")
+property_writer("QStaticText", /::setText\s*\(/, "text")
+# Property textFormat (Qt_TextFormat)
+property_reader("QStaticText", /::textFormat\s*\(/, "textFormat")
+property_writer("QStaticText", /::setTextFormat\s*\(/, "textFormat")
+# Property textOption (QTextOption)
+property_reader("QStaticText", /::textOption\s*\(/, "textOption")
+property_writer("QStaticText", /::setTextOption\s*\(/, "textOption")
+# Property textWidth (double)
+property_reader("QStaticText", /::textWidth\s*\(/, "textWidth")
+property_writer("QStaticText", /::setTextWidth\s*\(/, "textWidth")
+# Property alphaBufferSize (int)
+property_reader("QSurfaceFormat", /::alphaBufferSize\s*\(/, "alphaBufferSize")
+property_writer("QSurfaceFormat", /::setAlphaBufferSize\s*\(/, "alphaBufferSize")
+# Property blueBufferSize (int)
+property_reader("QSurfaceFormat", /::blueBufferSize\s*\(/, "blueBufferSize")
+property_writer("QSurfaceFormat", /::setBlueBufferSize\s*\(/, "blueBufferSize")
+# Property colorSpace (QSurfaceFormat_ColorSpace)
+property_reader("QSurfaceFormat", /::colorSpace\s*\(/, "colorSpace")
+property_writer("QSurfaceFormat", /::setColorSpace\s*\(/, "colorSpace")
+# Property defaultFormat (QSurfaceFormat)
+property_reader("QSurfaceFormat", /::defaultFormat\s*\(/, "defaultFormat")
+property_writer("QSurfaceFormat", /::setDefaultFormat\s*\(/, "defaultFormat")
+# Property depthBufferSize (int)
+property_reader("QSurfaceFormat", /::depthBufferSize\s*\(/, "depthBufferSize")
+property_writer("QSurfaceFormat", /::setDepthBufferSize\s*\(/, "depthBufferSize")
+# Property greenBufferSize (int)
+property_reader("QSurfaceFormat", /::greenBufferSize\s*\(/, "greenBufferSize")
+property_writer("QSurfaceFormat", /::setGreenBufferSize\s*\(/, "greenBufferSize")
+# Property majorVersion (int)
+property_reader("QSurfaceFormat", /::majorVersion\s*\(/, "majorVersion")
+property_writer("QSurfaceFormat", /::setMajorVersion\s*\(/, "majorVersion")
+# Property minorVersion (int)
+property_reader("QSurfaceFormat", /::minorVersion\s*\(/, "minorVersion")
+property_writer("QSurfaceFormat", /::setMinorVersion\s*\(/, "minorVersion")
+# Property options (QSurfaceFormat_QFlags_FormatOption)
+property_reader("QSurfaceFormat", /::options\s*\(/, "options")
+property_writer("QSurfaceFormat", /::setOptions\s*\(/, "options")
+# Property profile (QSurfaceFormat_OpenGLContextProfile)
+property_reader("QSurfaceFormat", /::profile\s*\(/, "profile")
+property_writer("QSurfaceFormat", /::setProfile\s*\(/, "profile")
+# Property redBufferSize (int)
+property_reader("QSurfaceFormat", /::redBufferSize\s*\(/, "redBufferSize")
+property_writer("QSurfaceFormat", /::setRedBufferSize\s*\(/, "redBufferSize")
+# Property renderableType (QSurfaceFormat_RenderableType)
+property_reader("QSurfaceFormat", /::renderableType\s*\(/, "renderableType")
+property_writer("QSurfaceFormat", /::setRenderableType\s*\(/, "renderableType")
+# Property samples (int)
+property_reader("QSurfaceFormat", /::samples\s*\(/, "samples")
+property_writer("QSurfaceFormat", /::setSamples\s*\(/, "samples")
+# Property stencilBufferSize (int)
+property_reader("QSurfaceFormat", /::stencilBufferSize\s*\(/, "stencilBufferSize")
+property_writer("QSurfaceFormat", /::setStencilBufferSize\s*\(/, "stencilBufferSize")
+# Property stereo (bool)
+property_reader("QSurfaceFormat", /::stereo\s*\(/, "stereo")
+property_writer("QSurfaceFormat", /::setStereo\s*\(/, "stereo")
+# Property swapBehavior (QSurfaceFormat_SwapBehavior)
+property_reader("QSurfaceFormat", /::swapBehavior\s*\(/, "swapBehavior")
+property_writer("QSurfaceFormat", /::setSwapBehavior\s*\(/, "swapBehavior")
+# Property swapInterval (int)
+property_reader("QSurfaceFormat", /::swapInterval\s*\(/, "swapInterval")
+property_writer("QSurfaceFormat", /::setSwapInterval\s*\(/, "swapInterval")
+# Property document (QTextDocument_Native *)
+property_reader("QSyntaxHighlighter", /::document\s*\(/, "document")
+property_writer("QSyntaxHighlighter", /::setDocument\s*\(/, "document")
+# Property lineCount (int)
+property_reader("QTextBlock", /::lineCount\s*\(/, "lineCount")
+property_writer("QTextBlock", /::setLineCount\s*\(/, "lineCount")
+# Property revision (int)
+property_reader("QTextBlock", /::revision\s*\(/, "revision")
+property_writer("QTextBlock", /::setRevision\s*\(/, "revision")
+# Property userData (QTextBlockUserData_Native *)
+property_reader("QTextBlock", /::userData\s*\(/, "userData")
+property_writer("QTextBlock", /::setUserData\s*\(/, "userData")
+# Property userState (int)
+property_reader("QTextBlock", /::userState\s*\(/, "userState")
+property_writer("QTextBlock", /::setUserState\s*\(/, "userState")
+# Property visible (bool)
+property_reader("QTextBlock", /::isVisible\s*\(/, "visible")
+property_writer("QTextBlock", /::setVisible\s*\(/, "visible")
+# Property alignment (Qt_QFlags_AlignmentFlag)
+property_reader("QTextBlockFormat", /::alignment\s*\(/, "alignment")
+property_writer("QTextBlockFormat", /::setAlignment\s*\(/, "alignment")
+# Property bottomMargin (double)
+property_reader("QTextBlockFormat", /::bottomMargin\s*\(/, "bottomMargin")
+property_writer("QTextBlockFormat", /::setBottomMargin\s*\(/, "bottomMargin")
+# Property headingLevel (int)
+property_reader("QTextBlockFormat", /::headingLevel\s*\(/, "headingLevel")
+property_writer("QTextBlockFormat", /::setHeadingLevel\s*\(/, "headingLevel")
+# Property indent (int)
+property_reader("QTextBlockFormat", /::indent\s*\(/, "indent")
+property_writer("QTextBlockFormat", /::setIndent\s*\(/, "indent")
+# Property leftMargin (double)
+property_reader("QTextBlockFormat", /::leftMargin\s*\(/, "leftMargin")
+property_writer("QTextBlockFormat", /::setLeftMargin\s*\(/, "leftMargin")
+# Property nonBreakableLines (bool)
+property_reader("QTextBlockFormat", /::nonBreakableLines\s*\(/, "nonBreakableLines")
+property_writer("QTextBlockFormat", /::setNonBreakableLines\s*\(/, "nonBreakableLines")
+# Property pageBreakPolicy (QTextFormat_QFlags_PageBreakFlag)
+property_reader("QTextBlockFormat", /::pageBreakPolicy\s*\(/, "pageBreakPolicy")
+property_writer("QTextBlockFormat", /::setPageBreakPolicy\s*\(/, "pageBreakPolicy")
+# Property rightMargin (double)
+property_reader("QTextBlockFormat", /::rightMargin\s*\(/, "rightMargin")
+property_writer("QTextBlockFormat", /::setRightMargin\s*\(/, "rightMargin")
+# Property tabPositions (QTextOption_Tab[])
+property_reader("QTextBlockFormat", /::tabPositions\s*\(/, "tabPositions")
+property_writer("QTextBlockFormat", /::setTabPositions\s*\(/, "tabPositions")
+# Property textIndent (double)
+property_reader("QTextBlockFormat", /::textIndent\s*\(/, "textIndent")
+property_writer("QTextBlockFormat", /::setTextIndent\s*\(/, "textIndent")
+# Property topMargin (double)
+property_reader("QTextBlockFormat", /::topMargin\s*\(/, "topMargin")
+property_writer("QTextBlockFormat", /::setTopMargin\s*\(/, "topMargin")
+# Property anchor (bool)
+property_reader("QTextCharFormat", /::isAnchor\s*\(/, "anchor")
+property_writer("QTextCharFormat", /::setAnchor\s*\(/, "anchor")
+# Property anchorHref (string)
+property_reader("QTextCharFormat", /::anchorHref\s*\(/, "anchorHref")
+property_writer("QTextCharFormat", /::setAnchorHref\s*\(/, "anchorHref")
+# Property anchorName (string)
+property_reader("QTextCharFormat", /::anchorName\s*\(/, "anchorName")
+property_writer("QTextCharFormat", /::setAnchorName\s*\(/, "anchorName")
+# Property anchorNames (string[])
+property_reader("QTextCharFormat", /::anchorNames\s*\(/, "anchorNames")
+property_writer("QTextCharFormat", /::setAnchorNames\s*\(/, "anchorNames")
+# Property font (QFont)
+property_reader("QTextCharFormat", /::font\s*\(/, "font")
+property_writer("QTextCharFormat", /::setFont\s*\(/, "font")
+# Property fontCapitalization (QFont_Capitalization)
+property_reader("QTextCharFormat", /::fontCapitalization\s*\(/, "fontCapitalization")
+property_writer("QTextCharFormat", /::setFontCapitalization\s*\(/, "fontCapitalization")
+# Property fontFamily (string)
+property_reader("QTextCharFormat", /::fontFamily\s*\(/, "fontFamily")
+property_writer("QTextCharFormat", /::setFontFamily\s*\(/, "fontFamily")
+# Property fontFixedPitch (bool)
+property_reader("QTextCharFormat", /::fontFixedPitch\s*\(/, "fontFixedPitch")
+property_writer("QTextCharFormat", /::setFontFixedPitch\s*\(/, "fontFixedPitch")
+# Property fontHintingPreference (QFont_HintingPreference)
+property_reader("QTextCharFormat", /::fontHintingPreference\s*\(/, "fontHintingPreference")
+property_writer("QTextCharFormat", /::setFontHintingPreference\s*\(/, "fontHintingPreference")
+# Property fontItalic (bool)
+property_reader("QTextCharFormat", /::fontItalic\s*\(/, "fontItalic")
+property_writer("QTextCharFormat", /::setFontItalic\s*\(/, "fontItalic")
+# Property fontKerning (bool)
+property_reader("QTextCharFormat", /::fontKerning\s*\(/, "fontKerning")
+property_writer("QTextCharFormat", /::setFontKerning\s*\(/, "fontKerning")
+# Property fontLetterSpacing (double)
+property_reader("QTextCharFormat", /::fontLetterSpacing\s*\(/, "fontLetterSpacing")
+property_writer("QTextCharFormat", /::setFontLetterSpacing\s*\(/, "fontLetterSpacing")
+# Property fontLetterSpacingType (QFont_SpacingType)
+property_reader("QTextCharFormat", /::fontLetterSpacingType\s*\(/, "fontLetterSpacingType")
+property_writer("QTextCharFormat", /::setFontLetterSpacingType\s*\(/, "fontLetterSpacingType")
+# Property fontOverline (bool)
+property_reader("QTextCharFormat", /::fontOverline\s*\(/, "fontOverline")
+property_writer("QTextCharFormat", /::setFontOverline\s*\(/, "fontOverline")
+# Property fontPointSize (double)
+property_reader("QTextCharFormat", /::fontPointSize\s*\(/, "fontPointSize")
+property_writer("QTextCharFormat", /::setFontPointSize\s*\(/, "fontPointSize")
+# Property fontStretch (int)
+property_reader("QTextCharFormat", /::fontStretch\s*\(/, "fontStretch")
+property_writer("QTextCharFormat", /::setFontStretch\s*\(/, "fontStretch")
+# Property fontStrikeOut (bool)
+property_reader("QTextCharFormat", /::fontStrikeOut\s*\(/, "fontStrikeOut")
+property_writer("QTextCharFormat", /::setFontStrikeOut\s*\(/, "fontStrikeOut")
+# Property fontStyleHint (QFont_StyleHint)
+property_reader("QTextCharFormat", /::fontStyleHint\s*\(/, "fontStyleHint")
+property_writer("QTextCharFormat", /::setFontStyleHint\s*\(/, "fontStyleHint")
+# Property fontStyleStrategy (QFont_StyleStrategy)
+property_reader("QTextCharFormat", /::fontStyleStrategy\s*\(/, "fontStyleStrategy")
+property_writer("QTextCharFormat", /::setFontStyleStrategy\s*\(/, "fontStyleStrategy")
+# Property fontUnderline (bool)
+property_reader("QTextCharFormat", /::fontUnderline\s*\(/, "fontUnderline")
+property_writer("QTextCharFormat", /::setFontUnderline\s*\(/, "fontUnderline")
+# Property fontWeight (int)
+property_reader("QTextCharFormat", /::fontWeight\s*\(/, "fontWeight")
+property_writer("QTextCharFormat", /::setFontWeight\s*\(/, "fontWeight")
+# Property fontWordSpacing (double)
+property_reader("QTextCharFormat", /::fontWordSpacing\s*\(/, "fontWordSpacing")
+property_writer("QTextCharFormat", /::setFontWordSpacing\s*\(/, "fontWordSpacing")
+# Property tableCellColumnSpan (int)
+property_reader("QTextCharFormat", /::tableCellColumnSpan\s*\(/, "tableCellColumnSpan")
+property_writer("QTextCharFormat", /::setTableCellColumnSpan\s*\(/, "tableCellColumnSpan")
+# Property tableCellRowSpan (int)
+property_reader("QTextCharFormat", /::tableCellRowSpan\s*\(/, "tableCellRowSpan")
+property_writer("QTextCharFormat", /::setTableCellRowSpan\s*\(/, "tableCellRowSpan")
+# Property textOutline (QPen)
+property_reader("QTextCharFormat", /::textOutline\s*\(/, "textOutline")
+property_writer("QTextCharFormat", /::setTextOutline\s*\(/, "textOutline")
+# Property toolTip (string)
+property_reader("QTextCharFormat", /::toolTip\s*\(/, "toolTip")
+property_writer("QTextCharFormat", /::setToolTip\s*\(/, "toolTip")
+# Property underlineColor (QColor)
+property_reader("QTextCharFormat", /::underlineColor\s*\(/, "underlineColor")
+property_writer("QTextCharFormat", /::setUnderlineColor\s*\(/, "underlineColor")
+# Property underlineStyle (QTextCharFormat_UnderlineStyle)
+property_reader("QTextCharFormat", /::underlineStyle\s*\(/, "underlineStyle")
+property_writer("QTextCharFormat", /::setUnderlineStyle\s*\(/, "underlineStyle")
+# Property verticalAlignment (QTextCharFormat_VerticalAlignment)
+property_reader("QTextCharFormat", /::verticalAlignment\s*\(/, "verticalAlignment")
+property_writer("QTextCharFormat", /::setVerticalAlignment\s*\(/, "verticalAlignment")
+# Property blockCharFormat (QTextCharFormat)
+property_reader("QTextCursor", /::blockCharFormat\s*\(/, "blockCharFormat")
+property_writer("QTextCursor", /::setBlockCharFormat\s*\(/, "blockCharFormat")
+# Property blockFormat (QTextBlockFormat)
+property_reader("QTextCursor", /::blockFormat\s*\(/, "blockFormat")
+property_writer("QTextCursor", /::setBlockFormat\s*\(/, "blockFormat")
+# Property charFormat (QTextCharFormat)
+property_reader("QTextCursor", /::charFormat\s*\(/, "charFormat")
+property_writer("QTextCursor", /::setCharFormat\s*\(/, "charFormat")
+# Property keepPositionOnInsert (bool)
+property_reader("QTextCursor", /::keepPositionOnInsert\s*\(/, "keepPositionOnInsert")
+property_writer("QTextCursor", /::setKeepPositionOnInsert\s*\(/, "keepPositionOnInsert")
+# Property position (int)
+property_reader("QTextCursor", /::position\s*\(/, "position")
+property_writer("QTextCursor", /::setPosition\s*\(/, "position")
+# Property verticalMovementX (int)
+property_reader("QTextCursor", /::verticalMovementX\s*\(/, "verticalMovementX")
+property_writer("QTextCursor", /::setVerticalMovementX\s*\(/, "verticalMovementX")
+# Property visualNavigation (bool)
+property_reader("QTextCursor", /::visualNavigation\s*\(/, "visualNavigation")
+property_writer("QTextCursor", /::setVisualNavigation\s*\(/, "visualNavigation")
+# Property defaultCursorMoveStyle (Qt_CursorMoveStyle)
+property_reader("QTextDocument", /::defaultCursorMoveStyle\s*\(/, "defaultCursorMoveStyle")
+property_writer("QTextDocument", /::setDefaultCursorMoveStyle\s*\(/, "defaultCursorMoveStyle")
+# Property defaultTextOption (QTextOption)
+property_reader("QTextDocument", /::defaultTextOption\s*\(/, "defaultTextOption")
+property_writer("QTextDocument", /::setDefaultTextOption\s*\(/, "defaultTextOption")
+# Property documentLayout (QAbstractTextDocumentLayout_Native *)
+property_reader("QTextDocument", /::documentLayout\s*\(/, "documentLayout")
+property_writer("QTextDocument", /::setDocumentLayout\s*\(/, "documentLayout")
+# Property codec (QTextCodec_Native *)
+property_reader("QTextDocumentWriter", /::codec\s*\(/, "codec")
+property_writer("QTextDocumentWriter", /::setCodec\s*\(/, "codec")
+# Property device (QIODevice *)
+property_reader("QTextDocumentWriter", /::device\s*\(/, "device")
+property_writer("QTextDocumentWriter", /::setDevice\s*\(/, "device")
+# Property fileName (string)
+property_reader("QTextDocumentWriter", /::fileName\s*\(/, "fileName")
+property_writer("QTextDocumentWriter", /::setFileName\s*\(/, "fileName")
+# Property format (byte array)
+property_reader("QTextDocumentWriter", /::format\s*\(/, "format")
+property_writer("QTextDocumentWriter", /::setFormat\s*\(/, "format")
+# Property background (QBrush)
+property_reader("QTextFormat", /::background\s*\(/, "background")
+property_writer("QTextFormat", /::setBackground\s*\(/, "background")
+# Property foreground (QBrush)
+property_reader("QTextFormat", /::foreground\s*\(/, "foreground")
+property_writer("QTextFormat", /::setForeground\s*\(/, "foreground")
+# Property layoutDirection (Qt_LayoutDirection)
+property_reader("QTextFormat", /::layoutDirection\s*\(/, "layoutDirection")
+property_writer("QTextFormat", /::setLayoutDirection\s*\(/, "layoutDirection")
+# Property objectIndex (int)
+property_reader("QTextFormat", /::objectIndex\s*\(/, "objectIndex")
+property_writer("QTextFormat", /::setObjectIndex\s*\(/, "objectIndex")
+# Property objectType (int)
+property_reader("QTextFormat", /::objectType\s*\(/, "objectType")
+property_writer("QTextFormat", /::setObjectType\s*\(/, "objectType")
+# Property frameFormat (QTextFrameFormat)
+property_reader("QTextFrame", /::frameFormat\s*\(/, "frameFormat")
+property_writer("QTextFrame", /::setFrameFormat\s*\(/, "frameFormat")
+# Property border (double)
+property_reader("QTextFrameFormat", /::border\s*\(/, "border")
+property_writer("QTextFrameFormat", /::setBorder\s*\(/, "border")
+# Property borderBrush (QBrush)
+property_reader("QTextFrameFormat", /::borderBrush\s*\(/, "borderBrush")
+property_writer("QTextFrameFormat", /::setBorderBrush\s*\(/, "borderBrush")
+# Property borderStyle (QTextFrameFormat_BorderStyle)
+property_reader("QTextFrameFormat", /::borderStyle\s*\(/, "borderStyle")
+property_writer("QTextFrameFormat", /::setBorderStyle\s*\(/, "borderStyle")
+# Property bottomMargin (double)
+property_reader("QTextFrameFormat", /::bottomMargin\s*\(/, "bottomMargin")
+property_writer("QTextFrameFormat", /::setBottomMargin\s*\(/, "bottomMargin")
+# Property leftMargin (double)
+property_reader("QTextFrameFormat", /::leftMargin\s*\(/, "leftMargin")
+property_writer("QTextFrameFormat", /::setLeftMargin\s*\(/, "leftMargin")
+# Property margin (double)
+property_reader("QTextFrameFormat", /::margin\s*\(/, "margin")
+property_writer("QTextFrameFormat", /::setMargin\s*\(/, "margin")
+# Property padding (double)
+property_reader("QTextFrameFormat", /::padding\s*\(/, "padding")
+property_writer("QTextFrameFormat", /::setPadding\s*\(/, "padding")
+# Property pageBreakPolicy (QTextFormat_QFlags_PageBreakFlag)
+property_reader("QTextFrameFormat", /::pageBreakPolicy\s*\(/, "pageBreakPolicy")
+property_writer("QTextFrameFormat", /::setPageBreakPolicy\s*\(/, "pageBreakPolicy")
+# Property position (QTextFrameFormat_Position)
+property_reader("QTextFrameFormat", /::position\s*\(/, "position")
+property_writer("QTextFrameFormat", /::setPosition\s*\(/, "position")
+# Property rightMargin (double)
+property_reader("QTextFrameFormat", /::rightMargin\s*\(/, "rightMargin")
+property_writer("QTextFrameFormat", /::setRightMargin\s*\(/, "rightMargin")
+# Property topMargin (double)
+property_reader("QTextFrameFormat", /::topMargin\s*\(/, "topMargin")
+property_writer("QTextFrameFormat", /::setTopMargin\s*\(/, "topMargin")
+# Property height (double)
+property_reader("QTextImageFormat", /::height\s*\(/, "height")
+property_writer("QTextImageFormat", /::setHeight\s*\(/, "height")
+# Property name (string)
+property_reader("QTextImageFormat", /::name\s*\(/, "name")
+property_writer("QTextImageFormat", /::setName\s*\(/, "name")
+# Property quality (int)
+property_reader("QTextImageFormat", /::quality\s*\(/, "quality")
+property_writer("QTextImageFormat", /::setQuality\s*\(/, "quality")
+# Property width (double)
+property_reader("QTextImageFormat", /::width\s*\(/, "width")
+property_writer("QTextImageFormat", /::setWidth\s*\(/, "width")
+# Property ascent (double)
+property_reader("QTextInlineObject", /::ascent\s*\(/, "ascent")
+property_writer("QTextInlineObject", /::setAscent\s*\(/, "ascent")
+# Property descent (double)
+property_reader("QTextInlineObject", /::descent\s*\(/, "descent")
+property_writer("QTextInlineObject", /::setDescent\s*\(/, "descent")
+# Property width (double)
+property_reader("QTextInlineObject", /::width\s*\(/, "width")
+property_writer("QTextInlineObject", /::setWidth\s*\(/, "width")
+# Property additionalFormats (QTextLayout_FormatRange[])
+property_reader("QTextLayout", /::additionalFormats\s*\(/, "additionalFormats")
+property_writer("QTextLayout", /::setAdditionalFormats\s*\(/, "additionalFormats")
+# Property cacheEnabled (bool)
+property_reader("QTextLayout", /::cacheEnabled\s*\(/, "cacheEnabled")
+property_writer("QTextLayout", /::setCacheEnabled\s*\(/, "cacheEnabled")
+# Property cursorMoveStyle (Qt_CursorMoveStyle)
+property_reader("QTextLayout", /::cursorMoveStyle\s*\(/, "cursorMoveStyle")
+property_writer("QTextLayout", /::setCursorMoveStyle\s*\(/, "cursorMoveStyle")
+# Property font (QFont)
+property_reader("QTextLayout", /::font\s*\(/, "font")
+property_writer("QTextLayout", /::setFont\s*\(/, "font")
+# Property formats (QTextLayout_FormatRange[])
+property_reader("QTextLayout", /::formats\s*\(/, "formats")
+property_writer("QTextLayout", /::setFormats\s*\(/, "formats")
+# Property position (QPointF)
+property_reader("QTextLayout", /::position\s*\(/, "position")
+property_writer("QTextLayout", /::setPosition\s*\(/, "position")
+# Property text (string)
+property_reader("QTextLayout", /::text\s*\(/, "text")
+property_writer("QTextLayout", /::setText\s*\(/, "text")
+# Property textOption (QTextOption)
+property_reader("QTextLayout", /::textOption\s*\(/, "textOption")
+property_writer("QTextLayout", /::setTextOption\s*\(/, "textOption")
+# Property leadingIncluded (bool)
+property_reader("QTextLine", /::leadingIncluded\s*\(/, "leadingIncluded")
+property_writer("QTextLine", /::setLeadingIncluded\s*\(/, "leadingIncluded")
+# Property position (QPointF)
+property_reader("QTextLine", /::position\s*\(/, "position")
+property_writer("QTextLine", /::setPosition\s*\(/, "position")
+# Property format (QTextListFormat)
+property_reader("QTextList", /::format\s*\(/, "format")
+property_writer("QTextList", /::setFormat\s*\(/, "format")
+# Property indent (int)
+property_reader("QTextListFormat", /::indent\s*\(/, "indent")
+property_writer("QTextListFormat", /::setIndent\s*\(/, "indent")
+# Property numberPrefix (string)
+property_reader("QTextListFormat", /::numberPrefix\s*\(/, "numberPrefix")
+property_writer("QTextListFormat", /::setNumberPrefix\s*\(/, "numberPrefix")
+# Property numberSuffix (string)
+property_reader("QTextListFormat", /::numberSuffix\s*\(/, "numberSuffix")
+property_writer("QTextListFormat", /::setNumberSuffix\s*\(/, "numberSuffix")
+# Property style (QTextListFormat_Style)
+property_reader("QTextListFormat", /::style\s*\(/, "style")
+property_writer("QTextListFormat", /::setStyle\s*\(/, "style")
+# Property alignment (Qt_QFlags_AlignmentFlag)
+property_reader("QTextOption", /::alignment\s*\(/, "alignment")
+property_writer("QTextOption", /::setAlignment\s*\(/, "alignment")
+# Property flags (QTextOption_QFlags_Flag)
+property_reader("QTextOption", /::flags\s*\(/, "flags")
+property_writer("QTextOption", /::setFlags\s*\(/, "flags")
+# Property tabArray (double[])
+property_reader("QTextOption", /::tabArray\s*\(/, "tabArray")
+property_writer("QTextOption", /::setTabArray\s*\(/, "tabArray")
+# Property tabStop (double)
+property_reader("QTextOption", /::tabStop\s*\(/, "tabStop")
+property_writer("QTextOption", /::setTabStop\s*\(/, "tabStop")
+# Property tabStopDistance (double)
+property_reader("QTextOption", /::tabStopDistance\s*\(/, "tabStopDistance")
+property_writer("QTextOption", /::setTabStopDistance\s*\(/, "tabStopDistance")
+# Property tabs (QTextOption_Tab[])
+property_reader("QTextOption", /::tabs\s*\(/, "tabs")
+property_writer("QTextOption", /::setTabs\s*\(/, "tabs")
+# Property textDirection (Qt_LayoutDirection)
+property_reader("QTextOption", /::textDirection\s*\(/, "textDirection")
+property_writer("QTextOption", /::setTextDirection\s*\(/, "textDirection")
+# Property useDesignMetrics (bool)
+property_reader("QTextOption", /::useDesignMetrics\s*\(/, "useDesignMetrics")
+property_writer("QTextOption", /::setUseDesignMetrics\s*\(/, "useDesignMetrics")
+# Property wrapMode (QTextOption_WrapMode)
+property_reader("QTextOption", /::wrapMode\s*\(/, "wrapMode")
+property_writer("QTextOption", /::setWrapMode\s*\(/, "wrapMode")
+# Property format (QTextTableFormat)
+property_reader("QTextTable", /::format\s*\(/, "format")
+property_writer("QTextTable", /::setFormat\s*\(/, "format")
+# Property format (QTextCharFormat)
+property_reader("QTextTableCell", /::format\s*\(/, "format")
+property_writer("QTextTableCell", /::setFormat\s*\(/, "format")
+# Property bottomPadding (double)
+property_reader("QTextTableCellFormat", /::bottomPadding\s*\(/, "bottomPadding")
+property_writer("QTextTableCellFormat", /::setBottomPadding\s*\(/, "bottomPadding")
+# Property leftPadding (double)
+property_reader("QTextTableCellFormat", /::leftPadding\s*\(/, "leftPadding")
+property_writer("QTextTableCellFormat", /::setLeftPadding\s*\(/, "leftPadding")
+# Property rightPadding (double)
+property_reader("QTextTableCellFormat", /::rightPadding\s*\(/, "rightPadding")
+property_writer("QTextTableCellFormat", /::setRightPadding\s*\(/, "rightPadding")
+# Property topPadding (double)
+property_reader("QTextTableCellFormat", /::topPadding\s*\(/, "topPadding")
+property_writer("QTextTableCellFormat", /::setTopPadding\s*\(/, "topPadding")
+# Property alignment (Qt_QFlags_AlignmentFlag)
+property_reader("QTextTableFormat", /::alignment\s*\(/, "alignment")
+property_writer("QTextTableFormat", /::setAlignment\s*\(/, "alignment")
+# Property cellPadding (double)
+property_reader("QTextTableFormat", /::cellPadding\s*\(/, "cellPadding")
+property_writer("QTextTableFormat", /::setCellPadding\s*\(/, "cellPadding")
+# Property cellSpacing (double)
+property_reader("QTextTableFormat", /::cellSpacing\s*\(/, "cellSpacing")
+property_writer("QTextTableFormat", /::setCellSpacing\s*\(/, "cellSpacing")
+# Property columnWidthConstraints (QTextLength[])
+property_reader("QTextTableFormat", /::columnWidthConstraints\s*\(/, "columnWidthConstraints")
+property_writer("QTextTableFormat", /::setColumnWidthConstraints\s*\(/, "columnWidthConstraints")
+# Property columns (int)
+property_reader("QTextTableFormat", /::columns\s*\(/, "columns")
+property_writer("QTextTableFormat", /::setColumns\s*\(/, "columns")
+# Property headerRowCount (int)
+property_reader("QTextTableFormat", /::headerRowCount\s*\(/, "headerRowCount")
+property_writer("QTextTableFormat", /::setHeaderRowCount\s*\(/, "headerRowCount")
+# Property capabilities (QTouchDevice_QFlags_CapabilityFlag)
+property_reader("QTouchDevice", /::capabilities\s*\(/, "capabilities")
+property_writer("QTouchDevice", /::setCapabilities\s*\(/, "capabilities")
+# Property maximumTouchPoints (int)
+property_reader("QTouchDevice", /::maximumTouchPoints\s*\(/, "maximumTouchPoints")
+property_writer("QTouchDevice", /::setMaximumTouchPoints\s*\(/, "maximumTouchPoints")
+# Property name (string)
+property_reader("QTouchDevice", /::name\s*\(/, "name")
+property_writer("QTouchDevice", /::setName\s*\(/, "name")
+# Property type (QTouchDevice_DeviceType)
+property_reader("QTouchDevice", /::type\s*\(/, "type")
+property_writer("QTouchDevice", /::setType\s*\(/, "type")
+# Property device (QTouchDevice *)
+property_reader("QTouchEvent", /::device\s*\(/, "device")
+property_writer("QTouchEvent", /::setDevice\s*\(/, "device")
+# Property target (QObject_Native *)
+property_reader("QTouchEvent", /::target\s*\(/, "target")
+property_writer("QTouchEvent", /::setTarget\s*\(/, "target")
+# Property touchPointStates (Qt_QFlags_TouchPointState)
+property_reader("QTouchEvent", /::touchPointStates\s*\(/, "touchPointStates")
+property_writer("QTouchEvent", /::setTouchPointStates\s*\(/, "touchPointStates")
+# Property touchPoints (QTouchEvent_TouchPoint[])
+property_reader("QTouchEvent", /::touchPoints\s*\(/, "touchPoints")
+property_writer("QTouchEvent", /::setTouchPoints\s*\(/, "touchPoints")
+# Property window (QWindow_Native *)
+property_reader("QTouchEvent", /::window\s*\(/, "window")
+property_writer("QTouchEvent", /::setWindow\s*\(/, "window")
+# Property ellipseDiameters (QSizeF)
+property_reader("QTouchEvent_TouchPoint", /::ellipseDiameters\s*\(/, "ellipseDiameters")
+property_writer("QTouchEvent_TouchPoint", /::setEllipseDiameters\s*\(/, "ellipseDiameters")
+# Property flags (QTouchEvent_TouchPoint_QFlags_InfoFlag)
+property_reader("QTouchEvent_TouchPoint", /::flags\s*\(/, "flags")
+property_writer("QTouchEvent_TouchPoint", /::setFlags\s*\(/, "flags")
+# Property id (int)
+property_reader("QTouchEvent_TouchPoint", /::id\s*\(/, "id")
+property_writer("QTouchEvent_TouchPoint", /::setId\s*\(/, "id")
+# Property lastNormalizedPos (QPointF)
+property_reader("QTouchEvent_TouchPoint", /::lastNormalizedPos\s*\(/, "lastNormalizedPos")
+property_writer("QTouchEvent_TouchPoint", /::setLastNormalizedPos\s*\(/, "lastNormalizedPos")
+# Property lastPos (QPointF)
+property_reader("QTouchEvent_TouchPoint", /::lastPos\s*\(/, "lastPos")
+property_writer("QTouchEvent_TouchPoint", /::setLastPos\s*\(/, "lastPos")
+# Property lastScenePos (QPointF)
+property_reader("QTouchEvent_TouchPoint", /::lastScenePos\s*\(/, "lastScenePos")
+property_writer("QTouchEvent_TouchPoint", /::setLastScenePos\s*\(/, "lastScenePos")
+# Property lastScreenPos (QPointF)
+property_reader("QTouchEvent_TouchPoint", /::lastScreenPos\s*\(/, "lastScreenPos")
+property_writer("QTouchEvent_TouchPoint", /::setLastScreenPos\s*\(/, "lastScreenPos")
+# Property normalizedPos (QPointF)
+property_reader("QTouchEvent_TouchPoint", /::normalizedPos\s*\(/, "normalizedPos")
+property_writer("QTouchEvent_TouchPoint", /::setNormalizedPos\s*\(/, "normalizedPos")
+# Property pos (QPointF)
+property_reader("QTouchEvent_TouchPoint", /::pos\s*\(/, "pos")
+property_writer("QTouchEvent_TouchPoint", /::setPos\s*\(/, "pos")
+# Property pressure (double)
+property_reader("QTouchEvent_TouchPoint", /::pressure\s*\(/, "pressure")
+property_writer("QTouchEvent_TouchPoint", /::setPressure\s*\(/, "pressure")
+# Property rawScreenPositions (QPointF[])
+property_reader("QTouchEvent_TouchPoint", /::rawScreenPositions\s*\(/, "rawScreenPositions")
+property_writer("QTouchEvent_TouchPoint", /::setRawScreenPositions\s*\(/, "rawScreenPositions")
+# Property rect (QRectF)
+property_reader("QTouchEvent_TouchPoint", /::rect\s*\(/, "rect")
+property_writer("QTouchEvent_TouchPoint", /::setRect\s*\(/, "rect")
+# Property rotation (double)
+property_reader("QTouchEvent_TouchPoint", /::rotation\s*\(/, "rotation")
+property_writer("QTouchEvent_TouchPoint", /::setRotation\s*\(/, "rotation")
+# Property scenePos (QPointF)
+property_reader("QTouchEvent_TouchPoint", /::scenePos\s*\(/, "scenePos")
+property_writer("QTouchEvent_TouchPoint", /::setScenePos\s*\(/, "scenePos")
+# Property sceneRect (QRectF)
+property_reader("QTouchEvent_TouchPoint", /::sceneRect\s*\(/, "sceneRect")
+property_writer("QTouchEvent_TouchPoint", /::setSceneRect\s*\(/, "sceneRect")
+# Property screenPos (QPointF)
+property_reader("QTouchEvent_TouchPoint", /::screenPos\s*\(/, "screenPos")
+property_writer("QTouchEvent_TouchPoint", /::setScreenPos\s*\(/, "screenPos")
+# Property screenRect (QRectF)
+property_reader("QTouchEvent_TouchPoint", /::screenRect\s*\(/, "screenRect")
+property_writer("QTouchEvent_TouchPoint", /::setScreenRect\s*\(/, "screenRect")
+# Property startNormalizedPos (QPointF)
+property_reader("QTouchEvent_TouchPoint", /::startNormalizedPos\s*\(/, "startNormalizedPos")
+property_writer("QTouchEvent_TouchPoint", /::setStartNormalizedPos\s*\(/, "startNormalizedPos")
+# Property startPos (QPointF)
+property_reader("QTouchEvent_TouchPoint", /::startPos\s*\(/, "startPos")
+property_writer("QTouchEvent_TouchPoint", /::setStartPos\s*\(/, "startPos")
+# Property startScenePos (QPointF)
+property_reader("QTouchEvent_TouchPoint", /::startScenePos\s*\(/, "startScenePos")
+property_writer("QTouchEvent_TouchPoint", /::setStartScenePos\s*\(/, "startScenePos")
+# Property startScreenPos (QPointF)
+property_reader("QTouchEvent_TouchPoint", /::startScreenPos\s*\(/, "startScreenPos")
+property_writer("QTouchEvent_TouchPoint", /::setStartScreenPos\s*\(/, "startScreenPos")
+# Property velocity (QVector2D)
+property_reader("QTouchEvent_TouchPoint", /::velocity\s*\(/, "velocity")
+property_writer("QTouchEvent_TouchPoint", /::setVelocity\s*\(/, "velocity")
+# Property locale (QLocale)
+property_reader("QValidator", /::locale\s*\(/, "locale")
+property_writer("QValidator", /::setLocale\s*\(/, "locale")
+# Property x (float)
+property_reader("QVector2D", /::x\s*\(/, "x")
+property_writer("QVector2D", /::setX\s*\(/, "x")
+# Property y (float)
+property_reader("QVector2D", /::y\s*\(/, "y")
+property_writer("QVector2D", /::setY\s*\(/, "y")
+# Property x (float)
+property_reader("QVector3D", /::x\s*\(/, "x")
+property_writer("QVector3D", /::setX\s*\(/, "x")
+# Property y (float)
+property_reader("QVector3D", /::y\s*\(/, "y")
+property_writer("QVector3D", /::setY\s*\(/, "y")
+# Property z (float)
+property_reader("QVector3D", /::z\s*\(/, "z")
+property_writer("QVector3D", /::setZ\s*\(/, "z")
+# Property w (float)
+property_reader("QVector4D", /::w\s*\(/, "w")
+property_writer("QVector4D", /::setW\s*\(/, "w")
+# Property x (float)
+property_reader("QVector4D", /::x\s*\(/, "x")
+property_writer("QVector4D", /::setX\s*\(/, "x")
+# Property y (float)
+property_reader("QVector4D", /::y\s*\(/, "y")
+property_writer("QVector4D", /::setY\s*\(/, "y")
+# Property z (float)
+property_reader("QVector4D", /::z\s*\(/, "z")
+property_writer("QVector4D", /::setZ\s*\(/, "z")
+# Property baseSize (QSize)
+property_reader("QWindow", /::baseSize\s*\(/, "baseSize")
+property_writer("QWindow", /::setBaseSize\s*\(/, "baseSize")
+# Property cursor (QCursor)
+property_reader("QWindow", /::cursor\s*\(/, "cursor")
+property_writer("QWindow", /::setCursor\s*\(/, "cursor")
+# Property filePath (string)
+property_reader("QWindow", /::filePath\s*\(/, "filePath")
+property_writer("QWindow", /::setFilePath\s*\(/, "filePath")
+# Property format (QSurfaceFormat)
+property_reader("QWindow", /::format\s*\(/, "format")
+property_writer("QWindow", /::setFormat\s*\(/, "format")
+# Property framePosition (QPoint)
+property_reader("QWindow", /::framePosition\s*\(/, "framePosition")
+property_writer("QWindow", /::setFramePosition\s*\(/, "framePosition")
+# Property geometry (QRect)
+property_reader("QWindow", /::geometry\s*\(/, "geometry")
+property_writer("QWindow", /::setGeometry\s*\(/, "geometry")
+# Property icon (QIcon)
+property_reader("QWindow", /::icon\s*\(/, "icon")
+property_writer("QWindow", /::setIcon\s*\(/, "icon")
+# Property mask (QRegion)
+property_reader("QWindow", /::mask\s*\(/, "mask")
+property_writer("QWindow", /::setMask\s*\(/, "mask")
+# Property maximumSize (QSize)
+property_reader("QWindow", /::maximumSize\s*\(/, "maximumSize")
+property_writer("QWindow", /::setMaximumSize\s*\(/, "maximumSize")
+# Property minimumSize (QSize)
+property_reader("QWindow", /::minimumSize\s*\(/, "minimumSize")
+property_writer("QWindow", /::setMinimumSize\s*\(/, "minimumSize")
+# Property parent (QWindow_Native *)
+property_reader("QWindow", /::parent\s*\(/, "parent")
+property_writer("QWindow", /::setParent\s*\(/, "parent")
+# Property position (QPoint)
+property_reader("QWindow", /::position\s*\(/, "position")
+property_writer("QWindow", /::setPosition\s*\(/, "position")
+# Property screen (QScreen_Native *)
+property_reader("QWindow", /::screen\s*\(/, "screen")
+property_writer("QWindow", /::setScreen\s*\(/, "screen")
+# Property sizeIncrement (QSize)
+property_reader("QWindow", /::sizeIncrement\s*\(/, "sizeIncrement")
+property_writer("QWindow", /::setSizeIncrement\s*\(/, "sizeIncrement")
+# Property surfaceType (QSurface_SurfaceType)
+property_reader("QWindow", /::surfaceType\s*\(/, "surfaceType")
+property_writer("QWindow", /::setSurfaceType\s*\(/, "surfaceType")
+# Property windowState (Qt_WindowState)
+property_reader("QWindow", /::windowState\s*\(/, "windowState")
+property_writer("QWindow", /::setWindowState\s*\(/, "windowState")
+# Property windowStates (Qt_QFlags_WindowState)
+property_reader("QWindow", /::windowStates\s*\(/, "windowStates")
+property_writer("QWindow", /::setWindowStates\s*\(/, "windowStates")
+# Property brush (QBrush)
+property_reader("QAbstractGraphicsShapeItem", /::brush\s*\(/, "brush")
+property_writer("QAbstractGraphicsShapeItem", /::setBrush\s*\(/, "brush")
+# Property pen (QPen)
+property_reader("QAbstractGraphicsShapeItem", /::pen\s*\(/, "pen")
+property_writer("QAbstractGraphicsShapeItem", /::setPen\s*\(/, "pen")
+# Property currentIndex (QModelIndex)
+property_reader("QAbstractItemView", /::currentIndex\s*\(/, "currentIndex")
+property_writer("QAbstractItemView", /::setCurrentIndex\s*\(/, "currentIndex")
+# Property itemDelegate (QAbstractItemDelegate_Native *)
+property_reader("QAbstractItemView", /::itemDelegate\s*\(/, "itemDelegate")
+property_writer("QAbstractItemView", /::setItemDelegate\s*\(/, "itemDelegate")
+# Property model (QAbstractItemModel_Native *)
+property_reader("QAbstractItemView", /::model\s*\(/, "model")
+property_writer("QAbstractItemView", /::setModel\s*\(/, "model")
+# Property rootIndex (QModelIndex)
+property_reader("QAbstractItemView", /::rootIndex\s*\(/, "rootIndex")
+property_writer("QAbstractItemView", /::setRootIndex\s*\(/, "rootIndex")
+# Property selectionModel (QItemSelectionModel_Native *)
+property_reader("QAbstractItemView", /::selectionModel\s*\(/, "selectionModel")
+property_writer("QAbstractItemView", /::setSelectionModel\s*\(/, "selectionModel")
+# Property cornerWidget (QWidget_Native *)
+property_reader("QAbstractScrollArea", /::cornerWidget\s*\(/, "cornerWidget")
+property_writer("QAbstractScrollArea", /::setCornerWidget\s*\(/, "cornerWidget")
+# Property horizontalScrollBar (QScrollBar_Native *)
+property_reader("QAbstractScrollArea", /::horizontalScrollBar\s*\(/, "horizontalScrollBar")
+property_writer("QAbstractScrollArea", /::setHorizontalScrollBar\s*\(/, "horizontalScrollBar")
+# Property verticalScrollBar (QScrollBar_Native *)
+property_reader("QAbstractScrollArea", /::verticalScrollBar\s*\(/, "verticalScrollBar")
+property_writer("QAbstractScrollArea", /::setVerticalScrollBar\s*\(/, "verticalScrollBar")
+# Property viewport (QWidget_Native *)
+property_reader("QAbstractScrollArea", /::viewport\s*\(/, "viewport")
+property_writer("QAbstractScrollArea", /::setViewport\s*\(/, "viewport")
+# Property groupSeparatorShown (bool)
+property_reader("QAbstractSpinBox", /::isGroupSeparatorShown\s*\(/, "groupSeparatorShown")
+property_writer("QAbstractSpinBox", /::setGroupSeparatorShown\s*\(/, "groupSeparatorShown")
+# Property actionGroup (QActionGroup_Native *)
+property_reader("QAction", /::actionGroup\s*\(/, "actionGroup")
+property_writer("QAction", /::setActionGroup\s*\(/, "actionGroup")
+# Property data (variant)
+property_reader("QAction", /::data\s*\(/, "data")
+property_writer("QAction", /::setData\s*\(/, "data")
+# Property menu (QMenu_Native *)
+property_reader("QAction", /::menu\s*\(/, "menu")
+property_writer("QAction", /::setMenu\s*\(/, "menu")
+# Property separator (bool)
+property_reader("QAction", /::isSeparator\s*\(/, "separator")
+property_writer("QAction", /::setSeparator\s*\(/, "separator")
+# Property shortcuts (QKeySequence[])
+property_reader("QAction", /::shortcuts\s*\(/, "shortcuts")
+property_writer("QAction", /::setShortcuts\s*\(/, "shortcuts")
+# Property exclusive (bool)
+property_reader("QActionGroup", /::isExclusive\s*\(/, "exclusive")
+property_writer("QActionGroup", /::setExclusive\s*\(/, "exclusive")
+# Property activeWindow (QWidget_Native *)
+property_reader("QApplication", /::activeWindow\s*\(/, "activeWindow")
+property_writer("QApplication", /::setActiveWindow\s*\(/, "activeWindow")
+# Property colorSpec (int)
+property_reader("QApplication", /::colorSpec\s*\(/, "colorSpec")
+property_writer("QApplication", /::setColorSpec\s*\(/, "colorSpec")
+# Property font (QFont)
+property_reader("QApplication", /::font\s*\(/, "font")
+property_writer("QApplication", /::setFont\s*\(/, "font")
+# Property palette (QPalette)
+property_reader("QApplication", /::palette\s*\(/, "palette")
+property_writer("QApplication", /::setPalette\s*\(/, "palette")
+# Property style (QStyle_Native *)
+property_reader("QApplication", /::style\s*\(/, "style")
+property_writer("QApplication", /::setStyle\s*\(/, "style")
+# Property direction (QBoxLayout_Direction)
+property_reader("QBoxLayout", /::direction\s*\(/, "direction")
+property_writer("QBoxLayout", /::setDirection\s*\(/, "direction")
+# Property geometry (QRect)
+property_reader("QLayout", /::geometry\s*\(/, "geometry")
+property_writer("QBoxLayout", /::setGeometry\s*\(/, "geometry")
+# Property headerTextFormat (QTextCharFormat)
+property_reader("QCalendarWidget", /::headerTextFormat\s*\(/, "headerTextFormat")
+property_writer("QCalendarWidget", /::setHeaderTextFormat\s*\(/, "headerTextFormat")
+# Property checkState (Qt_CheckState)
+property_reader("QCheckBox", /::checkState\s*\(/, "checkState")
+property_writer("QCheckBox", /::setCheckState\s*\(/, "checkState")
+# Property columnWidths (int[])
+property_reader("QColumnView", /::columnWidths\s*\(/, "columnWidths")
+property_writer("QColumnView", /::setColumnWidths\s*\(/, "columnWidths")
+# Property model (QAbstractItemModel_Native *)
+property_reader("QAbstractItemView", /::model\s*\(/, "model")
+property_writer("QColumnView", /::setModel\s*\(/, "model")
+# Property previewWidget (QWidget_Native *)
+property_reader("QColumnView", /::previewWidget\s*\(/, "previewWidget")
+property_writer("QColumnView", /::setPreviewWidget\s*\(/, "previewWidget")
+# Property rootIndex (QModelIndex)
+property_reader("QAbstractItemView", /::rootIndex\s*\(/, "rootIndex")
+property_writer("QColumnView", /::setRootIndex\s*\(/, "rootIndex")
+# Property selectionModel (QItemSelectionModel_Native *)
+property_reader("QAbstractItemView", /::selectionModel\s*\(/, "selectionModel")
+property_writer("QColumnView", /::setSelectionModel\s*\(/, "selectionModel")
+# Property completer (QCompleter_Native *)
+property_reader("QComboBox", /::completer\s*\(/, "completer")
+property_writer("QComboBox", /::setCompleter\s*\(/, "completer")
+# Property itemDelegate (QAbstractItemDelegate_Native *)
+property_reader("QComboBox", /::itemDelegate\s*\(/, "itemDelegate")
+property_writer("QComboBox", /::setItemDelegate\s*\(/, "itemDelegate")
+# Property lineEdit (QLineEdit_Native *)
+property_reader("QComboBox", /::lineEdit\s*\(/, "lineEdit")
+property_writer("QComboBox", /::setLineEdit\s*\(/, "lineEdit")
+# Property model (QAbstractItemModel_Native *)
+property_reader("QComboBox", /::model\s*\(/, "model")
+property_writer("QComboBox", /::setModel\s*\(/, "model")
+# Property rootModelIndex (QModelIndex)
+property_reader("QComboBox", /::rootModelIndex\s*\(/, "rootModelIndex")
+property_writer("QComboBox", /::setRootModelIndex\s*\(/, "rootModelIndex")
+# Property validator (QValidator_Native *)
+property_reader("QComboBox", /::validator\s*\(/, "validator")
+property_writer("QComboBox", /::setValidator\s*\(/, "validator")
+# Property view (QAbstractItemView_Native *)
+property_reader("QComboBox", /::view\s*\(/, "view")
+property_writer("QComboBox", /::setView\s*\(/, "view")
+# Property model (QAbstractItemModel_Native *)
+property_reader("QCompleter", /::model\s*\(/, "model")
+property_writer("QCompleter", /::setModel\s*\(/, "model")
+# Property popup (QAbstractItemView_Native *)
+property_reader("QCompleter", /::popup\s*\(/, "popup")
+property_writer("QCompleter", /::setPopup\s*\(/, "popup")
+# Property widget (QWidget_Native *)
+property_reader("QCompleter", /::widget\s*\(/, "widget")
+property_writer("QCompleter", /::setWidget\s*\(/, "widget")
+# Property itemDelegate (QAbstractItemDelegate_Native *)
+property_reader("QDataWidgetMapper", /::itemDelegate\s*\(/, "itemDelegate")
+property_writer("QDataWidgetMapper", /::setItemDelegate\s*\(/, "itemDelegate")
+# Property model (QAbstractItemModel_Native *)
+property_reader("QDataWidgetMapper", /::model\s*\(/, "model")
+property_writer("QDataWidgetMapper", /::setModel\s*\(/, "model")
+# Property rootIndex (QModelIndex)
+property_reader("QDataWidgetMapper", /::rootIndex\s*\(/, "rootIndex")
+property_writer("QDataWidgetMapper", /::setRootIndex\s*\(/, "rootIndex")
+# Property calendarWidget (QCalendarWidget_Native *)
+property_reader("QDateTimeEdit", /::calendarWidget\s*\(/, "calendarWidget")
+property_writer("QDateTimeEdit", /::setCalendarWidget\s*\(/, "calendarWidget")
+# Property extension (QWidget_Native *)
+property_reader("QDialog", /::extension\s*\(/, "extension")
+property_writer("QDialog", /::setExtension\s*\(/, "extension")
+# Property orientation (Qt_Orientation)
+property_reader("QDialog", /::orientation\s*\(/, "orientation")
+property_writer("QDialog", /::setOrientation\s*\(/, "orientation")
+# Property result (int)
+property_reader("QDialog", /::result\s*\(/, "result")
+property_writer("QDialog", /::setResult\s*\(/, "result")
+# Property filter (QDir_QFlags_Filter)
+property_reader("QDirModel", /::filter\s*\(/, "filter")
+property_writer("QDirModel", /::setFilter\s*\(/, "filter")
+# Property iconProvider (QFileIconProvider_Native *)
+property_reader("QDirModel", /::iconProvider\s*\(/, "iconProvider")
+property_writer("QDirModel", /::setIconProvider\s*\(/, "iconProvider")
+# Property nameFilters (string[])
+property_reader("QDirModel", /::nameFilters\s*\(/, "nameFilters")
+property_writer("QDirModel", /::setNameFilters\s*\(/, "nameFilters")
+# Property parent (QObject_Native *)
+property_reader("QDirModel", /::parent\s*\(/, "parent")
+property_writer("QObject", /::setParent\s*\(/, "parent")
+# Property sorting (QDir_QFlags_SortFlag)
+property_reader("QDirModel", /::sorting\s*\(/, "sorting")
+property_writer("QDirModel", /::setSorting\s*\(/, "sorting")
+# Property titleBarWidget (QWidget_Native *)
+property_reader("QDockWidget", /::titleBarWidget\s*\(/, "titleBarWidget")
+property_writer("QDockWidget", /::setTitleBarWidget\s*\(/, "titleBarWidget")
+# Property widget (QWidget_Native *)
+property_reader("QDockWidget", /::widget\s*\(/, "widget")
+property_writer("QDockWidget", /::setWidget\s*\(/, "widget")
+# Property directoryUrl (QUrl)
+property_reader("QFileDialog", /::directoryUrl\s*\(/, "directoryUrl")
+property_writer("QFileDialog", /::setDirectoryUrl\s*\(/, "directoryUrl")
+# Property filter (QDir_QFlags_Filter)
+property_reader("QFileDialog", /::filter\s*\(/, "filter")
+property_writer("QFileDialog", /::setFilter\s*\(/, "filter")
+# Property history (string[])
+property_reader("QFileDialog", /::history\s*\(/, "history")
+property_writer("QFileDialog", /::setHistory\s*\(/, "history")
+# Property iconProvider (QFileIconProvider_Native *)
+property_reader("QFileDialog", /::iconProvider\s*\(/, "iconProvider")
+property_writer("QFileDialog", /::setIconProvider\s*\(/, "iconProvider")
+# Property itemDelegate (QAbstractItemDelegate_Native *)
+property_reader("QFileDialog", /::itemDelegate\s*\(/, "itemDelegate")
+property_writer("QFileDialog", /::setItemDelegate\s*\(/, "itemDelegate")
+# Property mimeTypeFilters (string[])
+property_reader("QFileDialog", /::mimeTypeFilters\s*\(/, "mimeTypeFilters")
+property_writer("QFileDialog", /::setMimeTypeFilters\s*\(/, "mimeTypeFilters")
+# Property nameFilters (string[])
+property_reader("QFileDialog", /::nameFilters\s*\(/, "nameFilters")
+property_writer("QFileDialog", /::setNameFilters\s*\(/, "nameFilters")
+# Property proxyModel (QAbstractProxyModel_Native *)
+property_reader("QFileDialog", /::proxyModel\s*\(/, "proxyModel")
+property_writer("QFileDialog", /::setProxyModel\s*\(/, "proxyModel")
+# Property sidebarUrls (QUrl[])
+property_reader("QFileDialog", /::sidebarUrls\s*\(/, "sidebarUrls")
+property_writer("QFileDialog", /::setSidebarUrls\s*\(/, "sidebarUrls")
+# Property options (QFileIconProvider_QFlags_Option)
+property_reader("QFileIconProvider", /::options\s*\(/, "options")
+property_writer("QFileIconProvider", /::setOptions\s*\(/, "options")
+# Property filter (QDir_QFlags_Filter)
+property_reader("QFileSystemModel", /::filter\s*\(/, "filter")
+property_writer("QFileSystemModel", /::setFilter\s*\(/, "filter")
+# Property iconProvider (QFileIconProvider_Native *)
+property_reader("QFileSystemModel", /::iconProvider\s*\(/, "iconProvider")
+property_writer("QFileSystemModel", /::setIconProvider\s*\(/, "iconProvider")
+# Property nameFilters (string[])
+property_reader("QFileSystemModel", /::nameFilters\s*\(/, "nameFilters")
+property_writer("QFileSystemModel", /::setNameFilters\s*\(/, "nameFilters")
+# Property parent (QObject_Native *)
+property_reader("QFileSystemModel", /::parent\s*\(/, "parent")
+property_writer("QObject", /::setParent\s*\(/, "parent")
+# Property widget (QWidget_Native *)
+property_reader("QFocusFrame", /::widget\s*\(/, "widget")
+property_writer("QFocusFrame", /::setWidget\s*\(/, "widget")
+# Property geometry (QRect)
+property_reader("QLayout", /::geometry\s*\(/, "geometry")
+property_writer("QFormLayout", /::setGeometry\s*\(/, "geometry")
+# Property frameStyle (int)
+property_reader("QFrame", /::frameStyle\s*\(/, "frameStyle")
+property_writer("QFrame", /::setFrameStyle\s*\(/, "frameStyle")
+# Property accepted (bool)
+property_reader("QGestureEvent", /::isAccepted\s*\(/, "accepted")
+property_writer("QGestureEvent", /::setAccepted\s*\(/, "accepted")
+# Property widget (QWidget_Native *)
+property_reader("QGestureEvent", /::widget\s*\(/, "widget")
+property_writer("QGestureEvent", /::setWidget\s*\(/, "widget")
# Property geometry (QRectF)
property_reader("QGraphicsLayoutItem", /::geometry\s*\(/, "geometry")
property_writer("QGraphicsAnchorLayout", /::setGeometry\s*\(/, "geometry")
@@ -12682,9 +14240,6 @@ property_writer("QGraphicsSimpleTextItem", /::setFont\s*\(/, "font")
# Property text (string)
property_reader("QGraphicsSimpleTextItem", /::text\s*\(/, "text")
property_writer("QGraphicsSimpleTextItem", /::setText\s*\(/, "text")
-# Property cachingEnabled (bool)
-property_reader("QGraphicsSvgItem", /::isCachingEnabled\s*\(/, "cachingEnabled")
-property_writer("QGraphicsSvgItem", /::setCachingEnabled\s*\(/, "cachingEnabled")
# Property defaultTextColor (QColor)
property_reader("QGraphicsTextItem", /::defaultTextColor\s*\(/, "defaultTextColor")
property_writer("QGraphicsTextItem", /::setDefaultTextColor\s*\(/, "defaultTextColor")
@@ -12733,15 +14288,6 @@ property_writer("QGridLayout", /::setOriginCorner\s*\(/, "originCorner")
# Property verticalSpacing (int)
property_reader("QGridLayout", /::verticalSpacing\s*\(/, "verticalSpacing")
property_writer("QGridLayout", /::setVerticalSpacing\s*\(/, "verticalSpacing")
-# Property desktopSettingsAware (bool)
-property_reader("QGuiApplication", /::desktopSettingsAware\s*\(/, "desktopSettingsAware")
-property_writer("QGuiApplication", /::setDesktopSettingsAware\s*\(/, "desktopSettingsAware")
-# Property font (QFont)
-property_reader("QGuiApplication", /::font\s*\(/, "font")
-property_writer("QGuiApplication", /::setFont\s*\(/, "font")
-# Property palette (QPalette)
-property_reader("QGuiApplication", /::palette\s*\(/, "palette")
-property_writer("QGuiApplication", /::setPalette\s*\(/, "palette")
# Property model (QAbstractItemModel_Native *)
property_reader("QAbstractItemView", /::model\s*\(/, "model")
property_writer("QHeaderView", /::setModel\s*\(/, "model")
@@ -12760,141 +14306,6 @@ property_writer("QHeaderView", /::setSectionsMovable\s*\(/, "sectionsMovable")
# Property sortIndicatorShown (bool)
property_reader("QHeaderView", /::isSortIndicatorShown\s*\(/, "sortIndicatorShown")
property_writer("QHeaderView", /::setSortIndicatorShown\s*\(/, "sortIndicatorShown")
-# Property scopeId (string)
-property_reader("QHostAddress", /::scopeId\s*\(/, "scopeId")
-property_writer("QHostAddress", /::setScopeId\s*\(/, "scopeId")
-# Property addresses (QHostAddress[])
-property_reader("QHostInfo", /::addresses\s*\(/, "addresses")
-property_writer("QHostInfo", /::setAddresses\s*\(/, "addresses")
-# Property error (QHostInfo_HostInfoError)
-property_reader("QHostInfo", /::error\s*\(/, "error")
-property_writer("QHostInfo", /::setError\s*\(/, "error")
-# Property errorString (string)
-property_reader("QHostInfo", /::errorString\s*\(/, "errorString")
-property_writer("QHostInfo", /::setErrorString\s*\(/, "errorString")
-# Property hostName (string)
-property_reader("QHostInfo", /::hostName\s*\(/, "hostName")
-property_writer("QHostInfo", /::setHostName\s*\(/, "hostName")
-# Property lookupId (int)
-property_reader("QHostInfo", /::lookupId\s*\(/, "lookupId")
-property_writer("QHostInfo", /::setLookupId\s*\(/, "lookupId")
-# Property boundary (string)
-property_reader("QHttpMultiPart", /::boundary\s*\(/, "boundary")
-property_writer("QHttpMultiPart", /::setBoundary\s*\(/, "boundary")
-# Property textModeEnabled (bool)
-property_reader("QIODevice", /::isTextModeEnabled\s*\(/, "textModeEnabled")
-property_writer("QIODevice", /::setTextModeEnabled\s*\(/, "textModeEnabled")
-# Property themeName (string)
-property_reader("QIcon", /::themeName\s*\(/, "themeName")
-property_writer("QIcon", /::setThemeName\s*\(/, "themeName")
-# Property themeSearchPaths (string[])
-property_reader("QIcon", /::themeSearchPaths\s*\(/, "themeSearchPaths")
-property_writer("QIcon", /::setThemeSearchPaths\s*\(/, "themeSearchPaths")
-# Property alphaChannel (QImage_Native)
-property_reader("QImage", /::alphaChannel\s*\(/, "alphaChannel")
-property_writer("QImage", /::setAlphaChannel\s*\(/, "alphaChannel")
-# Property colorCount (int)
-property_reader("QImage", /::colorCount\s*\(/, "colorCount")
-property_writer("QImage", /::setColorCount\s*\(/, "colorCount")
-# Property devicePixelRatio (double)
-property_reader("QImage", /::devicePixelRatio\s*\(/, "devicePixelRatio")
-property_writer("QImage", /::setDevicePixelRatio\s*\(/, "devicePixelRatio")
-# Property dotsPerMeterX (int)
-property_reader("QImage", /::dotsPerMeterX\s*\(/, "dotsPerMeterX")
-property_writer("QImage", /::setDotsPerMeterX\s*\(/, "dotsPerMeterX")
-# Property dotsPerMeterY (int)
-property_reader("QImage", /::dotsPerMeterY\s*\(/, "dotsPerMeterY")
-property_writer("QImage", /::setDotsPerMeterY\s*\(/, "dotsPerMeterY")
-# Property offset (QPoint)
-property_reader("QImage", /::offset\s*\(/, "offset")
-property_writer("QImage", /::setOffset\s*\(/, "offset")
-# Property imageSettings (QImageEncoderSettings)
-property_reader("QImageEncoderControl", /::imageSettings\s*\(/, "imageSettings")
-property_writer("QImageEncoderControl", /::setImageSettings\s*\(/, "imageSettings")
-# Property codec (string)
-property_reader("QImageEncoderSettings", /::codec\s*\(/, "codec")
-property_writer("QImageEncoderSettings", /::setCodec\s*\(/, "codec")
-# Property encodingOptions (map)
-property_reader("QImageEncoderSettings", /::encodingOptions\s*\(/, "encodingOptions")
-property_writer("QImageEncoderSettings", /::setEncodingOptions\s*\(/, "encodingOptions")
-# Property quality (QMultimedia_EncodingQuality)
-property_reader("QImageEncoderSettings", /::quality\s*\(/, "quality")
-property_writer("QImageEncoderSettings", /::setQuality\s*\(/, "quality")
-# Property resolution (QSize)
-property_reader("QImageEncoderSettings", /::resolution\s*\(/, "resolution")
-property_writer("QImageEncoderSettings", /::setResolution\s*\(/, "resolution")
-# Property device (QIODevice *)
-property_reader("QImageIOHandler", /::device\s*\(/, "device")
-property_writer("QImageIOHandler", /::setDevice\s*\(/, "device")
-# Property format (string)
-property_reader("QImageIOHandler", /::format\s*\(/, "format")
-property_writer("QImageIOHandler", /::setFormat\s*\(/, "format")
-# Property autoDetectImageFormat (bool)
-property_reader("QImageReader", /::autoDetectImageFormat\s*\(/, "autoDetectImageFormat")
-property_writer("QImageReader", /::setAutoDetectImageFormat\s*\(/, "autoDetectImageFormat")
-# Property autoTransform (bool)
-property_reader("QImageReader", /::autoTransform\s*\(/, "autoTransform")
-property_writer("QImageReader", /::setAutoTransform\s*\(/, "autoTransform")
-# Property backgroundColor (QColor)
-property_reader("QImageReader", /::backgroundColor\s*\(/, "backgroundColor")
-property_writer("QImageReader", /::setBackgroundColor\s*\(/, "backgroundColor")
-# Property clipRect (QRect)
-property_reader("QImageReader", /::clipRect\s*\(/, "clipRect")
-property_writer("QImageReader", /::setClipRect\s*\(/, "clipRect")
-# Property decideFormatFromContent (bool)
-property_reader("QImageReader", /::decideFormatFromContent\s*\(/, "decideFormatFromContent")
-property_writer("QImageReader", /::setDecideFormatFromContent\s*\(/, "decideFormatFromContent")
-# Property device (QIODevice *)
-property_reader("QImageReader", /::device\s*\(/, "device")
-property_writer("QImageReader", /::setDevice\s*\(/, "device")
-# Property fileName (string)
-property_reader("QImageReader", /::fileName\s*\(/, "fileName")
-property_writer("QImageReader", /::setFileName\s*\(/, "fileName")
-# Property format (string)
-property_reader("QImageReader", /::format\s*\(/, "format")
-property_writer("QImageReader", /::setFormat\s*\(/, "format")
-# Property quality (int)
-property_reader("QImageReader", /::quality\s*\(/, "quality")
-property_writer("QImageReader", /::setQuality\s*\(/, "quality")
-# Property scaledClipRect (QRect)
-property_reader("QImageReader", /::scaledClipRect\s*\(/, "scaledClipRect")
-property_writer("QImageReader", /::setScaledClipRect\s*\(/, "scaledClipRect")
-# Property scaledSize (QSize)
-property_reader("QImageReader", /::scaledSize\s*\(/, "scaledSize")
-property_writer("QImageReader", /::setScaledSize\s*\(/, "scaledSize")
-# Property compression (int)
-property_reader("QImageWriter", /::compression\s*\(/, "compression")
-property_writer("QImageWriter", /::setCompression\s*\(/, "compression")
-# Property description (string)
-property_reader("QImageWriter", /::description\s*\(/, "description")
-property_writer("QImageWriter", /::setDescription\s*\(/, "description")
-# Property device (QIODevice *)
-property_reader("QImageWriter", /::device\s*\(/, "device")
-property_writer("QImageWriter", /::setDevice\s*\(/, "device")
-# Property fileName (string)
-property_reader("QImageWriter", /::fileName\s*\(/, "fileName")
-property_writer("QImageWriter", /::setFileName\s*\(/, "fileName")
-# Property format (string)
-property_reader("QImageWriter", /::format\s*\(/, "format")
-property_writer("QImageWriter", /::setFormat\s*\(/, "format")
-# Property gamma (float)
-property_reader("QImageWriter", /::gamma\s*\(/, "gamma")
-property_writer("QImageWriter", /::setGamma\s*\(/, "gamma")
-# Property optimizedWrite (bool)
-property_reader("QImageWriter", /::optimizedWrite\s*\(/, "optimizedWrite")
-property_writer("QImageWriter", /::setOptimizedWrite\s*\(/, "optimizedWrite")
-# Property progressiveScanWrite (bool)
-property_reader("QImageWriter", /::progressiveScanWrite\s*\(/, "progressiveScanWrite")
-property_writer("QImageWriter", /::setProgressiveScanWrite\s*\(/, "progressiveScanWrite")
-# Property quality (int)
-property_reader("QImageWriter", /::quality\s*\(/, "quality")
-property_writer("QImageWriter", /::setQuality\s*\(/, "quality")
-# Property subType (string)
-property_reader("QImageWriter", /::subType\s*\(/, "subType")
-property_writer("QImageWriter", /::setSubType\s*\(/, "subType")
-# Property transformation (QImageIOHandler_QFlags_Transformation)
-property_reader("QImageWriter", /::transformation\s*\(/, "transformation")
-property_writer("QImageWriter", /::setTransformation\s*\(/, "transformation")
# Property cancelButtonText (string)
property_reader("QInputDialog", /::cancelButtonText\s*\(/, "cancelButtonText")
property_writer("QInputDialog", /::setCancelButtonText\s*\(/, "cancelButtonText")
@@ -12913,6 +14324,9 @@ property_writer("QInputDialog", /::setDoubleMaximum\s*\(/, "doubleMaximum")
# Property doubleMinimum (double)
property_reader("QInputDialog", /::doubleMinimum\s*\(/, "doubleMinimum")
property_writer("QInputDialog", /::setDoubleMinimum\s*\(/, "doubleMinimum")
+# Property doubleStep (double)
+property_reader("QInputDialog", /::doubleStep\s*\(/, "doubleStep")
+property_writer("QInputDialog", /::setDoubleStep\s*\(/, "doubleStep")
# Property doubleValue (double)
property_reader("QInputDialog", /::doubleValue\s*\(/, "doubleValue")
property_writer("QInputDialog", /::setDoubleValue\s*\(/, "doubleValue")
@@ -12946,33 +14360,12 @@ property_writer("QInputDialog", /::setTextEchoMode\s*\(/, "textEchoMode")
# Property textValue (string)
property_reader("QInputDialog", /::textValue\s*\(/, "textValue")
property_writer("QInputDialog", /::setTextValue\s*\(/, "textValue")
-# Property modifiers (Qt_QFlags_KeyboardModifier)
-property_reader("QInputEvent", /::modifiers\s*\(/, "modifiers")
-property_writer("QInputEvent", /::setModifiers\s*\(/, "modifiers")
-# Property timestamp (unsigned long)
-property_reader("QInputEvent", /::timestamp\s*\(/, "timestamp")
-property_writer("QInputEvent", /::setTimestamp\s*\(/, "timestamp")
-# Property inputItemRectangle (QRectF)
-property_reader("QInputMethod", /::inputItemRectangle\s*\(/, "inputItemRectangle")
-property_writer("QInputMethod", /::setInputItemRectangle\s*\(/, "inputItemRectangle")
-# Property inputItemTransform (QTransform)
-property_reader("QInputMethod", /::inputItemTransform\s*\(/, "inputItemTransform")
-property_writer("QInputMethod", /::setInputItemTransform\s*\(/, "inputItemTransform")
-# Property commitString (string)
-property_reader("QInputMethodEvent", /::commitString\s*\(/, "commitString")
-property_writer("QInputMethodEvent", /::setCommitString\s*\(/, "commitString")
# Property itemEditorFactory (QItemEditorFactory_Native *)
property_reader("QItemDelegate", /::itemEditorFactory\s*\(/, "itemEditorFactory")
property_writer("QItemDelegate", /::setItemEditorFactory\s*\(/, "itemEditorFactory")
# Property defaultFactory (QItemEditorFactory_Native *)
property_reader("QItemEditorFactory", /::defaultFactory\s*\(/, "defaultFactory")
property_writer("QItemEditorFactory", /::setDefaultFactory\s*\(/, "defaultFactory")
-# Property array (QJsonArray)
-property_reader("QJsonDocument", /::array\s*\(/, "array")
-property_writer("QJsonDocument", /::setArray\s*\(/, "array")
-# Property modifiers (Qt_QFlags_KeyboardModifier)
-property_reader("QKeyEvent", /::modifiers\s*\(/, "modifiers")
-property_writer("QInputEvent", /::setModifiers\s*\(/, "modifiers")
# Property buddy (QWidget_Native *)
property_reader("QLabel", /::buddy\s*\(/, "buddy")
property_writer("QLabel", /::setBuddy\s*\(/, "buddy")
@@ -12997,12 +14390,6 @@ property_writer("QLayoutItem", /::setAlignment\s*\(/, "alignment")
# Property geometry (QRect)
property_reader("QLayoutItem", /::geometry\s*\(/, "geometry")
property_writer("QLayoutItem", /::setGeometry\s*\(/, "geometry")
-# Property p1 (QPoint)
-property_reader("QLine", /::p1\s*\(/, "p1")
-property_writer("QLine", /::setP1\s*\(/, "p1")
-# Property p2 (QPoint)
-property_reader("QLine", /::p2\s*\(/, "p2")
-property_writer("QLine", /::setP2\s*\(/, "p2")
# Property completer (QCompleter_Native *)
property_reader("QLineEdit", /::completer\s*\(/, "completer")
property_writer("QLineEdit", /::setCompleter\s*\(/, "completer")
@@ -13012,30 +14399,15 @@ property_writer("QLineEdit", /::setTextMargins\s*\(/, "textMargins")
# Property validator (QValidator_Native *)
property_reader("QLineEdit", /::validator\s*\(/, "validator")
property_writer("QLineEdit", /::setValidator\s*\(/, "validator")
-# Property angle (double)
-property_reader("QLineF", /::angle\s*\(/, "angle")
-property_writer("QLineF", /::setAngle\s*\(/, "angle")
-# Property length (double)
-property_reader("QLineF", /::length\s*\(/, "length")
-property_writer("QLineF", /::setLength\s*\(/, "length")
-# Property p1 (QPointF)
-property_reader("QLineF", /::p1\s*\(/, "p1")
-property_writer("QLineF", /::setP1\s*\(/, "p1")
-# Property p2 (QPointF)
-property_reader("QLineF", /::p2\s*\(/, "p2")
-property_writer("QLineF", /::setP2\s*\(/, "p2")
-# Property finalStop (QPointF)
-property_reader("QLinearGradient", /::finalStop\s*\(/, "finalStop")
-property_writer("QLinearGradient", /::setFinalStop\s*\(/, "finalStop")
-# Property start (QPointF)
-property_reader("QLinearGradient", /::start\s*\(/, "start")
-property_writer("QLinearGradient", /::setStart\s*\(/, "start")
# Property rootIndex (QModelIndex)
property_reader("QAbstractItemView", /::rootIndex\s*\(/, "rootIndex")
property_writer("QListView", /::setRootIndex\s*\(/, "rootIndex")
# Property currentItem (QListWidgetItem_Native *)
property_reader("QListWidget", /::currentItem\s*\(/, "currentItem")
property_writer("QListWidget", /::setCurrentItem\s*\(/, "currentItem")
+# Property selectionModel (QItemSelectionModel_Native *)
+property_reader("QAbstractItemView", /::selectionModel\s*\(/, "selectionModel")
+property_writer("QListWidget", /::setSelectionModel\s*\(/, "selectionModel")
# Property background (QBrush)
property_reader("QListWidgetItem", /::background\s*\(/, "background")
property_writer("QListWidgetItem", /::setBackground\s*\(/, "background")
@@ -13084,21 +14456,6 @@ property_writer("QListWidgetItem", /::setToolTip\s*\(/, "toolTip")
# Property whatsThis (string)
property_reader("QListWidgetItem", /::whatsThis\s*\(/, "whatsThis")
property_writer("QListWidgetItem", /::setWhatsThis\s*\(/, "whatsThis")
-# Property maxPendingConnections (int)
-property_reader("QLocalServer", /::maxPendingConnections\s*\(/, "maxPendingConnections")
-property_writer("QLocalServer", /::setMaxPendingConnections\s*\(/, "maxPendingConnections")
-# Property readBufferSize (long long)
-property_reader("QLocalSocket", /::readBufferSize\s*\(/, "readBufferSize")
-property_writer("QLocalSocket", /::setReadBufferSize\s*\(/, "readBufferSize")
-# Property serverName (string)
-property_reader("QLocalSocket", /::serverName\s*\(/, "serverName")
-property_writer("QLocalSocket", /::setServerName\s*\(/, "serverName")
-# Property numberOptions (QLocale_QFlags_NumberOption)
-property_reader("QLocale", /::numberOptions\s*\(/, "numberOptions")
-property_writer("QLocale", /::setNumberOptions\s*\(/, "numberOptions")
-# Property staleLockTime (int)
-property_reader("QLockFile", /::staleLockTime\s*\(/, "staleLockTime")
-property_writer("QLockFile", /::setStaleLockTime\s*\(/, "staleLockTime")
# Property centralWidget (QWidget_Native *)
property_reader("QMainWindow", /::centralWidget\s*\(/, "centralWidget")
property_writer("QMainWindow", /::setCentralWidget\s*\(/, "centralWidget")
@@ -13111,36 +14468,6 @@ property_writer("QMainWindow", /::setMenuWidget\s*\(/, "menuWidget")
# Property statusBar (QStatusBar_Native *)
property_reader("QMainWindow", /::statusBar\s*\(/, "statusBar")
property_writer("QMainWindow", /::setStatusBar\s*\(/, "statusBar")
-# Property color (QMapNodeBase_Color)
-property_reader("QMapNodeBase", /::color\s*\(/, "color")
-property_writer("QMapNodeBase", /::setColor\s*\(/, "color")
-# Property parent (QMapNodeBase *)
-property_reader("QMapNodeBase", /::parent\s*\(/, "parent")
-property_writer("QMapNodeBase", /::setParent\s*\(/, "parent")
-# Property bottom (int)
-property_reader("QMargins", /::bottom\s*\(/, "bottom")
-property_writer("QMargins", /::setBottom\s*\(/, "bottom")
-# Property left (int)
-property_reader("QMargins", /::left\s*\(/, "left")
-property_writer("QMargins", /::setLeft\s*\(/, "left")
-# Property right (int)
-property_reader("QMargins", /::right\s*\(/, "right")
-property_writer("QMargins", /::setRight\s*\(/, "right")
-# Property top (int)
-property_reader("QMargins", /::top\s*\(/, "top")
-property_writer("QMargins", /::setTop\s*\(/, "top")
-# Property bottom (double)
-property_reader("QMarginsF", /::bottom\s*\(/, "bottom")
-property_writer("QMarginsF", /::setBottom\s*\(/, "bottom")
-# Property left (double)
-property_reader("QMarginsF", /::left\s*\(/, "left")
-property_writer("QMarginsF", /::setLeft\s*\(/, "left")
-# Property right (double)
-property_reader("QMarginsF", /::right\s*\(/, "right")
-property_writer("QMarginsF", /::setRight\s*\(/, "right")
-# Property top (double)
-property_reader("QMarginsF", /::top\s*\(/, "top")
-property_writer("QMarginsF", /::setTop\s*\(/, "top")
# Property activeSubWindow (QMdiSubWindow_Native *)
property_reader("QMdiArea", /::activeSubWindow\s*\(/, "activeSubWindow")
property_writer("QMdiArea", /::setActiveSubWindow\s*\(/, "activeSubWindow")
@@ -13150,72 +14477,6 @@ property_writer("QMdiSubWindow", /::setSystemMenu\s*\(/, "systemMenu")
# Property widget (QWidget_Native *)
property_reader("QMdiSubWindow", /::widget\s*\(/, "widget")
property_writer("QMdiSubWindow", /::setWidget\s*\(/, "widget")
-# Property containerFormat (string)
-property_reader("QMediaContainerControl", /::containerFormat\s*\(/, "containerFormat")
-property_writer("QMediaContainerControl", /::setContainerFormat\s*\(/, "containerFormat")
-# Property crossfadeTime (double)
-property_reader("QMediaGaplessPlaybackControl", /::crossfadeTime\s*\(/, "crossfadeTime")
-property_writer("QMediaGaplessPlaybackControl", /::setCrossfadeTime\s*\(/, "crossfadeTime")
-# Property nextMedia (QMediaContent)
-property_reader("QMediaGaplessPlaybackControl", /::nextMedia\s*\(/, "nextMedia")
-property_writer("QMediaGaplessPlaybackControl", /::setNextMedia\s*\(/, "nextMedia")
-# Property muted (bool)
-property_reader("QMediaPlayerControl", /::isMuted\s*\(/, "muted")
-property_writer("QMediaPlayerControl", /::setMuted\s*\(/, "muted")
-# Property playbackRate (double)
-property_reader("QMediaPlayerControl", /::playbackRate\s*\(/, "playbackRate")
-property_writer("QMediaPlayerControl", /::setPlaybackRate\s*\(/, "playbackRate")
-# Property position (long long)
-property_reader("QMediaPlayerControl", /::position\s*\(/, "position")
-property_writer("QMediaPlayerControl", /::setPosition\s*\(/, "position")
-# Property volume (int)
-property_reader("QMediaPlayerControl", /::volume\s*\(/, "volume")
-property_writer("QMediaPlayerControl", /::setVolume\s*\(/, "volume")
-# Property audioSettings (QAudioEncoderSettings)
-property_reader("QMediaRecorder", /::audioSettings\s*\(/, "audioSettings")
-property_writer("QMediaRecorder", /::setAudioSettings\s*\(/, "audioSettings")
-# Property containerFormat (string)
-property_reader("QMediaRecorder", /::containerFormat\s*\(/, "containerFormat")
-property_writer("QMediaRecorder", /::setContainerFormat\s*\(/, "containerFormat")
-# Property videoSettings (QVideoEncoderSettings)
-property_reader("QMediaRecorder", /::videoSettings\s*\(/, "videoSettings")
-property_writer("QMediaRecorder", /::setVideoSettings\s*\(/, "videoSettings")
-# Property muted (bool)
-property_reader("QMediaRecorderControl", /::isMuted\s*\(/, "muted")
-property_writer("QMediaRecorderControl", /::setMuted\s*\(/, "muted")
-# Property state (QMediaRecorder_State)
-property_reader("QMediaRecorderControl", /::state\s*\(/, "state")
-property_writer("QMediaRecorderControl", /::setState\s*\(/, "state")
-# Property volume (double)
-property_reader("QMediaRecorderControl", /::volume\s*\(/, "volume")
-property_writer("QMediaRecorderControl", /::setVolume\s*\(/, "volume")
-# Property audioBitRate (int)
-property_reader("QMediaResource", /::audioBitRate\s*\(/, "audioBitRate")
-property_writer("QMediaResource", /::setAudioBitRate\s*\(/, "audioBitRate")
-# Property audioCodec (string)
-property_reader("QMediaResource", /::audioCodec\s*\(/, "audioCodec")
-property_writer("QMediaResource", /::setAudioCodec\s*\(/, "audioCodec")
-# Property channelCount (int)
-property_reader("QMediaResource", /::channelCount\s*\(/, "channelCount")
-property_writer("QMediaResource", /::setChannelCount\s*\(/, "channelCount")
-# Property dataSize (long long)
-property_reader("QMediaResource", /::dataSize\s*\(/, "dataSize")
-property_writer("QMediaResource", /::setDataSize\s*\(/, "dataSize")
-# Property language (string)
-property_reader("QMediaResource", /::language\s*\(/, "language")
-property_writer("QMediaResource", /::setLanguage\s*\(/, "language")
-# Property resolution (QSize)
-property_reader("QMediaResource", /::resolution\s*\(/, "resolution")
-property_writer("QMediaResource", /::setResolution\s*\(/, "resolution")
-# Property sampleRate (int)
-property_reader("QMediaResource", /::sampleRate\s*\(/, "sampleRate")
-property_writer("QMediaResource", /::setSampleRate\s*\(/, "sampleRate")
-# Property videoBitRate (int)
-property_reader("QMediaResource", /::videoBitRate\s*\(/, "videoBitRate")
-property_writer("QMediaResource", /::setVideoBitRate\s*\(/, "videoBitRate")
-# Property videoCodec (string)
-property_reader("QMediaResource", /::videoCodec\s*\(/, "videoCodec")
-property_writer("QMediaResource", /::setVideoCodec\s*\(/, "videoCodec")
# Property activeAction (QAction_Native *)
property_reader("QMenu", /::activeAction\s*\(/, "activeAction")
property_writer("QMenu", /::setActiveAction\s*\(/, "activeAction")
@@ -13237,345 +14498,6 @@ property_writer("QMessageBox", /::setDefaultButton\s*\(/, "defaultButton")
# Property escapeButton (QAbstractButton_Native *)
property_reader("QMessageBox", /::escapeButton\s*\(/, "escapeButton")
property_writer("QMessageBox", /::setEscapeButton\s*\(/, "escapeButton")
-# Property colorData (variant)
-property_reader("QMimeData", /::colorData\s*\(/, "colorData")
-property_writer("QMimeData", /::setColorData\s*\(/, "colorData")
-# Property imageData (variant)
-property_reader("QMimeData", /::imageData\s*\(/, "imageData")
-property_writer("QMimeData", /::setImageData\s*\(/, "imageData")
-# Property backgroundColor (QColor)
-property_reader("QMovie", /::backgroundColor\s*\(/, "backgroundColor")
-property_writer("QMovie", /::setBackgroundColor\s*\(/, "backgroundColor")
-# Property device (QIODevice *)
-property_reader("QMovie", /::device\s*\(/, "device")
-property_writer("QMovie", /::setDevice\s*\(/, "device")
-# Property fileName (string)
-property_reader("QMovie", /::fileName\s*\(/, "fileName")
-property_writer("QMovie", /::setFileName\s*\(/, "fileName")
-# Property format (string)
-property_reader("QMovie", /::format\s*\(/, "format")
-property_writer("QMovie", /::setFormat\s*\(/, "format")
-# Property scaledSize (QSize)
-property_reader("QMovie", /::scaledSize\s*\(/, "scaledSize")
-property_writer("QMovie", /::setScaledSize\s*\(/, "scaledSize")
-# Property cache (QAbstractNetworkCache_Native *)
-property_reader("QNetworkAccessManager", /::cache\s*\(/, "cache")
-property_writer("QNetworkAccessManager", /::setCache\s*\(/, "cache")
-# Property configuration (QNetworkConfiguration)
-property_reader("QNetworkAccessManager", /::configuration\s*\(/, "configuration")
-property_writer("QNetworkAccessManager", /::setConfiguration\s*\(/, "configuration")
-# Property cookieJar (QNetworkCookieJar_Native *)
-property_reader("QNetworkAccessManager", /::cookieJar\s*\(/, "cookieJar")
-property_writer("QNetworkAccessManager", /::setCookieJar\s*\(/, "cookieJar")
-# Property proxy (QNetworkProxy)
-property_reader("QNetworkAccessManager", /::proxy\s*\(/, "proxy")
-property_writer("QNetworkAccessManager", /::setProxy\s*\(/, "proxy")
-# Property proxyFactory (QNetworkProxyFactory_Native *)
-property_reader("QNetworkAccessManager", /::proxyFactory\s*\(/, "proxyFactory")
-property_writer("QNetworkAccessManager", /::setProxyFactory\s*\(/, "proxyFactory")
-# Property broadcast (QHostAddress)
-property_reader("QNetworkAddressEntry", /::broadcast\s*\(/, "broadcast")
-property_writer("QNetworkAddressEntry", /::setBroadcast\s*\(/, "broadcast")
-# Property ip (QHostAddress)
-property_reader("QNetworkAddressEntry", /::ip\s*\(/, "ip")
-property_writer("QNetworkAddressEntry", /::setIp\s*\(/, "ip")
-# Property netmask (QHostAddress)
-property_reader("QNetworkAddressEntry", /::netmask\s*\(/, "netmask")
-property_writer("QNetworkAddressEntry", /::setNetmask\s*\(/, "netmask")
-# Property prefixLength (int)
-property_reader("QNetworkAddressEntry", /::prefixLength\s*\(/, "prefixLength")
-property_writer("QNetworkAddressEntry", /::setPrefixLength\s*\(/, "prefixLength")
-# Property expirationDate (QDateTime)
-property_reader("QNetworkCacheMetaData", /::expirationDate\s*\(/, "expirationDate")
-property_writer("QNetworkCacheMetaData", /::setExpirationDate\s*\(/, "expirationDate")
-# Property lastModified (QDateTime)
-property_reader("QNetworkCacheMetaData", /::lastModified\s*\(/, "lastModified")
-property_writer("QNetworkCacheMetaData", /::setLastModified\s*\(/, "lastModified")
-# Property rawHeaders (QPair_QByteArray_QByteArray[])
-property_reader("QNetworkCacheMetaData", /::rawHeaders\s*\(/, "rawHeaders")
-property_writer("QNetworkCacheMetaData", /::setRawHeaders\s*\(/, "rawHeaders")
-# Property saveToDisk (bool)
-property_reader("QNetworkCacheMetaData", /::saveToDisk\s*\(/, "saveToDisk")
-property_writer("QNetworkCacheMetaData", /::setSaveToDisk\s*\(/, "saveToDisk")
-# Property url (QUrl)
-property_reader("QNetworkCacheMetaData", /::url\s*\(/, "url")
-property_writer("QNetworkCacheMetaData", /::setUrl\s*\(/, "url")
-# Property domain (string)
-property_reader("QNetworkCookie", /::domain\s*\(/, "domain")
-property_writer("QNetworkCookie", /::setDomain\s*\(/, "domain")
-# Property expirationDate (QDateTime)
-property_reader("QNetworkCookie", /::expirationDate\s*\(/, "expirationDate")
-property_writer("QNetworkCookie", /::setExpirationDate\s*\(/, "expirationDate")
-# Property httpOnly (bool)
-property_reader("QNetworkCookie", /::isHttpOnly\s*\(/, "httpOnly")
-property_writer("QNetworkCookie", /::setHttpOnly\s*\(/, "httpOnly")
-# Property name (string)
-property_reader("QNetworkCookie", /::name\s*\(/, "name")
-property_writer("QNetworkCookie", /::setName\s*\(/, "name")
-# Property path (string)
-property_reader("QNetworkCookie", /::path\s*\(/, "path")
-property_writer("QNetworkCookie", /::setPath\s*\(/, "path")
-# Property secure (bool)
-property_reader("QNetworkCookie", /::isSecure\s*\(/, "secure")
-property_writer("QNetworkCookie", /::setSecure\s*\(/, "secure")
-# Property value (string)
-property_reader("QNetworkCookie", /::value\s*\(/, "value")
-property_writer("QNetworkCookie", /::setValue\s*\(/, "value")
-# Property cacheDirectory (string)
-property_reader("QNetworkDiskCache", /::cacheDirectory\s*\(/, "cacheDirectory")
-property_writer("QNetworkDiskCache", /::setCacheDirectory\s*\(/, "cacheDirectory")
-# Property maximumCacheSize (long long)
-property_reader("QNetworkDiskCache", /::maximumCacheSize\s*\(/, "maximumCacheSize")
-property_writer("QNetworkDiskCache", /::setMaximumCacheSize\s*\(/, "maximumCacheSize")
-# Property applicationProxy (QNetworkProxy)
-property_reader("QNetworkProxy", /::applicationProxy\s*\(/, "applicationProxy")
-property_writer("QNetworkProxy", /::setApplicationProxy\s*\(/, "applicationProxy")
-# Property capabilities (QNetworkProxy_QFlags_Capability)
-property_reader("QNetworkProxy", /::capabilities\s*\(/, "capabilities")
-property_writer("QNetworkProxy", /::setCapabilities\s*\(/, "capabilities")
-# Property hostName (string)
-property_reader("QNetworkProxy", /::hostName\s*\(/, "hostName")
-property_writer("QNetworkProxy", /::setHostName\s*\(/, "hostName")
-# Property password (string)
-property_reader("QNetworkProxy", /::password\s*\(/, "password")
-property_writer("QNetworkProxy", /::setPassword\s*\(/, "password")
-# Property port (unsigned short)
-property_reader("QNetworkProxy", /::port\s*\(/, "port")
-property_writer("QNetworkProxy", /::setPort\s*\(/, "port")
-# Property type (QNetworkProxy_ProxyType)
-property_reader("QNetworkProxy", /::type\s*\(/, "type")
-property_writer("QNetworkProxy", /::setType\s*\(/, "type")
-# Property user (string)
-property_reader("QNetworkProxy", /::user\s*\(/, "user")
-property_writer("QNetworkProxy", /::setUser\s*\(/, "user")
-# Property localPort (int)
-property_reader("QNetworkProxyQuery", /::localPort\s*\(/, "localPort")
-property_writer("QNetworkProxyQuery", /::setLocalPort\s*\(/, "localPort")
-# Property networkConfiguration (QNetworkConfiguration)
-property_reader("QNetworkProxyQuery", /::networkConfiguration\s*\(/, "networkConfiguration")
-property_writer("QNetworkProxyQuery", /::setNetworkConfiguration\s*\(/, "networkConfiguration")
-# Property peerHostName (string)
-property_reader("QNetworkProxyQuery", /::peerHostName\s*\(/, "peerHostName")
-property_writer("QNetworkProxyQuery", /::setPeerHostName\s*\(/, "peerHostName")
-# Property peerPort (int)
-property_reader("QNetworkProxyQuery", /::peerPort\s*\(/, "peerPort")
-property_writer("QNetworkProxyQuery", /::setPeerPort\s*\(/, "peerPort")
-# Property protocolTag (string)
-property_reader("QNetworkProxyQuery", /::protocolTag\s*\(/, "protocolTag")
-property_writer("QNetworkProxyQuery", /::setProtocolTag\s*\(/, "protocolTag")
-# Property queryType (QNetworkProxyQuery_QueryType)
-property_reader("QNetworkProxyQuery", /::queryType\s*\(/, "queryType")
-property_writer("QNetworkProxyQuery", /::setQueryType\s*\(/, "queryType")
-# Property url (QUrl)
-property_reader("QNetworkProxyQuery", /::url\s*\(/, "url")
-property_writer("QNetworkProxyQuery", /::setUrl\s*\(/, "url")
-# Property readBufferSize (long long)
-property_reader("QNetworkReply", /::readBufferSize\s*\(/, "readBufferSize")
-property_writer("QNetworkReply", /::setReadBufferSize\s*\(/, "readBufferSize")
-# Property sslConfiguration (QSslConfiguration)
-property_reader("QNetworkReply", /::sslConfiguration\s*\(/, "sslConfiguration")
-property_writer("QNetworkReply", /::setSslConfiguration\s*\(/, "sslConfiguration")
-# Property originatingObject (QObject_Native *)
-property_reader("QNetworkRequest", /::originatingObject\s*\(/, "originatingObject")
-property_writer("QNetworkRequest", /::setOriginatingObject\s*\(/, "originatingObject")
-# Property priority (QNetworkRequest_Priority)
-property_reader("QNetworkRequest", /::priority\s*\(/, "priority")
-property_writer("QNetworkRequest", /::setPriority\s*\(/, "priority")
-# Property sslConfiguration (QSslConfiguration)
-property_reader("QNetworkRequest", /::sslConfiguration\s*\(/, "sslConfiguration")
-property_writer("QNetworkRequest", /::setSslConfiguration\s*\(/, "sslConfiguration")
-# Property url (QUrl)
-property_reader("QNetworkRequest", /::url\s*\(/, "url")
-property_writer("QNetworkRequest", /::setUrl\s*\(/, "url")
-# Property objectName (string)
-property_reader("QObject", /::objectName\s*\(/, "objectName")
-property_writer("QObject", /::setObjectName\s*\(/, "objectName")
-# Property parent (QObject_Native *)
-property_reader("QObject", /::parent\s*\(/, "parent")
-property_writer("QObject", /::setParent\s*\(/, "parent")
-# Property format (QSurfaceFormat)
-property_reader("QOffscreenSurface", /::format\s*\(/, "format")
-property_writer("QOffscreenSurface", /::setFormat\s*\(/, "format")
-# Property screen (QScreen_Native *)
-property_reader("QOffscreenSurface", /::screen\s*\(/, "screen")
-property_writer("QOffscreenSurface", /::setScreen\s*\(/, "screen")
-# Property minimumMargins (QMarginsF)
-property_reader("QPageLayout", /::minimumMargins\s*\(/, "minimumMargins")
-property_writer("QPageLayout", /::setMinimumMargins\s*\(/, "minimumMargins")
-# Property mode (QPageLayout_Mode)
-property_reader("QPageLayout", /::mode\s*\(/, "mode")
-property_writer("QPageLayout", /::setMode\s*\(/, "mode")
-# Property orientation (QPageLayout_Orientation)
-property_reader("QPageLayout", /::orientation\s*\(/, "orientation")
-property_writer("QPageLayout", /::setOrientation\s*\(/, "orientation")
-# Property pageSize (QPageSize)
-property_reader("QPageLayout", /::pageSize\s*\(/, "pageSize")
-property_writer("QPageLayout", /::setPageSize\s*\(/, "pageSize")
-# Property units (QPageLayout_Unit)
-property_reader("QPageLayout", /::units\s*\(/, "units")
-property_writer("QPageLayout", /::setUnits\s*\(/, "units")
-# Property margins (QPagedPaintDevice_Margins)
-property_reader("QPagedPaintDevice", /::margins\s*\(/, "margins")
-property_writer("QPagedPaintDevice", /::setMargins\s*\(/, "margins")
-# Property pageSize (QPagedPaintDevice_PageSize)
-property_reader("QPagedPaintDevice", /::pageSize\s*\(/, "pageSize")
-property_writer("QPagedPaintDevice", /::setPageSize\s*\(/, "pageSize")
-# Property pageSizeMM (QSizeF)
-property_reader("QPagedPaintDevice", /::pageSizeMM\s*\(/, "pageSizeMM")
-property_writer("QPagedPaintDevice", /::setPageSizeMM\s*\(/, "pageSizeMM")
-# Property active (bool)
-property_reader("QPaintEngine", /::isActive\s*\(/, "active")
-property_writer("QPaintEngine", /::setActive\s*\(/, "active")
-# Property paintDevice (QPaintDevice_Native *)
-property_reader("QPaintEngine", /::paintDevice\s*\(/, "paintDevice")
-property_writer("QPaintEngine", /::setPaintDevice\s*\(/, "paintDevice")
-# Property systemClip (QRegion)
-property_reader("QPaintEngine", /::systemClip\s*\(/, "systemClip")
-property_writer("QPaintEngine", /::setSystemClip\s*\(/, "systemClip")
-# Property systemRect (QRect)
-property_reader("QPaintEngine", /::systemRect\s*\(/, "systemRect")
-property_writer("QPaintEngine", /::setSystemRect\s*\(/, "systemRect")
-# Property background (QBrush)
-property_reader("QPainter", /::background\s*\(/, "background")
-property_writer("QPainter", /::setBackground\s*\(/, "background")
-# Property backgroundMode (Qt_BGMode)
-property_reader("QPainter", /::backgroundMode\s*\(/, "backgroundMode")
-property_writer("QPainter", /::setBackgroundMode\s*\(/, "backgroundMode")
-# Property brush (QBrush)
-property_reader("QPainter", /::brush\s*\(/, "brush")
-property_writer("QPainter", /::setBrush\s*\(/, "brush")
-# Property brushOrigin (QPoint)
-property_reader("QPainter", /::brushOrigin\s*\(/, "brushOrigin")
-property_writer("QPainter", /::setBrushOrigin\s*\(/, "brushOrigin")
-# Property clipPath (QPainterPath)
-property_reader("QPainter", /::clipPath\s*\(/, "clipPath")
-property_writer("QPainter", /::setClipPath\s*\(/, "clipPath")
-# Property clipRegion (QRegion)
-property_reader("QPainter", /::clipRegion\s*\(/, "clipRegion")
-property_writer("QPainter", /::setClipRegion\s*\(/, "clipRegion")
-# Property clipping (bool)
-property_reader("QPainter", /::hasClipping\s*\(/, "clipping")
-property_writer("QPainter", /::setClipping\s*\(/, "clipping")
-# Property compositionMode (QPainter_CompositionMode)
-property_reader("QPainter", /::compositionMode\s*\(/, "compositionMode")
-property_writer("QPainter", /::setCompositionMode\s*\(/, "compositionMode")
-# Property font (QFont)
-property_reader("QPainter", /::font\s*\(/, "font")
-property_writer("QPainter", /::setFont\s*\(/, "font")
-# Property layoutDirection (Qt_LayoutDirection)
-property_reader("QPainter", /::layoutDirection\s*\(/, "layoutDirection")
-property_writer("QPainter", /::setLayoutDirection\s*\(/, "layoutDirection")
-# Property matrix (QMatrix)
-property_reader("QPainter", /::matrix\s*\(/, "matrix")
-property_writer("QPainter", /::setMatrix\s*\(/, "matrix")
-# Property matrixEnabled (bool)
-property_reader("QPainter", /::matrixEnabled\s*\(/, "matrixEnabled")
-property_writer("QPainter", /::setMatrixEnabled\s*\(/, "matrixEnabled")
-# Property opacity (double)
-property_reader("QPainter", /::opacity\s*\(/, "opacity")
-property_writer("QPainter", /::setOpacity\s*\(/, "opacity")
-# Property renderHints (QPainter_QFlags_RenderHint)
-property_reader("QPainter", /::renderHints\s*\(/, "renderHints")
-property_writer("QPainter", /::setRenderHints\s*\(/, "renderHints")
-# Property transform (QTransform)
-property_reader("QPainter", /::transform\s*\(/, "transform")
-property_writer("QPainter", /::setTransform\s*\(/, "transform")
-# Property viewTransformEnabled (bool)
-property_reader("QPainter", /::viewTransformEnabled\s*\(/, "viewTransformEnabled")
-property_writer("QPainter", /::setViewTransformEnabled\s*\(/, "viewTransformEnabled")
-# Property viewport (QRect)
-property_reader("QPainter", /::viewport\s*\(/, "viewport")
-property_writer("QPainter", /::setViewport\s*\(/, "viewport")
-# Property window (QRect)
-property_reader("QPainter", /::window\s*\(/, "window")
-property_writer("QPainter", /::setWindow\s*\(/, "window")
-# Property worldMatrix (QMatrix)
-property_reader("QPainter", /::worldMatrix\s*\(/, "worldMatrix")
-property_writer("QPainter", /::setWorldMatrix\s*\(/, "worldMatrix")
-# Property worldMatrixEnabled (bool)
-property_reader("QPainter", /::worldMatrixEnabled\s*\(/, "worldMatrixEnabled")
-property_writer("QPainter", /::setWorldMatrixEnabled\s*\(/, "worldMatrixEnabled")
-# Property worldTransform (QTransform)
-property_reader("QPainter", /::worldTransform\s*\(/, "worldTransform")
-property_writer("QPainter", /::setWorldTransform\s*\(/, "worldTransform")
-# Property fillRule (Qt_FillRule)
-property_reader("QPainterPath", /::fillRule\s*\(/, "fillRule")
-property_writer("QPainterPath", /::setFillRule\s*\(/, "fillRule")
-# Property capStyle (Qt_PenCapStyle)
-property_reader("QPainterPathStroker", /::capStyle\s*\(/, "capStyle")
-property_writer("QPainterPathStroker", /::setCapStyle\s*\(/, "capStyle")
-# Property curveThreshold (double)
-property_reader("QPainterPathStroker", /::curveThreshold\s*\(/, "curveThreshold")
-property_writer("QPainterPathStroker", /::setCurveThreshold\s*\(/, "curveThreshold")
-# Property dashOffset (double)
-property_reader("QPainterPathStroker", /::dashOffset\s*\(/, "dashOffset")
-property_writer("QPainterPathStroker", /::setDashOffset\s*\(/, "dashOffset")
-# Property joinStyle (Qt_PenJoinStyle)
-property_reader("QPainterPathStroker", /::joinStyle\s*\(/, "joinStyle")
-property_writer("QPainterPathStroker", /::setJoinStyle\s*\(/, "joinStyle")
-# Property miterLimit (double)
-property_reader("QPainterPathStroker", /::miterLimit\s*\(/, "miterLimit")
-property_writer("QPainterPathStroker", /::setMiterLimit\s*\(/, "miterLimit")
-# Property width (double)
-property_reader("QPainterPathStroker", /::width\s*\(/, "width")
-property_writer("QPainterPathStroker", /::setWidth\s*\(/, "width")
-# Property currentColorGroup (QPalette_ColorGroup)
-property_reader("QPalette", /::currentColorGroup\s*\(/, "currentColorGroup")
-property_writer("QPalette", /::setCurrentColorGroup\s*\(/, "currentColorGroup")
-# Property creator (string)
-property_reader("QPdfWriter", /::creator\s*\(/, "creator")
-property_writer("QPdfWriter", /::setCreator\s*\(/, "creator")
-# Property resolution (int)
-property_reader("QPdfWriter", /::resolution\s*\(/, "resolution")
-property_writer("QPdfWriter", /::setResolution\s*\(/, "resolution")
-# Property title (string)
-property_reader("QPdfWriter", /::title\s*\(/, "title")
-property_writer("QPdfWriter", /::setTitle\s*\(/, "title")
-# Property brush (QBrush)
-property_reader("QPen", /::brush\s*\(/, "brush")
-property_writer("QPen", /::setBrush\s*\(/, "brush")
-# Property capStyle (Qt_PenCapStyle)
-property_reader("QPen", /::capStyle\s*\(/, "capStyle")
-property_writer("QPen", /::setCapStyle\s*\(/, "capStyle")
-# Property color (QColor)
-property_reader("QPen", /::color\s*\(/, "color")
-property_writer("QPen", /::setColor\s*\(/, "color")
-# Property cosmetic (bool)
-property_reader("QPen", /::isCosmetic\s*\(/, "cosmetic")
-property_writer("QPen", /::setCosmetic\s*\(/, "cosmetic")
-# Property dashOffset (double)
-property_reader("QPen", /::dashOffset\s*\(/, "dashOffset")
-property_writer("QPen", /::setDashOffset\s*\(/, "dashOffset")
-# Property dashPattern (double[])
-property_reader("QPen", /::dashPattern\s*\(/, "dashPattern")
-property_writer("QPen", /::setDashPattern\s*\(/, "dashPattern")
-# Property joinStyle (Qt_PenJoinStyle)
-property_reader("QPen", /::joinStyle\s*\(/, "joinStyle")
-property_writer("QPen", /::setJoinStyle\s*\(/, "joinStyle")
-# Property miterLimit (double)
-property_reader("QPen", /::miterLimit\s*\(/, "miterLimit")
-property_writer("QPen", /::setMiterLimit\s*\(/, "miterLimit")
-# Property style (Qt_PenStyle)
-property_reader("QPen", /::style\s*\(/, "style")
-property_writer("QPen", /::setStyle\s*\(/, "style")
-# Property width (int)
-property_reader("QPen", /::width\s*\(/, "width")
-property_writer("QPen", /::setWidth\s*\(/, "width")
-# Property widthF (double)
-property_reader("QPen", /::widthF\s*\(/, "widthF")
-property_writer("QPen", /::setWidthF\s*\(/, "widthF")
-# Property boundingRect (QRect)
-property_reader("QPicture", /::boundingRect\s*\(/, "boundingRect")
-property_writer("QPicture", /::setBoundingRect\s*\(/, "boundingRect")
-# Property devicePixelRatio (double)
-property_reader("QPixmap", /::devicePixelRatio\s*\(/, "devicePixelRatio")
-property_writer("QPixmap", /::setDevicePixelRatio\s*\(/, "devicePixelRatio")
-# Property mask (QBitmap_Native)
-property_reader("QPixmap", /::mask\s*\(/, "mask")
-property_writer("QPixmap", /::setMask\s*\(/, "mask")
-# Property cacheLimit (int)
-property_reader("QPixmapCache", /::cacheLimit\s*\(/, "cacheLimit")
-property_writer("QPixmapCache", /::setCacheLimit\s*\(/, "cacheLimit")
# Property currentCharFormat (QTextCharFormat)
property_reader("QPlainTextEdit", /::currentCharFormat\s*\(/, "currentCharFormat")
property_writer("QPlainTextEdit", /::setCurrentCharFormat\s*\(/, "currentCharFormat")
@@ -13591,351 +14513,12 @@ property_writer("QPlainTextEdit", /::setTextCursor\s*\(/, "textCursor")
# Property wordWrapMode (QTextOption_WrapMode)
property_reader("QPlainTextEdit", /::wordWrapMode\s*\(/, "wordWrapMode")
property_writer("QPlainTextEdit", /::setWordWrapMode\s*\(/, "wordWrapMode")
-# Property x (int)
-property_reader("QPoint", /::x\s*\(/, "x")
-property_writer("QPoint", /::setX\s*\(/, "x")
-# Property y (int)
-property_reader("QPoint", /::y\s*\(/, "y")
-property_writer("QPoint", /::setY\s*\(/, "y")
-# Property x (double)
-property_reader("QPointF", /::x\s*\(/, "x")
-property_writer("QPointF", /::setX\s*\(/, "x")
-# Property y (double)
-property_reader("QPointF", /::y\s*\(/, "y")
-property_writer("QPointF", /::setY\s*\(/, "y")
-# Property currentPage (int)
-property_reader("QPrintPreviewWidget", /::currentPage\s*\(/, "currentPage")
-property_writer("QPrintPreviewWidget", /::setCurrentPage\s*\(/, "currentPage")
-# Property orientation (QPrinter_Orientation)
-property_reader("QPrintPreviewWidget", /::orientation\s*\(/, "orientation")
-property_writer("QPrintPreviewWidget", /::setOrientation\s*\(/, "orientation")
-# Property viewMode (QPrintPreviewWidget_ViewMode)
-property_reader("QPrintPreviewWidget", /::viewMode\s*\(/, "viewMode")
-property_writer("QPrintPreviewWidget", /::setViewMode\s*\(/, "viewMode")
-# Property zoomFactor (double)
-property_reader("QPrintPreviewWidget", /::zoomFactor\s*\(/, "zoomFactor")
-property_writer("QPrintPreviewWidget", /::setZoomFactor\s*\(/, "zoomFactor")
-# Property zoomMode (QPrintPreviewWidget_ZoomMode)
-property_reader("QPrintPreviewWidget", /::zoomMode\s*\(/, "zoomMode")
-property_writer("QPrintPreviewWidget", /::setZoomMode\s*\(/, "zoomMode")
-# Property collateCopies (bool)
-property_reader("QPrinter", /::collateCopies\s*\(/, "collateCopies")
-property_writer("QPrinter", /::setCollateCopies\s*\(/, "collateCopies")
-# Property colorMode (QPrinter_ColorMode)
-property_reader("QPrinter", /::colorMode\s*\(/, "colorMode")
-property_writer("QPrinter", /::setColorMode\s*\(/, "colorMode")
-# Property copyCount (int)
-property_reader("QPrinter", /::copyCount\s*\(/, "copyCount")
-property_writer("QPrinter", /::setCopyCount\s*\(/, "copyCount")
-# Property creator (string)
-property_reader("QPrinter", /::creator\s*\(/, "creator")
-property_writer("QPrinter", /::setCreator\s*\(/, "creator")
-# Property docName (string)
-property_reader("QPrinter", /::docName\s*\(/, "docName")
-property_writer("QPrinter", /::setDocName\s*\(/, "docName")
-# Property doubleSidedPrinting (bool)
-property_reader("QPrinter", /::doubleSidedPrinting\s*\(/, "doubleSidedPrinting")
-property_writer("QPrinter", /::setDoubleSidedPrinting\s*\(/, "doubleSidedPrinting")
-# Property duplex (QPrinter_DuplexMode)
-property_reader("QPrinter", /::duplex\s*\(/, "duplex")
-property_writer("QPrinter", /::setDuplex\s*\(/, "duplex")
-# Property fontEmbeddingEnabled (bool)
-property_reader("QPrinter", /::fontEmbeddingEnabled\s*\(/, "fontEmbeddingEnabled")
-property_writer("QPrinter", /::setFontEmbeddingEnabled\s*\(/, "fontEmbeddingEnabled")
-# Property fullPage (bool)
-property_reader("QPrinter", /::fullPage\s*\(/, "fullPage")
-property_writer("QPrinter", /::setFullPage\s*\(/, "fullPage")
-# Property margins (QPagedPaintDevice_Margins)
-property_reader("QPagedPaintDevice", /::margins\s*\(/, "margins")
-property_writer("QPrinter", /::setMargins\s*\(/, "margins")
-# Property numCopies (int)
-property_reader("QPrinter", /::numCopies\s*\(/, "numCopies")
-property_writer("QPrinter", /::setNumCopies\s*\(/, "numCopies")
-# Property orientation (QPrinter_Orientation)
-property_reader("QPrinter", /::orientation\s*\(/, "orientation")
-property_writer("QPrinter", /::setOrientation\s*\(/, "orientation")
-# Property outputFileName (string)
-property_reader("QPrinter", /::outputFileName\s*\(/, "outputFileName")
-property_writer("QPrinter", /::setOutputFileName\s*\(/, "outputFileName")
-# Property outputFormat (QPrinter_OutputFormat)
-property_reader("QPrinter", /::outputFormat\s*\(/, "outputFormat")
-property_writer("QPrinter", /::setOutputFormat\s*\(/, "outputFormat")
-# Property pageOrder (QPrinter_PageOrder)
-property_reader("QPrinter", /::pageOrder\s*\(/, "pageOrder")
-property_writer("QPrinter", /::setPageOrder\s*\(/, "pageOrder")
-# Property pageSize (QPagedPaintDevice_PageSize)
-property_reader("QPrinter", /::pageSize\s*\(/, "pageSize")
-property_writer("QPrinter", /::setPageSize\s*\(/, "pageSize")
-# Property pageSizeMM (QSizeF)
-property_reader("QPagedPaintDevice", /::pageSizeMM\s*\(/, "pageSizeMM")
-property_writer("QPrinter", /::setPageSizeMM\s*\(/, "pageSizeMM")
-# Property paperName (string)
-property_reader("QPrinter", /::paperName\s*\(/, "paperName")
-property_writer("QPrinter", /::setPaperName\s*\(/, "paperName")
-# Property paperSize (QPagedPaintDevice_PageSize)
-property_reader("QPrinter", /::paperSize\s*\(/, "paperSize")
-property_writer("QPrinter", /::setPaperSize\s*\(/, "paperSize")
-# Property paperSource (QPrinter_PaperSource)
-property_reader("QPrinter", /::paperSource\s*\(/, "paperSource")
-property_writer("QPrinter", /::setPaperSource\s*\(/, "paperSource")
-# Property printProgram (string)
-property_reader("QPrinter", /::printProgram\s*\(/, "printProgram")
-property_writer("QPrinter", /::setPrintProgram\s*\(/, "printProgram")
-# Property printRange (QPrinter_PrintRange)
-property_reader("QPrinter", /::printRange\s*\(/, "printRange")
-property_writer("QPrinter", /::setPrintRange\s*\(/, "printRange")
-# Property printerName (string)
-property_reader("QPrinter", /::printerName\s*\(/, "printerName")
-property_writer("QPrinter", /::setPrinterName\s*\(/, "printerName")
-# Property resolution (int)
-property_reader("QPrinter", /::resolution\s*\(/, "resolution")
-property_writer("QPrinter", /::setResolution\s*\(/, "resolution")
-# Property winPageSize (int)
-property_reader("QPrinter", /::winPageSize\s*\(/, "winPageSize")
-property_writer("QPrinter", /::setWinPageSize\s*\(/, "winPageSize")
-# Property arguments (string[])
-property_reader("QProcess", /::arguments\s*\(/, "arguments")
-property_writer("QProcess", /::setArguments\s*\(/, "arguments")
-# Property environment (string[])
-property_reader("QProcess", /::environment\s*\(/, "environment")
-property_writer("QProcess", /::setEnvironment\s*\(/, "environment")
-# Property inputChannelMode (QProcess_InputChannelMode)
-property_reader("QProcess", /::inputChannelMode\s*\(/, "inputChannelMode")
-property_writer("QProcess", /::setInputChannelMode\s*\(/, "inputChannelMode")
-# Property processChannelMode (QProcess_ProcessChannelMode)
-property_reader("QProcess", /::processChannelMode\s*\(/, "processChannelMode")
-property_writer("QProcess", /::setProcessChannelMode\s*\(/, "processChannelMode")
-# Property processEnvironment (QProcessEnvironment)
-property_reader("QProcess", /::processEnvironment\s*\(/, "processEnvironment")
-property_writer("QProcess", /::setProcessEnvironment\s*\(/, "processEnvironment")
-# Property program (string)
-property_reader("QProcess", /::program\s*\(/, "program")
-property_writer("QProcess", /::setProgram\s*\(/, "program")
-# Property readChannel (QProcess_ProcessChannel)
-property_reader("QProcess", /::readChannel\s*\(/, "readChannel")
-property_writer("QProcess", /::setReadChannel\s*\(/, "readChannel")
-# Property readChannelMode (QProcess_ProcessChannelMode)
-property_reader("QProcess", /::readChannelMode\s*\(/, "readChannelMode")
-property_writer("QProcess", /::setReadChannelMode\s*\(/, "readChannelMode")
-# Property workingDirectory (string)
-property_reader("QProcess", /::workingDirectory\s*\(/, "workingDirectory")
-property_writer("QProcess", /::setWorkingDirectory\s*\(/, "workingDirectory")
# Property menu (QMenu_Native *)
property_reader("QPushButton", /::menu\s*\(/, "menu")
property_writer("QPushButton", /::setMenu\s*\(/, "menu")
-# Property scalar (float)
-property_reader("QQuaternion", /::scalar\s*\(/, "scalar")
-property_writer("QQuaternion", /::setScalar\s*\(/, "scalar")
-# Property vector (QVector3D)
-property_reader("QQuaternion", /::vector\s*\(/, "vector")
-property_writer("QQuaternion", /::setVector\s*\(/, "vector")
-# Property x (float)
-property_reader("QQuaternion", /::x\s*\(/, "x")
-property_writer("QQuaternion", /::setX\s*\(/, "x")
-# Property y (float)
-property_reader("QQuaternion", /::y\s*\(/, "y")
-property_writer("QQuaternion", /::setY\s*\(/, "y")
-# Property z (float)
-property_reader("QQuaternion", /::z\s*\(/, "z")
-property_writer("QQuaternion", /::setZ\s*\(/, "z")
-# Property center (QPointF)
-property_reader("QRadialGradient", /::center\s*\(/, "center")
-property_writer("QRadialGradient", /::setCenter\s*\(/, "center")
-# Property centerRadius (double)
-property_reader("QRadialGradient", /::centerRadius\s*\(/, "centerRadius")
-property_writer("QRadialGradient", /::setCenterRadius\s*\(/, "centerRadius")
-# Property focalPoint (QPointF)
-property_reader("QRadialGradient", /::focalPoint\s*\(/, "focalPoint")
-property_writer("QRadialGradient", /::setFocalPoint\s*\(/, "focalPoint")
-# Property focalRadius (double)
-property_reader("QRadialGradient", /::focalRadius\s*\(/, "focalRadius")
-property_writer("QRadialGradient", /::setFocalRadius\s*\(/, "focalRadius")
-# Property radius (double)
-property_reader("QRadialGradient", /::radius\s*\(/, "radius")
-property_writer("QRadialGradient", /::setRadius\s*\(/, "radius")
-# Property alternativeFrequenciesEnabled (bool)
-property_reader("QRadioDataControl", /::isAlternativeFrequenciesEnabled\s*\(/, "alternativeFrequenciesEnabled")
-property_writer("QRadioDataControl", /::setAlternativeFrequenciesEnabled\s*\(/, "alternativeFrequenciesEnabled")
-# Property band (QRadioTuner_Band)
-property_reader("QRadioTunerControl", /::band\s*\(/, "band")
-property_writer("QRadioTunerControl", /::setBand\s*\(/, "band")
-# Property frequency (int)
-property_reader("QRadioTunerControl", /::frequency\s*\(/, "frequency")
-property_writer("QRadioTunerControl", /::setFrequency\s*\(/, "frequency")
-# Property muted (bool)
-property_reader("QRadioTunerControl", /::isMuted\s*\(/, "muted")
-property_writer("QRadioTunerControl", /::setMuted\s*\(/, "muted")
-# Property stereoMode (QRadioTuner_StereoMode)
-property_reader("QRadioTunerControl", /::stereoMode\s*\(/, "stereoMode")
-property_writer("QRadioTunerControl", /::setStereoMode\s*\(/, "stereoMode")
-# Property volume (int)
-property_reader("QRadioTunerControl", /::volume\s*\(/, "volume")
-property_writer("QRadioTunerControl", /::setVolume\s*\(/, "volume")
-# Property pixelSize (double)
-property_reader("QRawFont", /::pixelSize\s*\(/, "pixelSize")
-property_writer("QRawFont", /::setPixelSize\s*\(/, "pixelSize")
-# Property bottom (int)
-property_reader("QRect", /::bottom\s*\(/, "bottom")
-property_writer("QRect", /::setBottom\s*\(/, "bottom")
-# Property bottomLeft (QPoint)
-property_reader("QRect", /::bottomLeft\s*\(/, "bottomLeft")
-property_writer("QRect", /::setBottomLeft\s*\(/, "bottomLeft")
-# Property bottomRight (QPoint)
-property_reader("QRect", /::bottomRight\s*\(/, "bottomRight")
-property_writer("QRect", /::setBottomRight\s*\(/, "bottomRight")
-# Property height (int)
-property_reader("QRect", /::height\s*\(/, "height")
-property_writer("QRect", /::setHeight\s*\(/, "height")
-# Property left (int)
-property_reader("QRect", /::left\s*\(/, "left")
-property_writer("QRect", /::setLeft\s*\(/, "left")
-# Property right (int)
-property_reader("QRect", /::right\s*\(/, "right")
-property_writer("QRect", /::setRight\s*\(/, "right")
-# Property size (QSize)
-property_reader("QRect", /::size\s*\(/, "size")
-property_writer("QRect", /::setSize\s*\(/, "size")
-# Property top (int)
-property_reader("QRect", /::top\s*\(/, "top")
-property_writer("QRect", /::setTop\s*\(/, "top")
-# Property topLeft (QPoint)
-property_reader("QRect", /::topLeft\s*\(/, "topLeft")
-property_writer("QRect", /::setTopLeft\s*\(/, "topLeft")
-# Property topRight (QPoint)
-property_reader("QRect", /::topRight\s*\(/, "topRight")
-property_writer("QRect", /::setTopRight\s*\(/, "topRight")
-# Property width (int)
-property_reader("QRect", /::width\s*\(/, "width")
-property_writer("QRect", /::setWidth\s*\(/, "width")
-# Property x (int)
-property_reader("QRect", /::x\s*\(/, "x")
-property_writer("QRect", /::setX\s*\(/, "x")
-# Property y (int)
-property_reader("QRect", /::y\s*\(/, "y")
-property_writer("QRect", /::setY\s*\(/, "y")
-# Property bottom (double)
-property_reader("QRectF", /::bottom\s*\(/, "bottom")
-property_writer("QRectF", /::setBottom\s*\(/, "bottom")
-# Property bottomLeft (QPointF)
-property_reader("QRectF", /::bottomLeft\s*\(/, "bottomLeft")
-property_writer("QRectF", /::setBottomLeft\s*\(/, "bottomLeft")
-# Property bottomRight (QPointF)
-property_reader("QRectF", /::bottomRight\s*\(/, "bottomRight")
-property_writer("QRectF", /::setBottomRight\s*\(/, "bottomRight")
-# Property height (double)
-property_reader("QRectF", /::height\s*\(/, "height")
-property_writer("QRectF", /::setHeight\s*\(/, "height")
-# Property left (double)
-property_reader("QRectF", /::left\s*\(/, "left")
-property_writer("QRectF", /::setLeft\s*\(/, "left")
-# Property right (double)
-property_reader("QRectF", /::right\s*\(/, "right")
-property_writer("QRectF", /::setRight\s*\(/, "right")
-# Property size (QSizeF)
-property_reader("QRectF", /::size\s*\(/, "size")
-property_writer("QRectF", /::setSize\s*\(/, "size")
-# Property top (double)
-property_reader("QRectF", /::top\s*\(/, "top")
-property_writer("QRectF", /::setTop\s*\(/, "top")
-# Property topLeft (QPointF)
-property_reader("QRectF", /::topLeft\s*\(/, "topLeft")
-property_writer("QRectF", /::setTopLeft\s*\(/, "topLeft")
-# Property topRight (QPointF)
-property_reader("QRectF", /::topRight\s*\(/, "topRight")
-property_writer("QRectF", /::setTopRight\s*\(/, "topRight")
-# Property width (double)
-property_reader("QRectF", /::width\s*\(/, "width")
-property_writer("QRectF", /::setWidth\s*\(/, "width")
-# Property x (double)
-property_reader("QRectF", /::x\s*\(/, "x")
-property_writer("QRectF", /::setX\s*\(/, "x")
-# Property y (double)
-property_reader("QRectF", /::y\s*\(/, "y")
-property_writer("QRectF", /::setY\s*\(/, "y")
-# Property caseSensitivity (Qt_CaseSensitivity)
-property_reader("QRegExp", /::caseSensitivity\s*\(/, "caseSensitivity")
-property_writer("QRegExp", /::setCaseSensitivity\s*\(/, "caseSensitivity")
-# Property minimal (bool)
-property_reader("QRegExp", /::isMinimal\s*\(/, "minimal")
-property_writer("QRegExp", /::setMinimal\s*\(/, "minimal")
-# Property pattern (string)
-property_reader("QRegExp", /::pattern\s*\(/, "pattern")
-property_writer("QRegExp", /::setPattern\s*\(/, "pattern")
-# Property patternSyntax (QRegExp_PatternSyntax)
-property_reader("QRegExp", /::patternSyntax\s*\(/, "patternSyntax")
-property_writer("QRegExp", /::setPatternSyntax\s*\(/, "patternSyntax")
-# Property rects (QRect[])
-property_reader("QRegion", /::rects\s*\(/, "rects")
-property_writer("QRegion", /::setRects\s*\(/, "rects")
-# Property pattern (string)
-property_reader("QRegularExpression", /::pattern\s*\(/, "pattern")
-property_writer("QRegularExpression", /::setPattern\s*\(/, "pattern")
-# Property patternOptions (QRegularExpression_QFlags_PatternOption)
-property_reader("QRegularExpression", /::patternOptions\s*\(/, "patternOptions")
-property_writer("QRegularExpression", /::setPatternOptions\s*\(/, "patternOptions")
-# Property fileName (string)
-property_reader("QResource", /::fileName\s*\(/, "fileName")
-property_writer("QResource", /::setFileName\s*\(/, "fileName")
-# Property locale (QLocale)
-property_reader("QResource", /::locale\s*\(/, "locale")
-property_writer("QResource", /::setLocale\s*\(/, "locale")
-# Property autoDelete (bool)
-property_reader("QRunnable", /::autoDelete\s*\(/, "autoDelete")
-property_writer("QRunnable", /::setAutoDelete\s*\(/, "autoDelete")
-# Property directWriteFallback (bool)
-property_reader("QSaveFile", /::directWriteFallback\s*\(/, "directWriteFallback")
-property_writer("QSaveFile", /::setDirectWriteFallback\s*\(/, "directWriteFallback")
-# Property fileName (string)
-property_reader("QSaveFile", /::fileName\s*\(/, "fileName")
-property_writer("QSaveFile", /::setFileName\s*\(/, "fileName")
-# Property orientationUpdateMask (Qt_QFlags_ScreenOrientation)
-property_reader("QScreen", /::orientationUpdateMask\s*\(/, "orientationUpdateMask")
-property_writer("QScreen", /::setOrientationUpdateMask\s*\(/, "orientationUpdateMask")
# Property widget (QWidget_Native *)
property_reader("QScrollArea", /::widget\s*\(/, "widget")
property_writer("QScrollArea", /::setWidget\s*\(/, "widget")
-# Property contentPos (QPointF)
-property_reader("QScrollPrepareEvent", /::contentPos\s*\(/, "contentPos")
-property_writer("QScrollPrepareEvent", /::setContentPos\s*\(/, "contentPos")
-# Property contentPosRange (QRectF)
-property_reader("QScrollPrepareEvent", /::contentPosRange\s*\(/, "contentPosRange")
-property_writer("QScrollPrepareEvent", /::setContentPosRange\s*\(/, "contentPosRange")
-# Property viewportSize (QSizeF)
-property_reader("QScrollPrepareEvent", /::viewportSize\s*\(/, "viewportSize")
-property_writer("QScrollPrepareEvent", /::setViewportSize\s*\(/, "viewportSize")
-# Property discardCommand (string[])
-property_reader("QSessionManager", /::discardCommand\s*\(/, "discardCommand")
-property_writer("QSessionManager", /::setDiscardCommand\s*\(/, "discardCommand")
-# Property restartCommand (string[])
-property_reader("QSessionManager", /::restartCommand\s*\(/, "restartCommand")
-property_writer("QSessionManager", /::setRestartCommand\s*\(/, "restartCommand")
-# Property restartHint (QSessionManager_RestartHint)
-property_reader("QSessionManager", /::restartHint\s*\(/, "restartHint")
-property_writer("QSessionManager", /::setRestartHint\s*\(/, "restartHint")
-# Property defaultFormat (QSettings_Format)
-property_reader("QSettings", /::defaultFormat\s*\(/, "defaultFormat")
-property_writer("QSettings", /::setDefaultFormat\s*\(/, "defaultFormat")
-# Property fallbacksEnabled (bool)
-property_reader("QSettings", /::fallbacksEnabled\s*\(/, "fallbacksEnabled")
-property_writer("QSettings", /::setFallbacksEnabled\s*\(/, "fallbacksEnabled")
-# Property key (string)
-property_reader("QSharedMemory", /::key\s*\(/, "key")
-property_writer("QSharedMemory", /::setKey\s*\(/, "key")
-# Property nativeKey (string)
-property_reader("QSharedMemory", /::nativeKey\s*\(/, "nativeKey")
-property_writer("QSharedMemory", /::setNativeKey\s*\(/, "nativeKey")
-# Property height (int)
-property_reader("QSize", /::height\s*\(/, "height")
-property_writer("QSize", /::setHeight\s*\(/, "height")
-# Property width (int)
-property_reader("QSize", /::width\s*\(/, "width")
-property_writer("QSize", /::setWidth\s*\(/, "width")
-# Property height (double)
-property_reader("QSizeF", /::height\s*\(/, "height")
-property_writer("QSizeF", /::setHeight\s*\(/, "height")
-# Property width (double)
-property_reader("QSizeF", /::width\s*\(/, "width")
-property_writer("QSizeF", /::setWidth\s*\(/, "width")
# Property controlType (QSizePolicy_ControlType)
property_reader("QSizePolicy", /::controlType\s*\(/, "controlType")
property_writer("QSizePolicy", /::setControlType\s*\(/, "controlType")
@@ -13960,27 +14543,6 @@ property_writer("QSizePolicy", /::setVerticalStretch\s*\(/, "verticalStretch")
# Property widthForHeight (bool)
property_reader("QSizePolicy", /::hasWidthForHeight\s*\(/, "widthForHeight")
property_writer("QSizePolicy", /::setWidthForHeight\s*\(/, "widthForHeight")
-# Property enabled (bool)
-property_reader("QSocketNotifier", /::isEnabled\s*\(/, "enabled")
-property_writer("QSocketNotifier", /::setEnabled\s*\(/, "enabled")
-# Property parent (QObject_Native *)
-property_reader("QSortFilterProxyModel", /::parent\s*\(/, "parent")
-property_writer("QObject", /::setParent\s*\(/, "parent")
-# Property loops (int)
-property_reader("QSound", /::loops\s*\(/, "loops")
-property_writer("QSound", /::setLoops\s*\(/, "loops")
-# Property loopCount (int)
-property_reader("QSoundEffect", /::loopCount\s*\(/, "loopCount")
-property_writer("QSoundEffect", /::setLoopCount\s*\(/, "loopCount")
-# Property column (long long)
-property_reader("QSourceLocation", /::column\s*\(/, "column")
-property_writer("QSourceLocation", /::setColumn\s*\(/, "column")
-# Property line (long long)
-property_reader("QSourceLocation", /::line\s*\(/, "line")
-property_writer("QSourceLocation", /::setLine\s*\(/, "line")
-# Property uri (QUrl)
-property_reader("QSourceLocation", /::uri\s*\(/, "uri")
-property_writer("QSourceLocation", /::setUri\s*\(/, "uri")
# Property geometry (QRect)
property_reader("QSpacerItem", /::geometry\s*\(/, "geometry")
property_writer("QSpacerItem", /::setGeometry\s*\(/, "geometry")
@@ -13993,174 +14555,6 @@ property_writer("QSplitter", /::setSizes\s*\(/, "sizes")
# Property orientation (Qt_Orientation)
property_reader("QSplitterHandle", /::orientation\s*\(/, "orientation")
property_writer("QSplitterHandle", /::setOrientation\s*\(/, "orientation")
-# Property connectOptions (string)
-property_reader("QSqlDatabase", /::connectOptions\s*\(/, "connectOptions")
-property_writer("QSqlDatabase", /::setConnectOptions\s*\(/, "connectOptions")
-# Property databaseName (string)
-property_reader("QSqlDatabase", /::databaseName\s*\(/, "databaseName")
-property_writer("QSqlDatabase", /::setDatabaseName\s*\(/, "databaseName")
-# Property hostName (string)
-property_reader("QSqlDatabase", /::hostName\s*\(/, "hostName")
-property_writer("QSqlDatabase", /::setHostName\s*\(/, "hostName")
-# Property numericalPrecisionPolicy (QSql_NumericalPrecisionPolicy)
-property_reader("QSqlDatabase", /::numericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
-property_writer("QSqlDatabase", /::setNumericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
-# Property password (string)
-property_reader("QSqlDatabase", /::password\s*\(/, "password")
-property_writer("QSqlDatabase", /::setPassword\s*\(/, "password")
-# Property port (int)
-property_reader("QSqlDatabase", /::port\s*\(/, "port")
-property_writer("QSqlDatabase", /::setPort\s*\(/, "port")
-# Property userName (string)
-property_reader("QSqlDatabase", /::userName\s*\(/, "userName")
-property_writer("QSqlDatabase", /::setUserName\s*\(/, "userName")
-# Property numericalPrecisionPolicy (QSql_NumericalPrecisionPolicy)
-property_reader("QSqlDriver", /::numericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
-property_writer("QSqlDriver", /::setNumericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
-# Property databaseText (string)
-property_reader("QSqlError", /::databaseText\s*\(/, "databaseText")
-property_writer("QSqlError", /::setDatabaseText\s*\(/, "databaseText")
-# Property driverText (string)
-property_reader("QSqlError", /::driverText\s*\(/, "driverText")
-property_writer("QSqlError", /::setDriverText\s*\(/, "driverText")
-# Property number (int)
-property_reader("QSqlError", /::number\s*\(/, "number")
-property_writer("QSqlError", /::setNumber\s*\(/, "number")
-# Property type (QSqlError_ErrorType)
-property_reader("QSqlError", /::type\s*\(/, "type")
-property_writer("QSqlError", /::setType\s*\(/, "type")
-# Property autoValue (bool)
-property_reader("QSqlField", /::isAutoValue\s*\(/, "autoValue")
-property_writer("QSqlField", /::setAutoValue\s*\(/, "autoValue")
-# Property defaultValue (variant)
-property_reader("QSqlField", /::defaultValue\s*\(/, "defaultValue")
-property_writer("QSqlField", /::setDefaultValue\s*\(/, "defaultValue")
-# Property generated (bool)
-property_reader("QSqlField", /::isGenerated\s*\(/, "generated")
-property_writer("QSqlField", /::setGenerated\s*\(/, "generated")
-# Property length (int)
-property_reader("QSqlField", /::length\s*\(/, "length")
-property_writer("QSqlField", /::setLength\s*\(/, "length")
-# Property name (string)
-property_reader("QSqlField", /::name\s*\(/, "name")
-property_writer("QSqlField", /::setName\s*\(/, "name")
-# Property precision (int)
-property_reader("QSqlField", /::precision\s*\(/, "precision")
-property_writer("QSqlField", /::setPrecision\s*\(/, "precision")
-# Property readOnly (bool)
-property_reader("QSqlField", /::isReadOnly\s*\(/, "readOnly")
-property_writer("QSqlField", /::setReadOnly\s*\(/, "readOnly")
-# Property requiredStatus (QSqlField_RequiredStatus)
-property_reader("QSqlField", /::requiredStatus\s*\(/, "requiredStatus")
-property_writer("QSqlField", /::setRequiredStatus\s*\(/, "requiredStatus")
-# Property type (QVariant_Type)
-property_reader("QSqlField", /::type\s*\(/, "type")
-property_writer("QSqlField", /::setType\s*\(/, "type")
-# Property value (variant)
-property_reader("QSqlField", /::value\s*\(/, "value")
-property_writer("QSqlField", /::setValue\s*\(/, "value")
-# Property cursorName (string)
-property_reader("QSqlIndex", /::cursorName\s*\(/, "cursorName")
-property_writer("QSqlIndex", /::setCursorName\s*\(/, "cursorName")
-# Property name (string)
-property_reader("QSqlIndex", /::name\s*\(/, "name")
-property_writer("QSqlIndex", /::setName\s*\(/, "name")
-# Property forwardOnly (bool)
-property_reader("QSqlQuery", /::isForwardOnly\s*\(/, "forwardOnly")
-property_writer("QSqlQuery", /::setForwardOnly\s*\(/, "forwardOnly")
-# Property numericalPrecisionPolicy (QSql_NumericalPrecisionPolicy)
-property_reader("QSqlQuery", /::numericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
-property_writer("QSqlQuery", /::setNumericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
-# Property query (QSqlQuery)
-property_reader("QSqlQueryModel", /::query\s*\(/, "query")
-property_writer("QSqlQueryModel", /::setQuery\s*\(/, "query")
-# Property editStrategy (QSqlTableModel_EditStrategy)
-property_reader("QSqlTableModel", /::editStrategy\s*\(/, "editStrategy")
-property_writer("QSqlTableModel", /::setEditStrategy\s*\(/, "editStrategy")
-# Property filter (string)
-property_reader("QSqlTableModel", /::filter\s*\(/, "filter")
-property_writer("QSqlTableModel", /::setFilter\s*\(/, "filter")
-# Property allowedNextProtocols (string[])
-property_reader("QSslConfiguration", /::allowedNextProtocols\s*\(/, "allowedNextProtocols")
-property_writer("QSslConfiguration", /::setAllowedNextProtocols\s*\(/, "allowedNextProtocols")
-# Property caCertificates (QSslCertificate[])
-property_reader("QSslConfiguration", /::caCertificates\s*\(/, "caCertificates")
-property_writer("QSslConfiguration", /::setCaCertificates\s*\(/, "caCertificates")
-# Property ciphers (QSslCipher[])
-property_reader("QSslConfiguration", /::ciphers\s*\(/, "ciphers")
-property_writer("QSslConfiguration", /::setCiphers\s*\(/, "ciphers")
-# Property defaultConfiguration (QSslConfiguration)
-property_reader("QSslConfiguration", /::defaultConfiguration\s*\(/, "defaultConfiguration")
-property_writer("QSslConfiguration", /::setDefaultConfiguration\s*\(/, "defaultConfiguration")
-# Property ellipticCurves (QSslEllipticCurve[])
-property_reader("QSslConfiguration", /::ellipticCurves\s*\(/, "ellipticCurves")
-property_writer("QSslConfiguration", /::setEllipticCurves\s*\(/, "ellipticCurves")
-# Property localCertificate (QSslCertificate)
-property_reader("QSslConfiguration", /::localCertificate\s*\(/, "localCertificate")
-property_writer("QSslConfiguration", /::setLocalCertificate\s*\(/, "localCertificate")
-# Property localCertificateChain (QSslCertificate[])
-property_reader("QSslConfiguration", /::localCertificateChain\s*\(/, "localCertificateChain")
-property_writer("QSslConfiguration", /::setLocalCertificateChain\s*\(/, "localCertificateChain")
-# Property peerVerifyDepth (int)
-property_reader("QSslConfiguration", /::peerVerifyDepth\s*\(/, "peerVerifyDepth")
-property_writer("QSslConfiguration", /::setPeerVerifyDepth\s*\(/, "peerVerifyDepth")
-# Property peerVerifyMode (QSslSocket_PeerVerifyMode)
-property_reader("QSslConfiguration", /::peerVerifyMode\s*\(/, "peerVerifyMode")
-property_writer("QSslConfiguration", /::setPeerVerifyMode\s*\(/, "peerVerifyMode")
-# Property privateKey (QSslKey)
-property_reader("QSslConfiguration", /::privateKey\s*\(/, "privateKey")
-property_writer("QSslConfiguration", /::setPrivateKey\s*\(/, "privateKey")
-# Property protocol (QSsl_SslProtocol)
-property_reader("QSslConfiguration", /::protocol\s*\(/, "protocol")
-property_writer("QSslConfiguration", /::setProtocol\s*\(/, "protocol")
-# Property sessionTicket (string)
-property_reader("QSslConfiguration", /::sessionTicket\s*\(/, "sessionTicket")
-property_writer("QSslConfiguration", /::setSessionTicket\s*\(/, "sessionTicket")
-# Property identity (string)
-property_reader("QSslPreSharedKeyAuthenticator", /::identity\s*\(/, "identity")
-property_writer("QSslPreSharedKeyAuthenticator", /::setIdentity\s*\(/, "identity")
-# Property preSharedKey (string)
-property_reader("QSslPreSharedKeyAuthenticator", /::preSharedKey\s*\(/, "preSharedKey")
-property_writer("QSslPreSharedKeyAuthenticator", /::setPreSharedKey\s*\(/, "preSharedKey")
-# Property caCertificates (QSslCertificate[])
-property_reader("QSslSocket", /::caCertificates\s*\(/, "caCertificates")
-property_writer("QSslSocket", /::setCaCertificates\s*\(/, "caCertificates")
-# Property ciphers (QSslCipher[])
-property_reader("QSslSocket", /::ciphers\s*\(/, "ciphers")
-property_writer("QSslSocket", /::setCiphers\s*\(/, "ciphers")
-# Property defaultCaCertificates (QSslCertificate[])
-property_reader("QSslSocket", /::defaultCaCertificates\s*\(/, "defaultCaCertificates")
-property_writer("QSslSocket", /::setDefaultCaCertificates\s*\(/, "defaultCaCertificates")
-# Property defaultCiphers (QSslCipher[])
-property_reader("QSslSocket", /::defaultCiphers\s*\(/, "defaultCiphers")
-property_writer("QSslSocket", /::setDefaultCiphers\s*\(/, "defaultCiphers")
-# Property localCertificate (QSslCertificate)
-property_reader("QSslSocket", /::localCertificate\s*\(/, "localCertificate")
-property_writer("QSslSocket", /::setLocalCertificate\s*\(/, "localCertificate")
-# Property localCertificateChain (QSslCertificate[])
-property_reader("QSslSocket", /::localCertificateChain\s*\(/, "localCertificateChain")
-property_writer("QSslSocket", /::setLocalCertificateChain\s*\(/, "localCertificateChain")
-# Property peerVerifyDepth (int)
-property_reader("QSslSocket", /::peerVerifyDepth\s*\(/, "peerVerifyDepth")
-property_writer("QSslSocket", /::setPeerVerifyDepth\s*\(/, "peerVerifyDepth")
-# Property peerVerifyMode (QSslSocket_PeerVerifyMode)
-property_reader("QSslSocket", /::peerVerifyMode\s*\(/, "peerVerifyMode")
-property_writer("QSslSocket", /::setPeerVerifyMode\s*\(/, "peerVerifyMode")
-# Property peerVerifyName (string)
-property_reader("QSslSocket", /::peerVerifyName\s*\(/, "peerVerifyName")
-property_writer("QSslSocket", /::setPeerVerifyName\s*\(/, "peerVerifyName")
-# Property privateKey (QSslKey)
-property_reader("QSslSocket", /::privateKey\s*\(/, "privateKey")
-property_writer("QSslSocket", /::setPrivateKey\s*\(/, "privateKey")
-# Property protocol (QSsl_SslProtocol)
-property_reader("QSslSocket", /::protocol\s*\(/, "protocol")
-property_writer("QSslSocket", /::setProtocol\s*\(/, "protocol")
-# Property readBufferSize (long long)
-property_reader("QAbstractSocket", /::readBufferSize\s*\(/, "readBufferSize")
-property_writer("QSslSocket", /::setReadBufferSize\s*\(/, "readBufferSize")
-# Property sslConfiguration (QSslConfiguration)
-property_reader("QSslSocket", /::sslConfiguration\s*\(/, "sslConfiguration")
-property_writer("QSslSocket", /::setSslConfiguration\s*\(/, "sslConfiguration")
# Property currentWidget (QWidget_Native *)
property_reader("QStackedLayout", /::currentWidget\s*\(/, "currentWidget")
property_writer("QStackedLayout", /::setCurrentWidget\s*\(/, "currentWidget")
@@ -14170,195 +14564,9 @@ property_writer("QStackedLayout", /::setGeometry\s*\(/, "geometry")
# Property currentWidget (QWidget_Native *)
property_reader("QStackedWidget", /::currentWidget\s*\(/, "currentWidget")
property_writer("QStackedWidget", /::setCurrentWidget\s*\(/, "currentWidget")
-# Property accessibleDescription (string)
-property_reader("QStandardItem", /::accessibleDescription\s*\(/, "accessibleDescription")
-property_writer("QStandardItem", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-# Property accessibleText (string)
-property_reader("QStandardItem", /::accessibleText\s*\(/, "accessibleText")
-property_writer("QStandardItem", /::setAccessibleText\s*\(/, "accessibleText")
-# Property background (QBrush)
-property_reader("QStandardItem", /::background\s*\(/, "background")
-property_writer("QStandardItem", /::setBackground\s*\(/, "background")
-# Property checkState (Qt_CheckState)
-property_reader("QStandardItem", /::checkState\s*\(/, "checkState")
-property_writer("QStandardItem", /::setCheckState\s*\(/, "checkState")
-# Property checkable (bool)
-property_reader("QStandardItem", /::isCheckable\s*\(/, "checkable")
-property_writer("QStandardItem", /::setCheckable\s*\(/, "checkable")
-# Property columnCount (int)
-property_reader("QStandardItem", /::columnCount\s*\(/, "columnCount")
-property_writer("QStandardItem", /::setColumnCount\s*\(/, "columnCount")
-# Property data (variant)
-property_reader("QStandardItem", /::data\s*\(/, "data")
-property_writer("QStandardItem", /::setData\s*\(/, "data")
-# Property dragEnabled (bool)
-property_reader("QStandardItem", /::isDragEnabled\s*\(/, "dragEnabled")
-property_writer("QStandardItem", /::setDragEnabled\s*\(/, "dragEnabled")
-# Property dropEnabled (bool)
-property_reader("QStandardItem", /::isDropEnabled\s*\(/, "dropEnabled")
-property_writer("QStandardItem", /::setDropEnabled\s*\(/, "dropEnabled")
-# Property editable (bool)
-property_reader("QStandardItem", /::isEditable\s*\(/, "editable")
-property_writer("QStandardItem", /::setEditable\s*\(/, "editable")
-# Property enabled (bool)
-property_reader("QStandardItem", /::isEnabled\s*\(/, "enabled")
-property_writer("QStandardItem", /::setEnabled\s*\(/, "enabled")
-# Property flags (Qt_QFlags_ItemFlag)
-property_reader("QStandardItem", /::flags\s*\(/, "flags")
-property_writer("QStandardItem", /::setFlags\s*\(/, "flags")
-# Property font (QFont)
-property_reader("QStandardItem", /::font\s*\(/, "font")
-property_writer("QStandardItem", /::setFont\s*\(/, "font")
-# Property foreground (QBrush)
-property_reader("QStandardItem", /::foreground\s*\(/, "foreground")
-property_writer("QStandardItem", /::setForeground\s*\(/, "foreground")
-# Property icon (QIcon)
-property_reader("QStandardItem", /::icon\s*\(/, "icon")
-property_writer("QStandardItem", /::setIcon\s*\(/, "icon")
-# Property rowCount (int)
-property_reader("QStandardItem", /::rowCount\s*\(/, "rowCount")
-property_writer("QStandardItem", /::setRowCount\s*\(/, "rowCount")
-# Property selectable (bool)
-property_reader("QStandardItem", /::isSelectable\s*\(/, "selectable")
-property_writer("QStandardItem", /::setSelectable\s*\(/, "selectable")
-# Property sizeHint (QSize)
-property_reader("QStandardItem", /::sizeHint\s*\(/, "sizeHint")
-property_writer("QStandardItem", /::setSizeHint\s*\(/, "sizeHint")
-# Property statusTip (string)
-property_reader("QStandardItem", /::statusTip\s*\(/, "statusTip")
-property_writer("QStandardItem", /::setStatusTip\s*\(/, "statusTip")
-# Property text (string)
-property_reader("QStandardItem", /::text\s*\(/, "text")
-property_writer("QStandardItem", /::setText\s*\(/, "text")
-# Property textAlignment (Qt_QFlags_AlignmentFlag)
-property_reader("QStandardItem", /::textAlignment\s*\(/, "textAlignment")
-property_writer("QStandardItem", /::setTextAlignment\s*\(/, "textAlignment")
-# Property toolTip (string)
-property_reader("QStandardItem", /::toolTip\s*\(/, "toolTip")
-property_writer("QStandardItem", /::setToolTip\s*\(/, "toolTip")
-# Property tristate (bool)
-property_reader("QStandardItem", /::isTristate\s*\(/, "tristate")
-property_writer("QStandardItem", /::setTristate\s*\(/, "tristate")
-# Property whatsThis (string)
-property_reader("QStandardItem", /::whatsThis\s*\(/, "whatsThis")
-property_writer("QStandardItem", /::setWhatsThis\s*\(/, "whatsThis")
-# Property columnCount (int)
-property_reader("QStandardItemModel", /::columnCount\s*\(/, "columnCount")
-property_writer("QStandardItemModel", /::setColumnCount\s*\(/, "columnCount")
-# Property itemPrototype (QStandardItem_Native *)
-property_reader("QStandardItemModel", /::itemPrototype\s*\(/, "itemPrototype")
-property_writer("QStandardItemModel", /::setItemPrototype\s*\(/, "itemPrototype")
-# Property parent (QObject_Native *)
-property_reader("QStandardItemModel", /::parent\s*\(/, "parent")
-property_writer("QObject", /::setParent\s*\(/, "parent")
-# Property rowCount (int)
-property_reader("QStandardItemModel", /::rowCount\s*\(/, "rowCount")
-property_writer("QStandardItemModel", /::setRowCount\s*\(/, "rowCount")
-# Property testModeEnabled (bool)
-property_reader("QStandardPaths", /::isTestModeEnabled\s*\(/, "testModeEnabled")
-property_writer("QStandardPaths", /::setTestModeEnabled\s*\(/, "testModeEnabled")
-# Property performanceHint (QStaticText_PerformanceHint)
-property_reader("QStaticText", /::performanceHint\s*\(/, "performanceHint")
-property_writer("QStaticText", /::setPerformanceHint\s*\(/, "performanceHint")
-# Property text (string)
-property_reader("QStaticText", /::text\s*\(/, "text")
-property_writer("QStaticText", /::setText\s*\(/, "text")
-# Property textFormat (Qt_TextFormat)
-property_reader("QStaticText", /::textFormat\s*\(/, "textFormat")
-property_writer("QStaticText", /::setTextFormat\s*\(/, "textFormat")
-# Property textOption (QTextOption)
-property_reader("QStaticText", /::textOption\s*\(/, "textOption")
-property_writer("QStaticText", /::setTextOption\s*\(/, "textOption")
-# Property textWidth (double)
-property_reader("QStaticText", /::textWidth\s*\(/, "textWidth")
-property_writer("QStaticText", /::setTextWidth\s*\(/, "textWidth")
-# Property stringList (string[])
-property_reader("QStringListModel", /::stringList\s*\(/, "stringList")
-property_writer("QStringListModel", /::setStringList\s*\(/, "stringList")
-# Property caseSensitivity (Qt_CaseSensitivity)
-property_reader("QStringMatcher", /::caseSensitivity\s*\(/, "caseSensitivity")
-property_writer("QStringMatcher", /::setCaseSensitivity\s*\(/, "caseSensitivity")
-# Property pattern (string)
-property_reader("QStringMatcher", /::pattern\s*\(/, "pattern")
-property_writer("QStringMatcher", /::setPattern\s*\(/, "pattern")
# Property itemEditorFactory (QItemEditorFactory_Native *)
property_reader("QStyledItemDelegate", /::itemEditorFactory\s*\(/, "itemEditorFactory")
property_writer("QStyledItemDelegate", /::setItemEditorFactory\s*\(/, "itemEditorFactory")
-# Property alphaBufferSize (int)
-property_reader("QSurfaceFormat", /::alphaBufferSize\s*\(/, "alphaBufferSize")
-property_writer("QSurfaceFormat", /::setAlphaBufferSize\s*\(/, "alphaBufferSize")
-# Property blueBufferSize (int)
-property_reader("QSurfaceFormat", /::blueBufferSize\s*\(/, "blueBufferSize")
-property_writer("QSurfaceFormat", /::setBlueBufferSize\s*\(/, "blueBufferSize")
-# Property defaultFormat (QSurfaceFormat)
-property_reader("QSurfaceFormat", /::defaultFormat\s*\(/, "defaultFormat")
-property_writer("QSurfaceFormat", /::setDefaultFormat\s*\(/, "defaultFormat")
-# Property depthBufferSize (int)
-property_reader("QSurfaceFormat", /::depthBufferSize\s*\(/, "depthBufferSize")
-property_writer("QSurfaceFormat", /::setDepthBufferSize\s*\(/, "depthBufferSize")
-# Property greenBufferSize (int)
-property_reader("QSurfaceFormat", /::greenBufferSize\s*\(/, "greenBufferSize")
-property_writer("QSurfaceFormat", /::setGreenBufferSize\s*\(/, "greenBufferSize")
-# Property majorVersion (int)
-property_reader("QSurfaceFormat", /::majorVersion\s*\(/, "majorVersion")
-property_writer("QSurfaceFormat", /::setMajorVersion\s*\(/, "majorVersion")
-# Property minorVersion (int)
-property_reader("QSurfaceFormat", /::minorVersion\s*\(/, "minorVersion")
-property_writer("QSurfaceFormat", /::setMinorVersion\s*\(/, "minorVersion")
-# Property options (QSurfaceFormat_QFlags_FormatOption)
-property_reader("QSurfaceFormat", /::options\s*\(/, "options")
-property_writer("QSurfaceFormat", /::setOptions\s*\(/, "options")
-# Property profile (QSurfaceFormat_OpenGLContextProfile)
-property_reader("QSurfaceFormat", /::profile\s*\(/, "profile")
-property_writer("QSurfaceFormat", /::setProfile\s*\(/, "profile")
-# Property redBufferSize (int)
-property_reader("QSurfaceFormat", /::redBufferSize\s*\(/, "redBufferSize")
-property_writer("QSurfaceFormat", /::setRedBufferSize\s*\(/, "redBufferSize")
-# Property renderableType (QSurfaceFormat_RenderableType)
-property_reader("QSurfaceFormat", /::renderableType\s*\(/, "renderableType")
-property_writer("QSurfaceFormat", /::setRenderableType\s*\(/, "renderableType")
-# Property samples (int)
-property_reader("QSurfaceFormat", /::samples\s*\(/, "samples")
-property_writer("QSurfaceFormat", /::setSamples\s*\(/, "samples")
-# Property stencilBufferSize (int)
-property_reader("QSurfaceFormat", /::stencilBufferSize\s*\(/, "stencilBufferSize")
-property_writer("QSurfaceFormat", /::setStencilBufferSize\s*\(/, "stencilBufferSize")
-# Property stereo (bool)
-property_reader("QSurfaceFormat", /::stereo\s*\(/, "stereo")
-property_writer("QSurfaceFormat", /::setStereo\s*\(/, "stereo")
-# Property swapBehavior (QSurfaceFormat_SwapBehavior)
-property_reader("QSurfaceFormat", /::swapBehavior\s*\(/, "swapBehavior")
-property_writer("QSurfaceFormat", /::setSwapBehavior\s*\(/, "swapBehavior")
-# Property swapInterval (int)
-property_reader("QSurfaceFormat", /::swapInterval\s*\(/, "swapInterval")
-property_writer("QSurfaceFormat", /::setSwapInterval\s*\(/, "swapInterval")
-# Property description (string)
-property_reader("QSvgGenerator", /::description\s*\(/, "description")
-property_writer("QSvgGenerator", /::setDescription\s*\(/, "description")
-# Property fileName (string)
-property_reader("QSvgGenerator", /::fileName\s*\(/, "fileName")
-property_writer("QSvgGenerator", /::setFileName\s*\(/, "fileName")
-# Property outputDevice (QIODevice *)
-property_reader("QSvgGenerator", /::outputDevice\s*\(/, "outputDevice")
-property_writer("QSvgGenerator", /::setOutputDevice\s*\(/, "outputDevice")
-# Property resolution (int)
-property_reader("QSvgGenerator", /::resolution\s*\(/, "resolution")
-property_writer("QSvgGenerator", /::setResolution\s*\(/, "resolution")
-# Property size (QSize)
-property_reader("QSvgGenerator", /::size\s*\(/, "size")
-property_writer("QSvgGenerator", /::setSize\s*\(/, "size")
-# Property title (string)
-property_reader("QSvgGenerator", /::title\s*\(/, "title")
-property_writer("QSvgGenerator", /::setTitle\s*\(/, "title")
-# Property viewBox (QRect)
-property_reader("QSvgGenerator", /::viewBox\s*\(/, "viewBox")
-property_writer("QSvgGenerator", /::setViewBox\s*\(/, "viewBox")
-# Property document (QTextDocument_Native *)
-property_reader("QSyntaxHighlighter", /::document\s*\(/, "document")
-property_writer("QSyntaxHighlighter", /::setDocument\s*\(/, "document")
-# Property key (string)
-property_reader("QSystemSemaphore", /::key\s*\(/, "key")
-property_writer("QSystemSemaphore", /::setKey\s*\(/, "key")
# Property contextMenu (QMenu_Native *)
property_reader("QSystemTrayIcon", /::contextMenu\s*\(/, "contextMenu")
property_writer("QSystemTrayIcon", /::setContextMenu\s*\(/, "contextMenu")
@@ -14437,204 +14645,6 @@ property_writer("QTableWidgetItem", /::setWhatsThis\s*\(/, "whatsThis")
# Property timeout (int)
property_reader("QTapAndHoldGesture", /::timeout\s*\(/, "timeout")
property_writer("QTapAndHoldGesture", /::setTimeout\s*\(/, "timeout")
-# Property maxPendingConnections (int)
-property_reader("QTcpServer", /::maxPendingConnections\s*\(/, "maxPendingConnections")
-property_writer("QTcpServer", /::setMaxPendingConnections\s*\(/, "maxPendingConnections")
-# Property proxy (QNetworkProxy)
-property_reader("QTcpServer", /::proxy\s*\(/, "proxy")
-property_writer("QTcpServer", /::setProxy\s*\(/, "proxy")
-# Property autoRemove (bool)
-property_reader("QTemporaryDir", /::autoRemove\s*\(/, "autoRemove")
-property_writer("QTemporaryDir", /::setAutoRemove\s*\(/, "autoRemove")
-# Property autoRemove (bool)
-property_reader("QTemporaryFile", /::autoRemove\s*\(/, "autoRemove")
-property_writer("QTemporaryFile", /::setAutoRemove\s*\(/, "autoRemove")
-# Property fileName (string)
-property_reader("QTemporaryFile", /::fileName\s*\(/, "fileName")
-property_writer("QFile", /::setFileName\s*\(/, "fileName")
-# Property fileTemplate (string)
-property_reader("QTemporaryFile", /::fileTemplate\s*\(/, "fileTemplate")
-property_writer("QTemporaryFile", /::setFileTemplate\s*\(/, "fileTemplate")
-# Property lineCount (int)
-property_reader("QTextBlock", /::lineCount\s*\(/, "lineCount")
-property_writer("QTextBlock", /::setLineCount\s*\(/, "lineCount")
-# Property revision (int)
-property_reader("QTextBlock", /::revision\s*\(/, "revision")
-property_writer("QTextBlock", /::setRevision\s*\(/, "revision")
-# Property userData (QTextBlockUserData_Native *)
-property_reader("QTextBlock", /::userData\s*\(/, "userData")
-property_writer("QTextBlock", /::setUserData\s*\(/, "userData")
-# Property userState (int)
-property_reader("QTextBlock", /::userState\s*\(/, "userState")
-property_writer("QTextBlock", /::setUserState\s*\(/, "userState")
-# Property visible (bool)
-property_reader("QTextBlock", /::isVisible\s*\(/, "visible")
-property_writer("QTextBlock", /::setVisible\s*\(/, "visible")
-# Property alignment (Qt_QFlags_AlignmentFlag)
-property_reader("QTextBlockFormat", /::alignment\s*\(/, "alignment")
-property_writer("QTextBlockFormat", /::setAlignment\s*\(/, "alignment")
-# Property bottomMargin (double)
-property_reader("QTextBlockFormat", /::bottomMargin\s*\(/, "bottomMargin")
-property_writer("QTextBlockFormat", /::setBottomMargin\s*\(/, "bottomMargin")
-# Property indent (int)
-property_reader("QTextBlockFormat", /::indent\s*\(/, "indent")
-property_writer("QTextBlockFormat", /::setIndent\s*\(/, "indent")
-# Property leftMargin (double)
-property_reader("QTextBlockFormat", /::leftMargin\s*\(/, "leftMargin")
-property_writer("QTextBlockFormat", /::setLeftMargin\s*\(/, "leftMargin")
-# Property nonBreakableLines (bool)
-property_reader("QTextBlockFormat", /::nonBreakableLines\s*\(/, "nonBreakableLines")
-property_writer("QTextBlockFormat", /::setNonBreakableLines\s*\(/, "nonBreakableLines")
-# Property pageBreakPolicy (QTextFormat_QFlags_PageBreakFlag)
-property_reader("QTextBlockFormat", /::pageBreakPolicy\s*\(/, "pageBreakPolicy")
-property_writer("QTextBlockFormat", /::setPageBreakPolicy\s*\(/, "pageBreakPolicy")
-# Property rightMargin (double)
-property_reader("QTextBlockFormat", /::rightMargin\s*\(/, "rightMargin")
-property_writer("QTextBlockFormat", /::setRightMargin\s*\(/, "rightMargin")
-# Property tabPositions (QTextOption_Tab[])
-property_reader("QTextBlockFormat", /::tabPositions\s*\(/, "tabPositions")
-property_writer("QTextBlockFormat", /::setTabPositions\s*\(/, "tabPositions")
-# Property textIndent (double)
-property_reader("QTextBlockFormat", /::textIndent\s*\(/, "textIndent")
-property_writer("QTextBlockFormat", /::setTextIndent\s*\(/, "textIndent")
-# Property topMargin (double)
-property_reader("QTextBlockFormat", /::topMargin\s*\(/, "topMargin")
-property_writer("QTextBlockFormat", /::setTopMargin\s*\(/, "topMargin")
-# Property position (int)
-property_reader("QTextBoundaryFinder", /::position\s*\(/, "position")
-property_writer("QTextBoundaryFinder", /::setPosition\s*\(/, "position")
-# Property anchor (bool)
-property_reader("QTextCharFormat", /::isAnchor\s*\(/, "anchor")
-property_writer("QTextCharFormat", /::setAnchor\s*\(/, "anchor")
-# Property anchorHref (string)
-property_reader("QTextCharFormat", /::anchorHref\s*\(/, "anchorHref")
-property_writer("QTextCharFormat", /::setAnchorHref\s*\(/, "anchorHref")
-# Property anchorName (string)
-property_reader("QTextCharFormat", /::anchorName\s*\(/, "anchorName")
-property_writer("QTextCharFormat", /::setAnchorName\s*\(/, "anchorName")
-# Property anchorNames (string[])
-property_reader("QTextCharFormat", /::anchorNames\s*\(/, "anchorNames")
-property_writer("QTextCharFormat", /::setAnchorNames\s*\(/, "anchorNames")
-# Property font (QFont)
-property_reader("QTextCharFormat", /::font\s*\(/, "font")
-property_writer("QTextCharFormat", /::setFont\s*\(/, "font")
-# Property fontCapitalization (QFont_Capitalization)
-property_reader("QTextCharFormat", /::fontCapitalization\s*\(/, "fontCapitalization")
-property_writer("QTextCharFormat", /::setFontCapitalization\s*\(/, "fontCapitalization")
-# Property fontFamily (string)
-property_reader("QTextCharFormat", /::fontFamily\s*\(/, "fontFamily")
-property_writer("QTextCharFormat", /::setFontFamily\s*\(/, "fontFamily")
-# Property fontFixedPitch (bool)
-property_reader("QTextCharFormat", /::fontFixedPitch\s*\(/, "fontFixedPitch")
-property_writer("QTextCharFormat", /::setFontFixedPitch\s*\(/, "fontFixedPitch")
-# Property fontHintingPreference (QFont_HintingPreference)
-property_reader("QTextCharFormat", /::fontHintingPreference\s*\(/, "fontHintingPreference")
-property_writer("QTextCharFormat", /::setFontHintingPreference\s*\(/, "fontHintingPreference")
-# Property fontItalic (bool)
-property_reader("QTextCharFormat", /::fontItalic\s*\(/, "fontItalic")
-property_writer("QTextCharFormat", /::setFontItalic\s*\(/, "fontItalic")
-# Property fontKerning (bool)
-property_reader("QTextCharFormat", /::fontKerning\s*\(/, "fontKerning")
-property_writer("QTextCharFormat", /::setFontKerning\s*\(/, "fontKerning")
-# Property fontLetterSpacing (double)
-property_reader("QTextCharFormat", /::fontLetterSpacing\s*\(/, "fontLetterSpacing")
-property_writer("QTextCharFormat", /::setFontLetterSpacing\s*\(/, "fontLetterSpacing")
-# Property fontLetterSpacingType (QFont_SpacingType)
-property_reader("QTextCharFormat", /::fontLetterSpacingType\s*\(/, "fontLetterSpacingType")
-property_writer("QTextCharFormat", /::setFontLetterSpacingType\s*\(/, "fontLetterSpacingType")
-# Property fontOverline (bool)
-property_reader("QTextCharFormat", /::fontOverline\s*\(/, "fontOverline")
-property_writer("QTextCharFormat", /::setFontOverline\s*\(/, "fontOverline")
-# Property fontPointSize (double)
-property_reader("QTextCharFormat", /::fontPointSize\s*\(/, "fontPointSize")
-property_writer("QTextCharFormat", /::setFontPointSize\s*\(/, "fontPointSize")
-# Property fontStretch (int)
-property_reader("QTextCharFormat", /::fontStretch\s*\(/, "fontStretch")
-property_writer("QTextCharFormat", /::setFontStretch\s*\(/, "fontStretch")
-# Property fontStrikeOut (bool)
-property_reader("QTextCharFormat", /::fontStrikeOut\s*\(/, "fontStrikeOut")
-property_writer("QTextCharFormat", /::setFontStrikeOut\s*\(/, "fontStrikeOut")
-# Property fontStyleHint (QFont_StyleHint)
-property_reader("QTextCharFormat", /::fontStyleHint\s*\(/, "fontStyleHint")
-property_writer("QTextCharFormat", /::setFontStyleHint\s*\(/, "fontStyleHint")
-# Property fontStyleStrategy (QFont_StyleStrategy)
-property_reader("QTextCharFormat", /::fontStyleStrategy\s*\(/, "fontStyleStrategy")
-property_writer("QTextCharFormat", /::setFontStyleStrategy\s*\(/, "fontStyleStrategy")
-# Property fontUnderline (bool)
-property_reader("QTextCharFormat", /::fontUnderline\s*\(/, "fontUnderline")
-property_writer("QTextCharFormat", /::setFontUnderline\s*\(/, "fontUnderline")
-# Property fontWeight (int)
-property_reader("QTextCharFormat", /::fontWeight\s*\(/, "fontWeight")
-property_writer("QTextCharFormat", /::setFontWeight\s*\(/, "fontWeight")
-# Property fontWordSpacing (double)
-property_reader("QTextCharFormat", /::fontWordSpacing\s*\(/, "fontWordSpacing")
-property_writer("QTextCharFormat", /::setFontWordSpacing\s*\(/, "fontWordSpacing")
-# Property tableCellColumnSpan (int)
-property_reader("QTextCharFormat", /::tableCellColumnSpan\s*\(/, "tableCellColumnSpan")
-property_writer("QTextCharFormat", /::setTableCellColumnSpan\s*\(/, "tableCellColumnSpan")
-# Property tableCellRowSpan (int)
-property_reader("QTextCharFormat", /::tableCellRowSpan\s*\(/, "tableCellRowSpan")
-property_writer("QTextCharFormat", /::setTableCellRowSpan\s*\(/, "tableCellRowSpan")
-# Property textOutline (QPen)
-property_reader("QTextCharFormat", /::textOutline\s*\(/, "textOutline")
-property_writer("QTextCharFormat", /::setTextOutline\s*\(/, "textOutline")
-# Property toolTip (string)
-property_reader("QTextCharFormat", /::toolTip\s*\(/, "toolTip")
-property_writer("QTextCharFormat", /::setToolTip\s*\(/, "toolTip")
-# Property underlineColor (QColor)
-property_reader("QTextCharFormat", /::underlineColor\s*\(/, "underlineColor")
-property_writer("QTextCharFormat", /::setUnderlineColor\s*\(/, "underlineColor")
-# Property underlineStyle (QTextCharFormat_UnderlineStyle)
-property_reader("QTextCharFormat", /::underlineStyle\s*\(/, "underlineStyle")
-property_writer("QTextCharFormat", /::setUnderlineStyle\s*\(/, "underlineStyle")
-# Property verticalAlignment (QTextCharFormat_VerticalAlignment)
-property_reader("QTextCharFormat", /::verticalAlignment\s*\(/, "verticalAlignment")
-property_writer("QTextCharFormat", /::setVerticalAlignment\s*\(/, "verticalAlignment")
-# Property codecForLocale (QTextCodec_Native *)
-property_reader("QTextCodec", /::codecForLocale\s*\(/, "codecForLocale")
-property_writer("QTextCodec", /::setCodecForLocale\s*\(/, "codecForLocale")
-# Property blockCharFormat (QTextCharFormat)
-property_reader("QTextCursor", /::blockCharFormat\s*\(/, "blockCharFormat")
-property_writer("QTextCursor", /::setBlockCharFormat\s*\(/, "blockCharFormat")
-# Property blockFormat (QTextBlockFormat)
-property_reader("QTextCursor", /::blockFormat\s*\(/, "blockFormat")
-property_writer("QTextCursor", /::setBlockFormat\s*\(/, "blockFormat")
-# Property charFormat (QTextCharFormat)
-property_reader("QTextCursor", /::charFormat\s*\(/, "charFormat")
-property_writer("QTextCursor", /::setCharFormat\s*\(/, "charFormat")
-# Property keepPositionOnInsert (bool)
-property_reader("QTextCursor", /::keepPositionOnInsert\s*\(/, "keepPositionOnInsert")
-property_writer("QTextCursor", /::setKeepPositionOnInsert\s*\(/, "keepPositionOnInsert")
-# Property position (int)
-property_reader("QTextCursor", /::position\s*\(/, "position")
-property_writer("QTextCursor", /::setPosition\s*\(/, "position")
-# Property verticalMovementX (int)
-property_reader("QTextCursor", /::verticalMovementX\s*\(/, "verticalMovementX")
-property_writer("QTextCursor", /::setVerticalMovementX\s*\(/, "verticalMovementX")
-# Property visualNavigation (bool)
-property_reader("QTextCursor", /::visualNavigation\s*\(/, "visualNavigation")
-property_writer("QTextCursor", /::setVisualNavigation\s*\(/, "visualNavigation")
-# Property defaultCursorMoveStyle (Qt_CursorMoveStyle)
-property_reader("QTextDocument", /::defaultCursorMoveStyle\s*\(/, "defaultCursorMoveStyle")
-property_writer("QTextDocument", /::setDefaultCursorMoveStyle\s*\(/, "defaultCursorMoveStyle")
-# Property defaultTextOption (QTextOption)
-property_reader("QTextDocument", /::defaultTextOption\s*\(/, "defaultTextOption")
-property_writer("QTextDocument", /::setDefaultTextOption\s*\(/, "defaultTextOption")
-# Property documentLayout (QAbstractTextDocumentLayout_Native *)
-property_reader("QTextDocument", /::documentLayout\s*\(/, "documentLayout")
-property_writer("QTextDocument", /::setDocumentLayout\s*\(/, "documentLayout")
-# Property codec (QTextCodec_Native *)
-property_reader("QTextDocumentWriter", /::codec\s*\(/, "codec")
-property_writer("QTextDocumentWriter", /::setCodec\s*\(/, "codec")
-# Property device (QIODevice *)
-property_reader("QTextDocumentWriter", /::device\s*\(/, "device")
-property_writer("QTextDocumentWriter", /::setDevice\s*\(/, "device")
-# Property fileName (string)
-property_reader("QTextDocumentWriter", /::fileName\s*\(/, "fileName")
-property_writer("QTextDocumentWriter", /::setFileName\s*\(/, "fileName")
-# Property format (string)
-property_reader("QTextDocumentWriter", /::format\s*\(/, "format")
-property_writer("QTextDocumentWriter", /::setFormat\s*\(/, "format")
# Property alignment (Qt_QFlags_AlignmentFlag)
property_reader("QTextEdit", /::alignment\s*\(/, "alignment")
property_writer("QTextEdit", /::setAlignment\s*\(/, "alignment")
@@ -14674,234 +14684,6 @@ property_writer("QTextEdit", /::setTextCursor\s*\(/, "textCursor")
# Property wordWrapMode (QTextOption_WrapMode)
property_reader("QTextEdit", /::wordWrapMode\s*\(/, "wordWrapMode")
property_writer("QTextEdit", /::setWordWrapMode\s*\(/, "wordWrapMode")
-# Property background (QBrush)
-property_reader("QTextFormat", /::background\s*\(/, "background")
-property_writer("QTextFormat", /::setBackground\s*\(/, "background")
-# Property foreground (QBrush)
-property_reader("QTextFormat", /::foreground\s*\(/, "foreground")
-property_writer("QTextFormat", /::setForeground\s*\(/, "foreground")
-# Property layoutDirection (Qt_LayoutDirection)
-property_reader("QTextFormat", /::layoutDirection\s*\(/, "layoutDirection")
-property_writer("QTextFormat", /::setLayoutDirection\s*\(/, "layoutDirection")
-# Property objectIndex (int)
-property_reader("QTextFormat", /::objectIndex\s*\(/, "objectIndex")
-property_writer("QTextFormat", /::setObjectIndex\s*\(/, "objectIndex")
-# Property objectType (int)
-property_reader("QTextFormat", /::objectType\s*\(/, "objectType")
-property_writer("QTextFormat", /::setObjectType\s*\(/, "objectType")
-# Property frameFormat (QTextFrameFormat)
-property_reader("QTextFrame", /::frameFormat\s*\(/, "frameFormat")
-property_writer("QTextFrame", /::setFrameFormat\s*\(/, "frameFormat")
-# Property border (double)
-property_reader("QTextFrameFormat", /::border\s*\(/, "border")
-property_writer("QTextFrameFormat", /::setBorder\s*\(/, "border")
-# Property borderBrush (QBrush)
-property_reader("QTextFrameFormat", /::borderBrush\s*\(/, "borderBrush")
-property_writer("QTextFrameFormat", /::setBorderBrush\s*\(/, "borderBrush")
-# Property borderStyle (QTextFrameFormat_BorderStyle)
-property_reader("QTextFrameFormat", /::borderStyle\s*\(/, "borderStyle")
-property_writer("QTextFrameFormat", /::setBorderStyle\s*\(/, "borderStyle")
-# Property bottomMargin (double)
-property_reader("QTextFrameFormat", /::bottomMargin\s*\(/, "bottomMargin")
-property_writer("QTextFrameFormat", /::setBottomMargin\s*\(/, "bottomMargin")
-# Property leftMargin (double)
-property_reader("QTextFrameFormat", /::leftMargin\s*\(/, "leftMargin")
-property_writer("QTextFrameFormat", /::setLeftMargin\s*\(/, "leftMargin")
-# Property margin (double)
-property_reader("QTextFrameFormat", /::margin\s*\(/, "margin")
-property_writer("QTextFrameFormat", /::setMargin\s*\(/, "margin")
-# Property padding (double)
-property_reader("QTextFrameFormat", /::padding\s*\(/, "padding")
-property_writer("QTextFrameFormat", /::setPadding\s*\(/, "padding")
-# Property pageBreakPolicy (QTextFormat_QFlags_PageBreakFlag)
-property_reader("QTextFrameFormat", /::pageBreakPolicy\s*\(/, "pageBreakPolicy")
-property_writer("QTextFrameFormat", /::setPageBreakPolicy\s*\(/, "pageBreakPolicy")
-# Property position (QTextFrameFormat_Position)
-property_reader("QTextFrameFormat", /::position\s*\(/, "position")
-property_writer("QTextFrameFormat", /::setPosition\s*\(/, "position")
-# Property rightMargin (double)
-property_reader("QTextFrameFormat", /::rightMargin\s*\(/, "rightMargin")
-property_writer("QTextFrameFormat", /::setRightMargin\s*\(/, "rightMargin")
-# Property topMargin (double)
-property_reader("QTextFrameFormat", /::topMargin\s*\(/, "topMargin")
-property_writer("QTextFrameFormat", /::setTopMargin\s*\(/, "topMargin")
-# Property height (double)
-property_reader("QTextImageFormat", /::height\s*\(/, "height")
-property_writer("QTextImageFormat", /::setHeight\s*\(/, "height")
-# Property name (string)
-property_reader("QTextImageFormat", /::name\s*\(/, "name")
-property_writer("QTextImageFormat", /::setName\s*\(/, "name")
-# Property width (double)
-property_reader("QTextImageFormat", /::width\s*\(/, "width")
-property_writer("QTextImageFormat", /::setWidth\s*\(/, "width")
-# Property ascent (double)
-property_reader("QTextInlineObject", /::ascent\s*\(/, "ascent")
-property_writer("QTextInlineObject", /::setAscent\s*\(/, "ascent")
-# Property descent (double)
-property_reader("QTextInlineObject", /::descent\s*\(/, "descent")
-property_writer("QTextInlineObject", /::setDescent\s*\(/, "descent")
-# Property width (double)
-property_reader("QTextInlineObject", /::width\s*\(/, "width")
-property_writer("QTextInlineObject", /::setWidth\s*\(/, "width")
-# Property additionalFormats (QTextLayout_FormatRange[])
-property_reader("QTextLayout", /::additionalFormats\s*\(/, "additionalFormats")
-property_writer("QTextLayout", /::setAdditionalFormats\s*\(/, "additionalFormats")
-# Property cacheEnabled (bool)
-property_reader("QTextLayout", /::cacheEnabled\s*\(/, "cacheEnabled")
-property_writer("QTextLayout", /::setCacheEnabled\s*\(/, "cacheEnabled")
-# Property cursorMoveStyle (Qt_CursorMoveStyle)
-property_reader("QTextLayout", /::cursorMoveStyle\s*\(/, "cursorMoveStyle")
-property_writer("QTextLayout", /::setCursorMoveStyle\s*\(/, "cursorMoveStyle")
-# Property font (QFont)
-property_reader("QTextLayout", /::font\s*\(/, "font")
-property_writer("QTextLayout", /::setFont\s*\(/, "font")
-# Property position (QPointF)
-property_reader("QTextLayout", /::position\s*\(/, "position")
-property_writer("QTextLayout", /::setPosition\s*\(/, "position")
-# Property text (string)
-property_reader("QTextLayout", /::text\s*\(/, "text")
-property_writer("QTextLayout", /::setText\s*\(/, "text")
-# Property textOption (QTextOption)
-property_reader("QTextLayout", /::textOption\s*\(/, "textOption")
-property_writer("QTextLayout", /::setTextOption\s*\(/, "textOption")
-# Property leadingIncluded (bool)
-property_reader("QTextLine", /::leadingIncluded\s*\(/, "leadingIncluded")
-property_writer("QTextLine", /::setLeadingIncluded\s*\(/, "leadingIncluded")
-# Property position (QPointF)
-property_reader("QTextLine", /::position\s*\(/, "position")
-property_writer("QTextLine", /::setPosition\s*\(/, "position")
-# Property format (QTextListFormat)
-property_reader("QTextList", /::format\s*\(/, "format")
-property_writer("QTextList", /::setFormat\s*\(/, "format")
-# Property indent (int)
-property_reader("QTextListFormat", /::indent\s*\(/, "indent")
-property_writer("QTextListFormat", /::setIndent\s*\(/, "indent")
-# Property numberPrefix (string)
-property_reader("QTextListFormat", /::numberPrefix\s*\(/, "numberPrefix")
-property_writer("QTextListFormat", /::setNumberPrefix\s*\(/, "numberPrefix")
-# Property numberSuffix (string)
-property_reader("QTextListFormat", /::numberSuffix\s*\(/, "numberSuffix")
-property_writer("QTextListFormat", /::setNumberSuffix\s*\(/, "numberSuffix")
-# Property style (QTextListFormat_Style)
-property_reader("QTextListFormat", /::style\s*\(/, "style")
-property_writer("QTextListFormat", /::setStyle\s*\(/, "style")
-# Property alignment (Qt_QFlags_AlignmentFlag)
-property_reader("QTextOption", /::alignment\s*\(/, "alignment")
-property_writer("QTextOption", /::setAlignment\s*\(/, "alignment")
-# Property flags (QTextOption_QFlags_Flag)
-property_reader("QTextOption", /::flags\s*\(/, "flags")
-property_writer("QTextOption", /::setFlags\s*\(/, "flags")
-# Property tabArray (double[])
-property_reader("QTextOption", /::tabArray\s*\(/, "tabArray")
-property_writer("QTextOption", /::setTabArray\s*\(/, "tabArray")
-# Property tabStop (double)
-property_reader("QTextOption", /::tabStop\s*\(/, "tabStop")
-property_writer("QTextOption", /::setTabStop\s*\(/, "tabStop")
-# Property tabs (QTextOption_Tab[])
-property_reader("QTextOption", /::tabs\s*\(/, "tabs")
-property_writer("QTextOption", /::setTabs\s*\(/, "tabs")
-# Property textDirection (Qt_LayoutDirection)
-property_reader("QTextOption", /::textDirection\s*\(/, "textDirection")
-property_writer("QTextOption", /::setTextDirection\s*\(/, "textDirection")
-# Property useDesignMetrics (bool)
-property_reader("QTextOption", /::useDesignMetrics\s*\(/, "useDesignMetrics")
-property_writer("QTextOption", /::setUseDesignMetrics\s*\(/, "useDesignMetrics")
-# Property wrapMode (QTextOption_WrapMode)
-property_reader("QTextOption", /::wrapMode\s*\(/, "wrapMode")
-property_writer("QTextOption", /::setWrapMode\s*\(/, "wrapMode")
-# Property autoDetectUnicode (bool)
-property_reader("QTextStream", /::autoDetectUnicode\s*\(/, "autoDetectUnicode")
-property_writer("QTextStream", /::setAutoDetectUnicode\s*\(/, "autoDetectUnicode")
-# Property codec (QTextCodec_Native *)
-property_reader("QTextStream", /::codec\s*\(/, "codec")
-property_writer("QTextStream", /::setCodec\s*\(/, "codec")
-# Property device (QIODevice *)
-property_reader("QTextStream", /::device\s*\(/, "device")
-property_writer("QTextStream", /::setDevice\s*\(/, "device")
-# Property fieldAlignment (QTextStream_FieldAlignment)
-property_reader("QTextStream", /::fieldAlignment\s*\(/, "fieldAlignment")
-property_writer("QTextStream", /::setFieldAlignment\s*\(/, "fieldAlignment")
-# Property fieldWidth (int)
-property_reader("QTextStream", /::fieldWidth\s*\(/, "fieldWidth")
-property_writer("QTextStream", /::setFieldWidth\s*\(/, "fieldWidth")
-# Property generateByteOrderMark (bool)
-property_reader("QTextStream", /::generateByteOrderMark\s*\(/, "generateByteOrderMark")
-property_writer("QTextStream", /::setGenerateByteOrderMark\s*\(/, "generateByteOrderMark")
-# Property integerBase (int)
-property_reader("QTextStream", /::integerBase\s*\(/, "integerBase")
-property_writer("QTextStream", /::setIntegerBase\s*\(/, "integerBase")
-# Property locale (QLocale)
-property_reader("QTextStream", /::locale\s*\(/, "locale")
-property_writer("QTextStream", /::setLocale\s*\(/, "locale")
-# Property numberFlags (QTextStream_QFlags_NumberFlag)
-property_reader("QTextStream", /::numberFlags\s*\(/, "numberFlags")
-property_writer("QTextStream", /::setNumberFlags\s*\(/, "numberFlags")
-# Property padChar (unsigned int)
-property_reader("QTextStream", /::padChar\s*\(/, "padChar")
-property_writer("QTextStream", /::setPadChar\s*\(/, "padChar")
-# Property realNumberNotation (QTextStream_RealNumberNotation)
-property_reader("QTextStream", /::realNumberNotation\s*\(/, "realNumberNotation")
-property_writer("QTextStream", /::setRealNumberNotation\s*\(/, "realNumberNotation")
-# Property realNumberPrecision (int)
-property_reader("QTextStream", /::realNumberPrecision\s*\(/, "realNumberPrecision")
-property_writer("QTextStream", /::setRealNumberPrecision\s*\(/, "realNumberPrecision")
-# Property status (QTextStream_Status)
-property_reader("QTextStream", /::status\s*\(/, "status")
-property_writer("QTextStream", /::setStatus\s*\(/, "status")
-# Property string (string *)
-property_reader("QTextStream", /::string\s*\(/, "string")
-property_writer("QTextStream", /::setString\s*\(/, "string")
-# Property format (QTextTableFormat)
-property_reader("QTextTable", /::format\s*\(/, "format")
-property_writer("QTextTable", /::setFormat\s*\(/, "format")
-# Property format (QTextCharFormat)
-property_reader("QTextTableCell", /::format\s*\(/, "format")
-property_writer("QTextTableCell", /::setFormat\s*\(/, "format")
-# Property bottomPadding (double)
-property_reader("QTextTableCellFormat", /::bottomPadding\s*\(/, "bottomPadding")
-property_writer("QTextTableCellFormat", /::setBottomPadding\s*\(/, "bottomPadding")
-# Property leftPadding (double)
-property_reader("QTextTableCellFormat", /::leftPadding\s*\(/, "leftPadding")
-property_writer("QTextTableCellFormat", /::setLeftPadding\s*\(/, "leftPadding")
-# Property rightPadding (double)
-property_reader("QTextTableCellFormat", /::rightPadding\s*\(/, "rightPadding")
-property_writer("QTextTableCellFormat", /::setRightPadding\s*\(/, "rightPadding")
-# Property topPadding (double)
-property_reader("QTextTableCellFormat", /::topPadding\s*\(/, "topPadding")
-property_writer("QTextTableCellFormat", /::setTopPadding\s*\(/, "topPadding")
-# Property alignment (Qt_QFlags_AlignmentFlag)
-property_reader("QTextTableFormat", /::alignment\s*\(/, "alignment")
-property_writer("QTextTableFormat", /::setAlignment\s*\(/, "alignment")
-# Property cellPadding (double)
-property_reader("QTextTableFormat", /::cellPadding\s*\(/, "cellPadding")
-property_writer("QTextTableFormat", /::setCellPadding\s*\(/, "cellPadding")
-# Property cellSpacing (double)
-property_reader("QTextTableFormat", /::cellSpacing\s*\(/, "cellSpacing")
-property_writer("QTextTableFormat", /::setCellSpacing\s*\(/, "cellSpacing")
-# Property columnWidthConstraints (QTextLength[])
-property_reader("QTextTableFormat", /::columnWidthConstraints\s*\(/, "columnWidthConstraints")
-property_writer("QTextTableFormat", /::setColumnWidthConstraints\s*\(/, "columnWidthConstraints")
-# Property columns (int)
-property_reader("QTextTableFormat", /::columns\s*\(/, "columns")
-property_writer("QTextTableFormat", /::setColumns\s*\(/, "columns")
-# Property headerRowCount (int)
-property_reader("QTextTableFormat", /::headerRowCount\s*\(/, "headerRowCount")
-property_writer("QTextTableFormat", /::setHeaderRowCount\s*\(/, "headerRowCount")
-# Property eventDispatcher (QAbstractEventDispatcher_Native *)
-property_reader("QThread", /::eventDispatcher\s*\(/, "eventDispatcher")
-property_writer("QThread", /::setEventDispatcher\s*\(/, "eventDispatcher")
-# Property priority (QThread_Priority)
-property_reader("QThread", /::priority\s*\(/, "priority")
-property_writer("QThread", /::setPriority\s*\(/, "priority")
-# Property stackSize (unsigned int)
-property_reader("QThread", /::stackSize\s*\(/, "stackSize")
-property_writer("QThread", /::setStackSize\s*\(/, "stackSize")
-# Property endFrame (int)
-property_reader("QTimeLine", /::endFrame\s*\(/, "endFrame")
-property_writer("QTimeLine", /::setEndFrame\s*\(/, "endFrame")
-# Property startFrame (int)
-property_reader("QTimeLine", /::startFrame\s*\(/, "startFrame")
-property_writer("QTimeLine", /::setStartFrame\s*\(/, "startFrame")
# Property currentWidget (QWidget_Native *)
property_reader("QToolBox", /::currentWidget\s*\(/, "currentWidget")
property_writer("QToolBox", /::setCurrentWidget\s*\(/, "currentWidget")
@@ -14917,93 +14699,6 @@ property_writer("QToolTip", /::setFont\s*\(/, "font")
# Property palette (QPalette)
property_reader("QToolTip", /::palette\s*\(/, "palette")
property_writer("QToolTip", /::setPalette\s*\(/, "palette")
-# Property capabilities (QTouchDevice_QFlags_CapabilityFlag)
-property_reader("QTouchDevice", /::capabilities\s*\(/, "capabilities")
-property_writer("QTouchDevice", /::setCapabilities\s*\(/, "capabilities")
-# Property maximumTouchPoints (int)
-property_reader("QTouchDevice", /::maximumTouchPoints\s*\(/, "maximumTouchPoints")
-property_writer("QTouchDevice", /::setMaximumTouchPoints\s*\(/, "maximumTouchPoints")
-# Property name (string)
-property_reader("QTouchDevice", /::name\s*\(/, "name")
-property_writer("QTouchDevice", /::setName\s*\(/, "name")
-# Property type (QTouchDevice_DeviceType)
-property_reader("QTouchDevice", /::type\s*\(/, "type")
-property_writer("QTouchDevice", /::setType\s*\(/, "type")
-# Property device (QTouchDevice *)
-property_reader("QTouchEvent", /::device\s*\(/, "device")
-property_writer("QTouchEvent", /::setDevice\s*\(/, "device")
-# Property target (QObject_Native *)
-property_reader("QTouchEvent", /::target\s*\(/, "target")
-property_writer("QTouchEvent", /::setTarget\s*\(/, "target")
-# Property touchPointStates (Qt_QFlags_TouchPointState)
-property_reader("QTouchEvent", /::touchPointStates\s*\(/, "touchPointStates")
-property_writer("QTouchEvent", /::setTouchPointStates\s*\(/, "touchPointStates")
-# Property touchPoints (QTouchEvent_TouchPoint[])
-property_reader("QTouchEvent", /::touchPoints\s*\(/, "touchPoints")
-property_writer("QTouchEvent", /::setTouchPoints\s*\(/, "touchPoints")
-# Property window (QWindow_Native *)
-property_reader("QTouchEvent", /::window\s*\(/, "window")
-property_writer("QTouchEvent", /::setWindow\s*\(/, "window")
-# Property flags (QTouchEvent_TouchPoint_QFlags_InfoFlag)
-property_reader("QTouchEvent_TouchPoint", /::flags\s*\(/, "flags")
-property_writer("QTouchEvent_TouchPoint", /::setFlags\s*\(/, "flags")
-# Property id (int)
-property_reader("QTouchEvent_TouchPoint", /::id\s*\(/, "id")
-property_writer("QTouchEvent_TouchPoint", /::setId\s*\(/, "id")
-# Property lastNormalizedPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::lastNormalizedPos\s*\(/, "lastNormalizedPos")
-property_writer("QTouchEvent_TouchPoint", /::setLastNormalizedPos\s*\(/, "lastNormalizedPos")
-# Property lastPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::lastPos\s*\(/, "lastPos")
-property_writer("QTouchEvent_TouchPoint", /::setLastPos\s*\(/, "lastPos")
-# Property lastScenePos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::lastScenePos\s*\(/, "lastScenePos")
-property_writer("QTouchEvent_TouchPoint", /::setLastScenePos\s*\(/, "lastScenePos")
-# Property lastScreenPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::lastScreenPos\s*\(/, "lastScreenPos")
-property_writer("QTouchEvent_TouchPoint", /::setLastScreenPos\s*\(/, "lastScreenPos")
-# Property normalizedPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::normalizedPos\s*\(/, "normalizedPos")
-property_writer("QTouchEvent_TouchPoint", /::setNormalizedPos\s*\(/, "normalizedPos")
-# Property pos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::pos\s*\(/, "pos")
-property_writer("QTouchEvent_TouchPoint", /::setPos\s*\(/, "pos")
-# Property pressure (double)
-property_reader("QTouchEvent_TouchPoint", /::pressure\s*\(/, "pressure")
-property_writer("QTouchEvent_TouchPoint", /::setPressure\s*\(/, "pressure")
-# Property rawScreenPositions (QPointF[])
-property_reader("QTouchEvent_TouchPoint", /::rawScreenPositions\s*\(/, "rawScreenPositions")
-property_writer("QTouchEvent_TouchPoint", /::setRawScreenPositions\s*\(/, "rawScreenPositions")
-# Property rect (QRectF)
-property_reader("QTouchEvent_TouchPoint", /::rect\s*\(/, "rect")
-property_writer("QTouchEvent_TouchPoint", /::setRect\s*\(/, "rect")
-# Property scenePos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::scenePos\s*\(/, "scenePos")
-property_writer("QTouchEvent_TouchPoint", /::setScenePos\s*\(/, "scenePos")
-# Property sceneRect (QRectF)
-property_reader("QTouchEvent_TouchPoint", /::sceneRect\s*\(/, "sceneRect")
-property_writer("QTouchEvent_TouchPoint", /::setSceneRect\s*\(/, "sceneRect")
-# Property screenPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::screenPos\s*\(/, "screenPos")
-property_writer("QTouchEvent_TouchPoint", /::setScreenPos\s*\(/, "screenPos")
-# Property screenRect (QRectF)
-property_reader("QTouchEvent_TouchPoint", /::screenRect\s*\(/, "screenRect")
-property_writer("QTouchEvent_TouchPoint", /::setScreenRect\s*\(/, "screenRect")
-# Property startNormalizedPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::startNormalizedPos\s*\(/, "startNormalizedPos")
-property_writer("QTouchEvent_TouchPoint", /::setStartNormalizedPos\s*\(/, "startNormalizedPos")
-# Property startPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::startPos\s*\(/, "startPos")
-property_writer("QTouchEvent_TouchPoint", /::setStartPos\s*\(/, "startPos")
-# Property startScenePos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::startScenePos\s*\(/, "startScenePos")
-property_writer("QTouchEvent_TouchPoint", /::setStartScenePos\s*\(/, "startScenePos")
-# Property startScreenPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::startScreenPos\s*\(/, "startScreenPos")
-property_writer("QTouchEvent_TouchPoint", /::setStartScreenPos\s*\(/, "startScreenPos")
-# Property velocity (QVector2D)
-property_reader("QTouchEvent_TouchPoint", /::velocity\s*\(/, "velocity")
-property_writer("QTouchEvent_TouchPoint", /::setVelocity\s*\(/, "velocity")
# Property header (QHeaderView_Native *)
property_reader("QTreeView", /::header\s*\(/, "header")
property_writer("QTreeView", /::setHeader\s*\(/, "header")
@@ -15049,9 +14744,9 @@ property_writer("QTreeWidgetItem", /::setHidden\s*\(/, "hidden")
# Property selected (bool)
property_reader("QTreeWidgetItem", /::isSelected\s*\(/, "selected")
property_writer("QTreeWidgetItem", /::setSelected\s*\(/, "selected")
-# Property multicastInterface (QNetworkInterface)
-property_reader("QUdpSocket", /::multicastInterface\s*\(/, "multicastInterface")
-property_writer("QUdpSocket", /::setMulticastInterface\s*\(/, "multicastInterface")
+# Property obsolete (bool)
+property_reader("QUndoCommand", /::isObsolete\s*\(/, "obsolete")
+property_writer("QUndoCommand", /::setObsolete\s*\(/, "obsolete")
# Property text (string)
property_reader("QUndoCommand", /::text\s*\(/, "text")
property_writer("QUndoCommand", /::setText\s*\(/, "text")
@@ -15067,78 +14762,534 @@ property_writer("QUndoView", /::setGroup\s*\(/, "group")
# Property stack (QUndoStack_Native *)
property_reader("QUndoView", /::stack\s*\(/, "stack")
property_writer("QUndoView", /::setStack\s*\(/, "stack")
-# Property authority (string)
-property_reader("QUrl", /::authority\s*\(/, "authority")
-property_writer("QUrl", /::setAuthority\s*\(/, "authority")
-# Property fragment (string)
-property_reader("QUrl", /::fragment\s*\(/, "fragment")
-property_writer("QUrl", /::setFragment\s*\(/, "fragment")
-# Property host (string)
-property_reader("QUrl", /::host\s*\(/, "host")
-property_writer("QUrl", /::setHost\s*\(/, "host")
-# Property idnWhitelist (string[])
-property_reader("QUrl", /::idnWhitelist\s*\(/, "idnWhitelist")
-property_writer("QUrl", /::setIdnWhitelist\s*\(/, "idnWhitelist")
-# Property password (string)
-property_reader("QUrl", /::password\s*\(/, "password")
-property_writer("QUrl", /::setPassword\s*\(/, "password")
-# Property path (string)
-property_reader("QUrl", /::path\s*\(/, "path")
-property_writer("QUrl", /::setPath\s*\(/, "path")
-# Property port (int)
-property_reader("QUrl", /::port\s*\(/, "port")
-property_writer("QUrl", /::setPort\s*\(/, "port")
-# Property scheme (string)
-property_reader("QUrl", /::scheme\s*\(/, "scheme")
-property_writer("QUrl", /::setScheme\s*\(/, "scheme")
-# Property url (string)
-property_reader("QUrl", /::url\s*\(/, "url")
-property_writer("QUrl", /::setUrl\s*\(/, "url")
-# Property userInfo (string)
-property_reader("QUrl", /::userInfo\s*\(/, "userInfo")
-property_writer("QUrl", /::setUserInfo\s*\(/, "userInfo")
-# Property userName (string)
-property_reader("QUrl", /::userName\s*\(/, "userName")
-property_writer("QUrl", /::setUserName\s*\(/, "userName")
-# Property query (string)
-property_reader("QUrlQuery", /::query\s*\(/, "query")
-property_writer("QUrlQuery", /::setQuery\s*\(/, "query")
-# Property queryItems (QPair_QString_QString[])
-property_reader("QUrlQuery", /::queryItems\s*\(/, "queryItems")
-property_writer("QUrlQuery", /::setQueryItems\s*\(/, "queryItems")
-# Property locale (QLocale)
-property_reader("QValidator", /::locale\s*\(/, "locale")
-property_writer("QValidator", /::setLocale\s*\(/, "locale")
-# Property keyValues (QPair_double_QVariant[])
-property_reader("QVariantAnimation", /::keyValues\s*\(/, "keyValues")
-property_writer("QVariantAnimation", /::setKeyValues\s*\(/, "keyValues")
-# Property x (float)
-property_reader("QVector2D", /::x\s*\(/, "x")
-property_writer("QVector2D", /::setX\s*\(/, "x")
-# Property y (float)
-property_reader("QVector2D", /::y\s*\(/, "y")
-property_writer("QVector2D", /::setY\s*\(/, "y")
-# Property x (float)
-property_reader("QVector3D", /::x\s*\(/, "x")
-property_writer("QVector3D", /::setX\s*\(/, "x")
-# Property y (float)
-property_reader("QVector3D", /::y\s*\(/, "y")
-property_writer("QVector3D", /::setY\s*\(/, "y")
-# Property z (float)
-property_reader("QVector3D", /::z\s*\(/, "z")
-property_writer("QVector3D", /::setZ\s*\(/, "z")
-# Property w (float)
-property_reader("QVector4D", /::w\s*\(/, "w")
-property_writer("QVector4D", /::setW\s*\(/, "w")
-# Property x (float)
-property_reader("QVector4D", /::x\s*\(/, "x")
-property_writer("QVector4D", /::setX\s*\(/, "x")
-# Property y (float)
-property_reader("QVector4D", /::y\s*\(/, "y")
-property_writer("QVector4D", /::setY\s*\(/, "y")
-# Property z (float)
-property_reader("QVector4D", /::z\s*\(/, "z")
-property_writer("QVector4D", /::setZ\s*\(/, "z")
+# Property backgroundRole (QPalette_ColorRole)
+property_reader("QWidget", /::backgroundRole\s*\(/, "backgroundRole")
+property_writer("QWidget", /::setBackgroundRole\s*\(/, "backgroundRole")
+# Property contentsMargins (QMargins)
+property_reader("QWidget", /::contentsMargins\s*\(/, "contentsMargins")
+property_writer("QWidget", /::setContentsMargins\s*\(/, "contentsMargins")
+# Property focusProxy (QWidget_Native *)
+property_reader("QWidget", /::focusProxy\s*\(/, "focusProxy")
+property_writer("QWidget", /::setFocusProxy\s*\(/, "focusProxy")
+# Property foregroundRole (QPalette_ColorRole)
+property_reader("QWidget", /::foregroundRole\s*\(/, "foregroundRole")
+property_writer("QWidget", /::setForegroundRole\s*\(/, "foregroundRole")
+# Property graphicsEffect (QGraphicsEffect_Native *)
+property_reader("QWidget", /::graphicsEffect\s*\(/, "graphicsEffect")
+property_writer("QWidget", /::setGraphicsEffect\s*\(/, "graphicsEffect")
+# Property hidden (bool)
+property_reader("QWidget", /::isHidden\s*\(/, "hidden")
+property_writer("QWidget", /::setHidden\s*\(/, "hidden")
+# Property layout (QLayout_Native *)
+property_reader("QWidget", /::layout\s*\(/, "layout")
+property_writer("QWidget", /::setLayout\s*\(/, "layout")
+# Property style (QStyle_Native *)
+property_reader("QWidget", /::style\s*\(/, "style")
+property_writer("QWidget", /::setStyle\s*\(/, "style")
+# Property windowFlags (Qt_QFlags_WindowType)
+property_reader("QWidget", /::windowFlags\s*\(/, "windowFlags")
+property_writer("QWidget", /::setWindowFlags\s*\(/, "windowFlags")
+# Property windowRole (string)
+property_reader("QWidget", /::windowRole\s*\(/, "windowRole")
+property_writer("QWidget", /::setWindowRole\s*\(/, "windowRole")
+# Property windowState (Qt_QFlags_WindowState)
+property_reader("QWidget", /::windowState\s*\(/, "windowState")
+property_writer("QWidget", /::setWindowState\s*\(/, "windowState")
+# Property defaultWidget (QWidget_Native *)
+property_reader("QWidgetAction", /::defaultWidget\s*\(/, "defaultWidget")
+property_writer("QWidgetAction", /::setDefaultWidget\s*\(/, "defaultWidget")
+# Property geometry (QRect)
+property_reader("QWidgetItem", /::geometry\s*\(/, "geometry")
+property_writer("QWidgetItem", /::setGeometry\s*\(/, "geometry")
+# Property sideWidget (QWidget_Native *)
+property_reader("QWizard", /::sideWidget\s*\(/, "sideWidget")
+property_writer("QWizard", /::setSideWidget\s*\(/, "sideWidget")
+# Property commitPage (bool)
+property_reader("QWizardPage", /::isCommitPage\s*\(/, "commitPage")
+property_writer("QWizardPage", /::setCommitPage\s*\(/, "commitPage")
+# Property finalPage (bool)
+property_reader("QWizardPage", /::isFinalPage\s*\(/, "finalPage")
+property_writer("QWizardPage", /::setFinalPage\s*\(/, "finalPage")
+# Property column (long long)
+property_reader("QSourceLocation", /::column\s*\(/, "column")
+property_writer("QSourceLocation", /::setColumn\s*\(/, "column")
+# Property line (long long)
+property_reader("QSourceLocation", /::line\s*\(/, "line")
+property_writer("QSourceLocation", /::setLine\s*\(/, "line")
+# Property uri (QUrl)
+property_reader("QSourceLocation", /::uri\s*\(/, "uri")
+property_writer("QSourceLocation", /::setUri\s*\(/, "uri")
+# Property indentationDepth (int)
+property_reader("QXmlFormatter", /::indentationDepth\s*\(/, "indentationDepth")
+property_writer("QXmlFormatter", /::setIndentationDepth\s*\(/, "indentationDepth")
+# Property initialTemplateName (QXmlName)
+property_reader("QXmlQuery", /::initialTemplateName\s*\(/, "initialTemplateName")
+property_writer("QXmlQuery", /::setInitialTemplateName\s*\(/, "initialTemplateName")
+# Property messageHandler (QAbstractMessageHandler_Native *)
+property_reader("QXmlQuery", /::messageHandler\s*\(/, "messageHandler")
+property_writer("QXmlQuery", /::setMessageHandler\s*\(/, "messageHandler")
+# Property networkAccessManager (QNetworkAccessManager_Native *)
+property_reader("QXmlQuery", /::networkAccessManager\s*\(/, "networkAccessManager")
+property_writer("QXmlQuery", /::setNetworkAccessManager\s*\(/, "networkAccessManager")
+# Property uriResolver (QAbstractUriResolver_Native *)
+property_reader("QXmlQuery", /::uriResolver\s*\(/, "uriResolver")
+property_writer("QXmlQuery", /::setUriResolver\s*\(/, "uriResolver")
+# Property messageHandler (QAbstractMessageHandler_Native *)
+property_reader("QXmlSchema", /::messageHandler\s*\(/, "messageHandler")
+property_writer("QXmlSchema", /::setMessageHandler\s*\(/, "messageHandler")
+# Property networkAccessManager (QNetworkAccessManager_Native *)
+property_reader("QXmlSchema", /::networkAccessManager\s*\(/, "networkAccessManager")
+property_writer("QXmlSchema", /::setNetworkAccessManager\s*\(/, "networkAccessManager")
+# Property uriResolver (QAbstractUriResolver_Native *)
+property_reader("QXmlSchema", /::uriResolver\s*\(/, "uriResolver")
+property_writer("QXmlSchema", /::setUriResolver\s*\(/, "uriResolver")
+# Property messageHandler (QAbstractMessageHandler_Native *)
+property_reader("QXmlSchemaValidator", /::messageHandler\s*\(/, "messageHandler")
+property_writer("QXmlSchemaValidator", /::setMessageHandler\s*\(/, "messageHandler")
+# Property networkAccessManager (QNetworkAccessManager_Native *)
+property_reader("QXmlSchemaValidator", /::networkAccessManager\s*\(/, "networkAccessManager")
+property_writer("QXmlSchemaValidator", /::setNetworkAccessManager\s*\(/, "networkAccessManager")
+# Property schema (QXmlSchema)
+property_reader("QXmlSchemaValidator", /::schema\s*\(/, "schema")
+property_writer("QXmlSchemaValidator", /::setSchema\s*\(/, "schema")
+# Property uriResolver (QAbstractUriResolver_Native *)
+property_reader("QXmlSchemaValidator", /::uriResolver\s*\(/, "uriResolver")
+property_writer("QXmlSchemaValidator", /::setUriResolver\s*\(/, "uriResolver")
+# Property codec (QTextCodec_Native *)
+property_reader("QXmlSerializer", /::codec\s*\(/, "codec")
+property_writer("QXmlSerializer", /::setCodec\s*\(/, "codec")
+# Property cachingEnabled (bool)
+property_reader("QGraphicsSvgItem", /::isCachingEnabled\s*\(/, "cachingEnabled")
+property_writer("QGraphicsSvgItem", /::setCachingEnabled\s*\(/, "cachingEnabled")
+# Property description (string)
+property_reader("QSvgGenerator", /::description\s*\(/, "description")
+property_writer("QSvgGenerator", /::setDescription\s*\(/, "description")
+# Property fileName (string)
+property_reader("QSvgGenerator", /::fileName\s*\(/, "fileName")
+property_writer("QSvgGenerator", /::setFileName\s*\(/, "fileName")
+# Property outputDevice (QIODevice *)
+property_reader("QSvgGenerator", /::outputDevice\s*\(/, "outputDevice")
+property_writer("QSvgGenerator", /::setOutputDevice\s*\(/, "outputDevice")
+# Property resolution (int)
+property_reader("QSvgGenerator", /::resolution\s*\(/, "resolution")
+property_writer("QSvgGenerator", /::setResolution\s*\(/, "resolution")
+# Property size (QSize)
+property_reader("QSvgGenerator", /::size\s*\(/, "size")
+property_writer("QSvgGenerator", /::setSize\s*\(/, "size")
+# Property title (string)
+property_reader("QSvgGenerator", /::title\s*\(/, "title")
+property_writer("QSvgGenerator", /::setTitle\s*\(/, "title")
+# Property viewBox (QRect)
+property_reader("QSvgGenerator", /::viewBox\s*\(/, "viewBox")
+property_writer("QSvgGenerator", /::setViewBox\s*\(/, "viewBox")
+# Property enabledOptions (QAbstractPrintDialog_QFlags_PrintDialogOption)
+property_reader("QAbstractPrintDialog", /::enabledOptions\s*\(/, "enabledOptions")
+property_writer("QAbstractPrintDialog", /::setEnabledOptions\s*\(/, "enabledOptions")
+# Property printRange (QAbstractPrintDialog_PrintRange)
+property_reader("QAbstractPrintDialog", /::printRange\s*\(/, "printRange")
+property_writer("QAbstractPrintDialog", /::setPrintRange\s*\(/, "printRange")
+# Property currentPage (int)
+property_reader("QPrintPreviewWidget", /::currentPage\s*\(/, "currentPage")
+property_writer("QPrintPreviewWidget", /::setCurrentPage\s*\(/, "currentPage")
+# Property orientation (QPrinter_Orientation)
+property_reader("QPrintPreviewWidget", /::orientation\s*\(/, "orientation")
+property_writer("QPrintPreviewWidget", /::setOrientation\s*\(/, "orientation")
+# Property viewMode (QPrintPreviewWidget_ViewMode)
+property_reader("QPrintPreviewWidget", /::viewMode\s*\(/, "viewMode")
+property_writer("QPrintPreviewWidget", /::setViewMode\s*\(/, "viewMode")
+# Property zoomFactor (double)
+property_reader("QPrintPreviewWidget", /::zoomFactor\s*\(/, "zoomFactor")
+property_writer("QPrintPreviewWidget", /::setZoomFactor\s*\(/, "zoomFactor")
+# Property zoomMode (QPrintPreviewWidget_ZoomMode)
+property_reader("QPrintPreviewWidget", /::zoomMode\s*\(/, "zoomMode")
+property_writer("QPrintPreviewWidget", /::setZoomMode\s*\(/, "zoomMode")
+# Property collateCopies (bool)
+property_reader("QPrinter", /::collateCopies\s*\(/, "collateCopies")
+property_writer("QPrinter", /::setCollateCopies\s*\(/, "collateCopies")
+# Property colorMode (QPrinter_ColorMode)
+property_reader("QPrinter", /::colorMode\s*\(/, "colorMode")
+property_writer("QPrinter", /::setColorMode\s*\(/, "colorMode")
+# Property copyCount (int)
+property_reader("QPrinter", /::copyCount\s*\(/, "copyCount")
+property_writer("QPrinter", /::setCopyCount\s*\(/, "copyCount")
+# Property creator (string)
+property_reader("QPrinter", /::creator\s*\(/, "creator")
+property_writer("QPrinter", /::setCreator\s*\(/, "creator")
+# Property docName (string)
+property_reader("QPrinter", /::docName\s*\(/, "docName")
+property_writer("QPrinter", /::setDocName\s*\(/, "docName")
+# Property doubleSidedPrinting (bool)
+property_reader("QPrinter", /::doubleSidedPrinting\s*\(/, "doubleSidedPrinting")
+property_writer("QPrinter", /::setDoubleSidedPrinting\s*\(/, "doubleSidedPrinting")
+# Property duplex (QPrinter_DuplexMode)
+property_reader("QPrinter", /::duplex\s*\(/, "duplex")
+property_writer("QPrinter", /::setDuplex\s*\(/, "duplex")
+# Property fontEmbeddingEnabled (bool)
+property_reader("QPrinter", /::fontEmbeddingEnabled\s*\(/, "fontEmbeddingEnabled")
+property_writer("QPrinter", /::setFontEmbeddingEnabled\s*\(/, "fontEmbeddingEnabled")
+# Property fullPage (bool)
+property_reader("QPrinter", /::fullPage\s*\(/, "fullPage")
+property_writer("QPrinter", /::setFullPage\s*\(/, "fullPage")
+# Property margins (QPagedPaintDevice_Margins)
+property_reader("QPagedPaintDevice", /::margins\s*\(/, "margins")
+property_writer("QPrinter", /::setMargins\s*\(/, "margins")
+# Property numCopies (int)
+property_reader("QPrinter", /::numCopies\s*\(/, "numCopies")
+property_writer("QPrinter", /::setNumCopies\s*\(/, "numCopies")
+# Property orientation (QPrinter_Orientation)
+property_reader("QPrinter", /::orientation\s*\(/, "orientation")
+property_writer("QPrinter", /::setOrientation\s*\(/, "orientation")
+# Property outputFileName (string)
+property_reader("QPrinter", /::outputFileName\s*\(/, "outputFileName")
+property_writer("QPrinter", /::setOutputFileName\s*\(/, "outputFileName")
+# Property outputFormat (QPrinter_OutputFormat)
+property_reader("QPrinter", /::outputFormat\s*\(/, "outputFormat")
+property_writer("QPrinter", /::setOutputFormat\s*\(/, "outputFormat")
+# Property pageOrder (QPrinter_PageOrder)
+property_reader("QPrinter", /::pageOrder\s*\(/, "pageOrder")
+property_writer("QPrinter", /::setPageOrder\s*\(/, "pageOrder")
+# Property pageSize (QPagedPaintDevice_PageSize)
+property_reader("QPrinter", /::pageSize\s*\(/, "pageSize")
+property_writer("QPrinter", /::setPageSize\s*\(/, "pageSize")
+# Property pageSizeMM (QSizeF)
+property_reader("QPagedPaintDevice", /::pageSizeMM\s*\(/, "pageSizeMM")
+property_writer("QPrinter", /::setPageSizeMM\s*\(/, "pageSizeMM")
+# Property paperName (string)
+property_reader("QPrinter", /::paperName\s*\(/, "paperName")
+property_writer("QPrinter", /::setPaperName\s*\(/, "paperName")
+# Property paperSize (QPagedPaintDevice_PageSize)
+property_reader("QPrinter", /::paperSize\s*\(/, "paperSize")
+property_writer("QPrinter", /::setPaperSize\s*\(/, "paperSize")
+# Property paperSource (QPrinter_PaperSource)
+property_reader("QPrinter", /::paperSource\s*\(/, "paperSource")
+property_writer("QPrinter", /::setPaperSource\s*\(/, "paperSource")
+# Property pdfVersion (QPagedPaintDevice_PdfVersion)
+property_reader("QPrinter", /::pdfVersion\s*\(/, "pdfVersion")
+property_writer("QPrinter", /::setPdfVersion\s*\(/, "pdfVersion")
+# Property printProgram (string)
+property_reader("QPrinter", /::printProgram\s*\(/, "printProgram")
+property_writer("QPrinter", /::setPrintProgram\s*\(/, "printProgram")
+# Property printRange (QPrinter_PrintRange)
+property_reader("QPrinter", /::printRange\s*\(/, "printRange")
+property_writer("QPrinter", /::setPrintRange\s*\(/, "printRange")
+# Property printerName (string)
+property_reader("QPrinter", /::printerName\s*\(/, "printerName")
+property_writer("QPrinter", /::setPrinterName\s*\(/, "printerName")
+# Property resolution (int)
+property_reader("QPrinter", /::resolution\s*\(/, "resolution")
+property_writer("QPrinter", /::setResolution\s*\(/, "resolution")
+# Property winPageSize (int)
+property_reader("QPrinter", /::winPageSize\s*\(/, "winPageSize")
+property_writer("QPrinter", /::setWinPageSize\s*\(/, "winPageSize")
+# Property bufferSize (int)
+property_reader("QAbstractAudioInput", /::bufferSize\s*\(/, "bufferSize")
+property_writer("QAbstractAudioInput", /::setBufferSize\s*\(/, "bufferSize")
+# Property format (QAudioFormat)
+property_reader("QAbstractAudioInput", /::format\s*\(/, "format")
+property_writer("QAbstractAudioInput", /::setFormat\s*\(/, "format")
+# Property notifyInterval (int)
+property_reader("QAbstractAudioInput", /::notifyInterval\s*\(/, "notifyInterval")
+property_writer("QAbstractAudioInput", /::setNotifyInterval\s*\(/, "notifyInterval")
+# Property volume (double)
+property_reader("QAbstractAudioInput", /::volume\s*\(/, "volume")
+property_writer("QAbstractAudioInput", /::setVolume\s*\(/, "volume")
+# Property bufferSize (int)
+property_reader("QAbstractAudioOutput", /::bufferSize\s*\(/, "bufferSize")
+property_writer("QAbstractAudioOutput", /::setBufferSize\s*\(/, "bufferSize")
+# Property category (string)
+property_reader("QAbstractAudioOutput", /::category\s*\(/, "category")
+property_writer("QAbstractAudioOutput", /::setCategory\s*\(/, "category")
+# Property format (QAudioFormat)
+property_reader("QAbstractAudioOutput", /::format\s*\(/, "format")
+property_writer("QAbstractAudioOutput", /::setFormat\s*\(/, "format")
+# Property notifyInterval (int)
+property_reader("QAbstractAudioOutput", /::notifyInterval\s*\(/, "notifyInterval")
+property_writer("QAbstractAudioOutput", /::setNotifyInterval\s*\(/, "notifyInterval")
+# Property volume (double)
+property_reader("QAbstractAudioOutput", /::volume\s*\(/, "volume")
+property_writer("QAbstractAudioOutput", /::setVolume\s*\(/, "volume")
+# Property audioFormat (QAudioFormat)
+property_reader("QAudioDecoder", /::audioFormat\s*\(/, "audioFormat")
+property_writer("QAudioDecoder", /::setAudioFormat\s*\(/, "audioFormat")
+# Property sourceDevice (QIODevice *)
+property_reader("QAudioDecoder", /::sourceDevice\s*\(/, "sourceDevice")
+property_writer("QAudioDecoder", /::setSourceDevice\s*\(/, "sourceDevice")
+# Property audioFormat (QAudioFormat)
+property_reader("QAudioDecoderControl", /::audioFormat\s*\(/, "audioFormat")
+property_writer("QAudioDecoderControl", /::setAudioFormat\s*\(/, "audioFormat")
+# Property sourceDevice (QIODevice *)
+property_reader("QAudioDecoderControl", /::sourceDevice\s*\(/, "sourceDevice")
+property_writer("QAudioDecoderControl", /::setSourceDevice\s*\(/, "sourceDevice")
+# Property sourceFilename (string)
+property_reader("QAudioDecoderControl", /::sourceFilename\s*\(/, "sourceFilename")
+property_writer("QAudioDecoderControl", /::setSourceFilename\s*\(/, "sourceFilename")
+# Property bitRate (int)
+property_reader("QAudioEncoderSettings", /::bitRate\s*\(/, "bitRate")
+property_writer("QAudioEncoderSettings", /::setBitRate\s*\(/, "bitRate")
+# Property channelCount (int)
+property_reader("QAudioEncoderSettings", /::channelCount\s*\(/, "channelCount")
+property_writer("QAudioEncoderSettings", /::setChannelCount\s*\(/, "channelCount")
+# Property codec (string)
+property_reader("QAudioEncoderSettings", /::codec\s*\(/, "codec")
+property_writer("QAudioEncoderSettings", /::setCodec\s*\(/, "codec")
+# Property encodingMode (QMultimedia_EncodingMode)
+property_reader("QAudioEncoderSettings", /::encodingMode\s*\(/, "encodingMode")
+property_writer("QAudioEncoderSettings", /::setEncodingMode\s*\(/, "encodingMode")
+# Property encodingOptions (map)
+property_reader("QAudioEncoderSettings", /::encodingOptions\s*\(/, "encodingOptions")
+property_writer("QAudioEncoderSettings", /::setEncodingOptions\s*\(/, "encodingOptions")
+# Property quality (QMultimedia_EncodingQuality)
+property_reader("QAudioEncoderSettings", /::quality\s*\(/, "quality")
+property_writer("QAudioEncoderSettings", /::setQuality\s*\(/, "quality")
+# Property sampleRate (int)
+property_reader("QAudioEncoderSettings", /::sampleRate\s*\(/, "sampleRate")
+property_writer("QAudioEncoderSettings", /::setSampleRate\s*\(/, "sampleRate")
+# Property audioSettings (QAudioEncoderSettings)
+property_reader("QAudioEncoderSettingsControl", /::audioSettings\s*\(/, "audioSettings")
+property_writer("QAudioEncoderSettingsControl", /::setAudioSettings\s*\(/, "audioSettings")
+# Property byteOrder (QAudioFormat_Endian)
+property_reader("QAudioFormat", /::byteOrder\s*\(/, "byteOrder")
+property_writer("QAudioFormat", /::setByteOrder\s*\(/, "byteOrder")
+# Property channelCount (int)
+property_reader("QAudioFormat", /::channelCount\s*\(/, "channelCount")
+property_writer("QAudioFormat", /::setChannelCount\s*\(/, "channelCount")
+# Property codec (string)
+property_reader("QAudioFormat", /::codec\s*\(/, "codec")
+property_writer("QAudioFormat", /::setCodec\s*\(/, "codec")
+# Property sampleRate (int)
+property_reader("QAudioFormat", /::sampleRate\s*\(/, "sampleRate")
+property_writer("QAudioFormat", /::setSampleRate\s*\(/, "sampleRate")
+# Property sampleSize (int)
+property_reader("QAudioFormat", /::sampleSize\s*\(/, "sampleSize")
+property_writer("QAudioFormat", /::setSampleSize\s*\(/, "sampleSize")
+# Property sampleType (QAudioFormat_SampleType)
+property_reader("QAudioFormat", /::sampleType\s*\(/, "sampleType")
+property_writer("QAudioFormat", /::setSampleType\s*\(/, "sampleType")
+# Property bufferSize (int)
+property_reader("QAudioInput", /::bufferSize\s*\(/, "bufferSize")
+property_writer("QAudioInput", /::setBufferSize\s*\(/, "bufferSize")
+# Property notifyInterval (int)
+property_reader("QAudioInput", /::notifyInterval\s*\(/, "notifyInterval")
+property_writer("QAudioInput", /::setNotifyInterval\s*\(/, "notifyInterval")
+# Property volume (double)
+property_reader("QAudioInput", /::volume\s*\(/, "volume")
+property_writer("QAudioInput", /::setVolume\s*\(/, "volume")
+# Property activeInput (string)
+property_reader("QAudioInputSelectorControl", /::activeInput\s*\(/, "activeInput")
+property_writer("QAudioInputSelectorControl", /::setActiveInput\s*\(/, "activeInput")
+# Property bufferSize (int)
+property_reader("QAudioOutput", /::bufferSize\s*\(/, "bufferSize")
+property_writer("QAudioOutput", /::setBufferSize\s*\(/, "bufferSize")
+# Property category (string)
+property_reader("QAudioOutput", /::category\s*\(/, "category")
+property_writer("QAudioOutput", /::setCategory\s*\(/, "category")
+# Property notifyInterval (int)
+property_reader("QAudioOutput", /::notifyInterval\s*\(/, "notifyInterval")
+property_writer("QAudioOutput", /::setNotifyInterval\s*\(/, "notifyInterval")
+# Property volume (double)
+property_reader("QAudioOutput", /::volume\s*\(/, "volume")
+property_writer("QAudioOutput", /::setVolume\s*\(/, "volume")
+# Property activeOutput (string)
+property_reader("QAudioOutputSelectorControl", /::activeOutput\s*\(/, "activeOutput")
+property_writer("QAudioOutputSelectorControl", /::setActiveOutput\s*\(/, "activeOutput")
+# Property audioRole (QAudio_Role)
+property_reader("QAudioRoleControl", /::audioRole\s*\(/, "audioRole")
+property_writer("QAudioRoleControl", /::setAudioRole\s*\(/, "audioRole")
+# Property viewfinderSettings (QCameraViewfinderSettings)
+property_reader("QCamera", /::viewfinderSettings\s*\(/, "viewfinderSettings")
+property_writer("QCamera", /::setViewfinderSettings\s*\(/, "viewfinderSettings")
+# Property bufferFormat (QVideoFrame_PixelFormat)
+property_reader("QCameraCaptureBufferFormatControl", /::bufferFormat\s*\(/, "bufferFormat")
+property_writer("QCameraCaptureBufferFormatControl", /::setBufferFormat\s*\(/, "bufferFormat")
+# Property captureDestination (QCameraImageCapture_QFlags_CaptureDestination)
+property_reader("QCameraCaptureDestinationControl", /::captureDestination\s*\(/, "captureDestination")
+property_writer("QCameraCaptureDestinationControl", /::setCaptureDestination\s*\(/, "captureDestination")
+# Property captureMode (QCamera_QFlags_CaptureMode)
+property_reader("QCameraControl", /::captureMode\s*\(/, "captureMode")
+property_writer("QCameraControl", /::setCaptureMode\s*\(/, "captureMode")
+# Property state (QCamera_State)
+property_reader("QCameraControl", /::state\s*\(/, "state")
+property_writer("QCameraControl", /::setState\s*\(/, "state")
+# Property spotMeteringPoint (QPointF)
+property_reader("QCameraExposure", /::spotMeteringPoint\s*\(/, "spotMeteringPoint")
+property_writer("QCameraExposure", /::setSpotMeteringPoint\s*\(/, "spotMeteringPoint")
+# Property flashMode (QCameraExposure_QFlags_FlashMode)
+property_reader("QCameraFlashControl", /::flashMode\s*\(/, "flashMode")
+property_writer("QCameraFlashControl", /::setFlashMode\s*\(/, "flashMode")
+# Property customFocusPoint (QPointF)
+property_reader("QCameraFocusControl", /::customFocusPoint\s*\(/, "customFocusPoint")
+property_writer("QCameraFocusControl", /::setCustomFocusPoint\s*\(/, "customFocusPoint")
+# Property focusMode (QCameraFocus_QFlags_FocusMode)
+property_reader("QCameraFocusControl", /::focusMode\s*\(/, "focusMode")
+property_writer("QCameraFocusControl", /::setFocusMode\s*\(/, "focusMode")
+# Property focusPointMode (QCameraFocus_FocusPointMode)
+property_reader("QCameraFocusControl", /::focusPointMode\s*\(/, "focusPointMode")
+property_writer("QCameraFocusControl", /::setFocusPointMode\s*\(/, "focusPointMode")
+# Property status (QCameraFocusZone_FocusZoneStatus)
+property_reader("QCameraFocusZone", /::status\s*\(/, "status")
+property_writer("QCameraFocusZone", /::setStatus\s*\(/, "status")
+# Property bufferFormat (QVideoFrame_PixelFormat)
+property_reader("QCameraImageCapture", /::bufferFormat\s*\(/, "bufferFormat")
+property_writer("QCameraImageCapture", /::setBufferFormat\s*\(/, "bufferFormat")
+# Property captureDestination (QCameraImageCapture_QFlags_CaptureDestination)
+property_reader("QCameraImageCapture", /::captureDestination\s*\(/, "captureDestination")
+property_writer("QCameraImageCapture", /::setCaptureDestination\s*\(/, "captureDestination")
+# Property encodingSettings (QImageEncoderSettings)
+property_reader("QCameraImageCapture", /::encodingSettings\s*\(/, "encodingSettings")
+property_writer("QCameraImageCapture", /::setEncodingSettings\s*\(/, "encodingSettings")
+# Property driveMode (QCameraImageCapture_DriveMode)
+property_reader("QCameraImageCaptureControl", /::driveMode\s*\(/, "driveMode")
+property_writer("QCameraImageCaptureControl", /::setDriveMode\s*\(/, "driveMode")
+# Property brightness (double)
+property_reader("QCameraImageProcessing", /::brightness\s*\(/, "brightness")
+property_writer("QCameraImageProcessing", /::setBrightness\s*\(/, "brightness")
+# Property colorFilter (QCameraImageProcessing_ColorFilter)
+property_reader("QCameraImageProcessing", /::colorFilter\s*\(/, "colorFilter")
+property_writer("QCameraImageProcessing", /::setColorFilter\s*\(/, "colorFilter")
+# Property contrast (double)
+property_reader("QCameraImageProcessing", /::contrast\s*\(/, "contrast")
+property_writer("QCameraImageProcessing", /::setContrast\s*\(/, "contrast")
+# Property denoisingLevel (double)
+property_reader("QCameraImageProcessing", /::denoisingLevel\s*\(/, "denoisingLevel")
+property_writer("QCameraImageProcessing", /::setDenoisingLevel\s*\(/, "denoisingLevel")
+# Property manualWhiteBalance (double)
+property_reader("QCameraImageProcessing", /::manualWhiteBalance\s*\(/, "manualWhiteBalance")
+property_writer("QCameraImageProcessing", /::setManualWhiteBalance\s*\(/, "manualWhiteBalance")
+# Property saturation (double)
+property_reader("QCameraImageProcessing", /::saturation\s*\(/, "saturation")
+property_writer("QCameraImageProcessing", /::setSaturation\s*\(/, "saturation")
+# Property sharpeningLevel (double)
+property_reader("QCameraImageProcessing", /::sharpeningLevel\s*\(/, "sharpeningLevel")
+property_writer("QCameraImageProcessing", /::setSharpeningLevel\s*\(/, "sharpeningLevel")
+# Property whiteBalanceMode (QCameraImageProcessing_WhiteBalanceMode)
+property_reader("QCameraImageProcessing", /::whiteBalanceMode\s*\(/, "whiteBalanceMode")
+property_writer("QCameraImageProcessing", /::setWhiteBalanceMode\s*\(/, "whiteBalanceMode")
+# Property maximumFrameRate (double)
+property_reader("QCameraViewfinderSettings", /::maximumFrameRate\s*\(/, "maximumFrameRate")
+property_writer("QCameraViewfinderSettings", /::setMaximumFrameRate\s*\(/, "maximumFrameRate")
+# Property minimumFrameRate (double)
+property_reader("QCameraViewfinderSettings", /::minimumFrameRate\s*\(/, "minimumFrameRate")
+property_writer("QCameraViewfinderSettings", /::setMinimumFrameRate\s*\(/, "minimumFrameRate")
+# Property pixelAspectRatio (QSize)
+property_reader("QCameraViewfinderSettings", /::pixelAspectRatio\s*\(/, "pixelAspectRatio")
+property_writer("QCameraViewfinderSettings", /::setPixelAspectRatio\s*\(/, "pixelAspectRatio")
+# Property pixelFormat (QVideoFrame_PixelFormat)
+property_reader("QCameraViewfinderSettings", /::pixelFormat\s*\(/, "pixelFormat")
+property_writer("QCameraViewfinderSettings", /::setPixelFormat\s*\(/, "pixelFormat")
+# Property resolution (QSize)
+property_reader("QCameraViewfinderSettings", /::resolution\s*\(/, "resolution")
+property_writer("QCameraViewfinderSettings", /::setResolution\s*\(/, "resolution")
+# Property viewfinderSettings (QCameraViewfinderSettings)
+property_reader("QCameraViewfinderSettingsControl2", /::viewfinderSettings\s*\(/, "viewfinderSettings")
+property_writer("QCameraViewfinderSettingsControl2", /::setViewfinderSettings\s*\(/, "viewfinderSettings")
+# Property customAudioRole (string)
+property_reader("QCustomAudioRoleControl", /::customAudioRole\s*\(/, "customAudioRole")
+property_writer("QCustomAudioRoleControl", /::setCustomAudioRole\s*\(/, "customAudioRole")
+# Property imageSettings (QImageEncoderSettings)
+property_reader("QImageEncoderControl", /::imageSettings\s*\(/, "imageSettings")
+property_writer("QImageEncoderControl", /::setImageSettings\s*\(/, "imageSettings")
+# Property codec (string)
+property_reader("QImageEncoderSettings", /::codec\s*\(/, "codec")
+property_writer("QImageEncoderSettings", /::setCodec\s*\(/, "codec")
+# Property encodingOptions (map)
+property_reader("QImageEncoderSettings", /::encodingOptions\s*\(/, "encodingOptions")
+property_writer("QImageEncoderSettings", /::setEncodingOptions\s*\(/, "encodingOptions")
+# Property quality (QMultimedia_EncodingQuality)
+property_reader("QImageEncoderSettings", /::quality\s*\(/, "quality")
+property_writer("QImageEncoderSettings", /::setQuality\s*\(/, "quality")
+# Property resolution (QSize)
+property_reader("QImageEncoderSettings", /::resolution\s*\(/, "resolution")
+property_writer("QImageEncoderSettings", /::setResolution\s*\(/, "resolution")
+# Property containerFormat (string)
+property_reader("QMediaContainerControl", /::containerFormat\s*\(/, "containerFormat")
+property_writer("QMediaContainerControl", /::setContainerFormat\s*\(/, "containerFormat")
+# Property crossfadeTime (double)
+property_reader("QMediaGaplessPlaybackControl", /::crossfadeTime\s*\(/, "crossfadeTime")
+property_writer("QMediaGaplessPlaybackControl", /::setCrossfadeTime\s*\(/, "crossfadeTime")
+# Property nextMedia (QMediaContent)
+property_reader("QMediaGaplessPlaybackControl", /::nextMedia\s*\(/, "nextMedia")
+property_writer("QMediaGaplessPlaybackControl", /::setNextMedia\s*\(/, "nextMedia")
+# Property muted (bool)
+property_reader("QMediaPlayerControl", /::isMuted\s*\(/, "muted")
+property_writer("QMediaPlayerControl", /::setMuted\s*\(/, "muted")
+# Property playbackRate (double)
+property_reader("QMediaPlayerControl", /::playbackRate\s*\(/, "playbackRate")
+property_writer("QMediaPlayerControl", /::setPlaybackRate\s*\(/, "playbackRate")
+# Property position (long long)
+property_reader("QMediaPlayerControl", /::position\s*\(/, "position")
+property_writer("QMediaPlayerControl", /::setPosition\s*\(/, "position")
+# Property volume (int)
+property_reader("QMediaPlayerControl", /::volume\s*\(/, "volume")
+property_writer("QMediaPlayerControl", /::setVolume\s*\(/, "volume")
+# Property audioSettings (QAudioEncoderSettings)
+property_reader("QMediaRecorder", /::audioSettings\s*\(/, "audioSettings")
+property_writer("QMediaRecorder", /::setAudioSettings\s*\(/, "audioSettings")
+# Property containerFormat (string)
+property_reader("QMediaRecorder", /::containerFormat\s*\(/, "containerFormat")
+property_writer("QMediaRecorder", /::setContainerFormat\s*\(/, "containerFormat")
+# Property videoSettings (QVideoEncoderSettings)
+property_reader("QMediaRecorder", /::videoSettings\s*\(/, "videoSettings")
+property_writer("QMediaRecorder", /::setVideoSettings\s*\(/, "videoSettings")
+# Property muted (bool)
+property_reader("QMediaRecorderControl", /::isMuted\s*\(/, "muted")
+property_writer("QMediaRecorderControl", /::setMuted\s*\(/, "muted")
+# Property state (QMediaRecorder_State)
+property_reader("QMediaRecorderControl", /::state\s*\(/, "state")
+property_writer("QMediaRecorderControl", /::setState\s*\(/, "state")
+# Property volume (double)
+property_reader("QMediaRecorderControl", /::volume\s*\(/, "volume")
+property_writer("QMediaRecorderControl", /::setVolume\s*\(/, "volume")
+# Property audioBitRate (int)
+property_reader("QMediaResource", /::audioBitRate\s*\(/, "audioBitRate")
+property_writer("QMediaResource", /::setAudioBitRate\s*\(/, "audioBitRate")
+# Property audioCodec (string)
+property_reader("QMediaResource", /::audioCodec\s*\(/, "audioCodec")
+property_writer("QMediaResource", /::setAudioCodec\s*\(/, "audioCodec")
+# Property channelCount (int)
+property_reader("QMediaResource", /::channelCount\s*\(/, "channelCount")
+property_writer("QMediaResource", /::setChannelCount\s*\(/, "channelCount")
+# Property dataSize (long long)
+property_reader("QMediaResource", /::dataSize\s*\(/, "dataSize")
+property_writer("QMediaResource", /::setDataSize\s*\(/, "dataSize")
+# Property language (string)
+property_reader("QMediaResource", /::language\s*\(/, "language")
+property_writer("QMediaResource", /::setLanguage\s*\(/, "language")
+# Property resolution (QSize)
+property_reader("QMediaResource", /::resolution\s*\(/, "resolution")
+property_writer("QMediaResource", /::setResolution\s*\(/, "resolution")
+# Property sampleRate (int)
+property_reader("QMediaResource", /::sampleRate\s*\(/, "sampleRate")
+property_writer("QMediaResource", /::setSampleRate\s*\(/, "sampleRate")
+# Property videoBitRate (int)
+property_reader("QMediaResource", /::videoBitRate\s*\(/, "videoBitRate")
+property_writer("QMediaResource", /::setVideoBitRate\s*\(/, "videoBitRate")
+# Property videoCodec (string)
+property_reader("QMediaResource", /::videoCodec\s*\(/, "videoCodec")
+property_writer("QMediaResource", /::setVideoCodec\s*\(/, "videoCodec")
+# Property alternativeFrequenciesEnabled (bool)
+property_reader("QRadioDataControl", /::isAlternativeFrequenciesEnabled\s*\(/, "alternativeFrequenciesEnabled")
+property_writer("QRadioDataControl", /::setAlternativeFrequenciesEnabled\s*\(/, "alternativeFrequenciesEnabled")
+# Property band (QRadioTuner_Band)
+property_reader("QRadioTunerControl", /::band\s*\(/, "band")
+property_writer("QRadioTunerControl", /::setBand\s*\(/, "band")
+# Property frequency (int)
+property_reader("QRadioTunerControl", /::frequency\s*\(/, "frequency")
+property_writer("QRadioTunerControl", /::setFrequency\s*\(/, "frequency")
+# Property muted (bool)
+property_reader("QRadioTunerControl", /::isMuted\s*\(/, "muted")
+property_writer("QRadioTunerControl", /::setMuted\s*\(/, "muted")
+# Property stereoMode (QRadioTuner_StereoMode)
+property_reader("QRadioTunerControl", /::stereoMode\s*\(/, "stereoMode")
+property_writer("QRadioTunerControl", /::setStereoMode\s*\(/, "stereoMode")
+# Property volume (int)
+property_reader("QRadioTunerControl", /::volume\s*\(/, "volume")
+property_writer("QRadioTunerControl", /::setVolume\s*\(/, "volume")
+# Property loops (int)
+property_reader("QSound", /::loops\s*\(/, "loops")
+property_writer("QSound", /::setLoops\s*\(/, "loops")
+# Property loopCount (int)
+property_reader("QSoundEffect", /::loopCount\s*\(/, "loopCount")
+property_writer("QSoundEffect", /::setLoopCount\s*\(/, "loopCount")
# Property selectedDevice (int)
property_reader("QVideoDeviceSelectorControl", /::selectedDevice\s*\(/, "selectedDevice")
property_writer("QVideoDeviceSelectorControl", /::setSelectedDevice\s*\(/, "selectedDevice")
@@ -15184,6 +15335,9 @@ property_writer("QVideoSurfaceFormat", /::setFrameRate\s*\(/, "frameRate")
# Property frameSize (QSize)
property_reader("QVideoSurfaceFormat", /::frameSize\s*\(/, "frameSize")
property_writer("QVideoSurfaceFormat", /::setFrameSize\s*\(/, "frameSize")
+# Property mirrored (bool)
+property_reader("QVideoSurfaceFormat", /::isMirrored\s*\(/, "mirrored")
+property_writer("QVideoSurfaceFormat", /::setMirrored\s*\(/, "mirrored")
# Property pixelAspectRatio (QSize)
property_reader("QVideoSurfaceFormat", /::pixelAspectRatio\s*\(/, "pixelAspectRatio")
property_writer("QVideoSurfaceFormat", /::setPixelAspectRatio\s*\(/, "pixelAspectRatio")
@@ -15220,123 +15374,447 @@ property_writer("QVideoWindowControl", /::setSaturation\s*\(/, "saturation")
# Property winId (unsigned long long)
property_reader("QVideoWindowControl", /::winId\s*\(/, "winId")
property_writer("QVideoWindowControl", /::setWinId\s*\(/, "winId")
-# Property backgroundRole (QPalette_ColorRole)
-property_reader("QWidget", /::backgroundRole\s*\(/, "backgroundRole")
-property_writer("QWidget", /::setBackgroundRole\s*\(/, "backgroundRole")
-# Property contentsMargins (QMargins)
-property_reader("QWidget", /::contentsMargins\s*\(/, "contentsMargins")
-property_writer("QWidget", /::setContentsMargins\s*\(/, "contentsMargins")
-# Property focusProxy (QWidget_Native *)
-property_reader("QWidget", /::focusProxy\s*\(/, "focusProxy")
-property_writer("QWidget", /::setFocusProxy\s*\(/, "focusProxy")
-# Property foregroundRole (QPalette_ColorRole)
-property_reader("QWidget", /::foregroundRole\s*\(/, "foregroundRole")
-property_writer("QWidget", /::setForegroundRole\s*\(/, "foregroundRole")
-# Property graphicsEffect (QGraphicsEffect_Native *)
-property_reader("QWidget", /::graphicsEffect\s*\(/, "graphicsEffect")
-property_writer("QWidget", /::setGraphicsEffect\s*\(/, "graphicsEffect")
-# Property hidden (bool)
-property_reader("QWidget", /::isHidden\s*\(/, "hidden")
-property_writer("QWidget", /::setHidden\s*\(/, "hidden")
-# Property layout (QLayout_Native *)
-property_reader("QWidget", /::layout\s*\(/, "layout")
-property_writer("QWidget", /::setLayout\s*\(/, "layout")
-# Property style (QStyle_Native *)
-property_reader("QWidget", /::style\s*\(/, "style")
-property_writer("QWidget", /::setStyle\s*\(/, "style")
-# Property windowFlags (Qt_QFlags_WindowType)
-property_reader("QWidget", /::windowFlags\s*\(/, "windowFlags")
-property_writer("QWidget", /::setWindowFlags\s*\(/, "windowFlags")
-# Property windowRole (string)
-property_reader("QWidget", /::windowRole\s*\(/, "windowRole")
-property_writer("QWidget", /::setWindowRole\s*\(/, "windowRole")
-# Property windowState (Qt_QFlags_WindowState)
-property_reader("QWidget", /::windowState\s*\(/, "windowState")
-property_writer("QWidget", /::setWindowState\s*\(/, "windowState")
-# Property defaultWidget (QWidget_Native *)
-property_reader("QWidgetAction", /::defaultWidget\s*\(/, "defaultWidget")
-property_writer("QWidgetAction", /::setDefaultWidget\s*\(/, "defaultWidget")
-# Property geometry (QRect)
-property_reader("QWidgetItem", /::geometry\s*\(/, "geometry")
-property_writer("QWidgetItem", /::setGeometry\s*\(/, "geometry")
-# Property baseSize (QSize)
-property_reader("QWindow", /::baseSize\s*\(/, "baseSize")
-property_writer("QWindow", /::setBaseSize\s*\(/, "baseSize")
-# Property cursor (QCursor)
-property_reader("QWindow", /::cursor\s*\(/, "cursor")
-property_writer("QWindow", /::setCursor\s*\(/, "cursor")
-# Property filePath (string)
-property_reader("QWindow", /::filePath\s*\(/, "filePath")
-property_writer("QWindow", /::setFilePath\s*\(/, "filePath")
-# Property format (QSurfaceFormat)
-property_reader("QWindow", /::format\s*\(/, "format")
-property_writer("QWindow", /::setFormat\s*\(/, "format")
-# Property framePosition (QPoint)
-property_reader("QWindow", /::framePosition\s*\(/, "framePosition")
-property_writer("QWindow", /::setFramePosition\s*\(/, "framePosition")
-# Property geometry (QRect)
-property_reader("QWindow", /::geometry\s*\(/, "geometry")
-property_writer("QWindow", /::setGeometry\s*\(/, "geometry")
-# Property icon (QIcon)
-property_reader("QWindow", /::icon\s*\(/, "icon")
-property_writer("QWindow", /::setIcon\s*\(/, "icon")
-# Property mask (QRegion)
-property_reader("QWindow", /::mask\s*\(/, "mask")
-property_writer("QWindow", /::setMask\s*\(/, "mask")
-# Property maximumSize (QSize)
-property_reader("QWindow", /::maximumSize\s*\(/, "maximumSize")
-property_writer("QWindow", /::setMaximumSize\s*\(/, "maximumSize")
-# Property minimumSize (QSize)
-property_reader("QWindow", /::minimumSize\s*\(/, "minimumSize")
-property_writer("QWindow", /::setMinimumSize\s*\(/, "minimumSize")
-# Property parent (QWindow_Native *)
-property_reader("QWindow", /::parent\s*\(/, "parent")
-property_writer("QWindow", /::setParent\s*\(/, "parent")
-# Property position (QPoint)
-property_reader("QWindow", /::position\s*\(/, "position")
-property_writer("QWindow", /::setPosition\s*\(/, "position")
-# Property screen (QScreen_Native *)
-property_reader("QWindow", /::screen\s*\(/, "screen")
-property_writer("QWindow", /::setScreen\s*\(/, "screen")
-# Property sizeIncrement (QSize)
-property_reader("QWindow", /::sizeIncrement\s*\(/, "sizeIncrement")
-property_writer("QWindow", /::setSizeIncrement\s*\(/, "sizeIncrement")
-# Property surfaceType (QSurface_SurfaceType)
-property_reader("QWindow", /::surfaceType\s*\(/, "surfaceType")
-property_writer("QWindow", /::setSurfaceType\s*\(/, "surfaceType")
-# Property transientParent (QWindow_Native *)
-property_reader("QWindow", /::transientParent\s*\(/, "transientParent")
-property_writer("QWindow", /::setTransientParent\s*\(/, "transientParent")
-# Property windowState (Qt_WindowState)
-property_reader("QWindow", /::windowState\s*\(/, "windowState")
-property_writer("QWindow", /::setWindowState\s*\(/, "windowState")
-# Property sideWidget (QWidget_Native *)
-property_reader("QWizard", /::sideWidget\s*\(/, "sideWidget")
-property_writer("QWizard", /::setSideWidget\s*\(/, "sideWidget")
-# Property commitPage (bool)
-property_reader("QWizardPage", /::isCommitPage\s*\(/, "commitPage")
-property_writer("QWizardPage", /::setCommitPage\s*\(/, "commitPage")
-# Property finalPage (bool)
-property_reader("QWizardPage", /::isFinalPage\s*\(/, "finalPage")
-property_writer("QWizardPage", /::setFinalPage\s*\(/, "finalPage")
-# Property indentationDepth (int)
-property_reader("QXmlFormatter", /::indentationDepth\s*\(/, "indentationDepth")
-property_writer("QXmlFormatter", /::setIndentationDepth\s*\(/, "indentationDepth")
+# Property languageChangeEnabled (bool)
+property_reader("QUiLoader", /::isLanguageChangeEnabled\s*\(/, "languageChangeEnabled")
+property_writer("QUiLoader", /::setLanguageChangeEnabled\s*\(/, "languageChangeEnabled")
+# Property translationEnabled (bool)
+property_reader("QUiLoader", /::isTranslationEnabled\s*\(/, "translationEnabled")
+property_writer("QUiLoader", /::setTranslationEnabled\s*\(/, "translationEnabled")
+# Property workingDirectory (QDir)
+property_reader("QUiLoader", /::workingDirectory\s*\(/, "workingDirectory")
+property_writer("QUiLoader", /::setWorkingDirectory\s*\(/, "workingDirectory")
+# Property workingDirectory (QDir)
+property_reader("QAbstractFormBuilder", /::workingDirectory\s*\(/, "workingDirectory")
+property_writer("QAbstractFormBuilder", /::setWorkingDirectory\s*\(/, "workingDirectory")
+# Property connectOptions (string)
+property_reader("QSqlDatabase", /::connectOptions\s*\(/, "connectOptions")
+property_writer("QSqlDatabase", /::setConnectOptions\s*\(/, "connectOptions")
+# Property databaseName (string)
+property_reader("QSqlDatabase", /::databaseName\s*\(/, "databaseName")
+property_writer("QSqlDatabase", /::setDatabaseName\s*\(/, "databaseName")
+# Property hostName (string)
+property_reader("QSqlDatabase", /::hostName\s*\(/, "hostName")
+property_writer("QSqlDatabase", /::setHostName\s*\(/, "hostName")
+# Property numericalPrecisionPolicy (QSql_NumericalPrecisionPolicy)
+property_reader("QSqlDatabase", /::numericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
+property_writer("QSqlDatabase", /::setNumericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
+# Property password (string)
+property_reader("QSqlDatabase", /::password\s*\(/, "password")
+property_writer("QSqlDatabase", /::setPassword\s*\(/, "password")
+# Property port (int)
+property_reader("QSqlDatabase", /::port\s*\(/, "port")
+property_writer("QSqlDatabase", /::setPort\s*\(/, "port")
+# Property userName (string)
+property_reader("QSqlDatabase", /::userName\s*\(/, "userName")
+property_writer("QSqlDatabase", /::setUserName\s*\(/, "userName")
+# Property numericalPrecisionPolicy (QSql_NumericalPrecisionPolicy)
+property_reader("QSqlDriver", /::numericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
+property_writer("QSqlDriver", /::setNumericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
+# Property databaseText (string)
+property_reader("QSqlError", /::databaseText\s*\(/, "databaseText")
+property_writer("QSqlError", /::setDatabaseText\s*\(/, "databaseText")
+# Property driverText (string)
+property_reader("QSqlError", /::driverText\s*\(/, "driverText")
+property_writer("QSqlError", /::setDriverText\s*\(/, "driverText")
+# Property number (int)
+property_reader("QSqlError", /::number\s*\(/, "number")
+property_writer("QSqlError", /::setNumber\s*\(/, "number")
+# Property type (QSqlError_ErrorType)
+property_reader("QSqlError", /::type\s*\(/, "type")
+property_writer("QSqlError", /::setType\s*\(/, "type")
+# Property autoValue (bool)
+property_reader("QSqlField", /::isAutoValue\s*\(/, "autoValue")
+property_writer("QSqlField", /::setAutoValue\s*\(/, "autoValue")
+# Property defaultValue (variant)
+property_reader("QSqlField", /::defaultValue\s*\(/, "defaultValue")
+property_writer("QSqlField", /::setDefaultValue\s*\(/, "defaultValue")
+# Property generated (bool)
+property_reader("QSqlField", /::isGenerated\s*\(/, "generated")
+property_writer("QSqlField", /::setGenerated\s*\(/, "generated")
+# Property length (int)
+property_reader("QSqlField", /::length\s*\(/, "length")
+property_writer("QSqlField", /::setLength\s*\(/, "length")
+# Property name (string)
+property_reader("QSqlField", /::name\s*\(/, "name")
+property_writer("QSqlField", /::setName\s*\(/, "name")
+# Property precision (int)
+property_reader("QSqlField", /::precision\s*\(/, "precision")
+property_writer("QSqlField", /::setPrecision\s*\(/, "precision")
+# Property readOnly (bool)
+property_reader("QSqlField", /::isReadOnly\s*\(/, "readOnly")
+property_writer("QSqlField", /::setReadOnly\s*\(/, "readOnly")
+# Property requiredStatus (QSqlField_RequiredStatus)
+property_reader("QSqlField", /::requiredStatus\s*\(/, "requiredStatus")
+property_writer("QSqlField", /::setRequiredStatus\s*\(/, "requiredStatus")
+# Property tableName (string)
+property_reader("QSqlField", /::tableName\s*\(/, "tableName")
+property_writer("QSqlField", /::setTableName\s*\(/, "tableName")
+# Property type (QVariant_Type)
+property_reader("QSqlField", /::type\s*\(/, "type")
+property_writer("QSqlField", /::setType\s*\(/, "type")
+# Property value (variant)
+property_reader("QSqlField", /::value\s*\(/, "value")
+property_writer("QSqlField", /::setValue\s*\(/, "value")
+# Property cursorName (string)
+property_reader("QSqlIndex", /::cursorName\s*\(/, "cursorName")
+property_writer("QSqlIndex", /::setCursorName\s*\(/, "cursorName")
+# Property name (string)
+property_reader("QSqlIndex", /::name\s*\(/, "name")
+property_writer("QSqlIndex", /::setName\s*\(/, "name")
+# Property forwardOnly (bool)
+property_reader("QSqlQuery", /::isForwardOnly\s*\(/, "forwardOnly")
+property_writer("QSqlQuery", /::setForwardOnly\s*\(/, "forwardOnly")
+# Property numericalPrecisionPolicy (QSql_NumericalPrecisionPolicy)
+property_reader("QSqlQuery", /::numericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
+property_writer("QSqlQuery", /::setNumericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
+# Property query (QSqlQuery)
+property_reader("QSqlQueryModel", /::query\s*\(/, "query")
+property_writer("QSqlQueryModel", /::setQuery\s*\(/, "query")
+# Property editStrategy (QSqlTableModel_EditStrategy)
+property_reader("QSqlTableModel", /::editStrategy\s*\(/, "editStrategy")
+property_writer("QSqlTableModel", /::setEditStrategy\s*\(/, "editStrategy")
+# Property filter (string)
+property_reader("QSqlTableModel", /::filter\s*\(/, "filter")
+property_writer("QSqlTableModel", /::setFilter\s*\(/, "filter")
+# Property pauseMode (QAbstractSocket_QFlags_PauseMode)
+property_reader("QAbstractSocket", /::pauseMode\s*\(/, "pauseMode")
+property_writer("QAbstractSocket", /::setPauseMode\s*\(/, "pauseMode")
+# Property proxy (QNetworkProxy)
+property_reader("QAbstractSocket", /::proxy\s*\(/, "proxy")
+property_writer("QAbstractSocket", /::setProxy\s*\(/, "proxy")
+# Property readBufferSize (long long)
+property_reader("QAbstractSocket", /::readBufferSize\s*\(/, "readBufferSize")
+property_writer("QAbstractSocket", /::setReadBufferSize\s*\(/, "readBufferSize")
+# Property password (string)
+property_reader("QAuthenticator", /::password\s*\(/, "password")
+property_writer("QAuthenticator", /::setPassword\s*\(/, "password")
+# Property realm (string)
+property_reader("QAuthenticator", /::realm\s*\(/, "realm")
+property_writer("QAuthenticator", /::setRealm\s*\(/, "realm")
+# Property user (string)
+property_reader("QAuthenticator", /::user\s*\(/, "user")
+property_writer("QAuthenticator", /::setUser\s*\(/, "user")
+# Property mtuHint (unsigned short)
+property_reader("QDtls", /::mtuHint\s*\(/, "mtuHint")
+property_writer("QDtls", /::setMtuHint\s*\(/, "mtuHint")
+# Property scopeId (string)
+property_reader("QHostAddress", /::scopeId\s*\(/, "scopeId")
+property_writer("QHostAddress", /::setScopeId\s*\(/, "scopeId")
+# Property addresses (QHostAddress[])
+property_reader("QHostInfo", /::addresses\s*\(/, "addresses")
+property_writer("QHostInfo", /::setAddresses\s*\(/, "addresses")
+# Property error (QHostInfo_HostInfoError)
+property_reader("QHostInfo", /::error\s*\(/, "error")
+property_writer("QHostInfo", /::setError\s*\(/, "error")
+# Property errorString (string)
+property_reader("QHostInfo", /::errorString\s*\(/, "errorString")
+property_writer("QHostInfo", /::setErrorString\s*\(/, "errorString")
+# Property hostName (string)
+property_reader("QHostInfo", /::hostName\s*\(/, "hostName")
+property_writer("QHostInfo", /::setHostName\s*\(/, "hostName")
+# Property lookupId (int)
+property_reader("QHostInfo", /::lookupId\s*\(/, "lookupId")
+property_writer("QHostInfo", /::setLookupId\s*\(/, "lookupId")
+# Property expiry (QDateTime)
+property_reader("QHstsPolicy", /::expiry\s*\(/, "expiry")
+property_writer("QHstsPolicy", /::setExpiry\s*\(/, "expiry")
+# Property host (string)
+property_reader("QHstsPolicy", /::host\s*\(/, "host")
+property_writer("QHstsPolicy", /::setHost\s*\(/, "host")
+# Property includesSubDomains (bool)
+property_reader("QHstsPolicy", /::includesSubDomains\s*\(/, "includesSubDomains")
+property_writer("QHstsPolicy", /::setIncludesSubDomains\s*\(/, "includesSubDomains")
+# Property boundary (byte array)
+property_reader("QHttpMultiPart", /::boundary\s*\(/, "boundary")
+property_writer("QHttpMultiPart", /::setBoundary\s*\(/, "boundary")
+# Property maxPendingConnections (int)
+property_reader("QLocalServer", /::maxPendingConnections\s*\(/, "maxPendingConnections")
+property_writer("QLocalServer", /::setMaxPendingConnections\s*\(/, "maxPendingConnections")
+# Property readBufferSize (long long)
+property_reader("QLocalSocket", /::readBufferSize\s*\(/, "readBufferSize")
+property_writer("QLocalSocket", /::setReadBufferSize\s*\(/, "readBufferSize")
+# Property serverName (string)
+property_reader("QLocalSocket", /::serverName\s*\(/, "serverName")
+property_writer("QLocalSocket", /::setServerName\s*\(/, "serverName")
+# Property cache (QAbstractNetworkCache_Native *)
+property_reader("QNetworkAccessManager", /::cache\s*\(/, "cache")
+property_writer("QNetworkAccessManager", /::setCache\s*\(/, "cache")
+# Property configuration (QNetworkConfiguration)
+property_reader("QNetworkAccessManager", /::configuration\s*\(/, "configuration")
+property_writer("QNetworkAccessManager", /::setConfiguration\s*\(/, "configuration")
+# Property cookieJar (QNetworkCookieJar_Native *)
+property_reader("QNetworkAccessManager", /::cookieJar\s*\(/, "cookieJar")
+property_writer("QNetworkAccessManager", /::setCookieJar\s*\(/, "cookieJar")
+# Property proxy (QNetworkProxy)
+property_reader("QNetworkAccessManager", /::proxy\s*\(/, "proxy")
+property_writer("QNetworkAccessManager", /::setProxy\s*\(/, "proxy")
+# Property proxyFactory (QNetworkProxyFactory_Native *)
+property_reader("QNetworkAccessManager", /::proxyFactory\s*\(/, "proxyFactory")
+property_writer("QNetworkAccessManager", /::setProxyFactory\s*\(/, "proxyFactory")
+# Property redirectPolicy (QNetworkRequest_RedirectPolicy)
+property_reader("QNetworkAccessManager", /::redirectPolicy\s*\(/, "redirectPolicy")
+property_writer("QNetworkAccessManager", /::setRedirectPolicy\s*\(/, "redirectPolicy")
+# Property strictTransportSecurityEnabled (bool)
+property_reader("QNetworkAccessManager", /::isStrictTransportSecurityEnabled\s*\(/, "strictTransportSecurityEnabled")
+property_writer("QNetworkAccessManager", /::setStrictTransportSecurityEnabled\s*\(/, "strictTransportSecurityEnabled")
+# Property broadcast (QHostAddress)
+property_reader("QNetworkAddressEntry", /::broadcast\s*\(/, "broadcast")
+property_writer("QNetworkAddressEntry", /::setBroadcast\s*\(/, "broadcast")
+# Property dnsEligibility (QNetworkAddressEntry_DnsEligibilityStatus)
+property_reader("QNetworkAddressEntry", /::dnsEligibility\s*\(/, "dnsEligibility")
+property_writer("QNetworkAddressEntry", /::setDnsEligibility\s*\(/, "dnsEligibility")
+# Property ip (QHostAddress)
+property_reader("QNetworkAddressEntry", /::ip\s*\(/, "ip")
+property_writer("QNetworkAddressEntry", /::setIp\s*\(/, "ip")
+# Property netmask (QHostAddress)
+property_reader("QNetworkAddressEntry", /::netmask\s*\(/, "netmask")
+property_writer("QNetworkAddressEntry", /::setNetmask\s*\(/, "netmask")
+# Property prefixLength (int)
+property_reader("QNetworkAddressEntry", /::prefixLength\s*\(/, "prefixLength")
+property_writer("QNetworkAddressEntry", /::setPrefixLength\s*\(/, "prefixLength")
+# Property expirationDate (QDateTime)
+property_reader("QNetworkCacheMetaData", /::expirationDate\s*\(/, "expirationDate")
+property_writer("QNetworkCacheMetaData", /::setExpirationDate\s*\(/, "expirationDate")
+# Property lastModified (QDateTime)
+property_reader("QNetworkCacheMetaData", /::lastModified\s*\(/, "lastModified")
+property_writer("QNetworkCacheMetaData", /::setLastModified\s*\(/, "lastModified")
+# Property rawHeaders (QPair_QByteArray_QByteArray[])
+property_reader("QNetworkCacheMetaData", /::rawHeaders\s*\(/, "rawHeaders")
+property_writer("QNetworkCacheMetaData", /::setRawHeaders\s*\(/, "rawHeaders")
+# Property saveToDisk (bool)
+property_reader("QNetworkCacheMetaData", /::saveToDisk\s*\(/, "saveToDisk")
+property_writer("QNetworkCacheMetaData", /::setSaveToDisk\s*\(/, "saveToDisk")
+# Property url (QUrl)
+property_reader("QNetworkCacheMetaData", /::url\s*\(/, "url")
+property_writer("QNetworkCacheMetaData", /::setUrl\s*\(/, "url")
+# Property domain (string)
+property_reader("QNetworkCookie", /::domain\s*\(/, "domain")
+property_writer("QNetworkCookie", /::setDomain\s*\(/, "domain")
+# Property expirationDate (QDateTime)
+property_reader("QNetworkCookie", /::expirationDate\s*\(/, "expirationDate")
+property_writer("QNetworkCookie", /::setExpirationDate\s*\(/, "expirationDate")
+# Property httpOnly (bool)
+property_reader("QNetworkCookie", /::isHttpOnly\s*\(/, "httpOnly")
+property_writer("QNetworkCookie", /::setHttpOnly\s*\(/, "httpOnly")
+# Property name (byte array)
+property_reader("QNetworkCookie", /::name\s*\(/, "name")
+property_writer("QNetworkCookie", /::setName\s*\(/, "name")
+# Property path (string)
+property_reader("QNetworkCookie", /::path\s*\(/, "path")
+property_writer("QNetworkCookie", /::setPath\s*\(/, "path")
+# Property secure (bool)
+property_reader("QNetworkCookie", /::isSecure\s*\(/, "secure")
+property_writer("QNetworkCookie", /::setSecure\s*\(/, "secure")
+# Property value (byte array)
+property_reader("QNetworkCookie", /::value\s*\(/, "value")
+property_writer("QNetworkCookie", /::setValue\s*\(/, "value")
+# Property data (byte array)
+property_reader("QNetworkDatagram", /::data\s*\(/, "data")
+property_writer("QNetworkDatagram", /::setData\s*\(/, "data")
+# Property hopLimit (int)
+property_reader("QNetworkDatagram", /::hopLimit\s*\(/, "hopLimit")
+property_writer("QNetworkDatagram", /::setHopLimit\s*\(/, "hopLimit")
+# Property interfaceIndex (unsigned int)
+property_reader("QNetworkDatagram", /::interfaceIndex\s*\(/, "interfaceIndex")
+property_writer("QNetworkDatagram", /::setInterfaceIndex\s*\(/, "interfaceIndex")
+# Property cacheDirectory (string)
+property_reader("QNetworkDiskCache", /::cacheDirectory\s*\(/, "cacheDirectory")
+property_writer("QNetworkDiskCache", /::setCacheDirectory\s*\(/, "cacheDirectory")
+# Property maximumCacheSize (long long)
+property_reader("QNetworkDiskCache", /::maximumCacheSize\s*\(/, "maximumCacheSize")
+property_writer("QNetworkDiskCache", /::setMaximumCacheSize\s*\(/, "maximumCacheSize")
+# Property applicationProxy (QNetworkProxy)
+property_reader("QNetworkProxy", /::applicationProxy\s*\(/, "applicationProxy")
+property_writer("QNetworkProxy", /::setApplicationProxy\s*\(/, "applicationProxy")
+# Property capabilities (QNetworkProxy_QFlags_Capability)
+property_reader("QNetworkProxy", /::capabilities\s*\(/, "capabilities")
+property_writer("QNetworkProxy", /::setCapabilities\s*\(/, "capabilities")
+# Property hostName (string)
+property_reader("QNetworkProxy", /::hostName\s*\(/, "hostName")
+property_writer("QNetworkProxy", /::setHostName\s*\(/, "hostName")
+# Property password (string)
+property_reader("QNetworkProxy", /::password\s*\(/, "password")
+property_writer("QNetworkProxy", /::setPassword\s*\(/, "password")
+# Property port (unsigned short)
+property_reader("QNetworkProxy", /::port\s*\(/, "port")
+property_writer("QNetworkProxy", /::setPort\s*\(/, "port")
+# Property type (QNetworkProxy_ProxyType)
+property_reader("QNetworkProxy", /::type\s*\(/, "type")
+property_writer("QNetworkProxy", /::setType\s*\(/, "type")
+# Property user (string)
+property_reader("QNetworkProxy", /::user\s*\(/, "user")
+property_writer("QNetworkProxy", /::setUser\s*\(/, "user")
+# Property localPort (int)
+property_reader("QNetworkProxyQuery", /::localPort\s*\(/, "localPort")
+property_writer("QNetworkProxyQuery", /::setLocalPort\s*\(/, "localPort")
+# Property networkConfiguration (QNetworkConfiguration)
+property_reader("QNetworkProxyQuery", /::networkConfiguration\s*\(/, "networkConfiguration")
+property_writer("QNetworkProxyQuery", /::setNetworkConfiguration\s*\(/, "networkConfiguration")
+# Property peerHostName (string)
+property_reader("QNetworkProxyQuery", /::peerHostName\s*\(/, "peerHostName")
+property_writer("QNetworkProxyQuery", /::setPeerHostName\s*\(/, "peerHostName")
+# Property peerPort (int)
+property_reader("QNetworkProxyQuery", /::peerPort\s*\(/, "peerPort")
+property_writer("QNetworkProxyQuery", /::setPeerPort\s*\(/, "peerPort")
+# Property protocolTag (string)
+property_reader("QNetworkProxyQuery", /::protocolTag\s*\(/, "protocolTag")
+property_writer("QNetworkProxyQuery", /::setProtocolTag\s*\(/, "protocolTag")
+# Property queryType (QNetworkProxyQuery_QueryType)
+property_reader("QNetworkProxyQuery", /::queryType\s*\(/, "queryType")
+property_writer("QNetworkProxyQuery", /::setQueryType\s*\(/, "queryType")
+# Property url (QUrl)
+property_reader("QNetworkProxyQuery", /::url\s*\(/, "url")
+property_writer("QNetworkProxyQuery", /::setUrl\s*\(/, "url")
+# Property readBufferSize (long long)
+property_reader("QNetworkReply", /::readBufferSize\s*\(/, "readBufferSize")
+property_writer("QNetworkReply", /::setReadBufferSize\s*\(/, "readBufferSize")
+# Property sslConfiguration (QSslConfiguration)
+property_reader("QNetworkReply", /::sslConfiguration\s*\(/, "sslConfiguration")
+property_writer("QNetworkReply", /::setSslConfiguration\s*\(/, "sslConfiguration")
+# Property maximumRedirectsAllowed (int)
+property_reader("QNetworkRequest", /::maximumRedirectsAllowed\s*\(/, "maximumRedirectsAllowed")
+property_writer("QNetworkRequest", /::setMaximumRedirectsAllowed\s*\(/, "maximumRedirectsAllowed")
+# Property originatingObject (QObject_Native *)
+property_reader("QNetworkRequest", /::originatingObject\s*\(/, "originatingObject")
+property_writer("QNetworkRequest", /::setOriginatingObject\s*\(/, "originatingObject")
+# Property priority (QNetworkRequest_Priority)
+property_reader("QNetworkRequest", /::priority\s*\(/, "priority")
+property_writer("QNetworkRequest", /::setPriority\s*\(/, "priority")
+# Property sslConfiguration (QSslConfiguration)
+property_reader("QNetworkRequest", /::sslConfiguration\s*\(/, "sslConfiguration")
+property_writer("QNetworkRequest", /::setSslConfiguration\s*\(/, "sslConfiguration")
+# Property url (QUrl)
+property_reader("QNetworkRequest", /::url\s*\(/, "url")
+property_writer("QNetworkRequest", /::setUrl\s*\(/, "url")
+# Property allowedNextProtocols (byte array[])
+property_reader("QSslConfiguration", /::allowedNextProtocols\s*\(/, "allowedNextProtocols")
+property_writer("QSslConfiguration", /::setAllowedNextProtocols\s*\(/, "allowedNextProtocols")
+# Property backendConfiguration (map)
+property_reader("QSslConfiguration", /::backendConfiguration\s*\(/, "backendConfiguration")
+property_writer("QSslConfiguration", /::setBackendConfiguration\s*\(/, "backendConfiguration")
+# Property caCertificates (QSslCertificate[])
+property_reader("QSslConfiguration", /::caCertificates\s*\(/, "caCertificates")
+property_writer("QSslConfiguration", /::setCaCertificates\s*\(/, "caCertificates")
+# Property ciphers (QSslCipher[])
+property_reader("QSslConfiguration", /::ciphers\s*\(/, "ciphers")
+property_writer("QSslConfiguration", /::setCiphers\s*\(/, "ciphers")
+# Property defaultConfiguration (QSslConfiguration)
+property_reader("QSslConfiguration", /::defaultConfiguration\s*\(/, "defaultConfiguration")
+property_writer("QSslConfiguration", /::setDefaultConfiguration\s*\(/, "defaultConfiguration")
+# Property defaultDtlsConfiguration (QSslConfiguration)
+property_reader("QSslConfiguration", /::defaultDtlsConfiguration\s*\(/, "defaultDtlsConfiguration")
+property_writer("QSslConfiguration", /::setDefaultDtlsConfiguration\s*\(/, "defaultDtlsConfiguration")
+# Property diffieHellmanParameters (QSslDiffieHellmanParameters)
+property_reader("QSslConfiguration", /::diffieHellmanParameters\s*\(/, "diffieHellmanParameters")
+property_writer("QSslConfiguration", /::setDiffieHellmanParameters\s*\(/, "diffieHellmanParameters")
+# Property dtlsCookieVerificationEnabled (bool)
+property_reader("QSslConfiguration", /::dtlsCookieVerificationEnabled\s*\(/, "dtlsCookieVerificationEnabled")
+property_writer("QSslConfiguration", /::setDtlsCookieVerificationEnabled\s*\(/, "dtlsCookieVerificationEnabled")
+# Property ellipticCurves (QSslEllipticCurve[])
+property_reader("QSslConfiguration", /::ellipticCurves\s*\(/, "ellipticCurves")
+property_writer("QSslConfiguration", /::setEllipticCurves\s*\(/, "ellipticCurves")
+# Property localCertificate (QSslCertificate)
+property_reader("QSslConfiguration", /::localCertificate\s*\(/, "localCertificate")
+property_writer("QSslConfiguration", /::setLocalCertificate\s*\(/, "localCertificate")
+# Property localCertificateChain (QSslCertificate[])
+property_reader("QSslConfiguration", /::localCertificateChain\s*\(/, "localCertificateChain")
+property_writer("QSslConfiguration", /::setLocalCertificateChain\s*\(/, "localCertificateChain")
+# Property peerVerifyDepth (int)
+property_reader("QSslConfiguration", /::peerVerifyDepth\s*\(/, "peerVerifyDepth")
+property_writer("QSslConfiguration", /::setPeerVerifyDepth\s*\(/, "peerVerifyDepth")
+# Property peerVerifyMode (QSslSocket_PeerVerifyMode)
+property_reader("QSslConfiguration", /::peerVerifyMode\s*\(/, "peerVerifyMode")
+property_writer("QSslConfiguration", /::setPeerVerifyMode\s*\(/, "peerVerifyMode")
+# Property preSharedKeyIdentityHint (byte array)
+property_reader("QSslConfiguration", /::preSharedKeyIdentityHint\s*\(/, "preSharedKeyIdentityHint")
+property_writer("QSslConfiguration", /::setPreSharedKeyIdentityHint\s*\(/, "preSharedKeyIdentityHint")
+# Property privateKey (QSslKey)
+property_reader("QSslConfiguration", /::privateKey\s*\(/, "privateKey")
+property_writer("QSslConfiguration", /::setPrivateKey\s*\(/, "privateKey")
+# Property protocol (QSsl_SslProtocol)
+property_reader("QSslConfiguration", /::protocol\s*\(/, "protocol")
+property_writer("QSslConfiguration", /::setProtocol\s*\(/, "protocol")
+# Property sessionTicket (byte array)
+property_reader("QSslConfiguration", /::sessionTicket\s*\(/, "sessionTicket")
+property_writer("QSslConfiguration", /::setSessionTicket\s*\(/, "sessionTicket")
+# Property identity (byte array)
+property_reader("QSslPreSharedKeyAuthenticator", /::identity\s*\(/, "identity")
+property_writer("QSslPreSharedKeyAuthenticator", /::setIdentity\s*\(/, "identity")
+# Property preSharedKey (byte array)
+property_reader("QSslPreSharedKeyAuthenticator", /::preSharedKey\s*\(/, "preSharedKey")
+property_writer("QSslPreSharedKeyAuthenticator", /::setPreSharedKey\s*\(/, "preSharedKey")
+# Property caCertificates (QSslCertificate[])
+property_reader("QSslSocket", /::caCertificates\s*\(/, "caCertificates")
+property_writer("QSslSocket", /::setCaCertificates\s*\(/, "caCertificates")
+# Property ciphers (QSslCipher[])
+property_reader("QSslSocket", /::ciphers\s*\(/, "ciphers")
+property_writer("QSslSocket", /::setCiphers\s*\(/, "ciphers")
+# Property defaultCaCertificates (QSslCertificate[])
+property_reader("QSslSocket", /::defaultCaCertificates\s*\(/, "defaultCaCertificates")
+property_writer("QSslSocket", /::setDefaultCaCertificates\s*\(/, "defaultCaCertificates")
+# Property defaultCiphers (QSslCipher[])
+property_reader("QSslSocket", /::defaultCiphers\s*\(/, "defaultCiphers")
+property_writer("QSslSocket", /::setDefaultCiphers\s*\(/, "defaultCiphers")
+# Property localCertificate (QSslCertificate)
+property_reader("QSslSocket", /::localCertificate\s*\(/, "localCertificate")
+property_writer("QSslSocket", /::setLocalCertificate\s*\(/, "localCertificate")
+# Property localCertificateChain (QSslCertificate[])
+property_reader("QSslSocket", /::localCertificateChain\s*\(/, "localCertificateChain")
+property_writer("QSslSocket", /::setLocalCertificateChain\s*\(/, "localCertificateChain")
+# Property peerVerifyDepth (int)
+property_reader("QSslSocket", /::peerVerifyDepth\s*\(/, "peerVerifyDepth")
+property_writer("QSslSocket", /::setPeerVerifyDepth\s*\(/, "peerVerifyDepth")
+# Property peerVerifyMode (QSslSocket_PeerVerifyMode)
+property_reader("QSslSocket", /::peerVerifyMode\s*\(/, "peerVerifyMode")
+property_writer("QSslSocket", /::setPeerVerifyMode\s*\(/, "peerVerifyMode")
+# Property peerVerifyName (string)
+property_reader("QSslSocket", /::peerVerifyName\s*\(/, "peerVerifyName")
+property_writer("QSslSocket", /::setPeerVerifyName\s*\(/, "peerVerifyName")
+# Property privateKey (QSslKey)
+property_reader("QSslSocket", /::privateKey\s*\(/, "privateKey")
+property_writer("QSslSocket", /::setPrivateKey\s*\(/, "privateKey")
+# Property protocol (QSsl_SslProtocol)
+property_reader("QSslSocket", /::protocol\s*\(/, "protocol")
+property_writer("QSslSocket", /::setProtocol\s*\(/, "protocol")
+# Property readBufferSize (long long)
+property_reader("QAbstractSocket", /::readBufferSize\s*\(/, "readBufferSize")
+property_writer("QSslSocket", /::setReadBufferSize\s*\(/, "readBufferSize")
+# Property sslConfiguration (QSslConfiguration)
+property_reader("QSslSocket", /::sslConfiguration\s*\(/, "sslConfiguration")
+property_writer("QSslSocket", /::setSslConfiguration\s*\(/, "sslConfiguration")
+# Property maxPendingConnections (int)
+property_reader("QTcpServer", /::maxPendingConnections\s*\(/, "maxPendingConnections")
+property_writer("QTcpServer", /::setMaxPendingConnections\s*\(/, "maxPendingConnections")
+# Property proxy (QNetworkProxy)
+property_reader("QTcpServer", /::proxy\s*\(/, "proxy")
+property_writer("QTcpServer", /::setProxy\s*\(/, "proxy")
+# Property multicastInterface (QNetworkInterface)
+property_reader("QUdpSocket", /::multicastInterface\s*\(/, "multicastInterface")
+property_writer("QUdpSocket", /::setMulticastInterface\s*\(/, "multicastInterface")
+# Property value (string)
+property_reader("QDomAttr", /::value\s*\(/, "value")
+property_writer("QDomAttr", /::setValue\s*\(/, "value")
+# Property data (string)
+property_reader("QDomCharacterData", /::data\s*\(/, "data")
+property_writer("QDomCharacterData", /::setData\s*\(/, "data")
+# Property tagName (string)
+property_reader("QDomElement", /::tagName\s*\(/, "tagName")
+property_writer("QDomElement", /::setTagName\s*\(/, "tagName")
+# Property invalidDataPolicy (QDomImplementation_InvalidDataPolicy)
+property_reader("QDomImplementation", /::invalidDataPolicy\s*\(/, "invalidDataPolicy")
+property_writer("QDomImplementation", /::setInvalidDataPolicy\s*\(/, "invalidDataPolicy")
+# Property nodeValue (string)
+property_reader("QDomNode", /::nodeValue\s*\(/, "nodeValue")
+property_writer("QDomNode", /::setNodeValue\s*\(/, "nodeValue")
+# Property prefix (string)
+property_reader("QDomNode", /::prefix\s*\(/, "prefix")
+property_writer("QDomNode", /::setPrefix\s*\(/, "prefix")
+# Property data (string)
+property_reader("QDomProcessingInstruction", /::data\s*\(/, "data")
+property_writer("QDomProcessingInstruction", /::setData\s*\(/, "data")
# Property data (string)
property_reader("QXmlInputSource", /::data\s*\(/, "data")
property_writer("QXmlInputSource", /::setData\s*\(/, "data")
-# Property initialTemplateName (QXmlName)
-property_reader("QXmlQuery", /::initialTemplateName\s*\(/, "initialTemplateName")
-property_writer("QXmlQuery", /::setInitialTemplateName\s*\(/, "initialTemplateName")
-# Property messageHandler (QAbstractMessageHandler_Native *)
-property_reader("QXmlQuery", /::messageHandler\s*\(/, "messageHandler")
-property_writer("QXmlQuery", /::setMessageHandler\s*\(/, "messageHandler")
-# Property networkAccessManager (QNetworkAccessManager_Native *)
-property_reader("QXmlQuery", /::networkAccessManager\s*\(/, "networkAccessManager")
-property_writer("QXmlQuery", /::setNetworkAccessManager\s*\(/, "networkAccessManager")
-# Property uriResolver (QAbstractUriResolver_Native *)
-property_reader("QXmlQuery", /::uriResolver\s*\(/, "uriResolver")
-property_writer("QXmlQuery", /::setUriResolver\s*\(/, "uriResolver")
# Property contentHandler (QXmlContentHandler_Native *)
property_reader("QXmlReader", /::contentHandler\s*\(/, "contentHandler")
property_writer("QXmlReader", /::setContentHandler\s*\(/, "contentHandler")
@@ -15352,30 +15830,6 @@ property_writer("QXmlReader", /::setErrorHandler\s*\(/, "errorHandler")
# Property lexicalHandler (QXmlLexicalHandler_Native *)
property_reader("QXmlReader", /::lexicalHandler\s*\(/, "lexicalHandler")
property_writer("QXmlReader", /::setLexicalHandler\s*\(/, "lexicalHandler")
-# Property messageHandler (QAbstractMessageHandler_Native *)
-property_reader("QXmlSchema", /::messageHandler\s*\(/, "messageHandler")
-property_writer("QXmlSchema", /::setMessageHandler\s*\(/, "messageHandler")
-# Property networkAccessManager (QNetworkAccessManager_Native *)
-property_reader("QXmlSchema", /::networkAccessManager\s*\(/, "networkAccessManager")
-property_writer("QXmlSchema", /::setNetworkAccessManager\s*\(/, "networkAccessManager")
-# Property uriResolver (QAbstractUriResolver_Native *)
-property_reader("QXmlSchema", /::uriResolver\s*\(/, "uriResolver")
-property_writer("QXmlSchema", /::setUriResolver\s*\(/, "uriResolver")
-# Property messageHandler (QAbstractMessageHandler_Native *)
-property_reader("QXmlSchemaValidator", /::messageHandler\s*\(/, "messageHandler")
-property_writer("QXmlSchemaValidator", /::setMessageHandler\s*\(/, "messageHandler")
-# Property networkAccessManager (QNetworkAccessManager_Native *)
-property_reader("QXmlSchemaValidator", /::networkAccessManager\s*\(/, "networkAccessManager")
-property_writer("QXmlSchemaValidator", /::setNetworkAccessManager\s*\(/, "networkAccessManager")
-# Property schema (QXmlSchema)
-property_reader("QXmlSchemaValidator", /::schema\s*\(/, "schema")
-property_writer("QXmlSchemaValidator", /::setSchema\s*\(/, "schema")
-# Property uriResolver (QAbstractUriResolver_Native *)
-property_reader("QXmlSchemaValidator", /::uriResolver\s*\(/, "uriResolver")
-property_writer("QXmlSchemaValidator", /::setUriResolver\s*\(/, "uriResolver")
-# Property codec (QTextCodec_Native *)
-property_reader("QXmlSerializer", /::codec\s*\(/, "codec")
-property_writer("QXmlSerializer", /::setCodec\s*\(/, "codec")
# Property contentHandler (QXmlContentHandler_Native *)
property_reader("QXmlSimpleReader", /::contentHandler\s*\(/, "contentHandler")
property_writer("QXmlSimpleReader", /::setContentHandler\s*\(/, "contentHandler")
@@ -15391,24 +15845,3 @@ property_writer("QXmlSimpleReader", /::setErrorHandler\s*\(/, "errorHandler")
# Property lexicalHandler (QXmlLexicalHandler_Native *)
property_reader("QXmlSimpleReader", /::lexicalHandler\s*\(/, "lexicalHandler")
property_writer("QXmlSimpleReader", /::setLexicalHandler\s*\(/, "lexicalHandler")
-# Property device (QIODevice *)
-property_reader("QXmlStreamReader", /::device\s*\(/, "device")
-property_writer("QXmlStreamReader", /::setDevice\s*\(/, "device")
-# Property entityResolver (QXmlStreamEntityResolver_Native *)
-property_reader("QXmlStreamReader", /::entityResolver\s*\(/, "entityResolver")
-property_writer("QXmlStreamReader", /::setEntityResolver\s*\(/, "entityResolver")
-# Property namespaceProcessing (bool)
-property_reader("QXmlStreamReader", /::namespaceProcessing\s*\(/, "namespaceProcessing")
-property_writer("QXmlStreamReader", /::setNamespaceProcessing\s*\(/, "namespaceProcessing")
-# Property autoFormatting (bool)
-property_reader("QXmlStreamWriter", /::autoFormatting\s*\(/, "autoFormatting")
-property_writer("QXmlStreamWriter", /::setAutoFormatting\s*\(/, "autoFormatting")
-# Property autoFormattingIndent (int)
-property_reader("QXmlStreamWriter", /::autoFormattingIndent\s*\(/, "autoFormattingIndent")
-property_writer("QXmlStreamWriter", /::setAutoFormattingIndent\s*\(/, "autoFormattingIndent")
-# Property codec (QTextCodec_Native *)
-property_reader("QXmlStreamWriter", /::codec\s*\(/, "codec")
-property_writer("QXmlStreamWriter", /::setCodec\s*\(/, "codec")
-# Property device (QIODevice *)
-property_reader("QXmlStreamWriter", /::device\s*\(/, "device")
-property_writer("QXmlStreamWriter", /::setDevice\s*\(/, "device")
diff --git a/scripts/mkqtdecl6/mkqtdecl.conf b/scripts/mkqtdecl6/mkqtdecl.conf
index bd15c83e9..f94c55b79 100644
--- a/scripts/mkqtdecl6/mkqtdecl.conf
+++ b/scripts/mkqtdecl6/mkqtdecl.conf
@@ -34,8 +34,8 @@ drop_method :all_classes, /\(.*&&.*\)/ # no move semantics
drop_method :all_classes, /.*\s+&&$/ # no move semantics
drop_method :all_classes, /\(.*std::nullptr_t.*\)/ # no nullptr arguments
drop_method :all_classes, /\(.*std::experimental.*\)/ # no experimental stuff
-drop_method :all_classes, /\(.*std::chrono.*\)/ # no chrono
-drop_method :all_classes, /^std::chrono::/ # no chrono as return value
+drop_method :all_classes, /\(.*std::chrono.*\)/ # no std::chrono
+drop_method :all_classes, /^std::chrono::/ # no std::chrono as return value
drop_method :all_classes, /\(.*std::filesystem.*\)/ # no filesystem
drop_method :all_classes, /^std::filesystem::/ # no filesystem as return value
drop_method :all_classes, /\(.*std::initializer_list.*\)/ # no brace initialization
@@ -43,10 +43,13 @@ drop_method :all_classes, /\(.*std::function.*\)/ # std::function not bindable
drop_method :all_classes, /^std::function # std::function not bindable as return value
drop_method :all_classes, /::bindable/ # no QBindable available
drop_method :all_classes, /.*QtPrivate::.*/ # no private stuff
+drop_method :all_classes, /\(.*QStringView\W/ # no QStringView
+drop_method :all_classes, /^QStringView\W/ # no QStringView
+drop_method :all_classes, /\(.*QLatin1String\W/ # clashes usually with const char *
-rename :all_classes, /::create\(/, "qt_create" # clashes with GSI/Ruby
-rename :all_classes, /::destroy\(/, "qt_destroy" # clashes with GSI/Ruby
-rename :all_classes, /::raise\(/, "qt_raise" # clashes with Ruby "raise" keyword
+def_alias :all_classes, /::create\(/, "qt_create" # clashes with GSI/Ruby
+def_alias :all_classes, /::destroy\(/, "qt_destroy" # clashes with GSI/Ruby
+def_alias :all_classes, /::raise\(/, "qt_raise" # clashes with Ruby "raise" keyword
# --------------------------------------------------------------
# Qt
@@ -320,7 +323,7 @@ drop_enum_const "QEvent", /CocoaRequestModal/ # not available on WIN
drop_method "QMetaType", /QMetaType::staticMetaObject/ # not available
drop_method "QMetaType", /QMetaType::register.*Function\(/ # std::function not available
-drop_method "QDeadlineTimer", /QDeadlineTimer::_q_data/ # internal (@@@ TODO: QDealineTimer is present twice?)
+drop_method "QDeadlineTimer", /QDeadlineTimer::_q_data/ # internal and QPair is not bound
drop_method "QObject", /QObject::bindingStorage/ # no QBindingStorage
drop_method "QPluginLoader", /QPluginLoader::staticPlugins/ # no QStaticPlugin
drop_method "QKeyCombination", /QKeyCombination::operator<\(/ # deleted
@@ -866,7 +869,8 @@ drop_method "QGuiApplication", /QGuiApplication::platformFunction/ # (TODO) no
drop_method "QPagedPaintDevice", /QPagedPaintDevice::dd/ # QPagedPaintDevicePrivate not available
drop_method "QPixmap", /QPixmap::QPixmap\(QPlatformPixmap/ # QPlatformPixmap not available
drop_method "QAbstractPageSetupDialog", /QAbstractPageSetupDialog::QAbstractPageSetupDialog\(QAbstractPageSetupDialogPrivate/
-drop_method "QImage", /QImage::QImage\(.*cleanupFunction/ # (TODO) no function pointers available
+drop_method "QImage", /QImage::QImage\(.*cleanupFunction/ # (TODO) no function pointers available -> substitute by variant in add_native_impl_QImage
+add_native_impl_QImage()
drop_method "QClipboardEvent", /QClipboardEvent::data/
drop_method "QClipboardEvent", /QClipboardEvent::QClipboardEvent\(QEventPrivate/
drop_method "QCursor", /QCursor::QCursor\s*\(\s*Qt::HANDLE/ # not available on WIN
@@ -1036,7 +1040,6 @@ drop_method "QColor", /QColor::QColor\(const\s+QString/ # clashes with const cha
drop_method "QColor", /QColor::allowX11ColorNames/ # not available in WIN
drop_method "QColor", /QColor::setAllowX11ColorNames/ # not available in WIN
drop_method "Qimage", /Qimage::text\(const\s+QString/ # clashes with const char * version
-drop_method "QOpenGLExtraFunctions", /QOpenGLExtraFunctions::glDebugMessageCallback\(/ # needs function *
drop_method "QWindow", /::vulkanInstance\(/ # no Vulkan support currently
drop_method "QWindow", /::setVulkanInstance\(/ # no Vulkan support currently
drop_method "QTransform", /::asAffineMatrix\(/ # auto return value not supported
@@ -1049,11 +1052,30 @@ rename "QDialogButtonBox", /QDialogButtonBox::QDialogButtonBox\(QFlags/, "new_bu
rename "QIcon", /QIcon::pixmap\(int\s+extent/, "pixmap_ext"
rename "QKeySequence", /QKeySequence::QKeySequence\(QKeySequence::StandardKey/, "new_std"
+# TODO: basically, the layout object only takes ownership over the objects when
+# it has a QWidget parent itself. This is not reflected in the following simple scheme
keep_arg "QBoxLayout", /::addLayout/, 0 # will take ownership of layout
+keep_arg "QBoxLayout", /::addSpacerItem/, 0 # will take ownership of item
+keep_arg "QBoxLayout", /::addWidget/, 0 # will take ownership of item
+keep_arg "QBoxLayout", /::insertItem/, 1 # will take ownership of item
+keep_arg "QBoxLayout", /::insertLayout/, 1 # will take ownership of item
+keep_arg "QBoxLayout", /::insertSpacerItem/, 1 # will take ownership of item
+keep_arg "QBoxLayout", /::insertWidget/, 1 # will take ownership of item
+keep_arg "QFormLayout", /::addRow/, 1 # will take ownership of item
+keep_arg "QFormLayout", /::addRow\(QWidget\s*\*/, 0 # will take ownership of item
+keep_arg "QFormLayout", /::insertRow/, 2 # will take ownership of item
+keep_arg "QFormLayout", /::insertRow\(QWidget\s*\*/, 1 # will take ownership of item
+keep_arg "QFormLayout", /::setWidget/, 2 # will take ownership of item
keep_arg "QGridLayout", /::addLayout/, 0 # will take ownership of layout
-keep_arg "QWidget", /::setLayout\s*\(/, 0 # will take ownership of layout
+keep_arg "QGridLayout", /::addItem/, 0 # will take ownership of layout
+keep_arg "QGridLayout", /::addWidget/, 0 # will take ownership of layout
keep_arg "QLayout", /::addChildLayout/, 0 # will take ownership of layout
keep_arg "QLayout", /::addItem/, 0 # will take ownership of item
+keep_arg "QLayout", /::addWidget/, 0 # will take ownership of item
+keep_arg "QStackedLayout", /::addWidget/, 0 # will take ownership of item
+keep_arg "QStackedLayout", /::insertWidget/, 1 # will take ownership of item
+
+keep_arg "QWidget", /::setLayout\s*\(/, 0 # will take ownership of layout
keep_arg "QTreeWidgetItem", /::addChild\(/, 0 # will take ownership of the child
keep_arg "QTreeWidgetItem", /::addChildren\(/, 0 # will take ownership of the children
keep_arg "QTreeWidgetItem", /::insertChild\(/, 1 # will take ownership of the child
@@ -1082,6 +1104,7 @@ return_new "QLayout", /::takeAt/ # returns a free object
return_new "QBoxLayout", /::takeAt/ # returns a free object
return_new "QFormLayout", /::takeAt/ # returns a free object
return_new "QGridLayout", /::takeAt/ # returns a free object
+# TODO: QFormLayout: takeRow -> needs QFormLayout::TakeRowResult
return_new "QStackedLayout", /::takeAt/ # returns a free object
return_new "QStandardItem", /::take/ # returns a free object
return_new "QStandardItemModel", /::take/ # returns a free object
diff --git a/scripts/mkqtdecl6/mkqtdecl.events b/scripts/mkqtdecl6/mkqtdecl.events
index 5c493c6a3..609ec90dd 100644
--- a/scripts/mkqtdecl6/mkqtdecl.events
+++ b/scripts/mkqtdecl6/mkqtdecl.events
@@ -10,7 +10,7 @@ event("QAbstractEventDispatcher", /::aboutToBlock\s*\(/, "")
event("QAbstractEventDispatcher", /::awake\s*\(/, "")
event("QAbstractItemModel", /::destroyed\s*\(/, "QObject*")
event("QAbstractItemModel", /::objectNameChanged\s*\(/, "QString")
-event("QAbstractItemModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QVector")
+event("QAbstractItemModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
event("QAbstractItemModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
event("QAbstractItemModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
event("QAbstractItemModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
@@ -30,7 +30,7 @@ event("QAbstractItemModel", /::columnsAboutToBeMoved\s*\(/, "QModelIndex, int, i
event("QAbstractItemModel", /::columnsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
event("QAbstractListModel", /::destroyed\s*\(/, "QObject*")
event("QAbstractListModel", /::objectNameChanged\s*\(/, "QString")
-event("QAbstractListModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QVector")
+event("QAbstractListModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
event("QAbstractListModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
event("QAbstractListModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
event("QAbstractListModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
@@ -50,7 +50,7 @@ event("QAbstractListModel", /::columnsAboutToBeMoved\s*\(/, "QModelIndex, int, i
event("QAbstractListModel", /::columnsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
event("QAbstractProxyModel", /::destroyed\s*\(/, "QObject*")
event("QAbstractProxyModel", /::objectNameChanged\s*\(/, "QString")
-event("QAbstractProxyModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QVector")
+event("QAbstractProxyModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
event("QAbstractProxyModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
event("QAbstractProxyModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
event("QAbstractProxyModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
@@ -69,14 +69,9 @@ event("QAbstractProxyModel", /::rowsMoved\s*\(/, "QModelIndex, int, int, QModelI
event("QAbstractProxyModel", /::columnsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
event("QAbstractProxyModel", /::columnsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
event("QAbstractProxyModel", /::sourceModelChanged\s*\(/, "")
-event("QAbstractState", /::destroyed\s*\(/, "QObject*")
-event("QAbstractState", /::objectNameChanged\s*\(/, "QString")
-event("QAbstractState", /::entered\s*\(/, "")
-event("QAbstractState", /::exited\s*\(/, "")
-event("QAbstractState", /::activeChanged\s*\(/, "bool")
event("QAbstractTableModel", /::destroyed\s*\(/, "QObject*")
event("QAbstractTableModel", /::objectNameChanged\s*\(/, "QString")
-event("QAbstractTableModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QVector")
+event("QAbstractTableModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
event("QAbstractTableModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
event("QAbstractTableModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
event("QAbstractTableModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
@@ -94,11 +89,6 @@ event("QAbstractTableModel", /::rowsAboutToBeMoved\s*\(/, "QModelIndex, int, int
event("QAbstractTableModel", /::rowsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
event("QAbstractTableModel", /::columnsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
event("QAbstractTableModel", /::columnsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
-event("QAbstractTransition", /::destroyed\s*\(/, "QObject*")
-event("QAbstractTransition", /::objectNameChanged\s*\(/, "QString")
-event("QAbstractTransition", /::triggered\s*\(/, "")
-event("QAbstractTransition", /::targetStateChanged\s*\(/, "")
-event("QAbstractTransition", /::targetStatesChanged\s*\(/, "")
event("QAnimationDriver", /::destroyed\s*\(/, "QObject*")
event("QAnimationDriver", /::objectNameChanged\s*\(/, "QString")
event("QAnimationDriver", /::started\s*\(/, "")
@@ -117,6 +107,26 @@ event("QBuffer", /::bytesWritten\s*\(/, "qlonglong")
event("QBuffer", /::channelBytesWritten\s*\(/, "int, qlonglong")
event("QBuffer", /::aboutToClose\s*\(/, "")
event("QBuffer", /::readChannelFinished\s*\(/, "")
+event("QConcatenateTablesProxyModel", /::destroyed\s*\(/, "QObject*")
+event("QConcatenateTablesProxyModel", /::objectNameChanged\s*\(/, "QString")
+event("QConcatenateTablesProxyModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
+event("QConcatenateTablesProxyModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
+event("QConcatenateTablesProxyModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
+event("QConcatenateTablesProxyModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
+event("QConcatenateTablesProxyModel", /::rowsAboutToBeInserted\s*\(/, "QModelIndex, int, int")
+event("QConcatenateTablesProxyModel", /::rowsInserted\s*\(/, "QModelIndex, int, int")
+event("QConcatenateTablesProxyModel", /::rowsAboutToBeRemoved\s*\(/, "QModelIndex, int, int")
+event("QConcatenateTablesProxyModel", /::rowsRemoved\s*\(/, "QModelIndex, int, int")
+event("QConcatenateTablesProxyModel", /::columnsAboutToBeInserted\s*\(/, "QModelIndex, int, int")
+event("QConcatenateTablesProxyModel", /::columnsInserted\s*\(/, "QModelIndex, int, int")
+event("QConcatenateTablesProxyModel", /::columnsAboutToBeRemoved\s*\(/, "QModelIndex, int, int")
+event("QConcatenateTablesProxyModel", /::columnsRemoved\s*\(/, "QModelIndex, int, int")
+event("QConcatenateTablesProxyModel", /::modelAboutToBeReset\s*\(/, "")
+event("QConcatenateTablesProxyModel", /::modelReset\s*\(/, "")
+event("QConcatenateTablesProxyModel", /::rowsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
+event("QConcatenateTablesProxyModel", /::rowsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
+event("QConcatenateTablesProxyModel", /::columnsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
+event("QConcatenateTablesProxyModel", /::columnsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
event("QCoreApplication", /::destroyed\s*\(/, "QObject*")
event("QCoreApplication", /::objectNameChanged\s*\(/, "QString")
event("QCoreApplication", /::aboutToQuit\s*\(/, "")
@@ -126,11 +136,6 @@ event("QCoreApplication", /::applicationNameChanged\s*\(/, "")
event("QCoreApplication", /::applicationVersionChanged\s*\(/, "")
event("QEventLoop", /::destroyed\s*\(/, "QObject*")
event("QEventLoop", /::objectNameChanged\s*\(/, "QString")
-event("QEventTransition", /::destroyed\s*\(/, "QObject*")
-event("QEventTransition", /::objectNameChanged\s*\(/, "QString")
-event("QEventTransition", /::triggered\s*\(/, "")
-event("QEventTransition", /::targetStateChanged\s*\(/, "")
-event("QEventTransition", /::targetStatesChanged\s*\(/, "")
event("QFile", /::destroyed\s*\(/, "QObject*")
event("QFile", /::objectNameChanged\s*\(/, "QString")
event("QFile", /::readyRead\s*\(/, "")
@@ -153,19 +158,6 @@ event("QFileSystemWatcher", /::destroyed\s*\(/, "QObject*")
event("QFileSystemWatcher", /::objectNameChanged\s*\(/, "QString")
event("QFileSystemWatcher", /::fileChanged\s*\(/, "QString")
event("QFileSystemWatcher", /::directoryChanged\s*\(/, "QString")
-event("QFinalState", /::destroyed\s*\(/, "QObject*")
-event("QFinalState", /::objectNameChanged\s*\(/, "QString")
-event("QFinalState", /::entered\s*\(/, "")
-event("QFinalState", /::exited\s*\(/, "")
-event("QFinalState", /::activeChanged\s*\(/, "bool")
-event("QHistoryState", /::destroyed\s*\(/, "QObject*")
-event("QHistoryState", /::objectNameChanged\s*\(/, "QString")
-event("QHistoryState", /::entered\s*\(/, "")
-event("QHistoryState", /::exited\s*\(/, "")
-event("QHistoryState", /::activeChanged\s*\(/, "bool")
-event("QHistoryState", /::defaultTransitionChanged\s*\(/, "")
-event("QHistoryState", /::defaultStateChanged\s*\(/, "")
-event("QHistoryState", /::historyTypeChanged\s*\(/, "")
event("QIODevice", /::destroyed\s*\(/, "QObject*")
event("QIODevice", /::objectNameChanged\s*\(/, "QString")
event("QIODevice", /::readyRead\s*\(/, "")
@@ -176,7 +168,7 @@ event("QIODevice", /::aboutToClose\s*\(/, "")
event("QIODevice", /::readChannelFinished\s*\(/, "")
event("QIdentityProxyModel", /::destroyed\s*\(/, "QObject*")
event("QIdentityProxyModel", /::objectNameChanged\s*\(/, "QString")
-event("QIdentityProxyModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QVector")
+event("QIdentityProxyModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
event("QIdentityProxyModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
event("QIdentityProxyModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
event("QIdentityProxyModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
@@ -232,7 +224,6 @@ event("QProcess", /::aboutToClose\s*\(/, "")
event("QProcess", /::readChannelFinished\s*\(/, "")
event("QProcess", /::started\s*\(/, "")
event("QProcess", /::finished\s*\(/, "int, QProcess::ExitStatus")
-event("QProcess", /::error\s*\(/, "QProcess::ProcessError")
event("QProcess", /::errorOccurred\s*\(/, "QProcess::ProcessError")
event("QProcess", /::stateChanged\s*\(/, "QProcess::ProcessState")
event("QProcess", /::readyReadStandardOutput\s*\(/, "")
@@ -265,26 +256,16 @@ event("QSharedMemory", /::destroyed\s*\(/, "QObject*")
event("QSharedMemory", /::objectNameChanged\s*\(/, "QString")
event("QSignalMapper", /::destroyed\s*\(/, "QObject*")
event("QSignalMapper", /::objectNameChanged\s*\(/, "QString")
-event("QSignalMapper", /::mapped\s*\(.*int/, "int")
-event("QSignalMapper", /::mapped\s*\(.*QString/, "QString")
-rename("QSignalMapper", /::mapped\s*\(.*QString/, "mapped_qs")
-event("QSignalMapper", /::mapped\s*\(.*QWidget/, "QWidget*")
-rename("QSignalMapper", /::mapped\s*\(.*QWidget/, "mapped_qw")
-event("QSignalMapper", /::mapped\s*\(.*QObject/, "QObject*")
-rename("QSignalMapper", /::mapped\s*\(.*QObject/, "mapped_qo")
-event("QSignalTransition", /::destroyed\s*\(/, "QObject*")
-event("QSignalTransition", /::objectNameChanged\s*\(/, "QString")
-event("QSignalTransition", /::triggered\s*\(/, "")
-event("QSignalTransition", /::targetStateChanged\s*\(/, "")
-event("QSignalTransition", /::targetStatesChanged\s*\(/, "")
-event("QSignalTransition", /::senderObjectChanged\s*\(/, "")
-event("QSignalTransition", /::signalChanged\s*\(/, "")
+event("QSignalMapper", /::mappedInt\s*\(/, "int")
+event("QSignalMapper", /::mappedString\s*\(/, "QString")
+event("QSignalMapper", /::mappedObject\s*\(/, "QObject*")
event("QSocketNotifier", /::destroyed\s*\(/, "QObject*")
event("QSocketNotifier", /::objectNameChanged\s*\(/, "QString")
+event("QSocketNotifier", /::activated\s*\(/, "QSocketDescriptor, QSocketNotifier::Type")
event("QSocketNotifier", /::activated\s*\(/, "int")
event("QSortFilterProxyModel", /::destroyed\s*\(/, "QObject*")
event("QSortFilterProxyModel", /::objectNameChanged\s*\(/, "QString")
-event("QSortFilterProxyModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QVector")
+event("QSortFilterProxyModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
event("QSortFilterProxyModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
event("QSortFilterProxyModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
event("QSortFilterProxyModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
@@ -303,32 +284,17 @@ event("QSortFilterProxyModel", /::rowsMoved\s*\(/, "QModelIndex, int, int, QMode
event("QSortFilterProxyModel", /::columnsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
event("QSortFilterProxyModel", /::columnsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
event("QSortFilterProxyModel", /::sourceModelChanged\s*\(/, "")
-event("QState", /::destroyed\s*\(/, "QObject*")
-event("QState", /::objectNameChanged\s*\(/, "QString")
-event("QState", /::entered\s*\(/, "")
-event("QState", /::exited\s*\(/, "")
-event("QState", /::activeChanged\s*\(/, "bool")
-event("QState", /::finished\s*\(/, "")
-event("QState", /::propertiesAssigned\s*\(/, "")
-event("QState", /::childModeChanged\s*\(/, "")
-event("QState", /::initialStateChanged\s*\(/, "")
-event("QState", /::errorStateChanged\s*\(/, "")
-event("QStateMachine", /::destroyed\s*\(/, "QObject*")
-event("QStateMachine", /::objectNameChanged\s*\(/, "QString")
-event("QStateMachine", /::entered\s*\(/, "")
-event("QStateMachine", /::exited\s*\(/, "")
-event("QStateMachine", /::activeChanged\s*\(/, "bool")
-event("QStateMachine", /::finished\s*\(/, "")
-event("QStateMachine", /::propertiesAssigned\s*\(/, "")
-event("QStateMachine", /::childModeChanged\s*\(/, "")
-event("QStateMachine", /::initialStateChanged\s*\(/, "")
-event("QStateMachine", /::errorStateChanged\s*\(/, "")
-event("QStateMachine", /::started\s*\(/, "")
-event("QStateMachine", /::stopped\s*\(/, "")
-event("QStateMachine", /::runningChanged\s*\(/, "bool")
+event("QSortFilterProxyModel", /::dynamicSortFilterChanged\s*\(/, "bool")
+event("QSortFilterProxyModel", /::filterCaseSensitivityChanged\s*\(/, "Qt::CaseSensitivity")
+event("QSortFilterProxyModel", /::sortCaseSensitivityChanged\s*\(/, "Qt::CaseSensitivity")
+event("QSortFilterProxyModel", /::sortLocaleAwareChanged\s*\(/, "bool")
+event("QSortFilterProxyModel", /::sortRoleChanged\s*\(/, "int")
+event("QSortFilterProxyModel", /::filterRoleChanged\s*\(/, "int")
+event("QSortFilterProxyModel", /::recursiveFilteringEnabledChanged\s*\(/, "bool")
+event("QSortFilterProxyModel", /::autoAcceptChildRowsChanged\s*\(/, "bool")
event("QStringListModel", /::destroyed\s*\(/, "QObject*")
event("QStringListModel", /::objectNameChanged\s*\(/, "QString")
-event("QStringListModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QVector")
+event("QStringListModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
event("QStringListModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
event("QStringListModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
event("QStringListModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
@@ -371,6 +337,27 @@ event("QTimer", /::objectNameChanged\s*\(/, "QString")
event("QTimer", /::timeout\s*\(/, "")
event("QTranslator", /::destroyed\s*\(/, "QObject*")
event("QTranslator", /::objectNameChanged\s*\(/, "QString")
+event("QTransposeProxyModel", /::destroyed\s*\(/, "QObject*")
+event("QTransposeProxyModel", /::objectNameChanged\s*\(/, "QString")
+event("QTransposeProxyModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
+event("QTransposeProxyModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
+event("QTransposeProxyModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
+event("QTransposeProxyModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
+event("QTransposeProxyModel", /::rowsAboutToBeInserted\s*\(/, "QModelIndex, int, int")
+event("QTransposeProxyModel", /::rowsInserted\s*\(/, "QModelIndex, int, int")
+event("QTransposeProxyModel", /::rowsAboutToBeRemoved\s*\(/, "QModelIndex, int, int")
+event("QTransposeProxyModel", /::rowsRemoved\s*\(/, "QModelIndex, int, int")
+event("QTransposeProxyModel", /::columnsAboutToBeInserted\s*\(/, "QModelIndex, int, int")
+event("QTransposeProxyModel", /::columnsInserted\s*\(/, "QModelIndex, int, int")
+event("QTransposeProxyModel", /::columnsAboutToBeRemoved\s*\(/, "QModelIndex, int, int")
+event("QTransposeProxyModel", /::columnsRemoved\s*\(/, "QModelIndex, int, int")
+event("QTransposeProxyModel", /::modelAboutToBeReset\s*\(/, "")
+event("QTransposeProxyModel", /::modelReset\s*\(/, "")
+event("QTransposeProxyModel", /::rowsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
+event("QTransposeProxyModel", /::rowsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
+event("QTransposeProxyModel", /::columnsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
+event("QTransposeProxyModel", /::columnsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
+event("QTransposeProxyModel", /::sourceModelChanged\s*\(/, "")
event("QVariantAnimation", /::destroyed\s*\(/, "QObject*")
event("QVariantAnimation", /::objectNameChanged\s*\(/, "QString")
event("QVariantAnimation", /::finished\s*\(/, "")
@@ -384,6 +371,19 @@ event("QAbstractTextDocumentLayout", /::update\s*\(/, "QRectF")
event("QAbstractTextDocumentLayout", /::updateBlock\s*\(/, "QTextBlock")
event("QAbstractTextDocumentLayout", /::documentSizeChanged\s*\(/, "QSizeF")
event("QAbstractTextDocumentLayout", /::pageCountChanged\s*\(/, "int")
+event("QAction", /::destroyed\s*\(/, "QObject*")
+event("QAction", /::objectNameChanged\s*\(/, "QString")
+event("QAction", /::changed\s*\(/, "")
+event("QAction", /::enabledChanged\s*\(/, "bool")
+event("QAction", /::checkableChanged\s*\(/, "bool")
+event("QAction", /::visibleChanged\s*\(/, "")
+event("QAction", /::triggered\s*\(/, "bool")
+event("QAction", /::hovered\s*\(/, "")
+event("QAction", /::toggled\s*\(/, "bool")
+event("QActionGroup", /::destroyed\s*\(/, "QObject*")
+event("QActionGroup", /::objectNameChanged\s*\(/, "QString")
+event("QActionGroup", /::triggered\s*\(/, "QAction*")
+event("QActionGroup", /::hovered\s*\(/, "QAction*")
event("QClipboard", /::destroyed\s*\(/, "QObject*")
event("QClipboard", /::objectNameChanged\s*\(/, "QString")
event("QClipboard", /::changed\s*\(/, "QClipboard::Mode")
@@ -401,6 +401,29 @@ event("QDrag", /::destroyed\s*\(/, "QObject*")
event("QDrag", /::objectNameChanged\s*\(/, "QString")
event("QDrag", /::actionChanged\s*\(/, "Qt::DropAction")
event("QDrag", /::targetChanged\s*\(/, "QObject*")
+event("QFileSystemModel", /::destroyed\s*\(/, "QObject*")
+event("QFileSystemModel", /::objectNameChanged\s*\(/, "QString")
+event("QFileSystemModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
+event("QFileSystemModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
+event("QFileSystemModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
+event("QFileSystemModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
+event("QFileSystemModel", /::rowsAboutToBeInserted\s*\(/, "QModelIndex, int, int")
+event("QFileSystemModel", /::rowsInserted\s*\(/, "QModelIndex, int, int")
+event("QFileSystemModel", /::rowsAboutToBeRemoved\s*\(/, "QModelIndex, int, int")
+event("QFileSystemModel", /::rowsRemoved\s*\(/, "QModelIndex, int, int")
+event("QFileSystemModel", /::columnsAboutToBeInserted\s*\(/, "QModelIndex, int, int")
+event("QFileSystemModel", /::columnsInserted\s*\(/, "QModelIndex, int, int")
+event("QFileSystemModel", /::columnsAboutToBeRemoved\s*\(/, "QModelIndex, int, int")
+event("QFileSystemModel", /::columnsRemoved\s*\(/, "QModelIndex, int, int")
+event("QFileSystemModel", /::modelAboutToBeReset\s*\(/, "")
+event("QFileSystemModel", /::modelReset\s*\(/, "")
+event("QFileSystemModel", /::rowsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
+event("QFileSystemModel", /::rowsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
+event("QFileSystemModel", /::columnsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
+event("QFileSystemModel", /::columnsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
+event("QFileSystemModel", /::rootPathChanged\s*\(/, "QString")
+event("QFileSystemModel", /::fileRenamed\s*\(/, "QString, QString, QString")
+event("QFileSystemModel", /::directoryLoaded\s*\(/, "QString")
event("QGenericPlugin", /::destroyed\s*\(/, "QObject*")
event("QGenericPlugin", /::objectNameChanged\s*\(/, "QString")
event("QGuiApplication", /::destroyed\s*\(/, "QObject*")
@@ -421,13 +444,16 @@ event("QGuiApplication", /::applicationStateChanged\s*\(/, "Qt::ApplicationState
event("QGuiApplication", /::layoutDirectionChanged\s*\(/, "Qt::LayoutDirection")
event("QGuiApplication", /::commitDataRequest\s*\(/, "QSessionManager&")
event("QGuiApplication", /::saveStateRequest\s*\(/, "QSessionManager&")
-event("QGuiApplication", /::paletteChanged\s*\(/, "QPalette")
event("QGuiApplication", /::applicationDisplayNameChanged\s*\(/, "")
+event("QGuiApplication", /::paletteChanged\s*\(/, "QPalette")
event("QGuiApplication", /::fontChanged\s*\(/, "QFont")
event("QIconEnginePlugin", /::destroyed\s*\(/, "QObject*")
event("QIconEnginePlugin", /::objectNameChanged\s*\(/, "QString")
event("QImageIOPlugin", /::destroyed\s*\(/, "QObject*")
event("QImageIOPlugin", /::objectNameChanged\s*\(/, "QString")
+event("QInputDevice", /::destroyed\s*\(/, "QObject*")
+event("QInputDevice", /::objectNameChanged\s*\(/, "QString")
+event("QInputDevice", /::availableVirtualGeometryChanged\s*\(/, "QRect")
event("QInputMethod", /::destroyed\s*\(/, "QObject*")
event("QInputMethod", /::objectNameChanged\s*\(/, "QString")
event("QInputMethod", /::cursorRectangleChanged\s*\(/, "")
@@ -475,10 +501,13 @@ event("QPaintDeviceWindow", /::activeChanged\s*\(/, "")
event("QPaintDeviceWindow", /::contentOrientationChanged\s*\(/, "Qt::ScreenOrientation")
event("QPaintDeviceWindow", /::focusObjectChanged\s*\(/, "QObject*")
event("QPaintDeviceWindow", /::opacityChanged\s*\(/, "double")
+event("QPaintDeviceWindow", /::transientParentChanged\s*\(/, "QWindow*")
event("QPdfWriter", /::destroyed\s*\(/, "QObject*")
event("QPdfWriter", /::objectNameChanged\s*\(/, "QString")
-event("QPictureFormatPlugin", /::destroyed\s*\(/, "QObject*")
-event("QPictureFormatPlugin", /::objectNameChanged\s*\(/, "QString")
+event("QPointingDevice", /::destroyed\s*\(/, "QObject*")
+event("QPointingDevice", /::objectNameChanged\s*\(/, "QString")
+event("QPointingDevice", /::availableVirtualGeometryChanged\s*\(/, "QRect")
+event("QPointingDevice", /::grabChanged\s*\(/, "QObject*, GrabTransition, const QPointerEvent*, QEventPoint")
event("QRasterWindow", /::destroyed\s*\(/, "QObject*")
event("QRasterWindow", /::objectNameChanged\s*\(/, "QString")
event("QRasterWindow", /::screenChanged\s*\(/, "QScreen*")
@@ -499,10 +528,7 @@ event("QRasterWindow", /::activeChanged\s*\(/, "")
event("QRasterWindow", /::contentOrientationChanged\s*\(/, "Qt::ScreenOrientation")
event("QRasterWindow", /::focusObjectChanged\s*\(/, "QObject*")
event("QRasterWindow", /::opacityChanged\s*\(/, "double")
-event("QRegExpValidator", /::destroyed\s*\(/, "QObject*")
-event("QRegExpValidator", /::objectNameChanged\s*\(/, "QString")
-event("QRegExpValidator", /::changed\s*\(/, "")
-event("QRegExpValidator", /::regExpChanged\s*\(/, "QRegExp")
+event("QRasterWindow", /::transientParentChanged\s*\(/, "QWindow*")
event("QRegularExpressionValidator", /::destroyed\s*\(/, "QObject*")
event("QRegularExpressionValidator", /::objectNameChanged\s*\(/, "QString")
event("QRegularExpressionValidator", /::changed\s*\(/, "")
@@ -520,9 +546,13 @@ event("QScreen", /::orientationChanged\s*\(/, "Qt::ScreenOrientation")
event("QScreen", /::refreshRateChanged\s*\(/, "double")
event("QSessionManager", /::destroyed\s*\(/, "QObject*")
event("QSessionManager", /::objectNameChanged\s*\(/, "QString")
+event("QShortcut", /::destroyed\s*\(/, "QObject*")
+event("QShortcut", /::objectNameChanged\s*\(/, "QString")
+event("QShortcut", /::activated\s*\(/, "")
+event("QShortcut", /::activatedAmbiguously\s*\(/, "")
event("QStandardItemModel", /::destroyed\s*\(/, "QObject*")
event("QStandardItemModel", /::objectNameChanged\s*\(/, "QString")
-event("QStandardItemModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QVector")
+event("QStandardItemModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
event("QStandardItemModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
event("QStandardItemModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
event("QStandardItemModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
@@ -551,6 +581,7 @@ event("QStyleHints", /::startDragDistanceChanged\s*\(/, "int")
event("QStyleHints", /::startDragTimeChanged\s*\(/, "int")
event("QStyleHints", /::tabFocusBehaviorChanged\s*\(/, "Qt::TabFocusBehavior")
event("QStyleHints", /::useHoverEffectsChanged\s*\(/, "bool")
+event("QStyleHints", /::showShortcutsInContextMenusChanged\s*\(/, "bool")
event("QStyleHints", /::wheelScrollLinesChanged\s*\(/, "int")
event("QStyleHints", /::mouseQuickSelectionThresholdChanged\s*\(/, "int")
event("QSyntaxHighlighter", /::destroyed\s*\(/, "QObject*")
@@ -577,6 +608,23 @@ event("QTextObject", /::destroyed\s*\(/, "QObject*")
event("QTextObject", /::objectNameChanged\s*\(/, "QString")
event("QTextTable", /::destroyed\s*\(/, "QObject*")
event("QTextTable", /::objectNameChanged\s*\(/, "QString")
+event("QUndoGroup", /::destroyed\s*\(/, "QObject*")
+event("QUndoGroup", /::objectNameChanged\s*\(/, "QString")
+event("QUndoGroup", /::activeStackChanged\s*\(/, "QUndoStack*")
+event("QUndoGroup", /::indexChanged\s*\(/, "int")
+event("QUndoGroup", /::cleanChanged\s*\(/, "bool")
+event("QUndoGroup", /::canUndoChanged\s*\(/, "bool")
+event("QUndoGroup", /::canRedoChanged\s*\(/, "bool")
+event("QUndoGroup", /::undoTextChanged\s*\(/, "QString")
+event("QUndoGroup", /::redoTextChanged\s*\(/, "QString")
+event("QUndoStack", /::destroyed\s*\(/, "QObject*")
+event("QUndoStack", /::objectNameChanged\s*\(/, "QString")
+event("QUndoStack", /::indexChanged\s*\(/, "int")
+event("QUndoStack", /::cleanChanged\s*\(/, "bool")
+event("QUndoStack", /::canUndoChanged\s*\(/, "bool")
+event("QUndoStack", /::canRedoChanged\s*\(/, "bool")
+event("QUndoStack", /::undoTextChanged\s*\(/, "QString")
+event("QUndoStack", /::redoTextChanged\s*\(/, "QString")
event("QValidator", /::destroyed\s*\(/, "QObject*")
event("QValidator", /::objectNameChanged\s*\(/, "QString")
event("QValidator", /::changed\s*\(/, "")
@@ -600,6 +648,7 @@ event("QWindow", /::activeChanged\s*\(/, "")
event("QWindow", /::contentOrientationChanged\s*\(/, "Qt::ScreenOrientation")
event("QWindow", /::focusObjectChanged\s*\(/, "QObject*")
event("QWindow", /::opacityChanged\s*\(/, "double")
+event("QWindow", /::transientParentChanged\s*\(/, "QWindow*")
event("QAbstractButton", /::destroyed\s*\(/, "QObject*")
event("QAbstractButton", /::objectNameChanged\s*\(/, "QString")
event("QAbstractButton", /::windowTitleChanged\s*\(/, "QString")
@@ -653,16 +702,6 @@ event("QAbstractSpinBox", /::windowIconChanged\s*\(/, "QIcon")
event("QAbstractSpinBox", /::windowIconTextChanged\s*\(/, "QString")
event("QAbstractSpinBox", /::customContextMenuRequested\s*\(/, "QPoint")
event("QAbstractSpinBox", /::editingFinished\s*\(/, "")
-event("QAction", /::destroyed\s*\(/, "QObject*")
-event("QAction", /::objectNameChanged\s*\(/, "QString")
-event("QAction", /::changed\s*\(/, "")
-event("QAction", /::triggered\s*\(/, "bool")
-event("QAction", /::hovered\s*\(/, "")
-event("QAction", /::toggled\s*\(/, "bool")
-event("QActionGroup", /::destroyed\s*\(/, "QObject*")
-event("QActionGroup", /::objectNameChanged\s*\(/, "QString")
-event("QActionGroup", /::triggered\s*\(/, "QAction*")
-event("QActionGroup", /::hovered\s*\(/, "QAction*")
event("QApplication", /::destroyed\s*\(/, "QObject*")
event("QApplication", /::objectNameChanged\s*\(/, "QString")
event("QApplication", /::aboutToQuit\s*\(/, "")
@@ -681,8 +720,8 @@ event("QApplication", /::applicationStateChanged\s*\(/, "Qt::ApplicationState")
event("QApplication", /::layoutDirectionChanged\s*\(/, "Qt::LayoutDirection")
event("QApplication", /::commitDataRequest\s*\(/, "QSessionManager&")
event("QApplication", /::saveStateRequest\s*\(/, "QSessionManager&")
-event("QApplication", /::paletteChanged\s*\(/, "QPalette")
event("QApplication", /::applicationDisplayNameChanged\s*\(/, "")
+event("QApplication", /::paletteChanged\s*\(/, "QPalette")
event("QApplication", /::fontChanged\s*\(/, "QFont")
event("QApplication", /::focusChanged\s*\(/, "QWidget*, QWidget*")
event("QBoxLayout", /::destroyed\s*\(/, "QObject*")
@@ -691,15 +730,15 @@ event("QButtonGroup", /::destroyed\s*\(/, "QObject*")
event("QButtonGroup", /::objectNameChanged\s*\(/, "QString")
event("QButtonGroup", /::buttonClicked\s*\(.*QAbstractButton/, "QAbstractButton*")
rename("QButtonGroup", /::buttonClicked\s*\(.*QAbstractButton/, "buttonClicked_qab")
-event("QButtonGroup", /::buttonClicked\s*\(.*int/, "int")
event("QButtonGroup", /::buttonPressed\s*\(.*QAbstractButton/, "QAbstractButton*")
rename("QButtonGroup", /::buttonPressed\s*\(.*QAbstractButton/, "buttonPressed_qab")
-event("QButtonGroup", /::buttonPressed\s*\(.*int/, "int")
event("QButtonGroup", /::buttonReleased\s*\(.*QAbstractButton/, "QAbstractButton*")
rename("QButtonGroup", /::buttonReleased\s*\(.*QAbstractButton/, "buttonReleased_qab")
-event("QButtonGroup", /::buttonReleased\s*\(.*int/, "int")
event("QButtonGroup", /::buttonToggled\s*\(/, "QAbstractButton*, bool")
-event("QButtonGroup", /::buttonToggled\s*\(/, "int, bool")
+event("QButtonGroup", /::idClicked\s*\(/, "int")
+event("QButtonGroup", /::idPressed\s*\(/, "int")
+event("QButtonGroup", /::idReleased\s*\(/, "int")
+event("QButtonGroup", /::idToggled\s*\(/, "int, bool")
event("QCalendarWidget", /::destroyed\s*\(/, "QObject*")
event("QCalendarWidget", /::objectNameChanged\s*\(/, "QString")
event("QCalendarWidget", /::windowTitleChanged\s*\(/, "QString")
@@ -754,14 +793,10 @@ event("QComboBox", /::windowIconTextChanged\s*\(/, "QString")
event("QComboBox", /::customContextMenuRequested\s*\(/, "QPoint")
event("QComboBox", /::editTextChanged\s*\(/, "QString")
event("QComboBox", /::activated\s*\(.*int/, "int")
-event("QComboBox", /::activated\s*\(.*QString/, "QString")
-rename("QComboBox", /::activated\s*\(.*QString/, "activated_qs")
+event("QComboBox", /::textActivated\s*\(/, "QString")
event("QComboBox", /::highlighted\s*\(.*int/, "int")
-event("QComboBox", /::highlighted\s*\(.*QString/, "QString")
-rename("QComboBox", /::highlighted\s*\(.*QString/, "highlighted_qs")
+event("QComboBox", /::textHighlighted\s*\(/, "QString")
event("QComboBox", /::currentIndexChanged\s*\(.*int/, "int")
-event("QComboBox", /::currentIndexChanged\s*\(.*QString/, "QString")
-rename("QComboBox", /::currentIndexChanged\s*\(.*QString/, "currentIndexChanged_qs")
event("QComboBox", /::currentTextChanged\s*\(/, "QString")
event("QCommandLinkButton", /::destroyed\s*\(/, "QObject*")
event("QCommandLinkButton", /::objectNameChanged\s*\(/, "QString")
@@ -807,16 +842,6 @@ event("QDateTimeEdit", /::editingFinished\s*\(/, "")
event("QDateTimeEdit", /::dateTimeChanged\s*\(/, "QDateTime")
event("QDateTimeEdit", /::timeChanged\s*\(/, "QTime")
event("QDateTimeEdit", /::dateChanged\s*\(/, "QDate")
-event("QDesktopWidget", /::destroyed\s*\(/, "QObject*")
-event("QDesktopWidget", /::objectNameChanged\s*\(/, "QString")
-event("QDesktopWidget", /::windowTitleChanged\s*\(/, "QString")
-event("QDesktopWidget", /::windowIconChanged\s*\(/, "QIcon")
-event("QDesktopWidget", /::windowIconTextChanged\s*\(/, "QString")
-event("QDesktopWidget", /::customContextMenuRequested\s*\(/, "QPoint")
-event("QDesktopWidget", /::resized\s*\(/, "int")
-event("QDesktopWidget", /::workAreaResized\s*\(/, "int")
-event("QDesktopWidget", /::screenCountChanged\s*\(/, "int")
-event("QDesktopWidget", /::primaryScreenChanged\s*\(/, "")
event("QDial", /::destroyed\s*\(/, "QObject*")
event("QDial", /::objectNameChanged\s*\(/, "QString")
event("QDial", /::windowTitleChanged\s*\(/, "QString")
@@ -848,26 +873,6 @@ event("QDialogButtonBox", /::clicked\s*\(/, "QAbstractButton*")
event("QDialogButtonBox", /::accepted\s*\(/, "")
event("QDialogButtonBox", /::helpRequested\s*\(/, "")
event("QDialogButtonBox", /::rejected\s*\(/, "")
-event("QDirModel", /::destroyed\s*\(/, "QObject*")
-event("QDirModel", /::objectNameChanged\s*\(/, "QString")
-event("QDirModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QVector")
-event("QDirModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
-event("QDirModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
-event("QDirModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
-event("QDirModel", /::rowsAboutToBeInserted\s*\(/, "QModelIndex, int, int")
-event("QDirModel", /::rowsInserted\s*\(/, "QModelIndex, int, int")
-event("QDirModel", /::rowsAboutToBeRemoved\s*\(/, "QModelIndex, int, int")
-event("QDirModel", /::rowsRemoved\s*\(/, "QModelIndex, int, int")
-event("QDirModel", /::columnsAboutToBeInserted\s*\(/, "QModelIndex, int, int")
-event("QDirModel", /::columnsInserted\s*\(/, "QModelIndex, int, int")
-event("QDirModel", /::columnsAboutToBeRemoved\s*\(/, "QModelIndex, int, int")
-event("QDirModel", /::columnsRemoved\s*\(/, "QModelIndex, int, int")
-event("QDirModel", /::modelAboutToBeReset\s*\(/, "")
-event("QDirModel", /::modelReset\s*\(/, "")
-event("QDirModel", /::rowsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
-event("QDirModel", /::rowsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
-event("QDirModel", /::columnsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
-event("QDirModel", /::columnsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
event("QDockWidget", /::destroyed\s*\(/, "QObject*")
event("QDockWidget", /::objectNameChanged\s*\(/, "QString")
event("QDockWidget", /::windowTitleChanged\s*\(/, "QString")
@@ -887,8 +892,7 @@ event("QDoubleSpinBox", /::windowIconTextChanged\s*\(/, "QString")
event("QDoubleSpinBox", /::customContextMenuRequested\s*\(/, "QPoint")
event("QDoubleSpinBox", /::editingFinished\s*\(/, "")
event("QDoubleSpinBox", /::valueChanged\s*\(.*double/, "double")
-event("QDoubleSpinBox", /::valueChanged\s*\(.*QString/, "QString")
-rename("QDoubleSpinBox", /::valueChanged\s*\(.*QString/, "valueChanged_qs")
+event("QDoubleSpinBox", /::textChanged\s*\(/, "QString")
event("QErrorMessage", /::destroyed\s*\(/, "QObject*")
event("QErrorMessage", /::objectNameChanged\s*\(/, "QString")
event("QErrorMessage", /::windowTitleChanged\s*\(/, "QString")
@@ -916,29 +920,6 @@ event("QFileDialog", /::urlsSelected\s*\(/, "QList")
event("QFileDialog", /::currentUrlChanged\s*\(/, "QUrl")
event("QFileDialog", /::directoryUrlEntered\s*\(/, "QUrl")
event("QFileDialog", /::filterSelected\s*\(/, "QString")
-event("QFileSystemModel", /::destroyed\s*\(/, "QObject*")
-event("QFileSystemModel", /::objectNameChanged\s*\(/, "QString")
-event("QFileSystemModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QVector")
-event("QFileSystemModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
-event("QFileSystemModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
-event("QFileSystemModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
-event("QFileSystemModel", /::rowsAboutToBeInserted\s*\(/, "QModelIndex, int, int")
-event("QFileSystemModel", /::rowsInserted\s*\(/, "QModelIndex, int, int")
-event("QFileSystemModel", /::rowsAboutToBeRemoved\s*\(/, "QModelIndex, int, int")
-event("QFileSystemModel", /::rowsRemoved\s*\(/, "QModelIndex, int, int")
-event("QFileSystemModel", /::columnsAboutToBeInserted\s*\(/, "QModelIndex, int, int")
-event("QFileSystemModel", /::columnsInserted\s*\(/, "QModelIndex, int, int")
-event("QFileSystemModel", /::columnsAboutToBeRemoved\s*\(/, "QModelIndex, int, int")
-event("QFileSystemModel", /::columnsRemoved\s*\(/, "QModelIndex, int, int")
-event("QFileSystemModel", /::modelAboutToBeReset\s*\(/, "")
-event("QFileSystemModel", /::modelReset\s*\(/, "")
-event("QFileSystemModel", /::rowsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
-event("QFileSystemModel", /::rowsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
-event("QFileSystemModel", /::columnsAboutToBeMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
-event("QFileSystemModel", /::columnsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
-event("QFileSystemModel", /::rootPathChanged\s*\(/, "QString")
-event("QFileSystemModel", /::fileRenamed\s*\(/, "QString, QString, QString")
-event("QFileSystemModel", /::directoryLoaded\s*\(/, "QString")
event("QFocusFrame", /::destroyed\s*\(/, "QObject*")
event("QFocusFrame", /::objectNameChanged\s*\(/, "QString")
event("QFocusFrame", /::windowTitleChanged\s*\(/, "QString")
@@ -953,14 +934,10 @@ event("QFontComboBox", /::windowIconTextChanged\s*\(/, "QString")
event("QFontComboBox", /::customContextMenuRequested\s*\(/, "QPoint")
event("QFontComboBox", /::editTextChanged\s*\(/, "QString")
event("QFontComboBox", /::activated\s*\(.*int/, "int")
-event("QFontComboBox", /::activated\s*\(.*QString/, "QString")
-rename("QFontComboBox", /::activated\s*\(.*QString/, "activated_qs")
+event("QFontComboBox", /::textActivated\s*\(/, "QString")
event("QFontComboBox", /::highlighted\s*\(.*int/, "int")
-event("QFontComboBox", /::highlighted\s*\(.*QString/, "QString")
-rename("QFontComboBox", /::highlighted\s*\(.*QString/, "highlighted_qs")
+event("QFontComboBox", /::textHighlighted\s*\(/, "QString")
event("QFontComboBox", /::currentIndexChanged\s*\(.*int/, "int")
-event("QFontComboBox", /::currentIndexChanged\s*\(.*QString/, "QString")
-rename("QFontComboBox", /::currentIndexChanged\s*\(.*QString/, "currentIndexChanged_qs")
event("QFontComboBox", /::currentTextChanged\s*\(/, "QString")
event("QFontComboBox", /::currentFontChanged\s*\(/, "QFont")
event("QFontDialog", /::destroyed\s*\(/, "QObject*")
@@ -1136,6 +1113,7 @@ event("QHeaderView", /::sectionCountChanged\s*\(/, "int, int")
event("QHeaderView", /::sectionHandleDoubleClicked\s*\(/, "int")
event("QHeaderView", /::geometriesChanged\s*\(/, "")
event("QHeaderView", /::sortIndicatorChanged\s*\(/, "int, Qt::SortOrder")
+event("QHeaderView", /::sortIndicatorClearableChanged\s*\(/, "bool")
event("QInputDialog", /::destroyed\s*\(/, "QObject*")
event("QInputDialog", /::objectNameChanged\s*\(/, "QString")
event("QInputDialog", /::windowTitleChanged\s*\(/, "QString")
@@ -1374,10 +1352,6 @@ event("QScroller", /::destroyed\s*\(/, "QObject*")
event("QScroller", /::objectNameChanged\s*\(/, "QString")
event("QScroller", /::stateChanged\s*\(/, "QScroller::State")
event("QScroller", /::scrollerPropertiesChanged\s*\(/, "QScrollerProperties")
-event("QShortcut", /::destroyed\s*\(/, "QObject*")
-event("QShortcut", /::objectNameChanged\s*\(/, "QString")
-event("QShortcut", /::activated\s*\(/, "")
-event("QShortcut", /::activatedAmbiguously\s*\(/, "")
event("QSizeGrip", /::destroyed\s*\(/, "QObject*")
event("QSizeGrip", /::objectNameChanged\s*\(/, "QString")
event("QSizeGrip", /::windowTitleChanged\s*\(/, "QString")
@@ -1404,8 +1378,7 @@ event("QSpinBox", /::windowIconTextChanged\s*\(/, "QString")
event("QSpinBox", /::customContextMenuRequested\s*\(/, "QPoint")
event("QSpinBox", /::editingFinished\s*\(/, "")
event("QSpinBox", /::valueChanged\s*\(.*int/, "int")
-event("QSpinBox", /::valueChanged\s*\(.*QString/, "QString")
-rename("QSpinBox", /::valueChanged\s*\(.*QString/, "valueChanged_qs")
+event("QSpinBox", /::textChanged\s*\(/, "QString")
event("QSplashScreen", /::destroyed\s*\(/, "QObject*")
event("QSplashScreen", /::objectNameChanged\s*\(/, "QString")
event("QSplashScreen", /::windowTitleChanged\s*\(/, "QString")
@@ -1544,8 +1517,6 @@ event("QTextBrowser", /::forwardAvailable\s*\(/, "bool")
event("QTextBrowser", /::historyChanged\s*\(/, "")
event("QTextBrowser", /::sourceChanged\s*\(/, "QUrl")
event("QTextBrowser", /::highlighted\s*\(.*QUrl/, "QUrl")
-event("QTextBrowser", /::highlighted\s*\(.*QString/, "QString")
-rename("QTextBrowser", /::highlighted\s*\(.*QString/, "highlighted_qs")
event("QTextBrowser", /::anchorClicked\s*\(/, "QUrl")
event("QTextEdit", /::destroyed\s*\(/, "QObject*")
event("QTextEdit", /::objectNameChanged\s*\(/, "QString")
@@ -1643,23 +1614,6 @@ event("QTreeWidget", /::itemExpanded\s*\(/, "QTreeWidgetItem*")
event("QTreeWidget", /::itemCollapsed\s*\(/, "QTreeWidgetItem*")
event("QTreeWidget", /::currentItemChanged\s*\(/, "QTreeWidgetItem*, QTreeWidgetItem*")
event("QTreeWidget", /::itemSelectionChanged\s*\(/, "")
-event("QUndoGroup", /::destroyed\s*\(/, "QObject*")
-event("QUndoGroup", /::objectNameChanged\s*\(/, "QString")
-event("QUndoGroup", /::activeStackChanged\s*\(/, "QUndoStack*")
-event("QUndoGroup", /::indexChanged\s*\(/, "int")
-event("QUndoGroup", /::cleanChanged\s*\(/, "bool")
-event("QUndoGroup", /::canUndoChanged\s*\(/, "bool")
-event("QUndoGroup", /::canRedoChanged\s*\(/, "bool")
-event("QUndoGroup", /::undoTextChanged\s*\(/, "QString")
-event("QUndoGroup", /::redoTextChanged\s*\(/, "QString")
-event("QUndoStack", /::destroyed\s*\(/, "QObject*")
-event("QUndoStack", /::objectNameChanged\s*\(/, "QString")
-event("QUndoStack", /::indexChanged\s*\(/, "int")
-event("QUndoStack", /::cleanChanged\s*\(/, "bool")
-event("QUndoStack", /::canUndoChanged\s*\(/, "bool")
-event("QUndoStack", /::canRedoChanged\s*\(/, "bool")
-event("QUndoStack", /::undoTextChanged\s*\(/, "QString")
-event("QUndoStack", /::redoTextChanged\s*\(/, "QString")
event("QUndoView", /::destroyed\s*\(/, "QObject*")
event("QUndoView", /::objectNameChanged\s*\(/, "QString")
event("QUndoView", /::windowTitleChanged\s*\(/, "QString")
@@ -1685,6 +1639,9 @@ event("QWidget", /::customContextMenuRequested\s*\(/, "QPoint")
event("QWidgetAction", /::destroyed\s*\(/, "QObject*")
event("QWidgetAction", /::objectNameChanged\s*\(/, "QString")
event("QWidgetAction", /::changed\s*\(/, "")
+event("QWidgetAction", /::enabledChanged\s*\(/, "bool")
+event("QWidgetAction", /::checkableChanged\s*\(/, "bool")
+event("QWidgetAction", /::visibleChanged\s*\(/, "")
event("QWidgetAction", /::triggered\s*\(/, "bool")
event("QWidgetAction", /::hovered\s*\(/, "")
event("QWidgetAction", /::toggled\s*\(/, "bool")
@@ -1709,12 +1666,191 @@ event("QWizardPage", /::windowIconChanged\s*\(/, "QIcon")
event("QWizardPage", /::windowIconTextChanged\s*\(/, "QString")
event("QWizardPage", /::customContextMenuRequested\s*\(/, "QPoint")
event("QWizardPage", /::completeChanged\s*\(/, "")
+event("QSvgRenderer", /::destroyed\s*\(/, "QObject*")
+event("QSvgRenderer", /::objectNameChanged\s*\(/, "QString")
+event("QSvgRenderer", /::repaintNeeded\s*\(/, "")
+event("QAbstractPrintDialog", /::destroyed\s*\(/, "QObject*")
+event("QAbstractPrintDialog", /::objectNameChanged\s*\(/, "QString")
+event("QAbstractPrintDialog", /::windowTitleChanged\s*\(/, "QString")
+event("QAbstractPrintDialog", /::windowIconChanged\s*\(/, "QIcon")
+event("QAbstractPrintDialog", /::windowIconTextChanged\s*\(/, "QString")
+event("QAbstractPrintDialog", /::customContextMenuRequested\s*\(/, "QPoint")
+event("QAbstractPrintDialog", /::finished\s*\(/, "int")
+event("QAbstractPrintDialog", /::accepted\s*\(/, "")
+event("QAbstractPrintDialog", /::rejected\s*\(/, "")
+event("QPrintDialog", /::destroyed\s*\(/, "QObject*")
+event("QPrintDialog", /::objectNameChanged\s*\(/, "QString")
+event("QPrintDialog", /::windowTitleChanged\s*\(/, "QString")
+event("QPrintDialog", /::windowIconChanged\s*\(/, "QIcon")
+event("QPrintDialog", /::windowIconTextChanged\s*\(/, "QString")
+event("QPrintDialog", /::customContextMenuRequested\s*\(/, "QPoint")
+event("QPrintDialog", /::finished\s*\(/, "int")
+event("QPrintDialog", /::accepted\s*\(/, "QPrinter*")
+event("QPrintDialog", /::rejected\s*\(/, "")
+event("QPrintPreviewDialog", /::destroyed\s*\(/, "QObject*")
+event("QPrintPreviewDialog", /::objectNameChanged\s*\(/, "QString")
+event("QPrintPreviewDialog", /::windowTitleChanged\s*\(/, "QString")
+event("QPrintPreviewDialog", /::windowIconChanged\s*\(/, "QIcon")
+event("QPrintPreviewDialog", /::windowIconTextChanged\s*\(/, "QString")
+event("QPrintPreviewDialog", /::customContextMenuRequested\s*\(/, "QPoint")
+event("QPrintPreviewDialog", /::finished\s*\(/, "int")
+event("QPrintPreviewDialog", /::accepted\s*\(/, "")
+event("QPrintPreviewDialog", /::rejected\s*\(/, "")
+event("QPrintPreviewDialog", /::paintRequested\s*\(/, "QPrinter*")
+event("QPrintPreviewWidget", /::destroyed\s*\(/, "QObject*")
+event("QPrintPreviewWidget", /::objectNameChanged\s*\(/, "QString")
+event("QPrintPreviewWidget", /::windowTitleChanged\s*\(/, "QString")
+event("QPrintPreviewWidget", /::windowIconChanged\s*\(/, "QIcon")
+event("QPrintPreviewWidget", /::windowIconTextChanged\s*\(/, "QString")
+event("QPrintPreviewWidget", /::customContextMenuRequested\s*\(/, "QPoint")
+event("QPrintPreviewWidget", /::paintRequested\s*\(/, "QPrinter*")
+event("QPrintPreviewWidget", /::previewChanged\s*\(/, "")
+event("QAudioDecoder", /::destroyed\s*\(/, "QObject*")
+event("QAudioDecoder", /::objectNameChanged\s*\(/, "QString")
+event("QAudioDecoder", /::bufferAvailableChanged\s*\(/, "bool")
+event("QAudioDecoder", /::bufferReady\s*\(/, "")
+event("QAudioDecoder", /::finished\s*\(/, "")
+event("QAudioDecoder", /::isDecodingChanged\s*\(/, "bool")
+event("QAudioDecoder", /::formatChanged\s*\(/, "QAudioFormat")
+event("QAudioDecoder", /::error\s*\(/, "QAudioDecoder::Error")
+event("QAudioDecoder", /::sourceChanged\s*\(/, "")
+event("QAudioDecoder", /::positionChanged\s*\(/, "qlonglong")
+event("QAudioDecoder", /::durationChanged\s*\(/, "qlonglong")
+event("QAudioInput", /::destroyed\s*\(/, "QObject*")
+event("QAudioInput", /::objectNameChanged\s*\(/, "QString")
+event("QAudioInput", /::deviceChanged\s*\(/, "")
+event("QAudioInput", /::volumeChanged\s*\(/, "float")
+event("QAudioInput", /::mutedChanged\s*\(/, "bool")
+event("QAudioOutput", /::destroyed\s*\(/, "QObject*")
+event("QAudioOutput", /::objectNameChanged\s*\(/, "QString")
+event("QAudioOutput", /::deviceChanged\s*\(/, "")
+event("QAudioOutput", /::volumeChanged\s*\(/, "float")
+event("QAudioOutput", /::mutedChanged\s*\(/, "bool")
+event("QAudioSink", /::destroyed\s*\(/, "QObject*")
+event("QAudioSink", /::objectNameChanged\s*\(/, "QString")
+event("QAudioSink", /::stateChanged\s*\(/, "QAudio::State")
+event("QAudioSource", /::destroyed\s*\(/, "QObject*")
+event("QAudioSource", /::objectNameChanged\s*\(/, "QString")
+event("QAudioSource", /::stateChanged\s*\(/, "QAudio::State")
+event("QCamera", /::destroyed\s*\(/, "QObject*")
+event("QCamera", /::objectNameChanged\s*\(/, "QString")
+event("QCamera", /::activeChanged\s*\(/, "bool")
+event("QCamera", /::errorChanged\s*\(/, "")
+event("QCamera", /::errorOccurred\s*\(/, "QCamera::Error, QString")
+event("QCamera", /::cameraDeviceChanged\s*\(/, "")
+event("QCamera", /::cameraFormatChanged\s*\(/, "")
+event("QCamera", /::supportedFeaturesChanged\s*\(/, "")
+event("QCamera", /::focusModeChanged\s*\(/, "")
+event("QCamera", /::zoomFactorChanged\s*\(/, "float")
+event("QCamera", /::minimumZoomFactorChanged\s*\(/, "float")
+event("QCamera", /::maximumZoomFactorChanged\s*\(/, "float")
+event("QCamera", /::focusDistanceChanged\s*\(/, "float")
+event("QCamera", /::focusPointChanged\s*\(/, "")
+event("QCamera", /::customFocusPointChanged\s*\(/, "")
+event("QCamera", /::flashReady\s*\(/, "bool")
+event("QCamera", /::flashModeChanged\s*\(/, "")
+event("QCamera", /::torchModeChanged\s*\(/, "")
+event("QCamera", /::exposureTimeChanged\s*\(/, "float")
+event("QCamera", /::manualExposureTimeChanged\s*\(/, "float")
+event("QCamera", /::isoSensitivityChanged\s*\(/, "int")
+event("QCamera", /::manualIsoSensitivityChanged\s*\(/, "int")
+event("QCamera", /::exposureCompensationChanged\s*\(/, "float")
+event("QCamera", /::exposureModeChanged\s*\(/, "")
+event("QCamera", /::whiteBalanceModeChanged\s*\(/, "")
+event("QCamera", /::colorTemperatureChanged\s*\(/, "")
+event("QCamera", /::brightnessChanged\s*\(/, "")
+event("QCamera", /::contrastChanged\s*\(/, "")
+event("QCamera", /::saturationChanged\s*\(/, "")
+event("QCamera", /::hueChanged\s*\(/, "")
+event("QImageCapture", /::destroyed\s*\(/, "QObject*")
+event("QImageCapture", /::objectNameChanged\s*\(/, "QString")
+event("QImageCapture", /::errorChanged\s*\(/, "")
+event("QImageCapture", /::errorOccurred\s*\(/, "int, QImageCapture::Error, QString")
+event("QImageCapture", /::readyForCaptureChanged\s*\(/, "bool")
+event("QImageCapture", /::metaDataChanged\s*\(/, "")
+event("QImageCapture", /::fileFormatChanged\s*\(/, "")
+event("QImageCapture", /::qualityChanged\s*\(/, "")
+event("QImageCapture", /::resolutionChanged\s*\(/, "")
+event("QImageCapture", /::imageExposed\s*\(/, "int")
+event("QImageCapture", /::imageCaptured\s*\(/, "int, QImage")
+event("QImageCapture", /::imageMetadataAvailable\s*\(/, "int, QMediaMetaData")
+event("QImageCapture", /::imageAvailable\s*\(/, "int, QVideoFrame")
+event("QImageCapture", /::imageSaved\s*\(/, "int, QString")
+event("QMediaCaptureSession", /::destroyed\s*\(/, "QObject*")
+event("QMediaCaptureSession", /::objectNameChanged\s*\(/, "QString")
+event("QMediaCaptureSession", /::audioInputChanged\s*\(/, "")
+event("QMediaCaptureSession", /::cameraChanged\s*\(/, "")
+event("QMediaCaptureSession", /::imageCaptureChanged\s*\(/, "")
+event("QMediaCaptureSession", /::recorderChanged\s*\(/, "")
+event("QMediaCaptureSession", /::videoOutputChanged\s*\(/, "")
+event("QMediaCaptureSession", /::audioOutputChanged\s*\(/, "")
+event("QMediaDevices", /::destroyed\s*\(/, "QObject*")
+event("QMediaDevices", /::objectNameChanged\s*\(/, "QString")
+event("QMediaDevices", /::audioInputsChanged\s*\(/, "")
+event("QMediaDevices", /::audioOutputsChanged\s*\(/, "")
+event("QMediaDevices", /::videoInputsChanged\s*\(/, "")
+event("QMediaPlayer", /::destroyed\s*\(/, "QObject*")
+event("QMediaPlayer", /::objectNameChanged\s*\(/, "QString")
+event("QMediaPlayer", /::sourceChanged\s*\(/, "QUrl")
+event("QMediaPlayer", /::playbackStateChanged\s*\(/, "QMediaPlayer::PlaybackState")
+event("QMediaPlayer", /::mediaStatusChanged\s*\(/, "QMediaPlayer::MediaStatus")
+event("QMediaPlayer", /::durationChanged\s*\(/, "qlonglong")
+event("QMediaPlayer", /::positionChanged\s*\(/, "qlonglong")
+event("QMediaPlayer", /::hasAudioChanged\s*\(/, "bool")
+event("QMediaPlayer", /::hasVideoChanged\s*\(/, "bool")
+event("QMediaPlayer", /::bufferProgressChanged\s*\(/, "float")
+event("QMediaPlayer", /::seekableChanged\s*\(/, "bool")
+event("QMediaPlayer", /::playbackRateChanged\s*\(/, "double")
+event("QMediaPlayer", /::loopsChanged\s*\(/, "")
+event("QMediaPlayer", /::metaDataChanged\s*\(/, "")
+event("QMediaPlayer", /::videoOutputChanged\s*\(/, "")
+event("QMediaPlayer", /::audioOutputChanged\s*\(/, "")
+event("QMediaPlayer", /::tracksChanged\s*\(/, "")
+event("QMediaPlayer", /::activeTracksChanged\s*\(/, "")
+event("QMediaPlayer", /::errorChanged\s*\(/, "")
+event("QMediaPlayer", /::errorOccurred\s*\(/, "QMediaPlayer::Error, QString")
+event("QMediaRecorder", /::destroyed\s*\(/, "QObject*")
+event("QMediaRecorder", /::objectNameChanged\s*\(/, "QString")
+event("QMediaRecorder", /::recorderStateChanged\s*\(/, "RecorderState")
+event("QMediaRecorder", /::durationChanged\s*\(/, "qlonglong")
+event("QMediaRecorder", /::actualLocationChanged\s*\(/, "QUrl")
+event("QMediaRecorder", /::encoderSettingsChanged\s*\(/, "")
+event("QMediaRecorder", /::errorOccurred\s*\(/, "Error, QString")
+event("QMediaRecorder", /::errorChanged\s*\(/, "")
+event("QMediaRecorder", /::metaDataChanged\s*\(/, "")
+event("QMediaRecorder", /::mediaFormatChanged\s*\(/, "")
+event("QMediaRecorder", /::encodingModeChanged\s*\(/, "")
+event("QMediaRecorder", /::qualityChanged\s*\(/, "")
+event("QMediaRecorder", /::videoResolutionChanged\s*\(/, "")
+event("QMediaRecorder", /::videoFrameRateChanged\s*\(/, "")
+event("QMediaRecorder", /::videoBitRateChanged\s*\(/, "")
+event("QMediaRecorder", /::audioBitRateChanged\s*\(/, "")
+event("QMediaRecorder", /::audioChannelCountChanged\s*\(/, "")
+event("QMediaRecorder", /::audioSampleRateChanged\s*\(/, "")
+event("QSoundEffect", /::destroyed\s*\(/, "QObject*")
+event("QSoundEffect", /::objectNameChanged\s*\(/, "QString")
+event("QSoundEffect", /::sourceChanged\s*\(/, "")
+event("QSoundEffect", /::loopCountChanged\s*\(/, "")
+event("QSoundEffect", /::loopsRemainingChanged\s*\(/, "")
+event("QSoundEffect", /::volumeChanged\s*\(/, "")
+event("QSoundEffect", /::mutedChanged\s*\(/, "")
+event("QSoundEffect", /::loadedChanged\s*\(/, "")
+event("QSoundEffect", /::playingChanged\s*\(/, "")
+event("QSoundEffect", /::statusChanged\s*\(/, "")
+event("QSoundEffect", /::audioDeviceChanged\s*\(/, "")
+event("QVideoSink", /::destroyed\s*\(/, "QObject*")
+event("QVideoSink", /::objectNameChanged\s*\(/, "QString")
+event("QVideoSink", /::videoFrameChanged\s*\(/, "QVideoFrame")
+event("QVideoSink", /::subtitleTextChanged\s*\(/, "QString")
+event("QVideoSink", /::videoSizeChanged\s*\(/, "")
+event("QUiLoader", /::destroyed\s*\(/, "QObject*")
+event("QUiLoader", /::objectNameChanged\s*\(/, "QString")
event("QSqlDriver", /::destroyed\s*\(/, "QObject*")
event("QSqlDriver", /::objectNameChanged\s*\(/, "QString")
event("QSqlDriver", /::notification\s*\(/, "QString, QSqlDriver::NotificationSource, QVariant")
event("QSqlQueryModel", /::destroyed\s*\(/, "QObject*")
event("QSqlQueryModel", /::objectNameChanged\s*\(/, "QString")
-event("QSqlQueryModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QVector")
+event("QSqlQueryModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
event("QSqlQueryModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
event("QSqlQueryModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
event("QSqlQueryModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
@@ -1734,7 +1870,7 @@ event("QSqlQueryModel", /::columnsAboutToBeMoved\s*\(/, "QModelIndex, int, int,
event("QSqlQueryModel", /::columnsMoved\s*\(/, "QModelIndex, int, int, QModelIndex, int")
event("QSqlRelationalTableModel", /::destroyed\s*\(/, "QObject*")
event("QSqlRelationalTableModel", /::objectNameChanged\s*\(/, "QString")
-event("QSqlRelationalTableModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QVector")
+event("QSqlRelationalTableModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
event("QSqlRelationalTableModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
event("QSqlRelationalTableModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
event("QSqlRelationalTableModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
@@ -1758,7 +1894,7 @@ event("QSqlRelationalTableModel", /::beforeUpdate\s*\(/, "int, QSqlRecord&")
event("QSqlRelationalTableModel", /::beforeDelete\s*\(/, "int")
event("QSqlTableModel", /::destroyed\s*\(/, "QObject*")
event("QSqlTableModel", /::objectNameChanged\s*\(/, "QString")
-event("QSqlTableModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QVector")
+event("QSqlTableModel", /::dataChanged\s*\(/, "QModelIndex, QModelIndex, QList")
event("QSqlTableModel", /::headerDataChanged\s*\(/, "Qt::Orientation, int, int")
event("QSqlTableModel", /::layoutChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
event("QSqlTableModel", /::layoutAboutToBeChanged\s*\(/, "QList, QAbstractItemModel::LayoutChangeHint")
@@ -1794,7 +1930,7 @@ event("QAbstractSocket", /::hostFound\s*\(/, "")
event("QAbstractSocket", /::connected\s*\(/, "")
event("QAbstractSocket", /::disconnected\s*\(/, "")
event("QAbstractSocket", /::stateChanged\s*\(/, "QAbstractSocket::SocketState")
-event("QAbstractSocket", /::error\s*\(/, "QAbstractSocket::SocketError")
+event("QAbstractSocket", /::errorOccurred\s*\(/, "QAbstractSocket::SocketError")
event("QAbstractSocket", /::proxyAuthenticationRequired\s*\(/, "QNetworkProxy, QAuthenticator*")
event("QDnsLookup", /::destroyed\s*\(/, "QObject*")
event("QDnsLookup", /::objectNameChanged\s*\(/, "QString")
@@ -1802,6 +1938,12 @@ event("QDnsLookup", /::finished\s*\(/, "")
event("QDnsLookup", /::nameChanged\s*\(/, "QString")
event("QDnsLookup", /::typeChanged\s*\(/, "Type")
event("QDnsLookup", /::nameserverChanged\s*\(/, "QHostAddress")
+event("QDtls", /::destroyed\s*\(/, "QObject*")
+event("QDtls", /::objectNameChanged\s*\(/, "QString")
+event("QDtls", /::pskRequired\s*\(/, "QSslPreSharedKeyAuthenticator*")
+event("QDtls", /::handshakeTimeout\s*\(/, "")
+event("QDtlsClientVerifier", /::destroyed\s*\(/, "QObject*")
+event("QDtlsClientVerifier", /::objectNameChanged\s*\(/, "QString")
event("QHttpMultiPart", /::destroyed\s*\(/, "QObject*")
event("QHttpMultiPart", /::objectNameChanged\s*\(/, "QString")
event("QLocalServer", /::destroyed\s*\(/, "QObject*")
@@ -1817,7 +1959,7 @@ event("QLocalSocket", /::aboutToClose\s*\(/, "")
event("QLocalSocket", /::readChannelFinished\s*\(/, "")
event("QLocalSocket", /::connected\s*\(/, "")
event("QLocalSocket", /::disconnected\s*\(/, "")
-event("QLocalSocket", /::error\s*\(/, "QLocalSocket::LocalSocketError")
+event("QLocalSocket", /::errorOccurred\s*\(/, "QLocalSocket::LocalSocketError")
event("QLocalSocket", /::stateChanged\s*\(/, "QLocalSocket::LocalSocketState")
event("QNetworkAccessManager", /::destroyed\s*\(/, "QObject*")
event("QNetworkAccessManager", /::objectNameChanged\s*\(/, "QString")
@@ -1827,19 +1969,14 @@ event("QNetworkAccessManager", /::finished\s*\(/, "QNetworkReply*")
event("QNetworkAccessManager", /::encrypted\s*\(/, "QNetworkReply*")
event("QNetworkAccessManager", /::sslErrors\s*\(/, "QNetworkReply*, QList")
event("QNetworkAccessManager", /::preSharedKeyAuthenticationRequired\s*\(/, "QNetworkReply*, QSslPreSharedKeyAuthenticator*")
-event("QNetworkAccessManager", /::networkSessionConnected\s*\(/, "")
-event("QNetworkAccessManager", /::networkAccessibleChanged\s*\(/, "QNetworkAccessManager::NetworkAccessibility")
-event("QNetworkConfigurationManager", /::destroyed\s*\(/, "QObject*")
-event("QNetworkConfigurationManager", /::objectNameChanged\s*\(/, "QString")
-event("QNetworkConfigurationManager", /::configurationAdded\s*\(/, "QNetworkConfiguration")
-event("QNetworkConfigurationManager", /::configurationRemoved\s*\(/, "QNetworkConfiguration")
-event("QNetworkConfigurationManager", /::configurationChanged\s*\(/, "QNetworkConfiguration")
-event("QNetworkConfigurationManager", /::onlineStateChanged\s*\(/, "bool")
-event("QNetworkConfigurationManager", /::updateCompleted\s*\(/, "")
event("QNetworkCookieJar", /::destroyed\s*\(/, "QObject*")
event("QNetworkCookieJar", /::objectNameChanged\s*\(/, "QString")
event("QNetworkDiskCache", /::destroyed\s*\(/, "QObject*")
event("QNetworkDiskCache", /::objectNameChanged\s*\(/, "QString")
+event("QNetworkInformation", /::destroyed\s*\(/, "QObject*")
+event("QNetworkInformation", /::objectNameChanged\s*\(/, "QString")
+event("QNetworkInformation", /::reachabilityChanged\s*\(/, "Reachability")
+event("QNetworkInformation", /::isBehindCaptivePortalChanged\s*\(/, "bool")
event("QNetworkReply", /::destroyed\s*\(/, "QObject*")
event("QNetworkReply", /::objectNameChanged\s*\(/, "QString")
event("QNetworkReply", /::readyRead\s*\(/, "")
@@ -1850,7 +1987,7 @@ event("QNetworkReply", /::aboutToClose\s*\(/, "")
event("QNetworkReply", /::readChannelFinished\s*\(/, "")
event("QNetworkReply", /::metaDataChanged\s*\(/, "")
event("QNetworkReply", /::finished\s*\(/, "")
-event("QNetworkReply", /::error\s*\(/, "QNetworkReply::NetworkError")
+event("QNetworkReply", /::errorOccurred\s*\(/, "QNetworkReply::NetworkError")
event("QNetworkReply", /::encrypted\s*\(/, "")
event("QNetworkReply", /::sslErrors\s*\(/, "QList")
event("QNetworkReply", /::preSharedKeyAuthenticationRequired\s*\(/, "QSslPreSharedKeyAuthenticator*")
@@ -1858,15 +1995,6 @@ event("QNetworkReply", /::redirected\s*\(/, "QUrl")
event("QNetworkReply", /::redirectAllowed\s*\(/, "")
event("QNetworkReply", /::uploadProgress\s*\(/, "qlonglong, qlonglong")
event("QNetworkReply", /::downloadProgress\s*\(/, "qlonglong, qlonglong")
-event("QNetworkSession", /::destroyed\s*\(/, "QObject*")
-event("QNetworkSession", /::objectNameChanged\s*\(/, "QString")
-event("QNetworkSession", /::stateChanged\s*\(/, "QNetworkSession::State")
-event("QNetworkSession", /::opened\s*\(/, "")
-event("QNetworkSession", /::closed\s*\(/, "")
-event("QNetworkSession", /::error\s*\(/, "QNetworkSession::SessionError")
-event("QNetworkSession", /::preferredConfigurationChanged\s*\(/, "QNetworkConfiguration, bool")
-event("QNetworkSession", /::newConfigurationActivated\s*\(/, "")
-event("QNetworkSession", /::usagePoliciesChanged\s*\(/, "QNetworkSession::UsagePolicies")
event("QSslSocket", /::destroyed\s*\(/, "QObject*")
event("QSslSocket", /::objectNameChanged\s*\(/, "QString")
event("QSslSocket", /::readyRead\s*\(/, "")
@@ -1879,7 +2007,7 @@ event("QSslSocket", /::hostFound\s*\(/, "")
event("QSslSocket", /::connected\s*\(/, "")
event("QSslSocket", /::disconnected\s*\(/, "")
event("QSslSocket", /::stateChanged\s*\(/, "QAbstractSocket::SocketState")
-event("QSslSocket", /::error\s*\(/, "QAbstractSocket::SocketError")
+event("QSslSocket", /::errorOccurred\s*\(/, "QAbstractSocket::SocketError")
event("QSslSocket", /::proxyAuthenticationRequired\s*\(/, "QNetworkProxy, QAuthenticator*")
event("QSslSocket", /::encrypted\s*\(/, "")
event("QSslSocket", /::peerVerifyError\s*\(/, "QSslError")
@@ -1887,6 +2015,10 @@ event("QSslSocket", /::sslErrors\s*\(/, "QList")
event("QSslSocket", /::modeChanged\s*\(/, "QSslSocket::SslMode")
event("QSslSocket", /::encryptedBytesWritten\s*\(/, "qlonglong")
event("QSslSocket", /::preSharedKeyAuthenticationRequired\s*\(/, "QSslPreSharedKeyAuthenticator*")
+event("QSslSocket", /::newSessionTicketReceived\s*\(/, "")
+event("QSslSocket", /::alertSent\s*\(/, "QSsl::AlertLevel, QSsl::AlertType, QString")
+event("QSslSocket", /::alertReceived\s*\(/, "QSsl::AlertLevel, QSsl::AlertType, QString")
+event("QSslSocket", /::handshakeInterruptedOnError\s*\(/, "QSslError")
event("QTcpServer", /::destroyed\s*\(/, "QObject*")
event("QTcpServer", /::objectNameChanged\s*\(/, "QString")
event("QTcpServer", /::newConnection\s*\(/, "")
@@ -1903,7 +2035,7 @@ event("QTcpSocket", /::hostFound\s*\(/, "")
event("QTcpSocket", /::connected\s*\(/, "")
event("QTcpSocket", /::disconnected\s*\(/, "")
event("QTcpSocket", /::stateChanged\s*\(/, "QAbstractSocket::SocketState")
-event("QTcpSocket", /::error\s*\(/, "QAbstractSocket::SocketError")
+event("QTcpSocket", /::errorOccurred\s*\(/, "QAbstractSocket::SocketError")
event("QTcpSocket", /::proxyAuthenticationRequired\s*\(/, "QNetworkProxy, QAuthenticator*")
event("QUdpSocket", /::destroyed\s*\(/, "QObject*")
event("QUdpSocket", /::objectNameChanged\s*\(/, "QString")
@@ -1917,5 +2049,5 @@ event("QUdpSocket", /::hostFound\s*\(/, "")
event("QUdpSocket", /::connected\s*\(/, "")
event("QUdpSocket", /::disconnected\s*\(/, "")
event("QUdpSocket", /::stateChanged\s*\(/, "QAbstractSocket::SocketState")
-event("QUdpSocket", /::error\s*\(/, "QAbstractSocket::SocketError")
+event("QUdpSocket", /::errorOccurred\s*\(/, "QAbstractSocket::SocketError")
event("QUdpSocket", /::proxyAuthenticationRequired\s*\(/, "QNetworkProxy, QAuthenticator*")
diff --git a/scripts/mkqtdecl6/mkqtdecl.properties b/scripts/mkqtdecl6/mkqtdecl.properties
index 09d56240f..c06b19fd5 100644
--- a/scripts/mkqtdecl6/mkqtdecl.properties
+++ b/scripts/mkqtdecl6/mkqtdecl.properties
@@ -10,12 +10,629 @@ property_reader("QAbstractAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLo
property_reader("QAbstractAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
property_writer("QAbstractAnimation", /::setDirection\s*\(/, "direction")
property_reader("QAbstractAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QAbstractAudioDeviceInfo", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractAudioDeviceInfo", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractAudioInput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractAudioInput", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractAudioOutput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractAudioOutput", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractEventDispatcher", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractEventDispatcher", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractItemModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractItemModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractListModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractListModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractProxyModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractProxyModel", /::(sourceModel|isSourceModel|hasSourceModel)\s*\(/, "sourceModel")
+property_writer("QAbstractProxyModel", /::setSourceModel\s*\(/, "sourceModel")
+property_reader("QAbstractTableModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractTableModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QAnimationDriver", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAnimationDriver", /::setObjectName\s*\(/, "objectName")
+property_reader("QAnimationGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAnimationGroup", /::setObjectName\s*\(/, "objectName")
+property_reader("QAnimationGroup", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QAnimationGroup", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QAnimationGroup", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QAnimationGroup", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QAnimationGroup", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QAnimationGroup", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
+property_reader("QAnimationGroup", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QAnimationGroup", /::setDirection\s*\(/, "direction")
+property_reader("QAnimationGroup", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QBuffer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QBuffer", /::setObjectName\s*\(/, "objectName")
+property_reader("QConcatenateTablesProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QConcatenateTablesProxyModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QCoreApplication", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCoreApplication", /::setObjectName\s*\(/, "objectName")
+property_reader("QCoreApplication", /::(applicationName|isApplicationName|hasApplicationName)\s*\(/, "applicationName")
+property_writer("QCoreApplication", /::setApplicationName\s*\(/, "applicationName")
+property_reader("QCoreApplication", /::(applicationVersion|isApplicationVersion|hasApplicationVersion)\s*\(/, "applicationVersion")
+property_writer("QCoreApplication", /::setApplicationVersion\s*\(/, "applicationVersion")
+property_reader("QCoreApplication", /::(organizationName|isOrganizationName|hasOrganizationName)\s*\(/, "organizationName")
+property_writer("QCoreApplication", /::setOrganizationName\s*\(/, "organizationName")
+property_reader("QCoreApplication", /::(organizationDomain|isOrganizationDomain|hasOrganizationDomain)\s*\(/, "organizationDomain")
+property_writer("QCoreApplication", /::setOrganizationDomain\s*\(/, "organizationDomain")
+property_reader("QCoreApplication", /::(quitLockEnabled|isQuitLockEnabled|hasQuitLockEnabled)\s*\(/, "quitLockEnabled")
+property_writer("QCoreApplication", /::setQuitLockEnabled\s*\(/, "quitLockEnabled")
+property_reader("QEventLoop", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QEventLoop", /::setObjectName\s*\(/, "objectName")
+property_reader("QFile", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QFile", /::setObjectName\s*\(/, "objectName")
+property_reader("QFileDevice", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QFileDevice", /::setObjectName\s*\(/, "objectName")
+property_reader("QFileSelector", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QFileSelector", /::setObjectName\s*\(/, "objectName")
+property_reader("QFileSystemWatcher", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QFileSystemWatcher", /::setObjectName\s*\(/, "objectName")
+property_reader("QIODevice", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QIODevice", /::setObjectName\s*\(/, "objectName")
+property_reader("QIdentityProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QIdentityProxyModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QIdentityProxyModel", /::(sourceModel|isSourceModel|hasSourceModel)\s*\(/, "sourceModel")
+property_writer("QIdentityProxyModel", /::setSourceModel\s*\(/, "sourceModel")
+property_reader("QItemSelectionModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QItemSelectionModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QItemSelectionModel", /::(model|isModel|hasModel)\s*\(/, "model")
+property_writer("QItemSelectionModel", /::setModel\s*\(/, "model")
+property_reader("QItemSelectionModel", /::(hasSelection|isHasSelection|hasHasSelection)\s*\(/, "hasSelection")
+property_reader("QItemSelectionModel", /::(currentIndex|isCurrentIndex|hasCurrentIndex)\s*\(/, "currentIndex")
+property_reader("QItemSelectionModel", /::(selection|isSelection|hasSelection)\s*\(/, "selection")
+property_reader("QItemSelectionModel", /::(selectedIndexes|isSelectedIndexes|hasSelectedIndexes)\s*\(/, "selectedIndexes")
+property_reader("QLibrary", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QLibrary", /::setObjectName\s*\(/, "objectName")
+property_reader("QLibrary", /::(fileName|isFileName|hasFileName)\s*\(/, "fileName")
+property_writer("QLibrary", /::setFileName\s*\(/, "fileName")
+property_reader("QLibrary", /::(loadHints|isLoadHints|hasLoadHints)\s*\(/, "loadHints")
+property_writer("QLibrary", /::setLoadHints\s*\(/, "loadHints")
+property_reader("QMimeData", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMimeData", /::setObjectName\s*\(/, "objectName")
+property_reader("QParallelAnimationGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QParallelAnimationGroup", /::setObjectName\s*\(/, "objectName")
+property_reader("QParallelAnimationGroup", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QParallelAnimationGroup", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QParallelAnimationGroup", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QParallelAnimationGroup", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QParallelAnimationGroup", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QParallelAnimationGroup", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
+property_reader("QParallelAnimationGroup", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QParallelAnimationGroup", /::setDirection\s*\(/, "direction")
+property_reader("QParallelAnimationGroup", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QPauseAnimation", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPauseAnimation", /::setObjectName\s*\(/, "objectName")
+property_reader("QPauseAnimation", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QPauseAnimation", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QPauseAnimation", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QPauseAnimation", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QPauseAnimation", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QPauseAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
+property_reader("QPauseAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QPauseAnimation", /::setDirection\s*\(/, "direction")
+property_reader("QPauseAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QPauseAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_writer("QPauseAnimation", /::setDuration\s*\(/, "duration")
+property_reader("QPluginLoader", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPluginLoader", /::setObjectName\s*\(/, "objectName")
+property_reader("QPluginLoader", /::(fileName|isFileName|hasFileName)\s*\(/, "fileName")
+property_writer("QPluginLoader", /::setFileName\s*\(/, "fileName")
+property_reader("QPluginLoader", /::(loadHints|isLoadHints|hasLoadHints)\s*\(/, "loadHints")
+property_writer("QPluginLoader", /::setLoadHints\s*\(/, "loadHints")
+property_reader("QProcess", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QProcess", /::setObjectName\s*\(/, "objectName")
+property_reader("QPropertyAnimation", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPropertyAnimation", /::setObjectName\s*\(/, "objectName")
+property_reader("QPropertyAnimation", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QPropertyAnimation", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QPropertyAnimation", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QPropertyAnimation", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QPropertyAnimation", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QPropertyAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
+property_reader("QPropertyAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QPropertyAnimation", /::setDirection\s*\(/, "direction")
+property_reader("QPropertyAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QPropertyAnimation", /::(startValue|isStartValue|hasStartValue)\s*\(/, "startValue")
+property_writer("QPropertyAnimation", /::setStartValue\s*\(/, "startValue")
+property_reader("QPropertyAnimation", /::(endValue|isEndValue|hasEndValue)\s*\(/, "endValue")
+property_writer("QPropertyAnimation", /::setEndValue\s*\(/, "endValue")
+property_reader("QPropertyAnimation", /::(currentValue|isCurrentValue|hasCurrentValue)\s*\(/, "currentValue")
+property_reader("QPropertyAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_writer("QPropertyAnimation", /::setDuration\s*\(/, "duration")
+property_reader("QPropertyAnimation", /::(easingCurve|isEasingCurve|hasEasingCurve)\s*\(/, "easingCurve")
+property_writer("QPropertyAnimation", /::setEasingCurve\s*\(/, "easingCurve")
+property_reader("QPropertyAnimation", /::(propertyName|isPropertyName|hasPropertyName)\s*\(/, "propertyName")
+property_writer("QPropertyAnimation", /::setPropertyName\s*\(/, "propertyName")
+property_reader("QPropertyAnimation", /::(targetObject|isTargetObject|hasTargetObject)\s*\(/, "targetObject")
+property_writer("QPropertyAnimation", /::setTargetObject\s*\(/, "targetObject")
+property_reader("QSaveFile", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSaveFile", /::setObjectName\s*\(/, "objectName")
+property_reader("QSequentialAnimationGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSequentialAnimationGroup", /::setObjectName\s*\(/, "objectName")
+property_reader("QSequentialAnimationGroup", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QSequentialAnimationGroup", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QSequentialAnimationGroup", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QSequentialAnimationGroup", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QSequentialAnimationGroup", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QSequentialAnimationGroup", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
+property_reader("QSequentialAnimationGroup", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QSequentialAnimationGroup", /::setDirection\s*\(/, "direction")
+property_reader("QSequentialAnimationGroup", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QSequentialAnimationGroup", /::(currentAnimation|isCurrentAnimation|hasCurrentAnimation)\s*\(/, "currentAnimation")
+property_reader("QSettings", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSettings", /::setObjectName\s*\(/, "objectName")
+property_reader("QSharedMemory", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSharedMemory", /::setObjectName\s*\(/, "objectName")
+property_reader("QSignalMapper", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSignalMapper", /::setObjectName\s*\(/, "objectName")
+property_reader("QSocketNotifier", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSocketNotifier", /::setObjectName\s*\(/, "objectName")
+property_reader("QSortFilterProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSortFilterProxyModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QSortFilterProxyModel", /::(sourceModel|isSourceModel|hasSourceModel)\s*\(/, "sourceModel")
+property_writer("QSortFilterProxyModel", /::setSourceModel\s*\(/, "sourceModel")
+property_reader("QSortFilterProxyModel", /::(filterRegularExpression|isFilterRegularExpression|hasFilterRegularExpression)\s*\(/, "filterRegularExpression")
+property_writer("QSortFilterProxyModel", /::setFilterRegularExpression\s*\(/, "filterRegularExpression")
+property_reader("QSortFilterProxyModel", /::(filterKeyColumn|isFilterKeyColumn|hasFilterKeyColumn)\s*\(/, "filterKeyColumn")
+property_writer("QSortFilterProxyModel", /::setFilterKeyColumn\s*\(/, "filterKeyColumn")
+property_reader("QSortFilterProxyModel", /::(dynamicSortFilter|isDynamicSortFilter|hasDynamicSortFilter)\s*\(/, "dynamicSortFilter")
+property_writer("QSortFilterProxyModel", /::setDynamicSortFilter\s*\(/, "dynamicSortFilter")
+property_reader("QSortFilterProxyModel", /::(filterCaseSensitivity|isFilterCaseSensitivity|hasFilterCaseSensitivity)\s*\(/, "filterCaseSensitivity")
+property_writer("QSortFilterProxyModel", /::setFilterCaseSensitivity\s*\(/, "filterCaseSensitivity")
+property_reader("QSortFilterProxyModel", /::(sortCaseSensitivity|isSortCaseSensitivity|hasSortCaseSensitivity)\s*\(/, "sortCaseSensitivity")
+property_writer("QSortFilterProxyModel", /::setSortCaseSensitivity\s*\(/, "sortCaseSensitivity")
+property_reader("QSortFilterProxyModel", /::(isSortLocaleAware|isIsSortLocaleAware|hasIsSortLocaleAware)\s*\(/, "isSortLocaleAware")
+property_writer("QSortFilterProxyModel", /::setIsSortLocaleAware\s*\(/, "isSortLocaleAware")
+property_reader("QSortFilterProxyModel", /::(sortRole|isSortRole|hasSortRole)\s*\(/, "sortRole")
+property_writer("QSortFilterProxyModel", /::setSortRole\s*\(/, "sortRole")
+property_reader("QSortFilterProxyModel", /::(filterRole|isFilterRole|hasFilterRole)\s*\(/, "filterRole")
+property_writer("QSortFilterProxyModel", /::setFilterRole\s*\(/, "filterRole")
+property_reader("QSortFilterProxyModel", /::(recursiveFilteringEnabled|isRecursiveFilteringEnabled|hasRecursiveFilteringEnabled)\s*\(/, "recursiveFilteringEnabled")
+property_writer("QSortFilterProxyModel", /::setRecursiveFilteringEnabled\s*\(/, "recursiveFilteringEnabled")
+property_reader("QSortFilterProxyModel", /::(autoAcceptChildRows|isAutoAcceptChildRows|hasAutoAcceptChildRows)\s*\(/, "autoAcceptChildRows")
+property_writer("QSortFilterProxyModel", /::setAutoAcceptChildRows\s*\(/, "autoAcceptChildRows")
+property_reader("QStringListModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QStringListModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QTemporaryFile", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTemporaryFile", /::setObjectName\s*\(/, "objectName")
+property_reader("QThread", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QThread", /::setObjectName\s*\(/, "objectName")
+property_reader("QThreadPool", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QThreadPool", /::setObjectName\s*\(/, "objectName")
+property_reader("QThreadPool", /::(expiryTimeout|isExpiryTimeout|hasExpiryTimeout)\s*\(/, "expiryTimeout")
+property_writer("QThreadPool", /::setExpiryTimeout\s*\(/, "expiryTimeout")
+property_reader("QThreadPool", /::(maxThreadCount|isMaxThreadCount|hasMaxThreadCount)\s*\(/, "maxThreadCount")
+property_writer("QThreadPool", /::setMaxThreadCount\s*\(/, "maxThreadCount")
+property_reader("QThreadPool", /::(activeThreadCount|isActiveThreadCount|hasActiveThreadCount)\s*\(/, "activeThreadCount")
+property_reader("QThreadPool", /::(stackSize|isStackSize|hasStackSize)\s*\(/, "stackSize")
+property_writer("QThreadPool", /::setStackSize\s*\(/, "stackSize")
+property_reader("QThreadPool", /::(threadPriority|isThreadPriority|hasThreadPriority)\s*\(/, "threadPriority")
+property_writer("QThreadPool", /::setThreadPriority\s*\(/, "threadPriority")
+property_reader("QTimeLine", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTimeLine", /::setObjectName\s*\(/, "objectName")
+property_reader("QTimeLine", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_writer("QTimeLine", /::setDuration\s*\(/, "duration")
+property_reader("QTimeLine", /::(updateInterval|isUpdateInterval|hasUpdateInterval)\s*\(/, "updateInterval")
+property_writer("QTimeLine", /::setUpdateInterval\s*\(/, "updateInterval")
+property_reader("QTimeLine", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QTimeLine", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QTimeLine", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QTimeLine", /::setDirection\s*\(/, "direction")
+property_reader("QTimeLine", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QTimeLine", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QTimeLine", /::(easingCurve|isEasingCurve|hasEasingCurve)\s*\(/, "easingCurve")
+property_writer("QTimeLine", /::setEasingCurve\s*\(/, "easingCurve")
+property_reader("QTimer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTimer", /::setObjectName\s*\(/, "objectName")
+property_reader("QTimer", /::(singleShot|isSingleShot|hasSingleShot)\s*\(/, "singleShot")
+property_writer("QTimer", /::setSingleShot\s*\(/, "singleShot")
+property_reader("QTimer", /::(interval|isInterval|hasInterval)\s*\(/, "interval")
+property_writer("QTimer", /::setInterval\s*\(/, "interval")
+property_reader("QTimer", /::(remainingTime|isRemainingTime|hasRemainingTime)\s*\(/, "remainingTime")
+property_reader("QTimer", /::(timerType|isTimerType|hasTimerType)\s*\(/, "timerType")
+property_writer("QTimer", /::setTimerType\s*\(/, "timerType")
+property_reader("QTimer", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QTranslator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTranslator", /::setObjectName\s*\(/, "objectName")
+property_reader("QTransposeProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTransposeProxyModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QTransposeProxyModel", /::(sourceModel|isSourceModel|hasSourceModel)\s*\(/, "sourceModel")
+property_writer("QTransposeProxyModel", /::setSourceModel\s*\(/, "sourceModel")
+property_reader("QVariantAnimation", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QVariantAnimation", /::setObjectName\s*\(/, "objectName")
+property_reader("QVariantAnimation", /::(state|isState|hasState)\s*\(/, "state")
+property_reader("QVariantAnimation", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
+property_writer("QVariantAnimation", /::setLoopCount\s*\(/, "loopCount")
+property_reader("QVariantAnimation", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
+property_writer("QVariantAnimation", /::setCurrentTime\s*\(/, "currentTime")
+property_reader("QVariantAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
+property_reader("QVariantAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
+property_writer("QVariantAnimation", /::setDirection\s*\(/, "direction")
+property_reader("QVariantAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QVariantAnimation", /::(startValue|isStartValue|hasStartValue)\s*\(/, "startValue")
+property_writer("QVariantAnimation", /::setStartValue\s*\(/, "startValue")
+property_reader("QVariantAnimation", /::(endValue|isEndValue|hasEndValue)\s*\(/, "endValue")
+property_writer("QVariantAnimation", /::setEndValue\s*\(/, "endValue")
+property_reader("QVariantAnimation", /::(currentValue|isCurrentValue|hasCurrentValue)\s*\(/, "currentValue")
+property_reader("QVariantAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_writer("QVariantAnimation", /::setDuration\s*\(/, "duration")
+property_reader("QVariantAnimation", /::(easingCurve|isEasingCurve|hasEasingCurve)\s*\(/, "easingCurve")
+property_writer("QVariantAnimation", /::setEasingCurve\s*\(/, "easingCurve")
+property_reader("QAbstractTextDocumentLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractTextDocumentLayout", /::setObjectName\s*\(/, "objectName")
+property_reader("QAction", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAction", /::setObjectName\s*\(/, "objectName")
+property_reader("QAction", /::(checkable|isCheckable|hasCheckable)\s*\(/, "checkable")
+property_writer("QAction", /::setCheckable\s*\(/, "checkable")
+property_reader("QAction", /::(checked|isChecked|hasChecked)\s*\(/, "checked")
+property_writer("QAction", /::setChecked\s*\(/, "checked")
+property_reader("QAction", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QAction", /::setEnabled\s*\(/, "enabled")
+property_reader("QAction", /::(icon|isIcon|hasIcon)\s*\(/, "icon")
+property_writer("QAction", /::setIcon\s*\(/, "icon")
+property_reader("QAction", /::(text|isText|hasText)\s*\(/, "text")
+property_writer("QAction", /::setText\s*\(/, "text")
+property_reader("QAction", /::(iconText|isIconText|hasIconText)\s*\(/, "iconText")
+property_writer("QAction", /::setIconText\s*\(/, "iconText")
+property_reader("QAction", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
+property_writer("QAction", /::setToolTip\s*\(/, "toolTip")
+property_reader("QAction", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
+property_writer("QAction", /::setStatusTip\s*\(/, "statusTip")
+property_reader("QAction", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
+property_writer("QAction", /::setWhatsThis\s*\(/, "whatsThis")
+property_reader("QAction", /::(font|isFont|hasFont)\s*\(/, "font")
+property_writer("QAction", /::setFont\s*\(/, "font")
+property_reader("QAction", /::(shortcut|isShortcut|hasShortcut)\s*\(/, "shortcut")
+property_writer("QAction", /::setShortcut\s*\(/, "shortcut")
+property_reader("QAction", /::(shortcutContext|isShortcutContext|hasShortcutContext)\s*\(/, "shortcutContext")
+property_writer("QAction", /::setShortcutContext\s*\(/, "shortcutContext")
+property_reader("QAction", /::(autoRepeat|isAutoRepeat|hasAutoRepeat)\s*\(/, "autoRepeat")
+property_writer("QAction", /::setAutoRepeat\s*\(/, "autoRepeat")
+property_reader("QAction", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QAction", /::setVisible\s*\(/, "visible")
+property_reader("QAction", /::(menuRole|isMenuRole|hasMenuRole)\s*\(/, "menuRole")
+property_writer("QAction", /::setMenuRole\s*\(/, "menuRole")
+property_reader("QAction", /::(iconVisibleInMenu|isIconVisibleInMenu|hasIconVisibleInMenu)\s*\(/, "iconVisibleInMenu")
+property_writer("QAction", /::setIconVisibleInMenu\s*\(/, "iconVisibleInMenu")
+property_reader("QAction", /::(shortcutVisibleInContextMenu|isShortcutVisibleInContextMenu|hasShortcutVisibleInContextMenu)\s*\(/, "shortcutVisibleInContextMenu")
+property_writer("QAction", /::setShortcutVisibleInContextMenu\s*\(/, "shortcutVisibleInContextMenu")
+property_reader("QAction", /::(priority|isPriority|hasPriority)\s*\(/, "priority")
+property_writer("QAction", /::setPriority\s*\(/, "priority")
+property_reader("QActionGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QActionGroup", /::setObjectName\s*\(/, "objectName")
+property_reader("QActionGroup", /::(exclusionPolicy|isExclusionPolicy|hasExclusionPolicy)\s*\(/, "exclusionPolicy")
+property_writer("QActionGroup", /::setExclusionPolicy\s*\(/, "exclusionPolicy")
+property_reader("QActionGroup", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QActionGroup", /::setEnabled\s*\(/, "enabled")
+property_reader("QActionGroup", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QActionGroup", /::setVisible\s*\(/, "visible")
+property_reader("QClipboard", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QClipboard", /::setObjectName\s*\(/, "objectName")
+property_reader("QDoubleValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QDoubleValidator", /::setObjectName\s*\(/, "objectName")
+property_reader("QDoubleValidator", /::(bottom|isBottom|hasBottom)\s*\(/, "bottom")
+property_writer("QDoubleValidator", /::setBottom\s*\(/, "bottom")
+property_reader("QDoubleValidator", /::(top|isTop|hasTop)\s*\(/, "top")
+property_writer("QDoubleValidator", /::setTop\s*\(/, "top")
+property_reader("QDoubleValidator", /::(decimals|isDecimals|hasDecimals)\s*\(/, "decimals")
+property_writer("QDoubleValidator", /::setDecimals\s*\(/, "decimals")
+property_reader("QDoubleValidator", /::(notation|isNotation|hasNotation)\s*\(/, "notation")
+property_writer("QDoubleValidator", /::setNotation\s*\(/, "notation")
+property_reader("QDrag", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QDrag", /::setObjectName\s*\(/, "objectName")
+property_reader("QFileSystemModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QFileSystemModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QFileSystemModel", /::(resolveSymlinks|isResolveSymlinks|hasResolveSymlinks)\s*\(/, "resolveSymlinks")
+property_writer("QFileSystemModel", /::setResolveSymlinks\s*\(/, "resolveSymlinks")
+property_reader("QFileSystemModel", /::(readOnly|isReadOnly|hasReadOnly)\s*\(/, "readOnly")
+property_writer("QFileSystemModel", /::setReadOnly\s*\(/, "readOnly")
+property_reader("QFileSystemModel", /::(nameFilterDisables|isNameFilterDisables|hasNameFilterDisables)\s*\(/, "nameFilterDisables")
+property_writer("QFileSystemModel", /::setNameFilterDisables\s*\(/, "nameFilterDisables")
+property_reader("QFileSystemModel", /::(options|isOptions|hasOptions)\s*\(/, "options")
+property_writer("QFileSystemModel", /::setOptions\s*\(/, "options")
+property_reader("QGenericPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QGenericPlugin", /::setObjectName\s*\(/, "objectName")
+property_reader("QGuiApplication", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QGuiApplication", /::setObjectName\s*\(/, "objectName")
+property_reader("QGuiApplication", /::(applicationName|isApplicationName|hasApplicationName)\s*\(/, "applicationName")
+property_writer("QGuiApplication", /::setApplicationName\s*\(/, "applicationName")
+property_reader("QGuiApplication", /::(applicationVersion|isApplicationVersion|hasApplicationVersion)\s*\(/, "applicationVersion")
+property_writer("QGuiApplication", /::setApplicationVersion\s*\(/, "applicationVersion")
+property_reader("QGuiApplication", /::(organizationName|isOrganizationName|hasOrganizationName)\s*\(/, "organizationName")
+property_writer("QGuiApplication", /::setOrganizationName\s*\(/, "organizationName")
+property_reader("QGuiApplication", /::(organizationDomain|isOrganizationDomain|hasOrganizationDomain)\s*\(/, "organizationDomain")
+property_writer("QGuiApplication", /::setOrganizationDomain\s*\(/, "organizationDomain")
+property_reader("QGuiApplication", /::(quitLockEnabled|isQuitLockEnabled|hasQuitLockEnabled)\s*\(/, "quitLockEnabled")
+property_writer("QGuiApplication", /::setQuitLockEnabled\s*\(/, "quitLockEnabled")
+property_reader("QGuiApplication", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
+property_writer("QGuiApplication", /::setWindowIcon\s*\(/, "windowIcon")
+property_reader("QGuiApplication", /::(applicationDisplayName|isApplicationDisplayName|hasApplicationDisplayName)\s*\(/, "applicationDisplayName")
+property_writer("QGuiApplication", /::setApplicationDisplayName\s*\(/, "applicationDisplayName")
+property_reader("QGuiApplication", /::(desktopFileName|isDesktopFileName|hasDesktopFileName)\s*\(/, "desktopFileName")
+property_writer("QGuiApplication", /::setDesktopFileName\s*\(/, "desktopFileName")
+property_reader("QGuiApplication", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
+property_writer("QGuiApplication", /::setLayoutDirection\s*\(/, "layoutDirection")
+property_reader("QGuiApplication", /::(platformName|isPlatformName|hasPlatformName)\s*\(/, "platformName")
+property_reader("QGuiApplication", /::(quitOnLastWindowClosed|isQuitOnLastWindowClosed|hasQuitOnLastWindowClosed)\s*\(/, "quitOnLastWindowClosed")
+property_writer("QGuiApplication", /::setQuitOnLastWindowClosed\s*\(/, "quitOnLastWindowClosed")
+property_reader("QGuiApplication", /::(primaryScreen|isPrimaryScreen|hasPrimaryScreen)\s*\(/, "primaryScreen")
+property_reader("QIconEnginePlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QIconEnginePlugin", /::setObjectName\s*\(/, "objectName")
+property_reader("QImageIOPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QImageIOPlugin", /::setObjectName\s*\(/, "objectName")
+property_reader("QInputDevice", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QInputDevice", /::setObjectName\s*\(/, "objectName")
+property_reader("QInputDevice", /::(name|isName|hasName)\s*\(/, "name")
+property_reader("QInputDevice", /::(type|isType|hasType)\s*\(/, "type")
+property_reader("QInputDevice", /::(capabilities|isCapabilities|hasCapabilities)\s*\(/, "capabilities")
+property_reader("QInputDevice", /::(systemId|isSystemId|hasSystemId)\s*\(/, "systemId")
+property_reader("QInputDevice", /::(seatName|isSeatName|hasSeatName)\s*\(/, "seatName")
+property_reader("QInputDevice", /::(availableVirtualGeometry|isAvailableVirtualGeometry|hasAvailableVirtualGeometry)\s*\(/, "availableVirtualGeometry")
+property_reader("QInputMethod", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QInputMethod", /::setObjectName\s*\(/, "objectName")
+property_reader("QInputMethod", /::(cursorRectangle|isCursorRectangle|hasCursorRectangle)\s*\(/, "cursorRectangle")
+property_reader("QInputMethod", /::(anchorRectangle|isAnchorRectangle|hasAnchorRectangle)\s*\(/, "anchorRectangle")
+property_reader("QInputMethod", /::(keyboardRectangle|isKeyboardRectangle|hasKeyboardRectangle)\s*\(/, "keyboardRectangle")
+property_reader("QInputMethod", /::(inputItemClipRectangle|isInputItemClipRectangle|hasInputItemClipRectangle)\s*\(/, "inputItemClipRectangle")
+property_reader("QInputMethod", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_reader("QInputMethod", /::(animating|isAnimating|hasAnimating)\s*\(/, "animating")
+property_reader("QInputMethod", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
+property_reader("QInputMethod", /::(inputDirection|isInputDirection|hasInputDirection)\s*\(/, "inputDirection")
+property_reader("QIntValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QIntValidator", /::setObjectName\s*\(/, "objectName")
+property_reader("QIntValidator", /::(bottom|isBottom|hasBottom)\s*\(/, "bottom")
+property_writer("QIntValidator", /::setBottom\s*\(/, "bottom")
+property_reader("QIntValidator", /::(top|isTop|hasTop)\s*\(/, "top")
+property_writer("QIntValidator", /::setTop\s*\(/, "top")
+property_reader("QMovie", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMovie", /::setObjectName\s*\(/, "objectName")
+property_reader("QMovie", /::(speed|isSpeed|hasSpeed)\s*\(/, "speed")
+property_writer("QMovie", /::setSpeed\s*\(/, "speed")
+property_reader("QMovie", /::(cacheMode|isCacheMode|hasCacheMode)\s*\(/, "cacheMode")
+property_writer("QMovie", /::setCacheMode\s*\(/, "cacheMode")
+property_reader("QOffscreenSurface", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QOffscreenSurface", /::setObjectName\s*\(/, "objectName")
+property_reader("QPaintDeviceWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPaintDeviceWindow", /::setObjectName\s*\(/, "objectName")
+property_reader("QPaintDeviceWindow", /::(title|isTitle|hasTitle)\s*\(/, "title")
+property_writer("QPaintDeviceWindow", /::setTitle\s*\(/, "title")
+property_reader("QPaintDeviceWindow", /::(modality|isModality|hasModality)\s*\(/, "modality")
+property_writer("QPaintDeviceWindow", /::setModality\s*\(/, "modality")
+property_reader("QPaintDeviceWindow", /::(flags|isFlags|hasFlags)\s*\(/, "flags")
+property_writer("QPaintDeviceWindow", /::setFlags\s*\(/, "flags")
+property_reader("QPaintDeviceWindow", /::(x|isX|hasX)\s*\(/, "x")
+property_writer("QPaintDeviceWindow", /::setX\s*\(/, "x")
+property_reader("QPaintDeviceWindow", /::(y|isY|hasY)\s*\(/, "y")
+property_writer("QPaintDeviceWindow", /::setY\s*\(/, "y")
+property_reader("QPaintDeviceWindow", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_writer("QPaintDeviceWindow", /::setWidth\s*\(/, "width")
+property_reader("QPaintDeviceWindow", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_writer("QPaintDeviceWindow", /::setHeight\s*\(/, "height")
+property_reader("QPaintDeviceWindow", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QPaintDeviceWindow", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QPaintDeviceWindow", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QPaintDeviceWindow", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QPaintDeviceWindow", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QPaintDeviceWindow", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QPaintDeviceWindow", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QPaintDeviceWindow", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QPaintDeviceWindow", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QPaintDeviceWindow", /::setVisible\s*\(/, "visible")
+property_reader("QPaintDeviceWindow", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QPaintDeviceWindow", /::(visibility|isVisibility|hasVisibility)\s*\(/, "visibility")
+property_writer("QPaintDeviceWindow", /::setVisibility\s*\(/, "visibility")
+property_reader("QPaintDeviceWindow", /::(contentOrientation|isContentOrientation|hasContentOrientation)\s*\(/, "contentOrientation")
+property_writer("QPaintDeviceWindow", /::setContentOrientation\s*\(/, "contentOrientation")
+property_reader("QPaintDeviceWindow", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
+property_writer("QPaintDeviceWindow", /::setOpacity\s*\(/, "opacity")
+property_reader("QPaintDeviceWindow", /::(transientParent|isTransientParent|hasTransientParent)\s*\(/, "transientParent")
+property_writer("QPaintDeviceWindow", /::setTransientParent\s*\(/, "transientParent")
+property_reader("QPdfWriter", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPdfWriter", /::setObjectName\s*\(/, "objectName")
+property_reader("QPointingDevice", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPointingDevice", /::setObjectName\s*\(/, "objectName")
+property_reader("QPointingDevice", /::(name|isName|hasName)\s*\(/, "name")
+property_reader("QPointingDevice", /::(type|isType|hasType)\s*\(/, "type")
+property_reader("QPointingDevice", /::(capabilities|isCapabilities|hasCapabilities)\s*\(/, "capabilities")
+property_reader("QPointingDevice", /::(systemId|isSystemId|hasSystemId)\s*\(/, "systemId")
+property_reader("QPointingDevice", /::(seatName|isSeatName|hasSeatName)\s*\(/, "seatName")
+property_reader("QPointingDevice", /::(availableVirtualGeometry|isAvailableVirtualGeometry|hasAvailableVirtualGeometry)\s*\(/, "availableVirtualGeometry")
+property_reader("QPointingDevice", /::(pointerType|isPointerType|hasPointerType)\s*\(/, "pointerType")
+property_reader("QPointingDevice", /::(maximumPoints|isMaximumPoints|hasMaximumPoints)\s*\(/, "maximumPoints")
+property_reader("QPointingDevice", /::(buttonCount|isButtonCount|hasButtonCount)\s*\(/, "buttonCount")
+property_reader("QPointingDevice", /::(uniqueId|isUniqueId|hasUniqueId)\s*\(/, "uniqueId")
+property_reader("QRasterWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QRasterWindow", /::setObjectName\s*\(/, "objectName")
+property_reader("QRasterWindow", /::(title|isTitle|hasTitle)\s*\(/, "title")
+property_writer("QRasterWindow", /::setTitle\s*\(/, "title")
+property_reader("QRasterWindow", /::(modality|isModality|hasModality)\s*\(/, "modality")
+property_writer("QRasterWindow", /::setModality\s*\(/, "modality")
+property_reader("QRasterWindow", /::(flags|isFlags|hasFlags)\s*\(/, "flags")
+property_writer("QRasterWindow", /::setFlags\s*\(/, "flags")
+property_reader("QRasterWindow", /::(x|isX|hasX)\s*\(/, "x")
+property_writer("QRasterWindow", /::setX\s*\(/, "x")
+property_reader("QRasterWindow", /::(y|isY|hasY)\s*\(/, "y")
+property_writer("QRasterWindow", /::setY\s*\(/, "y")
+property_reader("QRasterWindow", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_writer("QRasterWindow", /::setWidth\s*\(/, "width")
+property_reader("QRasterWindow", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_writer("QRasterWindow", /::setHeight\s*\(/, "height")
+property_reader("QRasterWindow", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QRasterWindow", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QRasterWindow", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QRasterWindow", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QRasterWindow", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QRasterWindow", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QRasterWindow", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QRasterWindow", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QRasterWindow", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QRasterWindow", /::setVisible\s*\(/, "visible")
+property_reader("QRasterWindow", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QRasterWindow", /::(visibility|isVisibility|hasVisibility)\s*\(/, "visibility")
+property_writer("QRasterWindow", /::setVisibility\s*\(/, "visibility")
+property_reader("QRasterWindow", /::(contentOrientation|isContentOrientation|hasContentOrientation)\s*\(/, "contentOrientation")
+property_writer("QRasterWindow", /::setContentOrientation\s*\(/, "contentOrientation")
+property_reader("QRasterWindow", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
+property_writer("QRasterWindow", /::setOpacity\s*\(/, "opacity")
+property_reader("QRasterWindow", /::(transientParent|isTransientParent|hasTransientParent)\s*\(/, "transientParent")
+property_writer("QRasterWindow", /::setTransientParent\s*\(/, "transientParent")
+property_reader("QRegularExpressionValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QRegularExpressionValidator", /::setObjectName\s*\(/, "objectName")
+property_reader("QRegularExpressionValidator", /::(regularExpression|isRegularExpression|hasRegularExpression)\s*\(/, "regularExpression")
+property_writer("QRegularExpressionValidator", /::setRegularExpression\s*\(/, "regularExpression")
+property_reader("QScreen", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QScreen", /::setObjectName\s*\(/, "objectName")
+property_reader("QScreen", /::(name|isName|hasName)\s*\(/, "name")
+property_reader("QScreen", /::(manufacturer|isManufacturer|hasManufacturer)\s*\(/, "manufacturer")
+property_reader("QScreen", /::(model|isModel|hasModel)\s*\(/, "model")
+property_reader("QScreen", /::(serialNumber|isSerialNumber|hasSerialNumber)\s*\(/, "serialNumber")
+property_reader("QScreen", /::(depth|isDepth|hasDepth)\s*\(/, "depth")
+property_reader("QScreen", /::(size|isSize|hasSize)\s*\(/, "size")
+property_reader("QScreen", /::(availableSize|isAvailableSize|hasAvailableSize)\s*\(/, "availableSize")
+property_reader("QScreen", /::(virtualSize|isVirtualSize|hasVirtualSize)\s*\(/, "virtualSize")
+property_reader("QScreen", /::(availableVirtualSize|isAvailableVirtualSize|hasAvailableVirtualSize)\s*\(/, "availableVirtualSize")
+property_reader("QScreen", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
+property_reader("QScreen", /::(availableGeometry|isAvailableGeometry|hasAvailableGeometry)\s*\(/, "availableGeometry")
+property_reader("QScreen", /::(virtualGeometry|isVirtualGeometry|hasVirtualGeometry)\s*\(/, "virtualGeometry")
+property_reader("QScreen", /::(availableVirtualGeometry|isAvailableVirtualGeometry|hasAvailableVirtualGeometry)\s*\(/, "availableVirtualGeometry")
+property_reader("QScreen", /::(physicalSize|isPhysicalSize|hasPhysicalSize)\s*\(/, "physicalSize")
+property_reader("QScreen", /::(physicalDotsPerInchX|isPhysicalDotsPerInchX|hasPhysicalDotsPerInchX)\s*\(/, "physicalDotsPerInchX")
+property_reader("QScreen", /::(physicalDotsPerInchY|isPhysicalDotsPerInchY|hasPhysicalDotsPerInchY)\s*\(/, "physicalDotsPerInchY")
+property_reader("QScreen", /::(physicalDotsPerInch|isPhysicalDotsPerInch|hasPhysicalDotsPerInch)\s*\(/, "physicalDotsPerInch")
+property_reader("QScreen", /::(logicalDotsPerInchX|isLogicalDotsPerInchX|hasLogicalDotsPerInchX)\s*\(/, "logicalDotsPerInchX")
+property_reader("QScreen", /::(logicalDotsPerInchY|isLogicalDotsPerInchY|hasLogicalDotsPerInchY)\s*\(/, "logicalDotsPerInchY")
+property_reader("QScreen", /::(logicalDotsPerInch|isLogicalDotsPerInch|hasLogicalDotsPerInch)\s*\(/, "logicalDotsPerInch")
+property_reader("QScreen", /::(devicePixelRatio|isDevicePixelRatio|hasDevicePixelRatio)\s*\(/, "devicePixelRatio")
+property_reader("QScreen", /::(primaryOrientation|isPrimaryOrientation|hasPrimaryOrientation)\s*\(/, "primaryOrientation")
+property_reader("QScreen", /::(orientation|isOrientation|hasOrientation)\s*\(/, "orientation")
+property_reader("QScreen", /::(nativeOrientation|isNativeOrientation|hasNativeOrientation)\s*\(/, "nativeOrientation")
+property_reader("QScreen", /::(refreshRate|isRefreshRate|hasRefreshRate)\s*\(/, "refreshRate")
+property_reader("QSessionManager", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSessionManager", /::setObjectName\s*\(/, "objectName")
+property_reader("QShortcut", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QShortcut", /::setObjectName\s*\(/, "objectName")
+property_reader("QShortcut", /::(key|isKey|hasKey)\s*\(/, "key")
+property_writer("QShortcut", /::setKey\s*\(/, "key")
+property_reader("QShortcut", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QShortcut", /::setEnabled\s*\(/, "enabled")
+property_reader("QShortcut", /::(autoRepeat|isAutoRepeat|hasAutoRepeat)\s*\(/, "autoRepeat")
+property_writer("QShortcut", /::setAutoRepeat\s*\(/, "autoRepeat")
+property_reader("QShortcut", /::(context|isContext|hasContext)\s*\(/, "context")
+property_writer("QShortcut", /::setContext\s*\(/, "context")
+property_reader("QStandardItemModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QStandardItemModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QStandardItemModel", /::(sortRole|isSortRole|hasSortRole)\s*\(/, "sortRole")
+property_writer("QStandardItemModel", /::setSortRole\s*\(/, "sortRole")
+property_reader("QStyleHints", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QStyleHints", /::setObjectName\s*\(/, "objectName")
+property_reader("QStyleHints", /::(cursorFlashTime|isCursorFlashTime|hasCursorFlashTime)\s*\(/, "cursorFlashTime")
+property_reader("QStyleHints", /::(fontSmoothingGamma|isFontSmoothingGamma|hasFontSmoothingGamma)\s*\(/, "fontSmoothingGamma")
+property_reader("QStyleHints", /::(keyboardAutoRepeatRate|isKeyboardAutoRepeatRate|hasKeyboardAutoRepeatRate)\s*\(/, "keyboardAutoRepeatRate")
+property_reader("QStyleHints", /::(keyboardInputInterval|isKeyboardInputInterval|hasKeyboardInputInterval)\s*\(/, "keyboardInputInterval")
+property_reader("QStyleHints", /::(mouseDoubleClickInterval|isMouseDoubleClickInterval|hasMouseDoubleClickInterval)\s*\(/, "mouseDoubleClickInterval")
+property_reader("QStyleHints", /::(mousePressAndHoldInterval|isMousePressAndHoldInterval|hasMousePressAndHoldInterval)\s*\(/, "mousePressAndHoldInterval")
+property_reader("QStyleHints", /::(passwordMaskCharacter|isPasswordMaskCharacter|hasPasswordMaskCharacter)\s*\(/, "passwordMaskCharacter")
+property_reader("QStyleHints", /::(passwordMaskDelay|isPasswordMaskDelay|hasPasswordMaskDelay)\s*\(/, "passwordMaskDelay")
+property_reader("QStyleHints", /::(setFocusOnTouchRelease|isSetFocusOnTouchRelease|hasSetFocusOnTouchRelease)\s*\(/, "setFocusOnTouchRelease")
+property_reader("QStyleHints", /::(showIsFullScreen|isShowIsFullScreen|hasShowIsFullScreen)\s*\(/, "showIsFullScreen")
+property_reader("QStyleHints", /::(showIsMaximized|isShowIsMaximized|hasShowIsMaximized)\s*\(/, "showIsMaximized")
+property_reader("QStyleHints", /::(showShortcutsInContextMenus|isShowShortcutsInContextMenus|hasShowShortcutsInContextMenus)\s*\(/, "showShortcutsInContextMenus")
+property_writer("QStyleHints", /::setShowShortcutsInContextMenus\s*\(/, "showShortcutsInContextMenus")
+property_reader("QStyleHints", /::(startDragDistance|isStartDragDistance|hasStartDragDistance)\s*\(/, "startDragDistance")
+property_reader("QStyleHints", /::(startDragTime|isStartDragTime|hasStartDragTime)\s*\(/, "startDragTime")
+property_reader("QStyleHints", /::(startDragVelocity|isStartDragVelocity|hasStartDragVelocity)\s*\(/, "startDragVelocity")
+property_reader("QStyleHints", /::(useRtlExtensions|isUseRtlExtensions|hasUseRtlExtensions)\s*\(/, "useRtlExtensions")
+property_reader("QStyleHints", /::(tabFocusBehavior|isTabFocusBehavior|hasTabFocusBehavior)\s*\(/, "tabFocusBehavior")
+property_reader("QStyleHints", /::(singleClickActivation|isSingleClickActivation|hasSingleClickActivation)\s*\(/, "singleClickActivation")
+property_reader("QStyleHints", /::(useHoverEffects|isUseHoverEffects|hasUseHoverEffects)\s*\(/, "useHoverEffects")
+property_writer("QStyleHints", /::setUseHoverEffects\s*\(/, "useHoverEffects")
+property_reader("QStyleHints", /::(wheelScrollLines|isWheelScrollLines|hasWheelScrollLines)\s*\(/, "wheelScrollLines")
+property_reader("QStyleHints", /::(mouseQuickSelectionThreshold|isMouseQuickSelectionThreshold|hasMouseQuickSelectionThreshold)\s*\(/, "mouseQuickSelectionThreshold")
+property_writer("QStyleHints", /::setMouseQuickSelectionThreshold\s*\(/, "mouseQuickSelectionThreshold")
+property_reader("QStyleHints", /::(mouseDoubleClickDistance|isMouseDoubleClickDistance|hasMouseDoubleClickDistance)\s*\(/, "mouseDoubleClickDistance")
+property_reader("QStyleHints", /::(touchDoubleTapDistance|isTouchDoubleTapDistance|hasTouchDoubleTapDistance)\s*\(/, "touchDoubleTapDistance")
+property_reader("QSyntaxHighlighter", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSyntaxHighlighter", /::setObjectName\s*\(/, "objectName")
+property_reader("QTextBlockGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTextBlockGroup", /::setObjectName\s*\(/, "objectName")
+property_reader("QTextDocument", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTextDocument", /::setObjectName\s*\(/, "objectName")
+property_reader("QTextDocument", /::(undoRedoEnabled|isUndoRedoEnabled|hasUndoRedoEnabled)\s*\(/, "undoRedoEnabled")
+property_writer("QTextDocument", /::setUndoRedoEnabled\s*\(/, "undoRedoEnabled")
+property_reader("QTextDocument", /::(modified|isModified|hasModified)\s*\(/, "modified")
+property_writer("QTextDocument", /::setModified\s*\(/, "modified")
+property_reader("QTextDocument", /::(pageSize|isPageSize|hasPageSize)\s*\(/, "pageSize")
+property_writer("QTextDocument", /::setPageSize\s*\(/, "pageSize")
+property_reader("QTextDocument", /::(defaultFont|isDefaultFont|hasDefaultFont)\s*\(/, "defaultFont")
+property_writer("QTextDocument", /::setDefaultFont\s*\(/, "defaultFont")
+property_reader("QTextDocument", /::(useDesignMetrics|isUseDesignMetrics|hasUseDesignMetrics)\s*\(/, "useDesignMetrics")
+property_writer("QTextDocument", /::setUseDesignMetrics\s*\(/, "useDesignMetrics")
+property_reader("QTextDocument", /::(size|isSize|hasSize)\s*\(/, "size")
+property_reader("QTextDocument", /::(textWidth|isTextWidth|hasTextWidth)\s*\(/, "textWidth")
+property_writer("QTextDocument", /::setTextWidth\s*\(/, "textWidth")
+property_reader("QTextDocument", /::(blockCount|isBlockCount|hasBlockCount)\s*\(/, "blockCount")
+property_reader("QTextDocument", /::(indentWidth|isIndentWidth|hasIndentWidth)\s*\(/, "indentWidth")
+property_writer("QTextDocument", /::setIndentWidth\s*\(/, "indentWidth")
+property_reader("QTextDocument", /::(defaultStyleSheet|isDefaultStyleSheet|hasDefaultStyleSheet)\s*\(/, "defaultStyleSheet")
+property_writer("QTextDocument", /::setDefaultStyleSheet\s*\(/, "defaultStyleSheet")
+property_reader("QTextDocument", /::(maximumBlockCount|isMaximumBlockCount|hasMaximumBlockCount)\s*\(/, "maximumBlockCount")
+property_writer("QTextDocument", /::setMaximumBlockCount\s*\(/, "maximumBlockCount")
+property_reader("QTextDocument", /::(documentMargin|isDocumentMargin|hasDocumentMargin)\s*\(/, "documentMargin")
+property_writer("QTextDocument", /::setDocumentMargin\s*\(/, "documentMargin")
+property_reader("QTextDocument", /::(baseUrl|isBaseUrl|hasBaseUrl)\s*\(/, "baseUrl")
+property_writer("QTextDocument", /::setBaseUrl\s*\(/, "baseUrl")
+property_reader("QTextFrame", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTextFrame", /::setObjectName\s*\(/, "objectName")
+property_reader("QTextList", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTextList", /::setObjectName\s*\(/, "objectName")
+property_reader("QTextObject", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTextObject", /::setObjectName\s*\(/, "objectName")
+property_reader("QTextTable", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTextTable", /::setObjectName\s*\(/, "objectName")
+property_reader("QUndoGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QUndoGroup", /::setObjectName\s*\(/, "objectName")
+property_reader("QUndoStack", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QUndoStack", /::setObjectName\s*\(/, "objectName")
+property_reader("QUndoStack", /::(active|isActive|hasActive)\s*\(/, "active")
+property_writer("QUndoStack", /::setActive\s*\(/, "active")
+property_reader("QUndoStack", /::(undoLimit|isUndoLimit|hasUndoLimit)\s*\(/, "undoLimit")
+property_writer("QUndoStack", /::setUndoLimit\s*\(/, "undoLimit")
+property_reader("QUndoStack", /::(canUndo|isCanUndo|hasCanUndo)\s*\(/, "canUndo")
+property_reader("QUndoStack", /::(canRedo|isCanRedo|hasCanRedo)\s*\(/, "canRedo")
+property_reader("QUndoStack", /::(undoText|isUndoText|hasUndoText)\s*\(/, "undoText")
+property_reader("QUndoStack", /::(redoText|isRedoText|hasRedoText)\s*\(/, "redoText")
+property_reader("QUndoStack", /::(clean|isClean|hasClean)\s*\(/, "clean")
+property_reader("QValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QValidator", /::setObjectName\s*\(/, "objectName")
+property_reader("QWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QWindow", /::setObjectName\s*\(/, "objectName")
+property_reader("QWindow", /::(title|isTitle|hasTitle)\s*\(/, "title")
+property_writer("QWindow", /::setTitle\s*\(/, "title")
+property_reader("QWindow", /::(modality|isModality|hasModality)\s*\(/, "modality")
+property_writer("QWindow", /::setModality\s*\(/, "modality")
+property_reader("QWindow", /::(flags|isFlags|hasFlags)\s*\(/, "flags")
+property_writer("QWindow", /::setFlags\s*\(/, "flags")
+property_reader("QWindow", /::(x|isX|hasX)\s*\(/, "x")
+property_writer("QWindow", /::setX\s*\(/, "x")
+property_reader("QWindow", /::(y|isY|hasY)\s*\(/, "y")
+property_writer("QWindow", /::setY\s*\(/, "y")
+property_reader("QWindow", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_writer("QWindow", /::setWidth\s*\(/, "width")
+property_reader("QWindow", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_writer("QWindow", /::setHeight\s*\(/, "height")
+property_reader("QWindow", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QWindow", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QWindow", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QWindow", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QWindow", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QWindow", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QWindow", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QWindow", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QWindow", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QWindow", /::setVisible\s*\(/, "visible")
+property_reader("QWindow", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QWindow", /::(visibility|isVisibility|hasVisibility)\s*\(/, "visibility")
+property_writer("QWindow", /::setVisibility\s*\(/, "visibility")
+property_reader("QWindow", /::(contentOrientation|isContentOrientation|hasContentOrientation)\s*\(/, "contentOrientation")
+property_writer("QWindow", /::setContentOrientation\s*\(/, "contentOrientation")
+property_reader("QWindow", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
+property_writer("QWindow", /::setOpacity\s*\(/, "opacity")
+property_reader("QWindow", /::(transientParent|isTransientParent|hasTransientParent)\s*\(/, "transientParent")
+property_writer("QWindow", /::setTransientParent\s*\(/, "transientParent")
property_reader("QAbstractButton", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QAbstractButton", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractButton", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -65,6 +682,8 @@ property_reader("QAbstractButton", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor
property_writer("QAbstractButton", /::setCursor\s*\(/, "cursor")
property_reader("QAbstractButton", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QAbstractButton", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QAbstractButton", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QAbstractButton", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QAbstractButton", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QAbstractButton", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QAbstractButton", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -138,12 +757,8 @@ property_reader("QAbstractButton", /::(autoRepeatInterval|isAutoRepeatInterval|h
property_writer("QAbstractButton", /::setAutoRepeatInterval\s*\(/, "autoRepeatInterval")
property_reader("QAbstractButton", /::(down|isDown|hasDown)\s*\(/, "down")
property_writer("QAbstractButton", /::setDown\s*\(/, "down")
-property_reader("QAbstractEventDispatcher", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractEventDispatcher", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractItemDelegate", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QAbstractItemDelegate", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractItemModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractItemModel", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractItemView", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QAbstractItemView", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractItemView", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -193,6 +808,8 @@ property_reader("QAbstractItemView", /::(cursor|isCursor|hasCursor)\s*\(/, "curs
property_writer("QAbstractItemView", /::setCursor\s*\(/, "cursor")
property_reader("QAbstractItemView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QAbstractItemView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QAbstractItemView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QAbstractItemView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QAbstractItemView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QAbstractItemView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QAbstractItemView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -293,120 +910,6 @@ property_reader("QAbstractItemView", /::(verticalScrollMode|isVerticalScrollMode
property_writer("QAbstractItemView", /::setVerticalScrollMode\s*\(/, "verticalScrollMode")
property_reader("QAbstractItemView", /::(horizontalScrollMode|isHorizontalScrollMode|hasHorizontalScrollMode)\s*\(/, "horizontalScrollMode")
property_writer("QAbstractItemView", /::setHorizontalScrollMode\s*\(/, "horizontalScrollMode")
-property_reader("QAbstractListModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractListModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractMessageHandler", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractMessageHandler", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractNetworkCache", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractNetworkCache", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractPrintDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractPrintDialog", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_reader("QAbstractPrintDialog", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
-property_writer("QAbstractPrintDialog", /::setWindowModality\s*\(/, "windowModality")
-property_reader("QAbstractPrintDialog", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QAbstractPrintDialog", /::setEnabled\s*\(/, "enabled")
-property_reader("QAbstractPrintDialog", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_writer("QAbstractPrintDialog", /::setGeometry\s*\(/, "geometry")
-property_reader("QAbstractPrintDialog", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
-property_reader("QAbstractPrintDialog", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
-property_reader("QAbstractPrintDialog", /::(x|isX|hasX)\s*\(/, "x")
-property_reader("QAbstractPrintDialog", /::(y|isY|hasY)\s*\(/, "y")
-property_reader("QAbstractPrintDialog", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QAbstractPrintDialog", /::setPos\s*\(/, "pos")
-property_reader("QAbstractPrintDialog", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
-property_reader("QAbstractPrintDialog", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QAbstractPrintDialog", /::setSize\s*\(/, "size")
-property_reader("QAbstractPrintDialog", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_reader("QAbstractPrintDialog", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_reader("QAbstractPrintDialog", /::(rect|isRect|hasRect)\s*\(/, "rect")
-property_reader("QAbstractPrintDialog", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
-property_reader("QAbstractPrintDialog", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
-property_reader("QAbstractPrintDialog", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
-property_writer("QAbstractPrintDialog", /::setSizePolicy\s*\(/, "sizePolicy")
-property_reader("QAbstractPrintDialog", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
-property_writer("QAbstractPrintDialog", /::setMinimumSize\s*\(/, "minimumSize")
-property_reader("QAbstractPrintDialog", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
-property_writer("QAbstractPrintDialog", /::setMaximumSize\s*\(/, "maximumSize")
-property_reader("QAbstractPrintDialog", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QAbstractPrintDialog", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QAbstractPrintDialog", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QAbstractPrintDialog", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QAbstractPrintDialog", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QAbstractPrintDialog", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QAbstractPrintDialog", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QAbstractPrintDialog", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QAbstractPrintDialog", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
-property_writer("QAbstractPrintDialog", /::setSizeIncrement\s*\(/, "sizeIncrement")
-property_reader("QAbstractPrintDialog", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
-property_writer("QAbstractPrintDialog", /::setBaseSize\s*\(/, "baseSize")
-property_reader("QAbstractPrintDialog", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
-property_writer("QAbstractPrintDialog", /::setPalette\s*\(/, "palette")
-property_reader("QAbstractPrintDialog", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QAbstractPrintDialog", /::setFont\s*\(/, "font")
-property_reader("QAbstractPrintDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
-property_writer("QAbstractPrintDialog", /::setCursor\s*\(/, "cursor")
-property_reader("QAbstractPrintDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
-property_writer("QAbstractPrintDialog", /::setMouseTracking\s*\(/, "mouseTracking")
-property_reader("QAbstractPrintDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
-property_reader("QAbstractPrintDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
-property_writer("QAbstractPrintDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
-property_reader("QAbstractPrintDialog", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
-property_reader("QAbstractPrintDialog", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
-property_writer("QAbstractPrintDialog", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
-property_reader("QAbstractPrintDialog", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
-property_writer("QAbstractPrintDialog", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
-property_reader("QAbstractPrintDialog", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QAbstractPrintDialog", /::setVisible\s*\(/, "visible")
-property_reader("QAbstractPrintDialog", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
-property_reader("QAbstractPrintDialog", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
-property_reader("QAbstractPrintDialog", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_reader("QAbstractPrintDialog", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
-property_reader("QAbstractPrintDialog", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
-property_reader("QAbstractPrintDialog", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
-property_writer("QAbstractPrintDialog", /::setAcceptDrops\s*\(/, "acceptDrops")
-property_reader("QAbstractPrintDialog", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
-property_writer("QAbstractPrintDialog", /::setWindowTitle\s*\(/, "windowTitle")
-property_reader("QAbstractPrintDialog", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QAbstractPrintDialog", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QAbstractPrintDialog", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
-property_writer("QAbstractPrintDialog", /::setWindowIconText\s*\(/, "windowIconText")
-property_reader("QAbstractPrintDialog", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
-property_writer("QAbstractPrintDialog", /::setWindowOpacity\s*\(/, "windowOpacity")
-property_reader("QAbstractPrintDialog", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
-property_writer("QAbstractPrintDialog", /::setWindowModified\s*\(/, "windowModified")
-property_reader("QAbstractPrintDialog", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QAbstractPrintDialog", /::setToolTip\s*\(/, "toolTip")
-property_reader("QAbstractPrintDialog", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
-property_writer("QAbstractPrintDialog", /::setToolTipDuration\s*\(/, "toolTipDuration")
-property_reader("QAbstractPrintDialog", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QAbstractPrintDialog", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QAbstractPrintDialog", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QAbstractPrintDialog", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QAbstractPrintDialog", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
-property_writer("QAbstractPrintDialog", /::setAccessibleName\s*\(/, "accessibleName")
-property_reader("QAbstractPrintDialog", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
-property_writer("QAbstractPrintDialog", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-property_reader("QAbstractPrintDialog", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QAbstractPrintDialog", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QAbstractPrintDialog", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
-property_writer("QAbstractPrintDialog", /::setAutoFillBackground\s*\(/, "autoFillBackground")
-property_reader("QAbstractPrintDialog", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
-property_writer("QAbstractPrintDialog", /::setStyleSheet\s*\(/, "styleSheet")
-property_reader("QAbstractPrintDialog", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_writer("QAbstractPrintDialog", /::setLocale\s*\(/, "locale")
-property_reader("QAbstractPrintDialog", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
-property_writer("QAbstractPrintDialog", /::setWindowFilePath\s*\(/, "windowFilePath")
-property_reader("QAbstractPrintDialog", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
-property_writer("QAbstractPrintDialog", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QAbstractPrintDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
-property_writer("QAbstractPrintDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
-property_reader("QAbstractPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_writer("QAbstractPrintDialog", /::setModal\s*\(/, "modal")
-property_reader("QAbstractProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractProxyModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractProxyModel", /::(sourceModel|isSourceModel|hasSourceModel)\s*\(/, "sourceModel")
-property_writer("QAbstractProxyModel", /::setSourceModel\s*\(/, "sourceModel")
property_reader("QAbstractScrollArea", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QAbstractScrollArea", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractScrollArea", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -456,6 +959,8 @@ property_reader("QAbstractScrollArea", /::(cursor|isCursor|hasCursor)\s*\(/, "cu
property_writer("QAbstractScrollArea", /::setCursor\s*\(/, "cursor")
property_reader("QAbstractScrollArea", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QAbstractScrollArea", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QAbstractScrollArea", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QAbstractScrollArea", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QAbstractScrollArea", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QAbstractScrollArea", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QAbstractScrollArea", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -573,6 +1078,8 @@ property_reader("QAbstractSlider", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor
property_writer("QAbstractSlider", /::setCursor\s*\(/, "cursor")
property_reader("QAbstractSlider", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QAbstractSlider", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QAbstractSlider", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QAbstractSlider", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QAbstractSlider", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QAbstractSlider", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QAbstractSlider", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -646,8 +1153,6 @@ property_reader("QAbstractSlider", /::(invertedControls|isInvertedControls|hasIn
property_writer("QAbstractSlider", /::setInvertedControls\s*\(/, "invertedControls")
property_reader("QAbstractSlider", /::(sliderDown|isSliderDown|hasSliderDown)\s*\(/, "sliderDown")
property_writer("QAbstractSlider", /::setSliderDown\s*\(/, "sliderDown")
-property_reader("QAbstractSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractSocket", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractSpinBox", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QAbstractSpinBox", /::setObjectName\s*\(/, "objectName")
property_reader("QAbstractSpinBox", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -697,6 +1202,8 @@ property_reader("QAbstractSpinBox", /::(cursor|isCursor|hasCursor)\s*\(/, "curso
property_writer("QAbstractSpinBox", /::setCursor\s*\(/, "cursor")
property_reader("QAbstractSpinBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QAbstractSpinBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QAbstractSpinBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QAbstractSpinBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QAbstractSpinBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QAbstractSpinBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QAbstractSpinBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -770,88 +1277,6 @@ property_reader("QAbstractSpinBox", /::(keyboardTracking|isKeyboardTracking|hasK
property_writer("QAbstractSpinBox", /::setKeyboardTracking\s*\(/, "keyboardTracking")
property_reader("QAbstractSpinBox", /::(showGroupSeparator|isShowGroupSeparator|hasShowGroupSeparator)\s*\(/, "showGroupSeparator")
property_writer("QAbstractSpinBox", /::setShowGroupSeparator\s*\(/, "showGroupSeparator")
-property_reader("QAbstractState", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractState", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractState", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QAbstractTableModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractTableModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractTextDocumentLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractTextDocumentLayout", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractTransition", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractTransition", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractTransition", /::(sourceState|isSourceState|hasSourceState)\s*\(/, "sourceState")
-property_reader("QAbstractTransition", /::(targetState|isTargetState|hasTargetState)\s*\(/, "targetState")
-property_writer("QAbstractTransition", /::setTargetState\s*\(/, "targetState")
-property_reader("QAbstractTransition", /::(targetStates|isTargetStates|hasTargetStates)\s*\(/, "targetStates")
-property_writer("QAbstractTransition", /::setTargetStates\s*\(/, "targetStates")
-property_reader("QAbstractTransition", /::(transitionType|isTransitionType|hasTransitionType)\s*\(/, "transitionType")
-property_writer("QAbstractTransition", /::setTransitionType\s*\(/, "transitionType")
-property_reader("QAbstractUriResolver", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractUriResolver", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractVideoFilter", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractVideoFilter", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractVideoFilter", /::(active|isActive|hasActive)\s*\(/, "active")
-property_writer("QAbstractVideoFilter", /::setActive\s*\(/, "active")
-property_reader("QAbstractVideoSurface", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAbstractVideoSurface", /::setObjectName\s*\(/, "objectName")
-property_reader("QAbstractVideoSurface", /::(nativeResolution|isNativeResolution|hasNativeResolution)\s*\(/, "nativeResolution")
-property_reader("QAction", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAction", /::setObjectName\s*\(/, "objectName")
-property_reader("QAction", /::(checkable|isCheckable|hasCheckable)\s*\(/, "checkable")
-property_writer("QAction", /::setCheckable\s*\(/, "checkable")
-property_reader("QAction", /::(checked|isChecked|hasChecked)\s*\(/, "checked")
-property_writer("QAction", /::setChecked\s*\(/, "checked")
-property_reader("QAction", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QAction", /::setEnabled\s*\(/, "enabled")
-property_reader("QAction", /::(icon|isIcon|hasIcon)\s*\(/, "icon")
-property_writer("QAction", /::setIcon\s*\(/, "icon")
-property_reader("QAction", /::(text|isText|hasText)\s*\(/, "text")
-property_writer("QAction", /::setText\s*\(/, "text")
-property_reader("QAction", /::(iconText|isIconText|hasIconText)\s*\(/, "iconText")
-property_writer("QAction", /::setIconText\s*\(/, "iconText")
-property_reader("QAction", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QAction", /::setToolTip\s*\(/, "toolTip")
-property_reader("QAction", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QAction", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QAction", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QAction", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QAction", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QAction", /::setFont\s*\(/, "font")
-property_reader("QAction", /::(shortcut|isShortcut|hasShortcut)\s*\(/, "shortcut")
-property_writer("QAction", /::setShortcut\s*\(/, "shortcut")
-property_reader("QAction", /::(shortcutContext|isShortcutContext|hasShortcutContext)\s*\(/, "shortcutContext")
-property_writer("QAction", /::setShortcutContext\s*\(/, "shortcutContext")
-property_reader("QAction", /::(autoRepeat|isAutoRepeat|hasAutoRepeat)\s*\(/, "autoRepeat")
-property_writer("QAction", /::setAutoRepeat\s*\(/, "autoRepeat")
-property_reader("QAction", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QAction", /::setVisible\s*\(/, "visible")
-property_reader("QAction", /::(menuRole|isMenuRole|hasMenuRole)\s*\(/, "menuRole")
-property_writer("QAction", /::setMenuRole\s*\(/, "menuRole")
-property_reader("QAction", /::(iconVisibleInMenu|isIconVisibleInMenu|hasIconVisibleInMenu)\s*\(/, "iconVisibleInMenu")
-property_writer("QAction", /::setIconVisibleInMenu\s*\(/, "iconVisibleInMenu")
-property_reader("QAction", /::(priority|isPriority|hasPriority)\s*\(/, "priority")
-property_writer("QAction", /::setPriority\s*\(/, "priority")
-property_reader("QActionGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QActionGroup", /::setObjectName\s*\(/, "objectName")
-property_reader("QActionGroup", /::(exclusive|isExclusive|hasExclusive)\s*\(/, "exclusive")
-property_writer("QActionGroup", /::setExclusive\s*\(/, "exclusive")
-property_reader("QActionGroup", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QActionGroup", /::setEnabled\s*\(/, "enabled")
-property_reader("QActionGroup", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QActionGroup", /::setVisible\s*\(/, "visible")
-property_reader("QAnimationDriver", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAnimationDriver", /::setObjectName\s*\(/, "objectName")
-property_reader("QAnimationGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAnimationGroup", /::setObjectName\s*\(/, "objectName")
-property_reader("QAnimationGroup", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QAnimationGroup", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QAnimationGroup", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QAnimationGroup", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QAnimationGroup", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QAnimationGroup", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
-property_reader("QAnimationGroup", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QAnimationGroup", /::setDirection\s*\(/, "direction")
-property_reader("QAnimationGroup", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
property_reader("QApplication", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QApplication", /::setObjectName\s*\(/, "objectName")
property_reader("QApplication", /::(applicationName|isApplicationName|hasApplicationName)\s*\(/, "applicationName")
@@ -868,13 +1293,14 @@ property_reader("QApplication", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/
property_writer("QApplication", /::setWindowIcon\s*\(/, "windowIcon")
property_reader("QApplication", /::(applicationDisplayName|isApplicationDisplayName|hasApplicationDisplayName)\s*\(/, "applicationDisplayName")
property_writer("QApplication", /::setApplicationDisplayName\s*\(/, "applicationDisplayName")
+property_reader("QApplication", /::(desktopFileName|isDesktopFileName|hasDesktopFileName)\s*\(/, "desktopFileName")
+property_writer("QApplication", /::setDesktopFileName\s*\(/, "desktopFileName")
property_reader("QApplication", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
property_writer("QApplication", /::setLayoutDirection\s*\(/, "layoutDirection")
property_reader("QApplication", /::(platformName|isPlatformName|hasPlatformName)\s*\(/, "platformName")
property_reader("QApplication", /::(quitOnLastWindowClosed|isQuitOnLastWindowClosed|hasQuitOnLastWindowClosed)\s*\(/, "quitOnLastWindowClosed")
property_writer("QApplication", /::setQuitOnLastWindowClosed\s*\(/, "quitOnLastWindowClosed")
-property_reader("QApplication", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QApplication", /::setWindowIcon\s*\(/, "windowIcon")
+property_reader("QApplication", /::(primaryScreen|isPrimaryScreen|hasPrimaryScreen)\s*\(/, "primaryScreen")
property_reader("QApplication", /::(cursorFlashTime|isCursorFlashTime|hasCursorFlashTime)\s*\(/, "cursorFlashTime")
property_writer("QApplication", /::setCursorFlashTime\s*\(/, "cursorFlashTime")
property_reader("QApplication", /::(doubleClickInterval|isDoubleClickInterval|hasDoubleClickInterval)\s*\(/, "doubleClickInterval")
@@ -883,8 +1309,6 @@ property_reader("QApplication", /::(keyboardInputInterval|isKeyboardInputInterva
property_writer("QApplication", /::setKeyboardInputInterval\s*\(/, "keyboardInputInterval")
property_reader("QApplication", /::(wheelScrollLines|isWheelScrollLines|hasWheelScrollLines)\s*\(/, "wheelScrollLines")
property_writer("QApplication", /::setWheelScrollLines\s*\(/, "wheelScrollLines")
-property_reader("QApplication", /::(globalStrut|isGlobalStrut|hasGlobalStrut)\s*\(/, "globalStrut")
-property_writer("QApplication", /::setGlobalStrut\s*\(/, "globalStrut")
property_reader("QApplication", /::(startDragTime|isStartDragTime|hasStartDragTime)\s*\(/, "startDragTime")
property_writer("QApplication", /::setStartDragTime\s*\(/, "startDragTime")
property_reader("QApplication", /::(startDragDistance|isStartDragDistance|hasStartDragDistance)\s*\(/, "startDragDistance")
@@ -893,57 +1317,14 @@ property_reader("QApplication", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/
property_writer("QApplication", /::setStyleSheet\s*\(/, "styleSheet")
property_reader("QApplication", /::(autoSipEnabled|isAutoSipEnabled|hasAutoSipEnabled)\s*\(/, "autoSipEnabled")
property_writer("QApplication", /::setAutoSipEnabled\s*\(/, "autoSipEnabled")
-property_reader("QAudioDecoder", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioDecoder", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioDecoder", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
-property_writer("QAudioDecoder", /::setNotifyInterval\s*\(/, "notifyInterval")
-property_reader("QAudioDecoder", /::(sourceFilename|isSourceFilename|hasSourceFilename)\s*\(/, "sourceFilename")
-property_writer("QAudioDecoder", /::setSourceFilename\s*\(/, "sourceFilename")
-property_reader("QAudioDecoder", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QAudioDecoder", /::(error|isError|hasError)\s*\(/, "error")
-property_reader("QAudioDecoder", /::(bufferAvailable|isBufferAvailable|hasBufferAvailable)\s*\(/, "bufferAvailable")
-property_reader("QAudioDecoderControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioDecoderControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioEncoderSettingsControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioEncoderSettingsControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioInput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioInput", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioInputSelectorControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioInputSelectorControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioOutput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioOutput", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioOutputSelectorControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioOutputSelectorControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioProbe", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioProbe", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioRecorder", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioRecorder", /::setObjectName\s*\(/, "objectName")
-property_reader("QAudioRecorder", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QAudioRecorder", /::(status|isStatus|hasStatus)\s*\(/, "status")
-property_reader("QAudioRecorder", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QAudioRecorder", /::(outputLocation|isOutputLocation|hasOutputLocation)\s*\(/, "outputLocation")
-property_writer("QAudioRecorder", /::setOutputLocation\s*\(/, "outputLocation")
-property_reader("QAudioRecorder", /::(actualLocation|isActualLocation|hasActualLocation)\s*\(/, "actualLocation")
-property_reader("QAudioRecorder", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
-property_writer("QAudioRecorder", /::setMuted\s*\(/, "muted")
-property_reader("QAudioRecorder", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
-property_writer("QAudioRecorder", /::setVolume\s*\(/, "volume")
-property_reader("QAudioRecorder", /::(metaDataAvailable|isMetaDataAvailable|hasMetaDataAvailable)\s*\(/, "metaDataAvailable")
-property_reader("QAudioRecorder", /::(metaDataWritable|isMetaDataWritable|hasMetaDataWritable)\s*\(/, "metaDataWritable")
-property_reader("QAudioRecorder", /::(audioInput|isAudioInput|hasAudioInput)\s*\(/, "audioInput")
-property_writer("QAudioRecorder", /::setAudioInput\s*\(/, "audioInput")
-property_reader("QAudioSystemPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QAudioSystemPlugin", /::setObjectName\s*\(/, "objectName")
property_reader("QBoxLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QBoxLayout", /::setObjectName\s*\(/, "objectName")
-property_reader("QBoxLayout", /::(margin|isMargin|hasMargin)\s*\(/, "margin")
-property_writer("QBoxLayout", /::setMargin\s*\(/, "margin")
property_reader("QBoxLayout", /::(spacing|isSpacing|hasSpacing)\s*\(/, "spacing")
property_writer("QBoxLayout", /::setSpacing\s*\(/, "spacing")
+property_reader("QBoxLayout", /::(contentsMargins|isContentsMargins|hasContentsMargins)\s*\(/, "contentsMargins")
+property_writer("QBoxLayout", /::setContentsMargins\s*\(/, "contentsMargins")
property_reader("QBoxLayout", /::(sizeConstraint|isSizeConstraint|hasSizeConstraint)\s*\(/, "sizeConstraint")
property_writer("QBoxLayout", /::setSizeConstraint\s*\(/, "sizeConstraint")
-property_reader("QBuffer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QBuffer", /::setObjectName\s*\(/, "objectName")
property_reader("QButtonGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QButtonGroup", /::setObjectName\s*\(/, "objectName")
property_reader("QButtonGroup", /::(exclusive|isExclusive|hasExclusive)\s*\(/, "exclusive")
@@ -997,6 +1378,8 @@ property_reader("QCalendarWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor
property_writer("QCalendarWidget", /::setCursor\s*\(/, "cursor")
property_reader("QCalendarWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QCalendarWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QCalendarWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QCalendarWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QCalendarWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QCalendarWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QCalendarWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -1070,73 +1453,6 @@ property_reader("QCalendarWidget", /::(dateEditEnabled|isDateEditEnabled|hasDate
property_writer("QCalendarWidget", /::setDateEditEnabled\s*\(/, "dateEditEnabled")
property_reader("QCalendarWidget", /::(dateEditAcceptDelay|isDateEditAcceptDelay|hasDateEditAcceptDelay)\s*\(/, "dateEditAcceptDelay")
property_writer("QCalendarWidget", /::setDateEditAcceptDelay\s*\(/, "dateEditAcceptDelay")
-property_reader("QCamera", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCamera", /::setObjectName\s*\(/, "objectName")
-property_reader("QCamera", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
-property_writer("QCamera", /::setNotifyInterval\s*\(/, "notifyInterval")
-property_reader("QCamera", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QCamera", /::(status|isStatus|hasStatus)\s*\(/, "status")
-property_reader("QCamera", /::(captureMode|isCaptureMode|hasCaptureMode)\s*\(/, "captureMode")
-property_writer("QCamera", /::setCaptureMode\s*\(/, "captureMode")
-property_reader("QCamera", /::(lockStatus|isLockStatus|hasLockStatus)\s*\(/, "lockStatus")
-property_reader("QCameraCaptureBufferFormatControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraCaptureBufferFormatControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraCaptureDestinationControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraCaptureDestinationControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraExposure", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraExposure", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraExposure", /::(aperture|isAperture|hasAperture)\s*\(/, "aperture")
-property_reader("QCameraExposure", /::(shutterSpeed|isShutterSpeed|hasShutterSpeed)\s*\(/, "shutterSpeed")
-property_reader("QCameraExposure", /::(isoSensitivity|isIsoSensitivity|hasIsoSensitivity)\s*\(/, "isoSensitivity")
-property_reader("QCameraExposure", /::(exposureCompensation|isExposureCompensation|hasExposureCompensation)\s*\(/, "exposureCompensation")
-property_writer("QCameraExposure", /::setExposureCompensation\s*\(/, "exposureCompensation")
-property_reader("QCameraExposure", /::(flashReady|isFlashReady|hasFlashReady)\s*\(/, "flashReady")
-property_reader("QCameraExposure", /::(flashMode|isFlashMode|hasFlashMode)\s*\(/, "flashMode")
-property_writer("QCameraExposure", /::setFlashMode\s*\(/, "flashMode")
-property_reader("QCameraExposure", /::(exposureMode|isExposureMode|hasExposureMode)\s*\(/, "exposureMode")
-property_writer("QCameraExposure", /::setExposureMode\s*\(/, "exposureMode")
-property_reader("QCameraExposure", /::(meteringMode|isMeteringMode|hasMeteringMode)\s*\(/, "meteringMode")
-property_writer("QCameraExposure", /::setMeteringMode\s*\(/, "meteringMode")
-property_reader("QCameraExposureControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraExposureControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraFeedbackControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraFeedbackControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraFlashControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraFlashControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraFocus", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraFocus", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraFocus", /::(focusMode|isFocusMode|hasFocusMode)\s*\(/, "focusMode")
-property_writer("QCameraFocus", /::setFocusMode\s*\(/, "focusMode")
-property_reader("QCameraFocus", /::(focusPointMode|isFocusPointMode|hasFocusPointMode)\s*\(/, "focusPointMode")
-property_writer("QCameraFocus", /::setFocusPointMode\s*\(/, "focusPointMode")
-property_reader("QCameraFocus", /::(customFocusPoint|isCustomFocusPoint|hasCustomFocusPoint)\s*\(/, "customFocusPoint")
-property_writer("QCameraFocus", /::setCustomFocusPoint\s*\(/, "customFocusPoint")
-property_reader("QCameraFocus", /::(focusZones|isFocusZones|hasFocusZones)\s*\(/, "focusZones")
-property_reader("QCameraFocus", /::(opticalZoom|isOpticalZoom|hasOpticalZoom)\s*\(/, "opticalZoom")
-property_reader("QCameraFocus", /::(digitalZoom|isDigitalZoom|hasDigitalZoom)\s*\(/, "digitalZoom")
-property_reader("QCameraFocusControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraFocusControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraImageCapture", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraImageCapture", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraImageCapture", /::(readyForCapture|isReadyForCapture|hasReadyForCapture)\s*\(/, "readyForCapture")
-property_reader("QCameraImageCaptureControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraImageCaptureControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraImageProcessing", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraImageProcessing", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraImageProcessingControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraImageProcessingControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraInfoControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraInfoControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraLocksControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraLocksControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraViewfinderSettingsControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraViewfinderSettingsControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraViewfinderSettingsControl2", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraViewfinderSettingsControl2", /::setObjectName\s*\(/, "objectName")
-property_reader("QCameraZoomControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCameraZoomControl", /::setObjectName\s*\(/, "objectName")
property_reader("QCheckBox", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QCheckBox", /::setObjectName\s*\(/, "objectName")
property_reader("QCheckBox", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -1186,6 +1502,8 @@ property_reader("QCheckBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QCheckBox", /::setCursor\s*\(/, "cursor")
property_reader("QCheckBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QCheckBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QCheckBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QCheckBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QCheckBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QCheckBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QCheckBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -1261,8 +1579,6 @@ property_reader("QCheckBox", /::(down|isDown|hasDown)\s*\(/, "down")
property_writer("QCheckBox", /::setDown\s*\(/, "down")
property_reader("QCheckBox", /::(tristate|isTristate|hasTristate)\s*\(/, "tristate")
property_writer("QCheckBox", /::setTristate\s*\(/, "tristate")
-property_reader("QClipboard", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QClipboard", /::setObjectName\s*\(/, "objectName")
property_reader("QColorDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QColorDialog", /::setObjectName\s*\(/, "objectName")
property_reader("QColorDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -1312,6 +1628,8 @@ property_reader("QColorDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QColorDialog", /::setCursor\s*\(/, "cursor")
property_reader("QColorDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QColorDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QColorDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QColorDialog", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QColorDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QColorDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QColorDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -1420,6 +1738,8 @@ property_reader("QColumnView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QColumnView", /::setCursor\s*\(/, "cursor")
property_reader("QColumnView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QColumnView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QColumnView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QColumnView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QColumnView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QColumnView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QColumnView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -1571,6 +1891,8 @@ property_reader("QComboBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QComboBox", /::setCursor\s*\(/, "cursor")
property_reader("QComboBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QComboBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QComboBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QComboBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QComboBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QComboBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QComboBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -1642,10 +1964,8 @@ property_reader("QComboBox", /::(minimumContentsLength|isMinimumContentsLength|h
property_writer("QComboBox", /::setMinimumContentsLength\s*\(/, "minimumContentsLength")
property_reader("QComboBox", /::(iconSize|isIconSize|hasIconSize)\s*\(/, "iconSize")
property_writer("QComboBox", /::setIconSize\s*\(/, "iconSize")
-property_reader("QComboBox", /::(autoCompletion|isAutoCompletion|hasAutoCompletion)\s*\(/, "autoCompletion")
-property_writer("QComboBox", /::setAutoCompletion\s*\(/, "autoCompletion")
-property_reader("QComboBox", /::(autoCompletionCaseSensitivity|isAutoCompletionCaseSensitivity|hasAutoCompletionCaseSensitivity)\s*\(/, "autoCompletionCaseSensitivity")
-property_writer("QComboBox", /::setAutoCompletionCaseSensitivity\s*\(/, "autoCompletionCaseSensitivity")
+property_reader("QComboBox", /::(placeholderText|isPlaceholderText|hasPlaceholderText)\s*\(/, "placeholderText")
+property_writer("QComboBox", /::setPlaceholderText\s*\(/, "placeholderText")
property_reader("QComboBox", /::(duplicatesEnabled|isDuplicatesEnabled|hasDuplicatesEnabled)\s*\(/, "duplicatesEnabled")
property_writer("QComboBox", /::setDuplicatesEnabled\s*\(/, "duplicatesEnabled")
property_reader("QComboBox", /::(frame|isFrame|hasFrame)\s*\(/, "frame")
@@ -1701,6 +2021,8 @@ property_reader("QCommandLinkButton", /::(cursor|isCursor|hasCursor)\s*\(/, "cur
property_writer("QCommandLinkButton", /::setCursor\s*\(/, "cursor")
property_reader("QCommandLinkButton", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QCommandLinkButton", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QCommandLinkButton", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QCommandLinkButton", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QCommandLinkButton", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QCommandLinkButton", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QCommandLinkButton", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -1806,18 +2128,6 @@ property_reader("QCompleter", /::(caseSensitivity|isCaseSensitivity|hasCaseSensi
property_writer("QCompleter", /::setCaseSensitivity\s*\(/, "caseSensitivity")
property_reader("QCompleter", /::(wrapAround|isWrapAround|hasWrapAround)\s*\(/, "wrapAround")
property_writer("QCompleter", /::setWrapAround\s*\(/, "wrapAround")
-property_reader("QCoreApplication", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QCoreApplication", /::setObjectName\s*\(/, "objectName")
-property_reader("QCoreApplication", /::(applicationName|isApplicationName|hasApplicationName)\s*\(/, "applicationName")
-property_writer("QCoreApplication", /::setApplicationName\s*\(/, "applicationName")
-property_reader("QCoreApplication", /::(applicationVersion|isApplicationVersion|hasApplicationVersion)\s*\(/, "applicationVersion")
-property_writer("QCoreApplication", /::setApplicationVersion\s*\(/, "applicationVersion")
-property_reader("QCoreApplication", /::(organizationName|isOrganizationName|hasOrganizationName)\s*\(/, "organizationName")
-property_writer("QCoreApplication", /::setOrganizationName\s*\(/, "organizationName")
-property_reader("QCoreApplication", /::(organizationDomain|isOrganizationDomain|hasOrganizationDomain)\s*\(/, "organizationDomain")
-property_writer("QCoreApplication", /::setOrganizationDomain\s*\(/, "organizationDomain")
-property_reader("QCoreApplication", /::(quitLockEnabled|isQuitLockEnabled|hasQuitLockEnabled)\s*\(/, "quitLockEnabled")
-property_writer("QCoreApplication", /::setQuitLockEnabled\s*\(/, "quitLockEnabled")
property_reader("QDataWidgetMapper", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QDataWidgetMapper", /::setObjectName\s*\(/, "objectName")
property_reader("QDataWidgetMapper", /::(currentIndex|isCurrentIndex|hasCurrentIndex)\s*\(/, "currentIndex")
@@ -1875,6 +2185,8 @@ property_reader("QDateEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QDateEdit", /::setCursor\s*\(/, "cursor")
property_reader("QDateEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDateEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDateEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDateEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDateEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDateEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDateEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2029,6 +2341,8 @@ property_reader("QDateTimeEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QDateTimeEdit", /::setCursor\s*\(/, "cursor")
property_reader("QDateTimeEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDateTimeEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDateTimeEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDateTimeEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDateTimeEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDateTimeEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDateTimeEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2132,109 +2446,6 @@ property_writer("QDateTimeEdit", /::setCurrentSectionIndex\s*\(/, "currentSectio
property_reader("QDateTimeEdit", /::(sectionCount|isSectionCount|hasSectionCount)\s*\(/, "sectionCount")
property_reader("QDateTimeEdit", /::(timeSpec|isTimeSpec|hasTimeSpec)\s*\(/, "timeSpec")
property_writer("QDateTimeEdit", /::setTimeSpec\s*\(/, "timeSpec")
-property_reader("QDesktopWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QDesktopWidget", /::setObjectName\s*\(/, "objectName")
-property_reader("QDesktopWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_reader("QDesktopWidget", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
-property_writer("QDesktopWidget", /::setWindowModality\s*\(/, "windowModality")
-property_reader("QDesktopWidget", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QDesktopWidget", /::setEnabled\s*\(/, "enabled")
-property_reader("QDesktopWidget", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_writer("QDesktopWidget", /::setGeometry\s*\(/, "geometry")
-property_reader("QDesktopWidget", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
-property_reader("QDesktopWidget", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
-property_reader("QDesktopWidget", /::(x|isX|hasX)\s*\(/, "x")
-property_reader("QDesktopWidget", /::(y|isY|hasY)\s*\(/, "y")
-property_reader("QDesktopWidget", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QDesktopWidget", /::setPos\s*\(/, "pos")
-property_reader("QDesktopWidget", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
-property_reader("QDesktopWidget", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QDesktopWidget", /::setSize\s*\(/, "size")
-property_reader("QDesktopWidget", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_reader("QDesktopWidget", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_reader("QDesktopWidget", /::(rect|isRect|hasRect)\s*\(/, "rect")
-property_reader("QDesktopWidget", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
-property_reader("QDesktopWidget", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
-property_reader("QDesktopWidget", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
-property_writer("QDesktopWidget", /::setSizePolicy\s*\(/, "sizePolicy")
-property_reader("QDesktopWidget", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
-property_writer("QDesktopWidget", /::setMinimumSize\s*\(/, "minimumSize")
-property_reader("QDesktopWidget", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
-property_writer("QDesktopWidget", /::setMaximumSize\s*\(/, "maximumSize")
-property_reader("QDesktopWidget", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QDesktopWidget", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QDesktopWidget", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QDesktopWidget", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QDesktopWidget", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QDesktopWidget", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QDesktopWidget", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QDesktopWidget", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QDesktopWidget", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
-property_writer("QDesktopWidget", /::setSizeIncrement\s*\(/, "sizeIncrement")
-property_reader("QDesktopWidget", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
-property_writer("QDesktopWidget", /::setBaseSize\s*\(/, "baseSize")
-property_reader("QDesktopWidget", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
-property_writer("QDesktopWidget", /::setPalette\s*\(/, "palette")
-property_reader("QDesktopWidget", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QDesktopWidget", /::setFont\s*\(/, "font")
-property_reader("QDesktopWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
-property_writer("QDesktopWidget", /::setCursor\s*\(/, "cursor")
-property_reader("QDesktopWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
-property_writer("QDesktopWidget", /::setMouseTracking\s*\(/, "mouseTracking")
-property_reader("QDesktopWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
-property_reader("QDesktopWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
-property_writer("QDesktopWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
-property_reader("QDesktopWidget", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
-property_reader("QDesktopWidget", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
-property_writer("QDesktopWidget", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
-property_reader("QDesktopWidget", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
-property_writer("QDesktopWidget", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
-property_reader("QDesktopWidget", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QDesktopWidget", /::setVisible\s*\(/, "visible")
-property_reader("QDesktopWidget", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
-property_reader("QDesktopWidget", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
-property_reader("QDesktopWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_reader("QDesktopWidget", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
-property_reader("QDesktopWidget", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
-property_reader("QDesktopWidget", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
-property_writer("QDesktopWidget", /::setAcceptDrops\s*\(/, "acceptDrops")
-property_reader("QDesktopWidget", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
-property_writer("QDesktopWidget", /::setWindowTitle\s*\(/, "windowTitle")
-property_reader("QDesktopWidget", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QDesktopWidget", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QDesktopWidget", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
-property_writer("QDesktopWidget", /::setWindowIconText\s*\(/, "windowIconText")
-property_reader("QDesktopWidget", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
-property_writer("QDesktopWidget", /::setWindowOpacity\s*\(/, "windowOpacity")
-property_reader("QDesktopWidget", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
-property_writer("QDesktopWidget", /::setWindowModified\s*\(/, "windowModified")
-property_reader("QDesktopWidget", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QDesktopWidget", /::setToolTip\s*\(/, "toolTip")
-property_reader("QDesktopWidget", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
-property_writer("QDesktopWidget", /::setToolTipDuration\s*\(/, "toolTipDuration")
-property_reader("QDesktopWidget", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QDesktopWidget", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QDesktopWidget", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QDesktopWidget", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QDesktopWidget", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
-property_writer("QDesktopWidget", /::setAccessibleName\s*\(/, "accessibleName")
-property_reader("QDesktopWidget", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
-property_writer("QDesktopWidget", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-property_reader("QDesktopWidget", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QDesktopWidget", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QDesktopWidget", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
-property_writer("QDesktopWidget", /::setAutoFillBackground\s*\(/, "autoFillBackground")
-property_reader("QDesktopWidget", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
-property_writer("QDesktopWidget", /::setStyleSheet\s*\(/, "styleSheet")
-property_reader("QDesktopWidget", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_writer("QDesktopWidget", /::setLocale\s*\(/, "locale")
-property_reader("QDesktopWidget", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
-property_writer("QDesktopWidget", /::setWindowFilePath\s*\(/, "windowFilePath")
-property_reader("QDesktopWidget", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
-property_writer("QDesktopWidget", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QDesktopWidget", /::(virtualDesktop|isVirtualDesktop|hasVirtualDesktop)\s*\(/, "virtualDesktop")
-property_reader("QDesktopWidget", /::(screenCount|isScreenCount|hasScreenCount)\s*\(/, "screenCount")
-property_reader("QDesktopWidget", /::(primaryScreen|isPrimaryScreen|hasPrimaryScreen)\s*\(/, "primaryScreen")
property_reader("QDial", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QDial", /::setObjectName\s*\(/, "objectName")
property_reader("QDial", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -2284,6 +2495,8 @@ property_reader("QDial", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QDial", /::setCursor\s*\(/, "cursor")
property_reader("QDial", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDial", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDial", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDial", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDial", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDial", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDial", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2413,6 +2626,8 @@ property_reader("QDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QDialog", /::setCursor\s*\(/, "cursor")
property_reader("QDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDialog", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2517,6 +2732,8 @@ property_reader("QDialogButtonBox", /::(cursor|isCursor|hasCursor)\s*\(/, "curso
property_writer("QDialogButtonBox", /::setCursor\s*\(/, "cursor")
property_reader("QDialogButtonBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDialogButtonBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDialogButtonBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDialogButtonBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDialogButtonBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDialogButtonBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDialogButtonBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2574,24 +2791,6 @@ property_reader("QDialogButtonBox", /::(standardButtons|isStandardButtons|hasSta
property_writer("QDialogButtonBox", /::setStandardButtons\s*\(/, "standardButtons")
property_reader("QDialogButtonBox", /::(centerButtons|isCenterButtons|hasCenterButtons)\s*\(/, "centerButtons")
property_writer("QDialogButtonBox", /::setCenterButtons\s*\(/, "centerButtons")
-property_reader("QDirModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QDirModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QDirModel", /::(resolveSymlinks|isResolveSymlinks|hasResolveSymlinks)\s*\(/, "resolveSymlinks")
-property_writer("QDirModel", /::setResolveSymlinks\s*\(/, "resolveSymlinks")
-property_reader("QDirModel", /::(readOnly|isReadOnly|hasReadOnly)\s*\(/, "readOnly")
-property_writer("QDirModel", /::setReadOnly\s*\(/, "readOnly")
-property_reader("QDirModel", /::(lazyChildCount|isLazyChildCount|hasLazyChildCount)\s*\(/, "lazyChildCount")
-property_writer("QDirModel", /::setLazyChildCount\s*\(/, "lazyChildCount")
-property_reader("QDnsLookup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QDnsLookup", /::setObjectName\s*\(/, "objectName")
-property_reader("QDnsLookup", /::(error|isError|hasError)\s*\(/, "error")
-property_reader("QDnsLookup", /::(errorString|isErrorString|hasErrorString)\s*\(/, "errorString")
-property_reader("QDnsLookup", /::(name|isName|hasName)\s*\(/, "name")
-property_writer("QDnsLookup", /::setName\s*\(/, "name")
-property_reader("QDnsLookup", /::(type|isType|hasType)\s*\(/, "type")
-property_writer("QDnsLookup", /::setType\s*\(/, "type")
-property_reader("QDnsLookup", /::(nameserver|isNameserver|hasNameserver)\s*\(/, "nameserver")
-property_writer("QDnsLookup", /::setNameserver\s*\(/, "nameserver")
property_reader("QDockWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QDockWidget", /::setObjectName\s*\(/, "objectName")
property_reader("QDockWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -2641,6 +2840,8 @@ property_reader("QDockWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QDockWidget", /::setCursor\s*\(/, "cursor")
property_reader("QDockWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDockWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDockWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDockWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDockWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDockWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDockWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2749,6 +2950,8 @@ property_reader("QDoubleSpinBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor"
property_writer("QDoubleSpinBox", /::setCursor\s*\(/, "cursor")
property_reader("QDoubleSpinBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QDoubleSpinBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QDoubleSpinBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QDoubleSpinBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QDoubleSpinBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QDoubleSpinBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QDoubleSpinBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2835,20 +3038,10 @@ property_reader("QDoubleSpinBox", /::(maximum|isMaximum|hasMaximum)\s*\(/, "maxi
property_writer("QDoubleSpinBox", /::setMaximum\s*\(/, "maximum")
property_reader("QDoubleSpinBox", /::(singleStep|isSingleStep|hasSingleStep)\s*\(/, "singleStep")
property_writer("QDoubleSpinBox", /::setSingleStep\s*\(/, "singleStep")
+property_reader("QDoubleSpinBox", /::(stepType|isStepType|hasStepType)\s*\(/, "stepType")
+property_writer("QDoubleSpinBox", /::setStepType\s*\(/, "stepType")
property_reader("QDoubleSpinBox", /::(value|isValue|hasValue)\s*\(/, "value")
property_writer("QDoubleSpinBox", /::setValue\s*\(/, "value")
-property_reader("QDoubleValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QDoubleValidator", /::setObjectName\s*\(/, "objectName")
-property_reader("QDoubleValidator", /::(bottom|isBottom|hasBottom)\s*\(/, "bottom")
-property_writer("QDoubleValidator", /::setBottom\s*\(/, "bottom")
-property_reader("QDoubleValidator", /::(top|isTop|hasTop)\s*\(/, "top")
-property_writer("QDoubleValidator", /::setTop\s*\(/, "top")
-property_reader("QDoubleValidator", /::(decimals|isDecimals|hasDecimals)\s*\(/, "decimals")
-property_writer("QDoubleValidator", /::setDecimals\s*\(/, "decimals")
-property_reader("QDoubleValidator", /::(notation|isNotation|hasNotation)\s*\(/, "notation")
-property_writer("QDoubleValidator", /::setNotation\s*\(/, "notation")
-property_reader("QDrag", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QDrag", /::setObjectName\s*\(/, "objectName")
property_reader("QErrorMessage", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QErrorMessage", /::setObjectName\s*\(/, "objectName")
property_reader("QErrorMessage", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -2898,6 +3091,8 @@ property_reader("QErrorMessage", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QErrorMessage", /::setCursor\s*\(/, "cursor")
property_reader("QErrorMessage", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QErrorMessage", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QErrorMessage", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QErrorMessage", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QErrorMessage", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QErrorMessage", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QErrorMessage", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -2953,25 +3148,6 @@ property_reader("QErrorMessage", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGr
property_writer("QErrorMessage", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
property_reader("QErrorMessage", /::(modal|isModal|hasModal)\s*\(/, "modal")
property_writer("QErrorMessage", /::setModal\s*\(/, "modal")
-property_reader("QEventLoop", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QEventLoop", /::setObjectName\s*\(/, "objectName")
-property_reader("QEventTransition", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QEventTransition", /::setObjectName\s*\(/, "objectName")
-property_reader("QEventTransition", /::(sourceState|isSourceState|hasSourceState)\s*\(/, "sourceState")
-property_reader("QEventTransition", /::(targetState|isTargetState|hasTargetState)\s*\(/, "targetState")
-property_writer("QEventTransition", /::setTargetState\s*\(/, "targetState")
-property_reader("QEventTransition", /::(targetStates|isTargetStates|hasTargetStates)\s*\(/, "targetStates")
-property_writer("QEventTransition", /::setTargetStates\s*\(/, "targetStates")
-property_reader("QEventTransition", /::(transitionType|isTransitionType|hasTransitionType)\s*\(/, "transitionType")
-property_writer("QEventTransition", /::setTransitionType\s*\(/, "transitionType")
-property_reader("QEventTransition", /::(eventSource|isEventSource|hasEventSource)\s*\(/, "eventSource")
-property_writer("QEventTransition", /::setEventSource\s*\(/, "eventSource")
-property_reader("QEventTransition", /::(eventType|isEventType|hasEventType)\s*\(/, "eventType")
-property_writer("QEventTransition", /::setEventType\s*\(/, "eventType")
-property_reader("QFile", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QFile", /::setObjectName\s*\(/, "objectName")
-property_reader("QFileDevice", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QFileDevice", /::setObjectName\s*\(/, "objectName")
property_reader("QFileDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QFileDialog", /::setObjectName\s*\(/, "objectName")
property_reader("QFileDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -3021,6 +3197,8 @@ property_reader("QFileDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QFileDialog", /::setCursor\s*\(/, "cursor")
property_reader("QFileDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QFileDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QFileDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QFileDialog", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QFileDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QFileDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QFileDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -3082,33 +3260,12 @@ property_reader("QFileDialog", /::(fileMode|isFileMode|hasFileMode)\s*\(/, "file
property_writer("QFileDialog", /::setFileMode\s*\(/, "fileMode")
property_reader("QFileDialog", /::(acceptMode|isAcceptMode|hasAcceptMode)\s*\(/, "acceptMode")
property_writer("QFileDialog", /::setAcceptMode\s*\(/, "acceptMode")
-property_reader("QFileDialog", /::(readOnly|isReadOnly|hasReadOnly)\s*\(/, "readOnly")
-property_writer("QFileDialog", /::setReadOnly\s*\(/, "readOnly")
-property_reader("QFileDialog", /::(resolveSymlinks|isResolveSymlinks|hasResolveSymlinks)\s*\(/, "resolveSymlinks")
-property_writer("QFileDialog", /::setResolveSymlinks\s*\(/, "resolveSymlinks")
-property_reader("QFileDialog", /::(confirmOverwrite|isConfirmOverwrite|hasConfirmOverwrite)\s*\(/, "confirmOverwrite")
-property_writer("QFileDialog", /::setConfirmOverwrite\s*\(/, "confirmOverwrite")
property_reader("QFileDialog", /::(defaultSuffix|isDefaultSuffix|hasDefaultSuffix)\s*\(/, "defaultSuffix")
property_writer("QFileDialog", /::setDefaultSuffix\s*\(/, "defaultSuffix")
-property_reader("QFileDialog", /::(nameFilterDetailsVisible|isNameFilterDetailsVisible|hasNameFilterDetailsVisible)\s*\(/, "nameFilterDetailsVisible")
-property_writer("QFileDialog", /::setNameFilterDetailsVisible\s*\(/, "nameFilterDetailsVisible")
property_reader("QFileDialog", /::(options|isOptions|hasOptions)\s*\(/, "options")
property_writer("QFileDialog", /::setOptions\s*\(/, "options")
-property_reader("QFileSelector", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QFileSelector", /::setObjectName\s*\(/, "objectName")
-property_reader("QFileSystemModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QFileSystemModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QFileSystemModel", /::(resolveSymlinks|isResolveSymlinks|hasResolveSymlinks)\s*\(/, "resolveSymlinks")
-property_writer("QFileSystemModel", /::setResolveSymlinks\s*\(/, "resolveSymlinks")
-property_reader("QFileSystemModel", /::(readOnly|isReadOnly|hasReadOnly)\s*\(/, "readOnly")
-property_writer("QFileSystemModel", /::setReadOnly\s*\(/, "readOnly")
-property_reader("QFileSystemModel", /::(nameFilterDisables|isNameFilterDisables|hasNameFilterDisables)\s*\(/, "nameFilterDisables")
-property_writer("QFileSystemModel", /::setNameFilterDisables\s*\(/, "nameFilterDisables")
-property_reader("QFileSystemWatcher", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QFileSystemWatcher", /::setObjectName\s*\(/, "objectName")
-property_reader("QFinalState", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QFinalState", /::setObjectName\s*\(/, "objectName")
-property_reader("QFinalState", /::(active|isActive|hasActive)\s*\(/, "active")
+property_reader("QFileDialog", /::(supportedSchemes|isSupportedSchemes|hasSupportedSchemes)\s*\(/, "supportedSchemes")
+property_writer("QFileDialog", /::setSupportedSchemes\s*\(/, "supportedSchemes")
property_reader("QFocusFrame", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QFocusFrame", /::setObjectName\s*\(/, "objectName")
property_reader("QFocusFrame", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -3158,6 +3315,8 @@ property_reader("QFocusFrame", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QFocusFrame", /::setCursor\s*\(/, "cursor")
property_reader("QFocusFrame", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QFocusFrame", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QFocusFrame", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QFocusFrame", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QFocusFrame", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QFocusFrame", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QFocusFrame", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -3258,6 +3417,8 @@ property_reader("QFontComboBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QFontComboBox", /::setCursor\s*\(/, "cursor")
property_reader("QFontComboBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QFontComboBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QFontComboBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QFontComboBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QFontComboBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QFontComboBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QFontComboBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -3329,10 +3490,8 @@ property_reader("QFontComboBox", /::(minimumContentsLength|isMinimumContentsLeng
property_writer("QFontComboBox", /::setMinimumContentsLength\s*\(/, "minimumContentsLength")
property_reader("QFontComboBox", /::(iconSize|isIconSize|hasIconSize)\s*\(/, "iconSize")
property_writer("QFontComboBox", /::setIconSize\s*\(/, "iconSize")
-property_reader("QFontComboBox", /::(autoCompletion|isAutoCompletion|hasAutoCompletion)\s*\(/, "autoCompletion")
-property_writer("QFontComboBox", /::setAutoCompletion\s*\(/, "autoCompletion")
-property_reader("QFontComboBox", /::(autoCompletionCaseSensitivity|isAutoCompletionCaseSensitivity|hasAutoCompletionCaseSensitivity)\s*\(/, "autoCompletionCaseSensitivity")
-property_writer("QFontComboBox", /::setAutoCompletionCaseSensitivity\s*\(/, "autoCompletionCaseSensitivity")
+property_reader("QFontComboBox", /::(placeholderText|isPlaceholderText|hasPlaceholderText)\s*\(/, "placeholderText")
+property_writer("QFontComboBox", /::setPlaceholderText\s*\(/, "placeholderText")
property_reader("QFontComboBox", /::(duplicatesEnabled|isDuplicatesEnabled|hasDuplicatesEnabled)\s*\(/, "duplicatesEnabled")
property_writer("QFontComboBox", /::setDuplicatesEnabled\s*\(/, "duplicatesEnabled")
property_reader("QFontComboBox", /::(frame|isFrame|hasFrame)\s*\(/, "frame")
@@ -3394,6 +3553,8 @@ property_reader("QFontDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QFontDialog", /::setCursor\s*\(/, "cursor")
property_reader("QFontDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QFontDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QFontDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QFontDialog", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QFontDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QFontDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QFontDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -3455,10 +3616,10 @@ property_reader("QFontDialog", /::(options|isOptions|hasOptions)\s*\(/, "options
property_writer("QFontDialog", /::setOptions\s*\(/, "options")
property_reader("QFormLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QFormLayout", /::setObjectName\s*\(/, "objectName")
-property_reader("QFormLayout", /::(margin|isMargin|hasMargin)\s*\(/, "margin")
-property_writer("QFormLayout", /::setMargin\s*\(/, "margin")
property_reader("QFormLayout", /::(spacing|isSpacing|hasSpacing)\s*\(/, "spacing")
property_writer("QFormLayout", /::setSpacing\s*\(/, "spacing")
+property_reader("QFormLayout", /::(contentsMargins|isContentsMargins|hasContentsMargins)\s*\(/, "contentsMargins")
+property_writer("QFormLayout", /::setContentsMargins\s*\(/, "contentsMargins")
property_reader("QFormLayout", /::(sizeConstraint|isSizeConstraint|hasSizeConstraint)\s*\(/, "sizeConstraint")
property_writer("QFormLayout", /::setSizeConstraint\s*\(/, "sizeConstraint")
property_reader("QFormLayout", /::(fieldGrowthPolicy|isFieldGrowthPolicy|hasFieldGrowthPolicy)\s*\(/, "fieldGrowthPolicy")
@@ -3522,6 +3683,8 @@ property_reader("QFrame", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QFrame", /::setCursor\s*\(/, "cursor")
property_reader("QFrame", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QFrame", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QFrame", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QFrame", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QFrame", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QFrame", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QFrame", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -3584,8 +3747,6 @@ property_writer("QFrame", /::setMidLineWidth\s*\(/, "midLineWidth")
property_reader("QFrame", /::(frameWidth|isFrameWidth|hasFrameWidth)\s*\(/, "frameWidth")
property_reader("QFrame", /::(frameRect|isFrameRect|hasFrameRect)\s*\(/, "frameRect")
property_writer("QFrame", /::setFrameRect\s*\(/, "frameRect")
-property_reader("QGenericPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QGenericPlugin", /::setObjectName\s*\(/, "objectName")
property_reader("QGesture", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QGesture", /::setObjectName\s*\(/, "objectName")
property_reader("QGesture", /::(state|isState|hasState)\s*\(/, "state")
@@ -3769,47 +3930,12 @@ property_reader("QGraphicsScene", /::(palette|isPalette|hasPalette)\s*\(/, "pale
property_writer("QGraphicsScene", /::setPalette\s*\(/, "palette")
property_reader("QGraphicsScene", /::(font|isFont|hasFont)\s*\(/, "font")
property_writer("QGraphicsScene", /::setFont\s*\(/, "font")
-property_reader("QGraphicsScene", /::(sortCacheEnabled|isSortCacheEnabled|hasSortCacheEnabled)\s*\(/, "sortCacheEnabled")
-property_writer("QGraphicsScene", /::setSortCacheEnabled\s*\(/, "sortCacheEnabled")
property_reader("QGraphicsScene", /::(stickyFocus|isStickyFocus|hasStickyFocus)\s*\(/, "stickyFocus")
property_writer("QGraphicsScene", /::setStickyFocus\s*\(/, "stickyFocus")
property_reader("QGraphicsScene", /::(minimumRenderSize|isMinimumRenderSize|hasMinimumRenderSize)\s*\(/, "minimumRenderSize")
property_writer("QGraphicsScene", /::setMinimumRenderSize\s*\(/, "minimumRenderSize")
-property_reader("QGraphicsSvgItem", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QGraphicsSvgItem", /::setObjectName\s*\(/, "objectName")
-property_reader("QGraphicsSvgItem", /::(parent|isParent|hasParent)\s*\(/, "parent")
-property_writer("QGraphicsSvgItem", /::setParent\s*\(/, "parent")
-property_reader("QGraphicsSvgItem", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
-property_writer("QGraphicsSvgItem", /::setOpacity\s*\(/, "opacity")
-property_reader("QGraphicsSvgItem", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QGraphicsSvgItem", /::setEnabled\s*\(/, "enabled")
-property_reader("QGraphicsSvgItem", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QGraphicsSvgItem", /::setVisible\s*\(/, "visible")
-property_reader("QGraphicsSvgItem", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QGraphicsSvgItem", /::setPos\s*\(/, "pos")
-property_reader("QGraphicsSvgItem", /::(x|isX|hasX)\s*\(/, "x")
-property_writer("QGraphicsSvgItem", /::setX\s*\(/, "x")
-property_reader("QGraphicsSvgItem", /::(y|isY|hasY)\s*\(/, "y")
-property_writer("QGraphicsSvgItem", /::setY\s*\(/, "y")
-property_reader("QGraphicsSvgItem", /::(z|isZ|hasZ)\s*\(/, "z")
-property_writer("QGraphicsSvgItem", /::setZ\s*\(/, "z")
-property_reader("QGraphicsSvgItem", /::(rotation|isRotation|hasRotation)\s*\(/, "rotation")
-property_writer("QGraphicsSvgItem", /::setRotation\s*\(/, "rotation")
-property_reader("QGraphicsSvgItem", /::(scale|isScale|hasScale)\s*\(/, "scale")
-property_writer("QGraphicsSvgItem", /::setScale\s*\(/, "scale")
-property_reader("QGraphicsSvgItem", /::(transformOriginPoint|isTransformOriginPoint|hasTransformOriginPoint)\s*\(/, "transformOriginPoint")
-property_writer("QGraphicsSvgItem", /::setTransformOriginPoint\s*\(/, "transformOriginPoint")
-property_reader("QGraphicsSvgItem", /::(effect|isEffect|hasEffect)\s*\(/, "effect")
-property_writer("QGraphicsSvgItem", /::setEffect\s*\(/, "effect")
-property_reader("QGraphicsSvgItem", /::(children|isChildren|hasChildren)\s*\(/, "children")
-property_reader("QGraphicsSvgItem", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_writer("QGraphicsSvgItem", /::setWidth\s*\(/, "width")
-property_reader("QGraphicsSvgItem", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_writer("QGraphicsSvgItem", /::setHeight\s*\(/, "height")
-property_reader("QGraphicsSvgItem", /::(elementId|isElementId|hasElementId)\s*\(/, "elementId")
-property_writer("QGraphicsSvgItem", /::setElementId\s*\(/, "elementId")
-property_reader("QGraphicsSvgItem", /::(maximumCacheSize|isMaximumCacheSize|hasMaximumCacheSize)\s*\(/, "maximumCacheSize")
-property_writer("QGraphicsSvgItem", /::setMaximumCacheSize\s*\(/, "maximumCacheSize")
+property_reader("QGraphicsScene", /::(focusOnTouch|isFocusOnTouch|hasFocusOnTouch)\s*\(/, "focusOnTouch")
+property_writer("QGraphicsScene", /::setFocusOnTouch\s*\(/, "focusOnTouch")
property_reader("QGraphicsTextItem", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QGraphicsTextItem", /::setObjectName\s*\(/, "objectName")
property_reader("QGraphicsTextItem", /::(parent|isParent|hasParent)\s*\(/, "parent")
@@ -3843,46 +3969,6 @@ property_reader("QGraphicsTextItem", /::(height|isHeight|hasHeight)\s*\(/, "heig
property_writer("QGraphicsTextItem", /::setHeight\s*\(/, "height")
property_reader("QGraphicsTransform", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QGraphicsTransform", /::setObjectName\s*\(/, "objectName")
-property_reader("QGraphicsVideoItem", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QGraphicsVideoItem", /::setObjectName\s*\(/, "objectName")
-property_reader("QGraphicsVideoItem", /::(parent|isParent|hasParent)\s*\(/, "parent")
-property_writer("QGraphicsVideoItem", /::setParent\s*\(/, "parent")
-property_reader("QGraphicsVideoItem", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
-property_writer("QGraphicsVideoItem", /::setOpacity\s*\(/, "opacity")
-property_reader("QGraphicsVideoItem", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QGraphicsVideoItem", /::setEnabled\s*\(/, "enabled")
-property_reader("QGraphicsVideoItem", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QGraphicsVideoItem", /::setVisible\s*\(/, "visible")
-property_reader("QGraphicsVideoItem", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QGraphicsVideoItem", /::setPos\s*\(/, "pos")
-property_reader("QGraphicsVideoItem", /::(x|isX|hasX)\s*\(/, "x")
-property_writer("QGraphicsVideoItem", /::setX\s*\(/, "x")
-property_reader("QGraphicsVideoItem", /::(y|isY|hasY)\s*\(/, "y")
-property_writer("QGraphicsVideoItem", /::setY\s*\(/, "y")
-property_reader("QGraphicsVideoItem", /::(z|isZ|hasZ)\s*\(/, "z")
-property_writer("QGraphicsVideoItem", /::setZ\s*\(/, "z")
-property_reader("QGraphicsVideoItem", /::(rotation|isRotation|hasRotation)\s*\(/, "rotation")
-property_writer("QGraphicsVideoItem", /::setRotation\s*\(/, "rotation")
-property_reader("QGraphicsVideoItem", /::(scale|isScale|hasScale)\s*\(/, "scale")
-property_writer("QGraphicsVideoItem", /::setScale\s*\(/, "scale")
-property_reader("QGraphicsVideoItem", /::(transformOriginPoint|isTransformOriginPoint|hasTransformOriginPoint)\s*\(/, "transformOriginPoint")
-property_writer("QGraphicsVideoItem", /::setTransformOriginPoint\s*\(/, "transformOriginPoint")
-property_reader("QGraphicsVideoItem", /::(effect|isEffect|hasEffect)\s*\(/, "effect")
-property_writer("QGraphicsVideoItem", /::setEffect\s*\(/, "effect")
-property_reader("QGraphicsVideoItem", /::(children|isChildren|hasChildren)\s*\(/, "children")
-property_reader("QGraphicsVideoItem", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_writer("QGraphicsVideoItem", /::setWidth\s*\(/, "width")
-property_reader("QGraphicsVideoItem", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_writer("QGraphicsVideoItem", /::setHeight\s*\(/, "height")
-property_reader("QGraphicsVideoItem", /::(mediaObject|isMediaObject|hasMediaObject)\s*\(/, "mediaObject")
-property_writer("QGraphicsVideoItem", /::setMediaObject\s*\(/, "mediaObject")
-property_reader("QGraphicsVideoItem", /::(aspectRatioMode|isAspectRatioMode|hasAspectRatioMode)\s*\(/, "aspectRatioMode")
-property_writer("QGraphicsVideoItem", /::setAspectRatioMode\s*\(/, "aspectRatioMode")
-property_reader("QGraphicsVideoItem", /::(offset|isOffset|hasOffset)\s*\(/, "offset")
-property_writer("QGraphicsVideoItem", /::setOffset\s*\(/, "offset")
-property_reader("QGraphicsVideoItem", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QGraphicsVideoItem", /::setSize\s*\(/, "size")
-property_reader("QGraphicsVideoItem", /::(nativeSize|isNativeSize|hasNativeSize)\s*\(/, "nativeSize")
property_reader("QGraphicsView", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QGraphicsView", /::setObjectName\s*\(/, "objectName")
property_reader("QGraphicsView", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -3932,6 +4018,8 @@ property_reader("QGraphicsView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QGraphicsView", /::setCursor\s*\(/, "cursor")
property_reader("QGraphicsView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QGraphicsView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QGraphicsView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QGraphicsView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QGraphicsView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QGraphicsView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QGraphicsView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4087,10 +4175,10 @@ property_reader("QGraphicsWidget", /::(layout|isLayout|hasLayout)\s*\(/, "layout
property_writer("QGraphicsWidget", /::setLayout\s*\(/, "layout")
property_reader("QGridLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QGridLayout", /::setObjectName\s*\(/, "objectName")
-property_reader("QGridLayout", /::(margin|isMargin|hasMargin)\s*\(/, "margin")
-property_writer("QGridLayout", /::setMargin\s*\(/, "margin")
property_reader("QGridLayout", /::(spacing|isSpacing|hasSpacing)\s*\(/, "spacing")
property_writer("QGridLayout", /::setSpacing\s*\(/, "spacing")
+property_reader("QGridLayout", /::(contentsMargins|isContentsMargins|hasContentsMargins)\s*\(/, "contentsMargins")
+property_writer("QGridLayout", /::setContentsMargins\s*\(/, "contentsMargins")
property_reader("QGridLayout", /::(sizeConstraint|isSizeConstraint|hasSizeConstraint)\s*\(/, "sizeConstraint")
property_writer("QGridLayout", /::setSizeConstraint\s*\(/, "sizeConstraint")
property_reader("QGroupBox", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
@@ -4142,6 +4230,8 @@ property_reader("QGroupBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QGroupBox", /::setCursor\s*\(/, "cursor")
property_reader("QGroupBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QGroupBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QGroupBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QGroupBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QGroupBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QGroupBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QGroupBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4203,33 +4293,12 @@ property_reader("QGroupBox", /::(checkable|isCheckable|hasCheckable)\s*\(/, "che
property_writer("QGroupBox", /::setCheckable\s*\(/, "checkable")
property_reader("QGroupBox", /::(checked|isChecked|hasChecked)\s*\(/, "checked")
property_writer("QGroupBox", /::setChecked\s*\(/, "checked")
-property_reader("QGuiApplication", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QGuiApplication", /::setObjectName\s*\(/, "objectName")
-property_reader("QGuiApplication", /::(applicationName|isApplicationName|hasApplicationName)\s*\(/, "applicationName")
-property_writer("QGuiApplication", /::setApplicationName\s*\(/, "applicationName")
-property_reader("QGuiApplication", /::(applicationVersion|isApplicationVersion|hasApplicationVersion)\s*\(/, "applicationVersion")
-property_writer("QGuiApplication", /::setApplicationVersion\s*\(/, "applicationVersion")
-property_reader("QGuiApplication", /::(organizationName|isOrganizationName|hasOrganizationName)\s*\(/, "organizationName")
-property_writer("QGuiApplication", /::setOrganizationName\s*\(/, "organizationName")
-property_reader("QGuiApplication", /::(organizationDomain|isOrganizationDomain|hasOrganizationDomain)\s*\(/, "organizationDomain")
-property_writer("QGuiApplication", /::setOrganizationDomain\s*\(/, "organizationDomain")
-property_reader("QGuiApplication", /::(quitLockEnabled|isQuitLockEnabled|hasQuitLockEnabled)\s*\(/, "quitLockEnabled")
-property_writer("QGuiApplication", /::setQuitLockEnabled\s*\(/, "quitLockEnabled")
-property_reader("QGuiApplication", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QGuiApplication", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QGuiApplication", /::(applicationDisplayName|isApplicationDisplayName|hasApplicationDisplayName)\s*\(/, "applicationDisplayName")
-property_writer("QGuiApplication", /::setApplicationDisplayName\s*\(/, "applicationDisplayName")
-property_reader("QGuiApplication", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QGuiApplication", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QGuiApplication", /::(platformName|isPlatformName|hasPlatformName)\s*\(/, "platformName")
-property_reader("QGuiApplication", /::(quitOnLastWindowClosed|isQuitOnLastWindowClosed|hasQuitOnLastWindowClosed)\s*\(/, "quitOnLastWindowClosed")
-property_writer("QGuiApplication", /::setQuitOnLastWindowClosed\s*\(/, "quitOnLastWindowClosed")
property_reader("QHBoxLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QHBoxLayout", /::setObjectName\s*\(/, "objectName")
-property_reader("QHBoxLayout", /::(margin|isMargin|hasMargin)\s*\(/, "margin")
-property_writer("QHBoxLayout", /::setMargin\s*\(/, "margin")
property_reader("QHBoxLayout", /::(spacing|isSpacing|hasSpacing)\s*\(/, "spacing")
property_writer("QHBoxLayout", /::setSpacing\s*\(/, "spacing")
+property_reader("QHBoxLayout", /::(contentsMargins|isContentsMargins|hasContentsMargins)\s*\(/, "contentsMargins")
+property_writer("QHBoxLayout", /::setContentsMargins\s*\(/, "contentsMargins")
property_reader("QHBoxLayout", /::(sizeConstraint|isSizeConstraint|hasSizeConstraint)\s*\(/, "sizeConstraint")
property_writer("QHBoxLayout", /::setSizeConstraint\s*\(/, "sizeConstraint")
property_reader("QHeaderView", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
@@ -4281,6 +4350,8 @@ property_reader("QHeaderView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QHeaderView", /::setCursor\s*\(/, "cursor")
property_reader("QHeaderView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QHeaderView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QHeaderView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QHeaderView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QHeaderView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QHeaderView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QHeaderView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4381,6 +4452,8 @@ property_reader("QHeaderView", /::(verticalScrollMode|isVerticalScrollMode|hasVe
property_writer("QHeaderView", /::setVerticalScrollMode\s*\(/, "verticalScrollMode")
property_reader("QHeaderView", /::(horizontalScrollMode|isHorizontalScrollMode|hasHorizontalScrollMode)\s*\(/, "horizontalScrollMode")
property_writer("QHeaderView", /::setHorizontalScrollMode\s*\(/, "horizontalScrollMode")
+property_reader("QHeaderView", /::(firstSectionMovable|isFirstSectionMovable|hasFirstSectionMovable)\s*\(/, "firstSectionMovable")
+property_writer("QHeaderView", /::setFirstSectionMovable\s*\(/, "firstSectionMovable")
property_reader("QHeaderView", /::(showSortIndicator|isShowSortIndicator|hasShowSortIndicator)\s*\(/, "showSortIndicator")
property_writer("QHeaderView", /::setShowSortIndicator\s*\(/, "showSortIndicator")
property_reader("QHeaderView", /::(highlightSections|isHighlightSections|hasHighlightSections)\s*\(/, "highlightSections")
@@ -4397,27 +4470,8 @@ property_reader("QHeaderView", /::(maximumSectionSize|isMaximumSectionSize|hasMa
property_writer("QHeaderView", /::setMaximumSectionSize\s*\(/, "maximumSectionSize")
property_reader("QHeaderView", /::(defaultAlignment|isDefaultAlignment|hasDefaultAlignment)\s*\(/, "defaultAlignment")
property_writer("QHeaderView", /::setDefaultAlignment\s*\(/, "defaultAlignment")
-property_reader("QHistoryState", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QHistoryState", /::setObjectName\s*\(/, "objectName")
-property_reader("QHistoryState", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QHistoryState", /::(defaultState|isDefaultState|hasDefaultState)\s*\(/, "defaultState")
-property_writer("QHistoryState", /::setDefaultState\s*\(/, "defaultState")
-property_reader("QHistoryState", /::(historyType|isHistoryType|hasHistoryType)\s*\(/, "historyType")
-property_writer("QHistoryState", /::setHistoryType\s*\(/, "historyType")
-property_reader("QHttpMultiPart", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QHttpMultiPart", /::setObjectName\s*\(/, "objectName")
-property_reader("QIODevice", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QIODevice", /::setObjectName\s*\(/, "objectName")
-property_reader("QIconEnginePlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QIconEnginePlugin", /::setObjectName\s*\(/, "objectName")
-property_reader("QIdentityProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QIdentityProxyModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QIdentityProxyModel", /::(sourceModel|isSourceModel|hasSourceModel)\s*\(/, "sourceModel")
-property_writer("QIdentityProxyModel", /::setSourceModel\s*\(/, "sourceModel")
-property_reader("QImageEncoderControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QImageEncoderControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QImageIOPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QImageIOPlugin", /::setObjectName\s*\(/, "objectName")
+property_reader("QHeaderView", /::(sortIndicatorClearable|isSortIndicatorClearable|hasSortIndicatorClearable)\s*\(/, "sortIndicatorClearable")
+property_writer("QHeaderView", /::setSortIndicatorClearable\s*\(/, "sortIndicatorClearable")
property_reader("QInputDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QInputDialog", /::setObjectName\s*\(/, "objectName")
property_reader("QInputDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -4467,6 +4521,8 @@ property_reader("QInputDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QInputDialog", /::setCursor\s*\(/, "cursor")
property_reader("QInputDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QInputDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QInputDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QInputDialog", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QInputDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QInputDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QInputDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4522,32 +4578,10 @@ property_reader("QInputDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGri
property_writer("QInputDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
property_reader("QInputDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
property_writer("QInputDialog", /::setModal\s*\(/, "modal")
-property_reader("QInputMethod", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QInputMethod", /::setObjectName\s*\(/, "objectName")
-property_reader("QInputMethod", /::(cursorRectangle|isCursorRectangle|hasCursorRectangle)\s*\(/, "cursorRectangle")
-property_reader("QInputMethod", /::(keyboardRectangle|isKeyboardRectangle|hasKeyboardRectangle)\s*\(/, "keyboardRectangle")
-property_reader("QInputMethod", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_reader("QInputMethod", /::(animating|isAnimating|hasAnimating)\s*\(/, "animating")
-property_reader("QInputMethod", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_reader("QInputMethod", /::(inputDirection|isInputDirection|hasInputDirection)\s*\(/, "inputDirection")
-property_reader("QIntValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QIntValidator", /::setObjectName\s*\(/, "objectName")
-property_reader("QIntValidator", /::(bottom|isBottom|hasBottom)\s*\(/, "bottom")
-property_writer("QIntValidator", /::setBottom\s*\(/, "bottom")
-property_reader("QIntValidator", /::(top|isTop|hasTop)\s*\(/, "top")
-property_writer("QIntValidator", /::setTop\s*\(/, "top")
property_reader("QItemDelegate", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QItemDelegate", /::setObjectName\s*\(/, "objectName")
property_reader("QItemDelegate", /::(clipping|isClipping|hasClipping)\s*\(/, "clipping")
property_writer("QItemDelegate", /::setClipping\s*\(/, "clipping")
-property_reader("QItemSelectionModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QItemSelectionModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QItemSelectionModel", /::(model|isModel|hasModel)\s*\(/, "model")
-property_writer("QItemSelectionModel", /::setModel\s*\(/, "model")
-property_reader("QItemSelectionModel", /::(hasSelection|isHasSelection|hasHasSelection)\s*\(/, "hasSelection")
-property_reader("QItemSelectionModel", /::(currentIndex|isCurrentIndex|hasCurrentIndex)\s*\(/, "currentIndex")
-property_reader("QItemSelectionModel", /::(selection|isSelection|hasSelection)\s*\(/, "selection")
-property_reader("QItemSelectionModel", /::(selectedIndexes|isSelectedIndexes|hasSelectedIndexes)\s*\(/, "selectedIndexes")
property_reader("QKeySequenceEdit", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QKeySequenceEdit", /::setObjectName\s*\(/, "objectName")
property_reader("QKeySequenceEdit", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -4597,6 +4631,8 @@ property_reader("QKeySequenceEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "curso
property_writer("QKeySequenceEdit", /::setCursor\s*\(/, "cursor")
property_reader("QKeySequenceEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QKeySequenceEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QKeySequenceEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QKeySequenceEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QKeySequenceEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QKeySequenceEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QKeySequenceEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4699,6 +4735,8 @@ property_reader("QLCDNumber", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QLCDNumber", /::setCursor\s*\(/, "cursor")
property_reader("QLCDNumber", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QLCDNumber", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QLCDNumber", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QLCDNumber", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QLCDNumber", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QLCDNumber", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QLCDNumber", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4822,6 +4860,8 @@ property_reader("QLabel", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QLabel", /::setCursor\s*\(/, "cursor")
property_reader("QLabel", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QLabel", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QLabel", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QLabel", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QLabel", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QLabel", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QLabel", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -4908,18 +4948,12 @@ property_reader("QLabel", /::(hasSelectedText|isHasSelectedText|hasHasSelectedTe
property_reader("QLabel", /::(selectedText|isSelectedText|hasSelectedText)\s*\(/, "selectedText")
property_reader("QLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QLayout", /::setObjectName\s*\(/, "objectName")
-property_reader("QLayout", /::(margin|isMargin|hasMargin)\s*\(/, "margin")
-property_writer("QLayout", /::setMargin\s*\(/, "margin")
property_reader("QLayout", /::(spacing|isSpacing|hasSpacing)\s*\(/, "spacing")
property_writer("QLayout", /::setSpacing\s*\(/, "spacing")
+property_reader("QLayout", /::(contentsMargins|isContentsMargins|hasContentsMargins)\s*\(/, "contentsMargins")
+property_writer("QLayout", /::setContentsMargins\s*\(/, "contentsMargins")
property_reader("QLayout", /::(sizeConstraint|isSizeConstraint|hasSizeConstraint)\s*\(/, "sizeConstraint")
property_writer("QLayout", /::setSizeConstraint\s*\(/, "sizeConstraint")
-property_reader("QLibrary", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QLibrary", /::setObjectName\s*\(/, "objectName")
-property_reader("QLibrary", /::(fileName|isFileName|hasFileName)\s*\(/, "fileName")
-property_writer("QLibrary", /::setFileName\s*\(/, "fileName")
-property_reader("QLibrary", /::(loadHints|isLoadHints|hasLoadHints)\s*\(/, "loadHints")
-property_writer("QLibrary", /::setLoadHints\s*\(/, "loadHints")
property_reader("QLineEdit", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QLineEdit", /::setObjectName\s*\(/, "objectName")
property_reader("QLineEdit", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -4969,6 +5003,8 @@ property_reader("QLineEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QLineEdit", /::setCursor\s*\(/, "cursor")
property_reader("QLineEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QLineEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QLineEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QLineEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QLineEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QLineEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QLineEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5101,6 +5137,8 @@ property_reader("QListView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QListView", /::setCursor\s*\(/, "cursor")
property_reader("QListView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QListView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QListView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QListView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QListView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QListView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QListView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5227,6 +5265,8 @@ property_reader("QListView", /::(wordWrap|isWordWrap|hasWordWrap)\s*\(/, "wordWr
property_writer("QListView", /::setWordWrap\s*\(/, "wordWrap")
property_reader("QListView", /::(selectionRectVisible|isSelectionRectVisible|hasSelectionRectVisible)\s*\(/, "selectionRectVisible")
property_writer("QListView", /::setSelectionRectVisible\s*\(/, "selectionRectVisible")
+property_reader("QListView", /::(itemAlignment|isItemAlignment|hasItemAlignment)\s*\(/, "itemAlignment")
+property_writer("QListView", /::setItemAlignment\s*\(/, "itemAlignment")
property_reader("QListWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QListWidget", /::setObjectName\s*\(/, "objectName")
property_reader("QListWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -5276,6 +5316,8 @@ property_reader("QListWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QListWidget", /::setCursor\s*\(/, "cursor")
property_reader("QListWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QListWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QListWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QListWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QListWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QListWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QListWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5402,17 +5444,13 @@ property_reader("QListWidget", /::(wordWrap|isWordWrap|hasWordWrap)\s*\(/, "word
property_writer("QListWidget", /::setWordWrap\s*\(/, "wordWrap")
property_reader("QListWidget", /::(selectionRectVisible|isSelectionRectVisible|hasSelectionRectVisible)\s*\(/, "selectionRectVisible")
property_writer("QListWidget", /::setSelectionRectVisible\s*\(/, "selectionRectVisible")
+property_reader("QListWidget", /::(itemAlignment|isItemAlignment|hasItemAlignment)\s*\(/, "itemAlignment")
+property_writer("QListWidget", /::setItemAlignment\s*\(/, "itemAlignment")
property_reader("QListWidget", /::(count|isCount|hasCount)\s*\(/, "count")
property_reader("QListWidget", /::(currentRow|isCurrentRow|hasCurrentRow)\s*\(/, "currentRow")
property_writer("QListWidget", /::setCurrentRow\s*\(/, "currentRow")
property_reader("QListWidget", /::(sortingEnabled|isSortingEnabled|hasSortingEnabled)\s*\(/, "sortingEnabled")
property_writer("QListWidget", /::setSortingEnabled\s*\(/, "sortingEnabled")
-property_reader("QLocalServer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QLocalServer", /::setObjectName\s*\(/, "objectName")
-property_reader("QLocalServer", /::(socketOptions|isSocketOptions|hasSocketOptions)\s*\(/, "socketOptions")
-property_writer("QLocalServer", /::setSocketOptions\s*\(/, "socketOptions")
-property_reader("QLocalSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QLocalSocket", /::setObjectName\s*\(/, "objectName")
property_reader("QMainWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QMainWindow", /::setObjectName\s*\(/, "objectName")
property_reader("QMainWindow", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -5462,6 +5500,8 @@ property_reader("QMainWindow", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QMainWindow", /::setCursor\s*\(/, "cursor")
property_reader("QMainWindow", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QMainWindow", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QMainWindow", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QMainWindow", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QMainWindow", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QMainWindow", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QMainWindow", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5578,6 +5618,8 @@ property_reader("QMdiArea", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QMdiArea", /::setCursor\s*\(/, "cursor")
property_reader("QMdiArea", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QMdiArea", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QMdiArea", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QMdiArea", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QMdiArea", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QMdiArea", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QMdiArea", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5711,6 +5753,8 @@ property_reader("QMdiSubWindow", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QMdiSubWindow", /::setCursor\s*\(/, "cursor")
property_reader("QMdiSubWindow", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QMdiSubWindow", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QMdiSubWindow", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QMdiSubWindow", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QMdiSubWindow", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QMdiSubWindow", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QMdiSubWindow", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5766,80 +5810,6 @@ property_reader("QMdiSubWindow", /::(keyboardSingleStep|isKeyboardSingleStep|has
property_writer("QMdiSubWindow", /::setKeyboardSingleStep\s*\(/, "keyboardSingleStep")
property_reader("QMdiSubWindow", /::(keyboardPageStep|isKeyboardPageStep|hasKeyboardPageStep)\s*\(/, "keyboardPageStep")
property_writer("QMdiSubWindow", /::setKeyboardPageStep\s*\(/, "keyboardPageStep")
-property_reader("QMediaAudioProbeControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaAudioProbeControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaAvailabilityControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaAvailabilityControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaContainerControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaContainerControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaGaplessPlaybackControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaGaplessPlaybackControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaNetworkAccessControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaNetworkAccessControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaObject", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaObject", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaObject", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
-property_writer("QMediaObject", /::setNotifyInterval\s*\(/, "notifyInterval")
-property_reader("QMediaPlayer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaPlayer", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaPlayer", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
-property_writer("QMediaPlayer", /::setNotifyInterval\s*\(/, "notifyInterval")
-property_reader("QMediaPlayer", /::(media|isMedia|hasMedia)\s*\(/, "media")
-property_writer("QMediaPlayer", /::setMedia\s*\(/, "media")
-property_reader("QMediaPlayer", /::(currentMedia|isCurrentMedia|hasCurrentMedia)\s*\(/, "currentMedia")
-property_reader("QMediaPlayer", /::(playlist|isPlaylist|hasPlaylist)\s*\(/, "playlist")
-property_writer("QMediaPlayer", /::setPlaylist\s*\(/, "playlist")
-property_reader("QMediaPlayer", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QMediaPlayer", /::(position|isPosition|hasPosition)\s*\(/, "position")
-property_writer("QMediaPlayer", /::setPosition\s*\(/, "position")
-property_reader("QMediaPlayer", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
-property_writer("QMediaPlayer", /::setVolume\s*\(/, "volume")
-property_reader("QMediaPlayer", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
-property_writer("QMediaPlayer", /::setMuted\s*\(/, "muted")
-property_reader("QMediaPlayer", /::(bufferStatus|isBufferStatus|hasBufferStatus)\s*\(/, "bufferStatus")
-property_reader("QMediaPlayer", /::(audioAvailable|isAudioAvailable|hasAudioAvailable)\s*\(/, "audioAvailable")
-property_reader("QMediaPlayer", /::(videoAvailable|isVideoAvailable|hasVideoAvailable)\s*\(/, "videoAvailable")
-property_reader("QMediaPlayer", /::(seekable|isSeekable|hasSeekable)\s*\(/, "seekable")
-property_reader("QMediaPlayer", /::(playbackRate|isPlaybackRate|hasPlaybackRate)\s*\(/, "playbackRate")
-property_writer("QMediaPlayer", /::setPlaybackRate\s*\(/, "playbackRate")
-property_reader("QMediaPlayer", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QMediaPlayer", /::(mediaStatus|isMediaStatus|hasMediaStatus)\s*\(/, "mediaStatus")
-property_reader("QMediaPlayer", /::(error|isError|hasError)\s*\(/, "error")
-property_reader("QMediaPlayerControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaPlayerControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaPlaylist", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaPlaylist", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaPlaylist", /::(playbackMode|isPlaybackMode|hasPlaybackMode)\s*\(/, "playbackMode")
-property_writer("QMediaPlaylist", /::setPlaybackMode\s*\(/, "playbackMode")
-property_reader("QMediaPlaylist", /::(currentMedia|isCurrentMedia|hasCurrentMedia)\s*\(/, "currentMedia")
-property_reader("QMediaPlaylist", /::(currentIndex|isCurrentIndex|hasCurrentIndex)\s*\(/, "currentIndex")
-property_writer("QMediaPlaylist", /::setCurrentIndex\s*\(/, "currentIndex")
-property_reader("QMediaRecorder", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaRecorder", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaRecorder", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QMediaRecorder", /::(status|isStatus|hasStatus)\s*\(/, "status")
-property_reader("QMediaRecorder", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QMediaRecorder", /::(outputLocation|isOutputLocation|hasOutputLocation)\s*\(/, "outputLocation")
-property_writer("QMediaRecorder", /::setOutputLocation\s*\(/, "outputLocation")
-property_reader("QMediaRecorder", /::(actualLocation|isActualLocation|hasActualLocation)\s*\(/, "actualLocation")
-property_reader("QMediaRecorder", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
-property_writer("QMediaRecorder", /::setMuted\s*\(/, "muted")
-property_reader("QMediaRecorder", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
-property_writer("QMediaRecorder", /::setVolume\s*\(/, "volume")
-property_reader("QMediaRecorder", /::(metaDataAvailable|isMetaDataAvailable|hasMetaDataAvailable)\s*\(/, "metaDataAvailable")
-property_reader("QMediaRecorder", /::(metaDataWritable|isMetaDataWritable|hasMetaDataWritable)\s*\(/, "metaDataWritable")
-property_reader("QMediaRecorderControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaRecorderControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaService", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaService", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaServiceProviderPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaServiceProviderPlugin", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaStreamsControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaStreamsControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMediaVideoProbeControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMediaVideoProbeControl", /::setObjectName\s*\(/, "objectName")
property_reader("QMenu", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QMenu", /::setObjectName\s*\(/, "objectName")
property_reader("QMenu", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -5889,6 +5859,8 @@ property_reader("QMenu", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QMenu", /::setCursor\s*\(/, "cursor")
property_reader("QMenu", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QMenu", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QMenu", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QMenu", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QMenu", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QMenu", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QMenu", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -5999,6 +5971,8 @@ property_reader("QMenuBar", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QMenuBar", /::setCursor\s*\(/, "cursor")
property_reader("QMenuBar", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QMenuBar", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QMenuBar", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QMenuBar", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QMenuBar", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QMenuBar", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QMenuBar", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -6103,6 +6077,8 @@ property_reader("QMessageBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QMessageBox", /::setCursor\s*\(/, "cursor")
property_reader("QMessageBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QMessageBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QMessageBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QMessageBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QMessageBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QMessageBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QMessageBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -6174,67 +6150,6 @@ property_reader("QMessageBox", /::(informativeText|isInformativeText|hasInformat
property_writer("QMessageBox", /::setInformativeText\s*\(/, "informativeText")
property_reader("QMessageBox", /::(textInteractionFlags|isTextInteractionFlags|hasTextInteractionFlags)\s*\(/, "textInteractionFlags")
property_writer("QMessageBox", /::setTextInteractionFlags\s*\(/, "textInteractionFlags")
-property_reader("QMetaDataReaderControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMetaDataReaderControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMetaDataWriterControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMetaDataWriterControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QMimeData", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMimeData", /::setObjectName\s*\(/, "objectName")
-property_reader("QMovie", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QMovie", /::setObjectName\s*\(/, "objectName")
-property_reader("QMovie", /::(speed|isSpeed|hasSpeed)\s*\(/, "speed")
-property_writer("QMovie", /::setSpeed\s*\(/, "speed")
-property_reader("QMovie", /::(cacheMode|isCacheMode|hasCacheMode)\s*\(/, "cacheMode")
-property_writer("QMovie", /::setCacheMode\s*\(/, "cacheMode")
-property_reader("QNetworkAccessManager", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QNetworkAccessManager", /::setObjectName\s*\(/, "objectName")
-property_reader("QNetworkAccessManager", /::(networkAccessible|isNetworkAccessible|hasNetworkAccessible)\s*\(/, "networkAccessible")
-property_writer("QNetworkAccessManager", /::setNetworkAccessible\s*\(/, "networkAccessible")
-property_reader("QNetworkConfigurationManager", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QNetworkConfigurationManager", /::setObjectName\s*\(/, "objectName")
-property_reader("QNetworkCookieJar", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QNetworkCookieJar", /::setObjectName\s*\(/, "objectName")
-property_reader("QNetworkDiskCache", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QNetworkDiskCache", /::setObjectName\s*\(/, "objectName")
-property_reader("QNetworkReply", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QNetworkReply", /::setObjectName\s*\(/, "objectName")
-property_reader("QNetworkSession", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QNetworkSession", /::setObjectName\s*\(/, "objectName")
-property_reader("QOffscreenSurface", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QOffscreenSurface", /::setObjectName\s*\(/, "objectName")
-property_reader("QPaintDeviceWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPaintDeviceWindow", /::setObjectName\s*\(/, "objectName")
-property_reader("QPaintDeviceWindow", /::(title|isTitle|hasTitle)\s*\(/, "title")
-property_writer("QPaintDeviceWindow", /::setTitle\s*\(/, "title")
-property_reader("QPaintDeviceWindow", /::(modality|isModality|hasModality)\s*\(/, "modality")
-property_writer("QPaintDeviceWindow", /::setModality\s*\(/, "modality")
-property_reader("QPaintDeviceWindow", /::(flags|isFlags|hasFlags)\s*\(/, "flags")
-property_writer("QPaintDeviceWindow", /::setFlags\s*\(/, "flags")
-property_reader("QPaintDeviceWindow", /::(x|isX|hasX)\s*\(/, "x")
-property_writer("QPaintDeviceWindow", /::setX\s*\(/, "x")
-property_reader("QPaintDeviceWindow", /::(y|isY|hasY)\s*\(/, "y")
-property_writer("QPaintDeviceWindow", /::setY\s*\(/, "y")
-property_reader("QPaintDeviceWindow", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_writer("QPaintDeviceWindow", /::setWidth\s*\(/, "width")
-property_reader("QPaintDeviceWindow", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_writer("QPaintDeviceWindow", /::setHeight\s*\(/, "height")
-property_reader("QPaintDeviceWindow", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QPaintDeviceWindow", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QPaintDeviceWindow", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QPaintDeviceWindow", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QPaintDeviceWindow", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QPaintDeviceWindow", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QPaintDeviceWindow", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QPaintDeviceWindow", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QPaintDeviceWindow", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QPaintDeviceWindow", /::setVisible\s*\(/, "visible")
-property_reader("QPaintDeviceWindow", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QPaintDeviceWindow", /::(visibility|isVisibility|hasVisibility)\s*\(/, "visibility")
-property_writer("QPaintDeviceWindow", /::setVisibility\s*\(/, "visibility")
-property_reader("QPaintDeviceWindow", /::(contentOrientation|isContentOrientation|hasContentOrientation)\s*\(/, "contentOrientation")
-property_writer("QPaintDeviceWindow", /::setContentOrientation\s*\(/, "contentOrientation")
-property_reader("QPaintDeviceWindow", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
-property_writer("QPaintDeviceWindow", /::setOpacity\s*\(/, "opacity")
property_reader("QPanGesture", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QPanGesture", /::setObjectName\s*\(/, "objectName")
property_reader("QPanGesture", /::(state|isState|hasState)\s*\(/, "state")
@@ -6255,34 +6170,6 @@ property_reader("QPanGesture", /::(horizontalVelocity|isHorizontalVelocity|hasHo
property_writer("QPanGesture", /::setHorizontalVelocity\s*\(/, "horizontalVelocity")
property_reader("QPanGesture", /::(verticalVelocity|isVerticalVelocity|hasVerticalVelocity)\s*\(/, "verticalVelocity")
property_writer("QPanGesture", /::setVerticalVelocity\s*\(/, "verticalVelocity")
-property_reader("QParallelAnimationGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QParallelAnimationGroup", /::setObjectName\s*\(/, "objectName")
-property_reader("QParallelAnimationGroup", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QParallelAnimationGroup", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QParallelAnimationGroup", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QParallelAnimationGroup", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QParallelAnimationGroup", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QParallelAnimationGroup", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
-property_reader("QParallelAnimationGroup", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QParallelAnimationGroup", /::setDirection\s*\(/, "direction")
-property_reader("QParallelAnimationGroup", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QPauseAnimation", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPauseAnimation", /::setObjectName\s*\(/, "objectName")
-property_reader("QPauseAnimation", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QPauseAnimation", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QPauseAnimation", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QPauseAnimation", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QPauseAnimation", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QPauseAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
-property_reader("QPauseAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QPauseAnimation", /::setDirection\s*\(/, "direction")
-property_reader("QPauseAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QPauseAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_writer("QPauseAnimation", /::setDuration\s*\(/, "duration")
-property_reader("QPdfWriter", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPdfWriter", /::setObjectName\s*\(/, "objectName")
-property_reader("QPictureFormatPlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPictureFormatPlugin", /::setObjectName\s*\(/, "objectName")
property_reader("QPinchGesture", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QPinchGesture", /::setObjectName\s*\(/, "objectName")
property_reader("QPinchGesture", /::(state|isState|hasState)\s*\(/, "state")
@@ -6367,6 +6254,8 @@ property_reader("QPlainTextEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor"
property_writer("QPlainTextEdit", /::setCursor\s*\(/, "cursor")
property_reader("QPlainTextEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QPlainTextEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QPlainTextEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QPlainTextEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QPlainTextEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QPlainTextEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QPlainTextEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -6449,8 +6338,8 @@ property_reader("QPlainTextEdit", /::(plainText|isPlainText|hasPlainText)\s*\(/,
property_writer("QPlainTextEdit", /::setPlainText\s*\(/, "plainText")
property_reader("QPlainTextEdit", /::(overwriteMode|isOverwriteMode|hasOverwriteMode)\s*\(/, "overwriteMode")
property_writer("QPlainTextEdit", /::setOverwriteMode\s*\(/, "overwriteMode")
-property_reader("QPlainTextEdit", /::(tabStopWidth|isTabStopWidth|hasTabStopWidth)\s*\(/, "tabStopWidth")
-property_writer("QPlainTextEdit", /::setTabStopWidth\s*\(/, "tabStopWidth")
+property_reader("QPlainTextEdit", /::(tabStopDistance|isTabStopDistance|hasTabStopDistance)\s*\(/, "tabStopDistance")
+property_writer("QPlainTextEdit", /::setTabStopDistance\s*\(/, "tabStopDistance")
property_reader("QPlainTextEdit", /::(cursorWidth|isCursorWidth|hasCursorWidth)\s*\(/, "cursorWidth")
property_writer("QPlainTextEdit", /::setCursorWidth\s*\(/, "cursorWidth")
property_reader("QPlainTextEdit", /::(textInteractionFlags|isTextInteractionFlags|hasTextInteractionFlags)\s*\(/, "textInteractionFlags")
@@ -6464,324 +6353,6 @@ property_reader("QPlainTextEdit", /::(centerOnScroll|isCenterOnScroll|hasCenterO
property_writer("QPlainTextEdit", /::setCenterOnScroll\s*\(/, "centerOnScroll")
property_reader("QPlainTextEdit", /::(placeholderText|isPlaceholderText|hasPlaceholderText)\s*\(/, "placeholderText")
property_writer("QPlainTextEdit", /::setPlaceholderText\s*\(/, "placeholderText")
-property_reader("QPluginLoader", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPluginLoader", /::setObjectName\s*\(/, "objectName")
-property_reader("QPluginLoader", /::(fileName|isFileName|hasFileName)\s*\(/, "fileName")
-property_writer("QPluginLoader", /::setFileName\s*\(/, "fileName")
-property_reader("QPluginLoader", /::(loadHints|isLoadHints|hasLoadHints)\s*\(/, "loadHints")
-property_writer("QPluginLoader", /::setLoadHints\s*\(/, "loadHints")
-property_reader("QPrintDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPrintDialog", /::setObjectName\s*\(/, "objectName")
-property_reader("QPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_reader("QPrintDialog", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
-property_writer("QPrintDialog", /::setWindowModality\s*\(/, "windowModality")
-property_reader("QPrintDialog", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QPrintDialog", /::setEnabled\s*\(/, "enabled")
-property_reader("QPrintDialog", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_writer("QPrintDialog", /::setGeometry\s*\(/, "geometry")
-property_reader("QPrintDialog", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
-property_reader("QPrintDialog", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
-property_reader("QPrintDialog", /::(x|isX|hasX)\s*\(/, "x")
-property_reader("QPrintDialog", /::(y|isY|hasY)\s*\(/, "y")
-property_reader("QPrintDialog", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QPrintDialog", /::setPos\s*\(/, "pos")
-property_reader("QPrintDialog", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
-property_reader("QPrintDialog", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QPrintDialog", /::setSize\s*\(/, "size")
-property_reader("QPrintDialog", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_reader("QPrintDialog", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_reader("QPrintDialog", /::(rect|isRect|hasRect)\s*\(/, "rect")
-property_reader("QPrintDialog", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
-property_reader("QPrintDialog", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
-property_reader("QPrintDialog", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
-property_writer("QPrintDialog", /::setSizePolicy\s*\(/, "sizePolicy")
-property_reader("QPrintDialog", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
-property_writer("QPrintDialog", /::setMinimumSize\s*\(/, "minimumSize")
-property_reader("QPrintDialog", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
-property_writer("QPrintDialog", /::setMaximumSize\s*\(/, "maximumSize")
-property_reader("QPrintDialog", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QPrintDialog", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QPrintDialog", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QPrintDialog", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QPrintDialog", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QPrintDialog", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QPrintDialog", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QPrintDialog", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QPrintDialog", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
-property_writer("QPrintDialog", /::setSizeIncrement\s*\(/, "sizeIncrement")
-property_reader("QPrintDialog", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
-property_writer("QPrintDialog", /::setBaseSize\s*\(/, "baseSize")
-property_reader("QPrintDialog", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
-property_writer("QPrintDialog", /::setPalette\s*\(/, "palette")
-property_reader("QPrintDialog", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QPrintDialog", /::setFont\s*\(/, "font")
-property_reader("QPrintDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
-property_writer("QPrintDialog", /::setCursor\s*\(/, "cursor")
-property_reader("QPrintDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
-property_writer("QPrintDialog", /::setMouseTracking\s*\(/, "mouseTracking")
-property_reader("QPrintDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
-property_reader("QPrintDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
-property_writer("QPrintDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
-property_reader("QPrintDialog", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
-property_reader("QPrintDialog", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
-property_writer("QPrintDialog", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
-property_reader("QPrintDialog", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
-property_writer("QPrintDialog", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
-property_reader("QPrintDialog", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QPrintDialog", /::setVisible\s*\(/, "visible")
-property_reader("QPrintDialog", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
-property_reader("QPrintDialog", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
-property_reader("QPrintDialog", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_reader("QPrintDialog", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
-property_reader("QPrintDialog", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
-property_reader("QPrintDialog", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
-property_writer("QPrintDialog", /::setAcceptDrops\s*\(/, "acceptDrops")
-property_reader("QPrintDialog", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
-property_writer("QPrintDialog", /::setWindowTitle\s*\(/, "windowTitle")
-property_reader("QPrintDialog", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QPrintDialog", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QPrintDialog", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
-property_writer("QPrintDialog", /::setWindowIconText\s*\(/, "windowIconText")
-property_reader("QPrintDialog", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
-property_writer("QPrintDialog", /::setWindowOpacity\s*\(/, "windowOpacity")
-property_reader("QPrintDialog", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
-property_writer("QPrintDialog", /::setWindowModified\s*\(/, "windowModified")
-property_reader("QPrintDialog", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QPrintDialog", /::setToolTip\s*\(/, "toolTip")
-property_reader("QPrintDialog", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
-property_writer("QPrintDialog", /::setToolTipDuration\s*\(/, "toolTipDuration")
-property_reader("QPrintDialog", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QPrintDialog", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QPrintDialog", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QPrintDialog", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QPrintDialog", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
-property_writer("QPrintDialog", /::setAccessibleName\s*\(/, "accessibleName")
-property_reader("QPrintDialog", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
-property_writer("QPrintDialog", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-property_reader("QPrintDialog", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QPrintDialog", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QPrintDialog", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
-property_writer("QPrintDialog", /::setAutoFillBackground\s*\(/, "autoFillBackground")
-property_reader("QPrintDialog", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
-property_writer("QPrintDialog", /::setStyleSheet\s*\(/, "styleSheet")
-property_reader("QPrintDialog", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_writer("QPrintDialog", /::setLocale\s*\(/, "locale")
-property_reader("QPrintDialog", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
-property_writer("QPrintDialog", /::setWindowFilePath\s*\(/, "windowFilePath")
-property_reader("QPrintDialog", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
-property_writer("QPrintDialog", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QPrintDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
-property_writer("QPrintDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
-property_reader("QPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_writer("QPrintDialog", /::setModal\s*\(/, "modal")
-property_reader("QPrintDialog", /::(options|isOptions|hasOptions)\s*\(/, "options")
-property_writer("QPrintDialog", /::setOptions\s*\(/, "options")
-property_reader("QPrintPreviewDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPrintPreviewDialog", /::setObjectName\s*\(/, "objectName")
-property_reader("QPrintPreviewDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_reader("QPrintPreviewDialog", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
-property_writer("QPrintPreviewDialog", /::setWindowModality\s*\(/, "windowModality")
-property_reader("QPrintPreviewDialog", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QPrintPreviewDialog", /::setEnabled\s*\(/, "enabled")
-property_reader("QPrintPreviewDialog", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_writer("QPrintPreviewDialog", /::setGeometry\s*\(/, "geometry")
-property_reader("QPrintPreviewDialog", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
-property_reader("QPrintPreviewDialog", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
-property_reader("QPrintPreviewDialog", /::(x|isX|hasX)\s*\(/, "x")
-property_reader("QPrintPreviewDialog", /::(y|isY|hasY)\s*\(/, "y")
-property_reader("QPrintPreviewDialog", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QPrintPreviewDialog", /::setPos\s*\(/, "pos")
-property_reader("QPrintPreviewDialog", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
-property_reader("QPrintPreviewDialog", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QPrintPreviewDialog", /::setSize\s*\(/, "size")
-property_reader("QPrintPreviewDialog", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_reader("QPrintPreviewDialog", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_reader("QPrintPreviewDialog", /::(rect|isRect|hasRect)\s*\(/, "rect")
-property_reader("QPrintPreviewDialog", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
-property_reader("QPrintPreviewDialog", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
-property_reader("QPrintPreviewDialog", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
-property_writer("QPrintPreviewDialog", /::setSizePolicy\s*\(/, "sizePolicy")
-property_reader("QPrintPreviewDialog", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
-property_writer("QPrintPreviewDialog", /::setMinimumSize\s*\(/, "minimumSize")
-property_reader("QPrintPreviewDialog", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
-property_writer("QPrintPreviewDialog", /::setMaximumSize\s*\(/, "maximumSize")
-property_reader("QPrintPreviewDialog", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QPrintPreviewDialog", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QPrintPreviewDialog", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QPrintPreviewDialog", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QPrintPreviewDialog", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QPrintPreviewDialog", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QPrintPreviewDialog", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QPrintPreviewDialog", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QPrintPreviewDialog", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
-property_writer("QPrintPreviewDialog", /::setSizeIncrement\s*\(/, "sizeIncrement")
-property_reader("QPrintPreviewDialog", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
-property_writer("QPrintPreviewDialog", /::setBaseSize\s*\(/, "baseSize")
-property_reader("QPrintPreviewDialog", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
-property_writer("QPrintPreviewDialog", /::setPalette\s*\(/, "palette")
-property_reader("QPrintPreviewDialog", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QPrintPreviewDialog", /::setFont\s*\(/, "font")
-property_reader("QPrintPreviewDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
-property_writer("QPrintPreviewDialog", /::setCursor\s*\(/, "cursor")
-property_reader("QPrintPreviewDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
-property_writer("QPrintPreviewDialog", /::setMouseTracking\s*\(/, "mouseTracking")
-property_reader("QPrintPreviewDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
-property_reader("QPrintPreviewDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
-property_writer("QPrintPreviewDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
-property_reader("QPrintPreviewDialog", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
-property_reader("QPrintPreviewDialog", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
-property_writer("QPrintPreviewDialog", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
-property_reader("QPrintPreviewDialog", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
-property_writer("QPrintPreviewDialog", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
-property_reader("QPrintPreviewDialog", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QPrintPreviewDialog", /::setVisible\s*\(/, "visible")
-property_reader("QPrintPreviewDialog", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
-property_reader("QPrintPreviewDialog", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
-property_reader("QPrintPreviewDialog", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_reader("QPrintPreviewDialog", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
-property_reader("QPrintPreviewDialog", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
-property_reader("QPrintPreviewDialog", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
-property_writer("QPrintPreviewDialog", /::setAcceptDrops\s*\(/, "acceptDrops")
-property_reader("QPrintPreviewDialog", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
-property_writer("QPrintPreviewDialog", /::setWindowTitle\s*\(/, "windowTitle")
-property_reader("QPrintPreviewDialog", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QPrintPreviewDialog", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QPrintPreviewDialog", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
-property_writer("QPrintPreviewDialog", /::setWindowIconText\s*\(/, "windowIconText")
-property_reader("QPrintPreviewDialog", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
-property_writer("QPrintPreviewDialog", /::setWindowOpacity\s*\(/, "windowOpacity")
-property_reader("QPrintPreviewDialog", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
-property_writer("QPrintPreviewDialog", /::setWindowModified\s*\(/, "windowModified")
-property_reader("QPrintPreviewDialog", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QPrintPreviewDialog", /::setToolTip\s*\(/, "toolTip")
-property_reader("QPrintPreviewDialog", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
-property_writer("QPrintPreviewDialog", /::setToolTipDuration\s*\(/, "toolTipDuration")
-property_reader("QPrintPreviewDialog", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QPrintPreviewDialog", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QPrintPreviewDialog", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QPrintPreviewDialog", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QPrintPreviewDialog", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
-property_writer("QPrintPreviewDialog", /::setAccessibleName\s*\(/, "accessibleName")
-property_reader("QPrintPreviewDialog", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
-property_writer("QPrintPreviewDialog", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-property_reader("QPrintPreviewDialog", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QPrintPreviewDialog", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QPrintPreviewDialog", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
-property_writer("QPrintPreviewDialog", /::setAutoFillBackground\s*\(/, "autoFillBackground")
-property_reader("QPrintPreviewDialog", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
-property_writer("QPrintPreviewDialog", /::setStyleSheet\s*\(/, "styleSheet")
-property_reader("QPrintPreviewDialog", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_writer("QPrintPreviewDialog", /::setLocale\s*\(/, "locale")
-property_reader("QPrintPreviewDialog", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
-property_writer("QPrintPreviewDialog", /::setWindowFilePath\s*\(/, "windowFilePath")
-property_reader("QPrintPreviewDialog", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
-property_writer("QPrintPreviewDialog", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QPrintPreviewDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
-property_writer("QPrintPreviewDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
-property_reader("QPrintPreviewDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_writer("QPrintPreviewDialog", /::setModal\s*\(/, "modal")
-property_reader("QPrintPreviewWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPrintPreviewWidget", /::setObjectName\s*\(/, "objectName")
-property_reader("QPrintPreviewWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_reader("QPrintPreviewWidget", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
-property_writer("QPrintPreviewWidget", /::setWindowModality\s*\(/, "windowModality")
-property_reader("QPrintPreviewWidget", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QPrintPreviewWidget", /::setEnabled\s*\(/, "enabled")
-property_reader("QPrintPreviewWidget", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_writer("QPrintPreviewWidget", /::setGeometry\s*\(/, "geometry")
-property_reader("QPrintPreviewWidget", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
-property_reader("QPrintPreviewWidget", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
-property_reader("QPrintPreviewWidget", /::(x|isX|hasX)\s*\(/, "x")
-property_reader("QPrintPreviewWidget", /::(y|isY|hasY)\s*\(/, "y")
-property_reader("QPrintPreviewWidget", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QPrintPreviewWidget", /::setPos\s*\(/, "pos")
-property_reader("QPrintPreviewWidget", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
-property_reader("QPrintPreviewWidget", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QPrintPreviewWidget", /::setSize\s*\(/, "size")
-property_reader("QPrintPreviewWidget", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_reader("QPrintPreviewWidget", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_reader("QPrintPreviewWidget", /::(rect|isRect|hasRect)\s*\(/, "rect")
-property_reader("QPrintPreviewWidget", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
-property_reader("QPrintPreviewWidget", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
-property_reader("QPrintPreviewWidget", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
-property_writer("QPrintPreviewWidget", /::setSizePolicy\s*\(/, "sizePolicy")
-property_reader("QPrintPreviewWidget", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
-property_writer("QPrintPreviewWidget", /::setMinimumSize\s*\(/, "minimumSize")
-property_reader("QPrintPreviewWidget", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
-property_writer("QPrintPreviewWidget", /::setMaximumSize\s*\(/, "maximumSize")
-property_reader("QPrintPreviewWidget", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QPrintPreviewWidget", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QPrintPreviewWidget", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QPrintPreviewWidget", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QPrintPreviewWidget", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QPrintPreviewWidget", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QPrintPreviewWidget", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QPrintPreviewWidget", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QPrintPreviewWidget", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
-property_writer("QPrintPreviewWidget", /::setSizeIncrement\s*\(/, "sizeIncrement")
-property_reader("QPrintPreviewWidget", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
-property_writer("QPrintPreviewWidget", /::setBaseSize\s*\(/, "baseSize")
-property_reader("QPrintPreviewWidget", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
-property_writer("QPrintPreviewWidget", /::setPalette\s*\(/, "palette")
-property_reader("QPrintPreviewWidget", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QPrintPreviewWidget", /::setFont\s*\(/, "font")
-property_reader("QPrintPreviewWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
-property_writer("QPrintPreviewWidget", /::setCursor\s*\(/, "cursor")
-property_reader("QPrintPreviewWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
-property_writer("QPrintPreviewWidget", /::setMouseTracking\s*\(/, "mouseTracking")
-property_reader("QPrintPreviewWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
-property_reader("QPrintPreviewWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
-property_writer("QPrintPreviewWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
-property_reader("QPrintPreviewWidget", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
-property_reader("QPrintPreviewWidget", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
-property_writer("QPrintPreviewWidget", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
-property_reader("QPrintPreviewWidget", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
-property_writer("QPrintPreviewWidget", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
-property_reader("QPrintPreviewWidget", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QPrintPreviewWidget", /::setVisible\s*\(/, "visible")
-property_reader("QPrintPreviewWidget", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
-property_reader("QPrintPreviewWidget", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
-property_reader("QPrintPreviewWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_reader("QPrintPreviewWidget", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
-property_reader("QPrintPreviewWidget", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
-property_reader("QPrintPreviewWidget", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
-property_writer("QPrintPreviewWidget", /::setAcceptDrops\s*\(/, "acceptDrops")
-property_reader("QPrintPreviewWidget", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
-property_writer("QPrintPreviewWidget", /::setWindowTitle\s*\(/, "windowTitle")
-property_reader("QPrintPreviewWidget", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QPrintPreviewWidget", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QPrintPreviewWidget", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
-property_writer("QPrintPreviewWidget", /::setWindowIconText\s*\(/, "windowIconText")
-property_reader("QPrintPreviewWidget", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
-property_writer("QPrintPreviewWidget", /::setWindowOpacity\s*\(/, "windowOpacity")
-property_reader("QPrintPreviewWidget", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
-property_writer("QPrintPreviewWidget", /::setWindowModified\s*\(/, "windowModified")
-property_reader("QPrintPreviewWidget", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QPrintPreviewWidget", /::setToolTip\s*\(/, "toolTip")
-property_reader("QPrintPreviewWidget", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
-property_writer("QPrintPreviewWidget", /::setToolTipDuration\s*\(/, "toolTipDuration")
-property_reader("QPrintPreviewWidget", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QPrintPreviewWidget", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QPrintPreviewWidget", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QPrintPreviewWidget", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QPrintPreviewWidget", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
-property_writer("QPrintPreviewWidget", /::setAccessibleName\s*\(/, "accessibleName")
-property_reader("QPrintPreviewWidget", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
-property_writer("QPrintPreviewWidget", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-property_reader("QPrintPreviewWidget", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QPrintPreviewWidget", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QPrintPreviewWidget", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
-property_writer("QPrintPreviewWidget", /::setAutoFillBackground\s*\(/, "autoFillBackground")
-property_reader("QPrintPreviewWidget", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
-property_writer("QPrintPreviewWidget", /::setStyleSheet\s*\(/, "styleSheet")
-property_reader("QPrintPreviewWidget", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_writer("QPrintPreviewWidget", /::setLocale\s*\(/, "locale")
-property_reader("QPrintPreviewWidget", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
-property_writer("QPrintPreviewWidget", /::setWindowFilePath\s*\(/, "windowFilePath")
-property_reader("QPrintPreviewWidget", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
-property_writer("QPrintPreviewWidget", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QProcess", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QProcess", /::setObjectName\s*\(/, "objectName")
property_reader("QProgressBar", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QProgressBar", /::setObjectName\s*\(/, "objectName")
property_reader("QProgressBar", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -6831,6 +6402,8 @@ property_reader("QProgressBar", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QProgressBar", /::setCursor\s*\(/, "cursor")
property_reader("QProgressBar", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QProgressBar", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QProgressBar", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QProgressBar", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QProgressBar", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QProgressBar", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QProgressBar", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -6950,6 +6523,8 @@ property_reader("QProgressDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor
property_writer("QProgressDialog", /::setCursor\s*\(/, "cursor")
property_reader("QProgressDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QProgressDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QProgressDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QProgressDialog", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QProgressDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QProgressDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QProgressDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7020,30 +6595,6 @@ property_reader("QProgressDialog", /::(minimumDuration|isMinimumDuration|hasMini
property_writer("QProgressDialog", /::setMinimumDuration\s*\(/, "minimumDuration")
property_reader("QProgressDialog", /::(labelText|isLabelText|hasLabelText)\s*\(/, "labelText")
property_writer("QProgressDialog", /::setLabelText\s*\(/, "labelText")
-property_reader("QPropertyAnimation", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QPropertyAnimation", /::setObjectName\s*\(/, "objectName")
-property_reader("QPropertyAnimation", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QPropertyAnimation", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QPropertyAnimation", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QPropertyAnimation", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QPropertyAnimation", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QPropertyAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
-property_reader("QPropertyAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QPropertyAnimation", /::setDirection\s*\(/, "direction")
-property_reader("QPropertyAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QPropertyAnimation", /::(startValue|isStartValue|hasStartValue)\s*\(/, "startValue")
-property_writer("QPropertyAnimation", /::setStartValue\s*\(/, "startValue")
-property_reader("QPropertyAnimation", /::(endValue|isEndValue|hasEndValue)\s*\(/, "endValue")
-property_writer("QPropertyAnimation", /::setEndValue\s*\(/, "endValue")
-property_reader("QPropertyAnimation", /::(currentValue|isCurrentValue|hasCurrentValue)\s*\(/, "currentValue")
-property_reader("QPropertyAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_writer("QPropertyAnimation", /::setDuration\s*\(/, "duration")
-property_reader("QPropertyAnimation", /::(easingCurve|isEasingCurve|hasEasingCurve)\s*\(/, "easingCurve")
-property_writer("QPropertyAnimation", /::setEasingCurve\s*\(/, "easingCurve")
-property_reader("QPropertyAnimation", /::(propertyName|isPropertyName|hasPropertyName)\s*\(/, "propertyName")
-property_writer("QPropertyAnimation", /::setPropertyName\s*\(/, "propertyName")
-property_reader("QPropertyAnimation", /::(targetObject|isTargetObject|hasTargetObject)\s*\(/, "targetObject")
-property_writer("QPropertyAnimation", /::setTargetObject\s*\(/, "targetObject")
property_reader("QPushButton", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QPushButton", /::setObjectName\s*\(/, "objectName")
property_reader("QPushButton", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -7093,6 +6644,8 @@ property_reader("QPushButton", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QPushButton", /::setCursor\s*\(/, "cursor")
property_reader("QPushButton", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QPushButton", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QPushButton", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QPushButton", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QPushButton", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QPushButton", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QPushButton", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7221,6 +6774,8 @@ property_reader("QRadioButton", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QRadioButton", /::setCursor\s*\(/, "cursor")
property_reader("QRadioButton", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QRadioButton", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QRadioButton", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QRadioButton", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QRadioButton", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QRadioButton", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QRadioButton", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7294,80 +6849,6 @@ property_reader("QRadioButton", /::(autoRepeatInterval|isAutoRepeatInterval|hasA
property_writer("QRadioButton", /::setAutoRepeatInterval\s*\(/, "autoRepeatInterval")
property_reader("QRadioButton", /::(down|isDown|hasDown)\s*\(/, "down")
property_writer("QRadioButton", /::setDown\s*\(/, "down")
-property_reader("QRadioData", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRadioData", /::setObjectName\s*\(/, "objectName")
-property_reader("QRadioData", /::(stationId|isStationId|hasStationId)\s*\(/, "stationId")
-property_reader("QRadioData", /::(programType|isProgramType|hasProgramType)\s*\(/, "programType")
-property_reader("QRadioData", /::(programTypeName|isProgramTypeName|hasProgramTypeName)\s*\(/, "programTypeName")
-property_reader("QRadioData", /::(stationName|isStationName|hasStationName)\s*\(/, "stationName")
-property_reader("QRadioData", /::(radioText|isRadioText|hasRadioText)\s*\(/, "radioText")
-property_reader("QRadioData", /::(alternativeFrequenciesEnabled|isAlternativeFrequenciesEnabled|hasAlternativeFrequenciesEnabled)\s*\(/, "alternativeFrequenciesEnabled")
-property_writer("QRadioData", /::setAlternativeFrequenciesEnabled\s*\(/, "alternativeFrequenciesEnabled")
-property_reader("QRadioDataControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRadioDataControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QRadioTuner", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRadioTuner", /::setObjectName\s*\(/, "objectName")
-property_reader("QRadioTuner", /::(notifyInterval|isNotifyInterval|hasNotifyInterval)\s*\(/, "notifyInterval")
-property_writer("QRadioTuner", /::setNotifyInterval\s*\(/, "notifyInterval")
-property_reader("QRadioTuner", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QRadioTuner", /::(band|isBand|hasBand)\s*\(/, "band")
-property_writer("QRadioTuner", /::setBand\s*\(/, "band")
-property_reader("QRadioTuner", /::(frequency|isFrequency|hasFrequency)\s*\(/, "frequency")
-property_writer("QRadioTuner", /::setFrequency\s*\(/, "frequency")
-property_reader("QRadioTuner", /::(stereo|isStereo|hasStereo)\s*\(/, "stereo")
-property_reader("QRadioTuner", /::(stereoMode|isStereoMode|hasStereoMode)\s*\(/, "stereoMode")
-property_writer("QRadioTuner", /::setStereoMode\s*\(/, "stereoMode")
-property_reader("QRadioTuner", /::(signalStrength|isSignalStrength|hasSignalStrength)\s*\(/, "signalStrength")
-property_reader("QRadioTuner", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
-property_writer("QRadioTuner", /::setVolume\s*\(/, "volume")
-property_reader("QRadioTuner", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
-property_writer("QRadioTuner", /::setMuted\s*\(/, "muted")
-property_reader("QRadioTuner", /::(searching|isSearching|hasSearching)\s*\(/, "searching")
-property_reader("QRadioTuner", /::(antennaConnected|isAntennaConnected|hasAntennaConnected)\s*\(/, "antennaConnected")
-property_reader("QRadioTuner", /::(radioData|isRadioData|hasRadioData)\s*\(/, "radioData")
-property_reader("QRadioTunerControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRadioTunerControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QRasterWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRasterWindow", /::setObjectName\s*\(/, "objectName")
-property_reader("QRasterWindow", /::(title|isTitle|hasTitle)\s*\(/, "title")
-property_writer("QRasterWindow", /::setTitle\s*\(/, "title")
-property_reader("QRasterWindow", /::(modality|isModality|hasModality)\s*\(/, "modality")
-property_writer("QRasterWindow", /::setModality\s*\(/, "modality")
-property_reader("QRasterWindow", /::(flags|isFlags|hasFlags)\s*\(/, "flags")
-property_writer("QRasterWindow", /::setFlags\s*\(/, "flags")
-property_reader("QRasterWindow", /::(x|isX|hasX)\s*\(/, "x")
-property_writer("QRasterWindow", /::setX\s*\(/, "x")
-property_reader("QRasterWindow", /::(y|isY|hasY)\s*\(/, "y")
-property_writer("QRasterWindow", /::setY\s*\(/, "y")
-property_reader("QRasterWindow", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_writer("QRasterWindow", /::setWidth\s*\(/, "width")
-property_reader("QRasterWindow", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_writer("QRasterWindow", /::setHeight\s*\(/, "height")
-property_reader("QRasterWindow", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QRasterWindow", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QRasterWindow", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QRasterWindow", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QRasterWindow", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QRasterWindow", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QRasterWindow", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QRasterWindow", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QRasterWindow", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QRasterWindow", /::setVisible\s*\(/, "visible")
-property_reader("QRasterWindow", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QRasterWindow", /::(visibility|isVisibility|hasVisibility)\s*\(/, "visibility")
-property_writer("QRasterWindow", /::setVisibility\s*\(/, "visibility")
-property_reader("QRasterWindow", /::(contentOrientation|isContentOrientation|hasContentOrientation)\s*\(/, "contentOrientation")
-property_writer("QRasterWindow", /::setContentOrientation\s*\(/, "contentOrientation")
-property_reader("QRasterWindow", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
-property_writer("QRasterWindow", /::setOpacity\s*\(/, "opacity")
-property_reader("QRegExpValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRegExpValidator", /::setObjectName\s*\(/, "objectName")
-property_reader("QRegExpValidator", /::(regExp|isRegExp|hasRegExp)\s*\(/, "regExp")
-property_writer("QRegExpValidator", /::setRegExp\s*\(/, "regExp")
-property_reader("QRegularExpressionValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QRegularExpressionValidator", /::setObjectName\s*\(/, "objectName")
-property_reader("QRegularExpressionValidator", /::(regularExpression|isRegularExpression|hasRegularExpression)\s*\(/, "regularExpression")
-property_writer("QRegularExpressionValidator", /::setRegularExpression\s*\(/, "regularExpression")
property_reader("QRubberBand", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QRubberBand", /::setObjectName\s*\(/, "objectName")
property_reader("QRubberBand", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -7417,6 +6898,8 @@ property_reader("QRubberBand", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QRubberBand", /::setCursor\s*\(/, "cursor")
property_reader("QRubberBand", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QRubberBand", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QRubberBand", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QRubberBand", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QRubberBand", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QRubberBand", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QRubberBand", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7468,32 +6951,6 @@ property_reader("QRubberBand", /::(windowFilePath|isWindowFilePath|hasWindowFile
property_writer("QRubberBand", /::setWindowFilePath\s*\(/, "windowFilePath")
property_reader("QRubberBand", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
property_writer("QRubberBand", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QSaveFile", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSaveFile", /::setObjectName\s*\(/, "objectName")
-property_reader("QScreen", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QScreen", /::setObjectName\s*\(/, "objectName")
-property_reader("QScreen", /::(name|isName|hasName)\s*\(/, "name")
-property_reader("QScreen", /::(depth|isDepth|hasDepth)\s*\(/, "depth")
-property_reader("QScreen", /::(size|isSize|hasSize)\s*\(/, "size")
-property_reader("QScreen", /::(availableSize|isAvailableSize|hasAvailableSize)\s*\(/, "availableSize")
-property_reader("QScreen", /::(virtualSize|isVirtualSize|hasVirtualSize)\s*\(/, "virtualSize")
-property_reader("QScreen", /::(availableVirtualSize|isAvailableVirtualSize|hasAvailableVirtualSize)\s*\(/, "availableVirtualSize")
-property_reader("QScreen", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_reader("QScreen", /::(availableGeometry|isAvailableGeometry|hasAvailableGeometry)\s*\(/, "availableGeometry")
-property_reader("QScreen", /::(virtualGeometry|isVirtualGeometry|hasVirtualGeometry)\s*\(/, "virtualGeometry")
-property_reader("QScreen", /::(availableVirtualGeometry|isAvailableVirtualGeometry|hasAvailableVirtualGeometry)\s*\(/, "availableVirtualGeometry")
-property_reader("QScreen", /::(physicalSize|isPhysicalSize|hasPhysicalSize)\s*\(/, "physicalSize")
-property_reader("QScreen", /::(physicalDotsPerInchX|isPhysicalDotsPerInchX|hasPhysicalDotsPerInchX)\s*\(/, "physicalDotsPerInchX")
-property_reader("QScreen", /::(physicalDotsPerInchY|isPhysicalDotsPerInchY|hasPhysicalDotsPerInchY)\s*\(/, "physicalDotsPerInchY")
-property_reader("QScreen", /::(physicalDotsPerInch|isPhysicalDotsPerInch|hasPhysicalDotsPerInch)\s*\(/, "physicalDotsPerInch")
-property_reader("QScreen", /::(logicalDotsPerInchX|isLogicalDotsPerInchX|hasLogicalDotsPerInchX)\s*\(/, "logicalDotsPerInchX")
-property_reader("QScreen", /::(logicalDotsPerInchY|isLogicalDotsPerInchY|hasLogicalDotsPerInchY)\s*\(/, "logicalDotsPerInchY")
-property_reader("QScreen", /::(logicalDotsPerInch|isLogicalDotsPerInch|hasLogicalDotsPerInch)\s*\(/, "logicalDotsPerInch")
-property_reader("QScreen", /::(devicePixelRatio|isDevicePixelRatio|hasDevicePixelRatio)\s*\(/, "devicePixelRatio")
-property_reader("QScreen", /::(primaryOrientation|isPrimaryOrientation|hasPrimaryOrientation)\s*\(/, "primaryOrientation")
-property_reader("QScreen", /::(orientation|isOrientation|hasOrientation)\s*\(/, "orientation")
-property_reader("QScreen", /::(nativeOrientation|isNativeOrientation|hasNativeOrientation)\s*\(/, "nativeOrientation")
-property_reader("QScreen", /::(refreshRate|isRefreshRate|hasRefreshRate)\s*\(/, "refreshRate")
property_reader("QScrollArea", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QScrollArea", /::setObjectName\s*\(/, "objectName")
property_reader("QScrollArea", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -7543,6 +7000,8 @@ property_reader("QScrollArea", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QScrollArea", /::setCursor\s*\(/, "cursor")
property_reader("QScrollArea", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QScrollArea", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QScrollArea", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QScrollArea", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QScrollArea", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QScrollArea", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QScrollArea", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7664,6 +7123,8 @@ property_reader("QScrollBar", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QScrollBar", /::setCursor\s*\(/, "cursor")
property_reader("QScrollBar", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QScrollBar", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QScrollBar", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QScrollBar", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QScrollBar", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QScrollBar", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QScrollBar", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7742,51 +7203,6 @@ property_writer("QScroller", /::setObjectName\s*\(/, "objectName")
property_reader("QScroller", /::(state|isState|hasState)\s*\(/, "state")
property_reader("QScroller", /::(scrollerProperties|isScrollerProperties|hasScrollerProperties)\s*\(/, "scrollerProperties")
property_writer("QScroller", /::setScrollerProperties\s*\(/, "scrollerProperties")
-property_reader("QSequentialAnimationGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSequentialAnimationGroup", /::setObjectName\s*\(/, "objectName")
-property_reader("QSequentialAnimationGroup", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QSequentialAnimationGroup", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QSequentialAnimationGroup", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QSequentialAnimationGroup", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QSequentialAnimationGroup", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QSequentialAnimationGroup", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
-property_reader("QSequentialAnimationGroup", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QSequentialAnimationGroup", /::setDirection\s*\(/, "direction")
-property_reader("QSequentialAnimationGroup", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QSequentialAnimationGroup", /::(currentAnimation|isCurrentAnimation|hasCurrentAnimation)\s*\(/, "currentAnimation")
-property_reader("QSessionManager", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSessionManager", /::setObjectName\s*\(/, "objectName")
-property_reader("QSettings", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSettings", /::setObjectName\s*\(/, "objectName")
-property_reader("QSharedMemory", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSharedMemory", /::setObjectName\s*\(/, "objectName")
-property_reader("QShortcut", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QShortcut", /::setObjectName\s*\(/, "objectName")
-property_reader("QShortcut", /::(key|isKey|hasKey)\s*\(/, "key")
-property_writer("QShortcut", /::setKey\s*\(/, "key")
-property_reader("QShortcut", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QShortcut", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QShortcut", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QShortcut", /::setEnabled\s*\(/, "enabled")
-property_reader("QShortcut", /::(autoRepeat|isAutoRepeat|hasAutoRepeat)\s*\(/, "autoRepeat")
-property_writer("QShortcut", /::setAutoRepeat\s*\(/, "autoRepeat")
-property_reader("QShortcut", /::(context|isContext|hasContext)\s*\(/, "context")
-property_writer("QShortcut", /::setContext\s*\(/, "context")
-property_reader("QSignalMapper", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSignalMapper", /::setObjectName\s*\(/, "objectName")
-property_reader("QSignalTransition", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSignalTransition", /::setObjectName\s*\(/, "objectName")
-property_reader("QSignalTransition", /::(sourceState|isSourceState|hasSourceState)\s*\(/, "sourceState")
-property_reader("QSignalTransition", /::(targetState|isTargetState|hasTargetState)\s*\(/, "targetState")
-property_writer("QSignalTransition", /::setTargetState\s*\(/, "targetState")
-property_reader("QSignalTransition", /::(targetStates|isTargetStates|hasTargetStates)\s*\(/, "targetStates")
-property_writer("QSignalTransition", /::setTargetStates\s*\(/, "targetStates")
-property_reader("QSignalTransition", /::(transitionType|isTransitionType|hasTransitionType)\s*\(/, "transitionType")
-property_writer("QSignalTransition", /::setTransitionType\s*\(/, "transitionType")
-property_reader("QSignalTransition", /::(senderObject|isSenderObject|hasSenderObject)\s*\(/, "senderObject")
-property_writer("QSignalTransition", /::setSenderObject\s*\(/, "senderObject")
-property_reader("QSignalTransition", /::(signal|isSignal|hasSignal)\s*\(/, "signal")
-property_writer("QSignalTransition", /::setSignal\s*\(/, "signal")
property_reader("QSizeGrip", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QSizeGrip", /::setObjectName\s*\(/, "objectName")
property_reader("QSizeGrip", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -7836,6 +7252,8 @@ property_reader("QSizeGrip", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QSizeGrip", /::setCursor\s*\(/, "cursor")
property_reader("QSizeGrip", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QSizeGrip", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QSizeGrip", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QSizeGrip", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QSizeGrip", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QSizeGrip", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QSizeGrip", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -7936,6 +7354,8 @@ property_reader("QSlider", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QSlider", /::setCursor\s*\(/, "cursor")
property_reader("QSlider", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QSlider", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QSlider", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QSlider", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QSlider", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QSlider", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QSlider", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8013,45 +7433,6 @@ property_reader("QSlider", /::(tickPosition|isTickPosition|hasTickPosition)\s*\(
property_writer("QSlider", /::setTickPosition\s*\(/, "tickPosition")
property_reader("QSlider", /::(tickInterval|isTickInterval|hasTickInterval)\s*\(/, "tickInterval")
property_writer("QSlider", /::setTickInterval\s*\(/, "tickInterval")
-property_reader("QSocketNotifier", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSocketNotifier", /::setObjectName\s*\(/, "objectName")
-property_reader("QSortFilterProxyModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSortFilterProxyModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QSortFilterProxyModel", /::(sourceModel|isSourceModel|hasSourceModel)\s*\(/, "sourceModel")
-property_writer("QSortFilterProxyModel", /::setSourceModel\s*\(/, "sourceModel")
-property_reader("QSortFilterProxyModel", /::(filterRegExp|isFilterRegExp|hasFilterRegExp)\s*\(/, "filterRegExp")
-property_writer("QSortFilterProxyModel", /::setFilterRegExp\s*\(/, "filterRegExp")
-property_reader("QSortFilterProxyModel", /::(filterKeyColumn|isFilterKeyColumn|hasFilterKeyColumn)\s*\(/, "filterKeyColumn")
-property_writer("QSortFilterProxyModel", /::setFilterKeyColumn\s*\(/, "filterKeyColumn")
-property_reader("QSortFilterProxyModel", /::(dynamicSortFilter|isDynamicSortFilter|hasDynamicSortFilter)\s*\(/, "dynamicSortFilter")
-property_writer("QSortFilterProxyModel", /::setDynamicSortFilter\s*\(/, "dynamicSortFilter")
-property_reader("QSortFilterProxyModel", /::(filterCaseSensitivity|isFilterCaseSensitivity|hasFilterCaseSensitivity)\s*\(/, "filterCaseSensitivity")
-property_writer("QSortFilterProxyModel", /::setFilterCaseSensitivity\s*\(/, "filterCaseSensitivity")
-property_reader("QSortFilterProxyModel", /::(sortCaseSensitivity|isSortCaseSensitivity|hasSortCaseSensitivity)\s*\(/, "sortCaseSensitivity")
-property_writer("QSortFilterProxyModel", /::setSortCaseSensitivity\s*\(/, "sortCaseSensitivity")
-property_reader("QSortFilterProxyModel", /::(isSortLocaleAware|isIsSortLocaleAware|hasIsSortLocaleAware)\s*\(/, "isSortLocaleAware")
-property_writer("QSortFilterProxyModel", /::setIsSortLocaleAware\s*\(/, "isSortLocaleAware")
-property_reader("QSortFilterProxyModel", /::(sortRole|isSortRole|hasSortRole)\s*\(/, "sortRole")
-property_writer("QSortFilterProxyModel", /::setSortRole\s*\(/, "sortRole")
-property_reader("QSortFilterProxyModel", /::(filterRole|isFilterRole|hasFilterRole)\s*\(/, "filterRole")
-property_writer("QSortFilterProxyModel", /::setFilterRole\s*\(/, "filterRole")
-property_reader("QSound", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSound", /::setObjectName\s*\(/, "objectName")
-property_reader("QSoundEffect", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSoundEffect", /::setObjectName\s*\(/, "objectName")
-property_reader("QSoundEffect", /::(source|isSource|hasSource)\s*\(/, "source")
-property_writer("QSoundEffect", /::setSource\s*\(/, "source")
-property_reader("QSoundEffect", /::(loops|isLoops|hasLoops)\s*\(/, "loops")
-property_writer("QSoundEffect", /::setLoops\s*\(/, "loops")
-property_reader("QSoundEffect", /::(loopsRemaining|isLoopsRemaining|hasLoopsRemaining)\s*\(/, "loopsRemaining")
-property_reader("QSoundEffect", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
-property_writer("QSoundEffect", /::setVolume\s*\(/, "volume")
-property_reader("QSoundEffect", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
-property_writer("QSoundEffect", /::setMuted\s*\(/, "muted")
-property_reader("QSoundEffect", /::(playing|isPlaying|hasPlaying)\s*\(/, "playing")
-property_reader("QSoundEffect", /::(status|isStatus|hasStatus)\s*\(/, "status")
-property_reader("QSoundEffect", /::(category|isCategory|hasCategory)\s*\(/, "category")
-property_writer("QSoundEffect", /::setCategory\s*\(/, "category")
property_reader("QSpinBox", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QSpinBox", /::setObjectName\s*\(/, "objectName")
property_reader("QSpinBox", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -8101,6 +7482,8 @@ property_reader("QSpinBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QSpinBox", /::setCursor\s*\(/, "cursor")
property_reader("QSpinBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QSpinBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QSpinBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QSpinBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QSpinBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QSpinBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QSpinBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8185,6 +7568,8 @@ property_reader("QSpinBox", /::(maximum|isMaximum|hasMaximum)\s*\(/, "maximum")
property_writer("QSpinBox", /::setMaximum\s*\(/, "maximum")
property_reader("QSpinBox", /::(singleStep|isSingleStep|hasSingleStep)\s*\(/, "singleStep")
property_writer("QSpinBox", /::setSingleStep\s*\(/, "singleStep")
+property_reader("QSpinBox", /::(stepType|isStepType|hasStepType)\s*\(/, "stepType")
+property_writer("QSpinBox", /::setStepType\s*\(/, "stepType")
property_reader("QSpinBox", /::(value|isValue|hasValue)\s*\(/, "value")
property_writer("QSpinBox", /::setValue\s*\(/, "value")
property_reader("QSpinBox", /::(displayIntegerBase|isDisplayIntegerBase|hasDisplayIntegerBase)\s*\(/, "displayIntegerBase")
@@ -8238,6 +7623,8 @@ property_reader("QSplashScreen", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QSplashScreen", /::setCursor\s*\(/, "cursor")
property_reader("QSplashScreen", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QSplashScreen", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QSplashScreen", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QSplashScreen", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QSplashScreen", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QSplashScreen", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QSplashScreen", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8338,6 +7725,8 @@ property_reader("QSplitter", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QSplitter", /::setCursor\s*\(/, "cursor")
property_reader("QSplitter", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QSplitter", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QSplitter", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QSplitter", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QSplitter", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QSplitter", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QSplitter", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8457,6 +7846,8 @@ property_reader("QSplitterHandle", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor
property_writer("QSplitterHandle", /::setCursor\s*\(/, "cursor")
property_reader("QSplitterHandle", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QSplitterHandle", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QSplitterHandle", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QSplitterHandle", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QSplitterHandle", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QSplitterHandle", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QSplitterHandle", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8508,22 +7899,12 @@ property_reader("QSplitterHandle", /::(windowFilePath|isWindowFilePath|hasWindow
property_writer("QSplitterHandle", /::setWindowFilePath\s*\(/, "windowFilePath")
property_reader("QSplitterHandle", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
property_writer("QSplitterHandle", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QSqlDriver", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSqlDriver", /::setObjectName\s*\(/, "objectName")
-property_reader("QSqlQueryModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSqlQueryModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QSqlRelationalTableModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSqlRelationalTableModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QSqlTableModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSqlTableModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QSslSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSslSocket", /::setObjectName\s*\(/, "objectName")
property_reader("QStackedLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QStackedLayout", /::setObjectName\s*\(/, "objectName")
-property_reader("QStackedLayout", /::(margin|isMargin|hasMargin)\s*\(/, "margin")
-property_writer("QStackedLayout", /::setMargin\s*\(/, "margin")
property_reader("QStackedLayout", /::(spacing|isSpacing|hasSpacing)\s*\(/, "spacing")
property_writer("QStackedLayout", /::setSpacing\s*\(/, "spacing")
+property_reader("QStackedLayout", /::(contentsMargins|isContentsMargins|hasContentsMargins)\s*\(/, "contentsMargins")
+property_writer("QStackedLayout", /::setContentsMargins\s*\(/, "contentsMargins")
property_reader("QStackedLayout", /::(sizeConstraint|isSizeConstraint|hasSizeConstraint)\s*\(/, "sizeConstraint")
property_writer("QStackedLayout", /::setSizeConstraint\s*\(/, "sizeConstraint")
property_reader("QStackedLayout", /::(currentIndex|isCurrentIndex|hasCurrentIndex)\s*\(/, "currentIndex")
@@ -8579,6 +7960,8 @@ property_reader("QStackedWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor"
property_writer("QStackedWidget", /::setCursor\s*\(/, "cursor")
property_reader("QStackedWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QStackedWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QStackedWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QStackedWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QStackedWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QStackedWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QStackedWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8644,35 +8027,6 @@ property_writer("QStackedWidget", /::setFrameRect\s*\(/, "frameRect")
property_reader("QStackedWidget", /::(currentIndex|isCurrentIndex|hasCurrentIndex)\s*\(/, "currentIndex")
property_writer("QStackedWidget", /::setCurrentIndex\s*\(/, "currentIndex")
property_reader("QStackedWidget", /::(count|isCount|hasCount)\s*\(/, "count")
-property_reader("QStandardItemModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QStandardItemModel", /::setObjectName\s*\(/, "objectName")
-property_reader("QStandardItemModel", /::(sortRole|isSortRole|hasSortRole)\s*\(/, "sortRole")
-property_writer("QStandardItemModel", /::setSortRole\s*\(/, "sortRole")
-property_reader("QState", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QState", /::setObjectName\s*\(/, "objectName")
-property_reader("QState", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QState", /::(initialState|isInitialState|hasInitialState)\s*\(/, "initialState")
-property_writer("QState", /::setInitialState\s*\(/, "initialState")
-property_reader("QState", /::(errorState|isErrorState|hasErrorState)\s*\(/, "errorState")
-property_writer("QState", /::setErrorState\s*\(/, "errorState")
-property_reader("QState", /::(childMode|isChildMode|hasChildMode)\s*\(/, "childMode")
-property_writer("QState", /::setChildMode\s*\(/, "childMode")
-property_reader("QStateMachine", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QStateMachine", /::setObjectName\s*\(/, "objectName")
-property_reader("QStateMachine", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QStateMachine", /::(initialState|isInitialState|hasInitialState)\s*\(/, "initialState")
-property_writer("QStateMachine", /::setInitialState\s*\(/, "initialState")
-property_reader("QStateMachine", /::(errorState|isErrorState|hasErrorState)\s*\(/, "errorState")
-property_writer("QStateMachine", /::setErrorState\s*\(/, "errorState")
-property_reader("QStateMachine", /::(childMode|isChildMode|hasChildMode)\s*\(/, "childMode")
-property_writer("QStateMachine", /::setChildMode\s*\(/, "childMode")
-property_reader("QStateMachine", /::(errorString|isErrorString|hasErrorString)\s*\(/, "errorString")
-property_reader("QStateMachine", /::(globalRestorePolicy|isGlobalRestorePolicy|hasGlobalRestorePolicy)\s*\(/, "globalRestorePolicy")
-property_writer("QStateMachine", /::setGlobalRestorePolicy\s*\(/, "globalRestorePolicy")
-property_reader("QStateMachine", /::(running|isRunning|hasRunning)\s*\(/, "running")
-property_writer("QStateMachine", /::setRunning\s*\(/, "running")
-property_reader("QStateMachine", /::(animated|isAnimated|hasAnimated)\s*\(/, "animated")
-property_writer("QStateMachine", /::setAnimated\s*\(/, "animated")
property_reader("QStatusBar", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QStatusBar", /::setObjectName\s*\(/, "objectName")
property_reader("QStatusBar", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -8722,6 +8076,8 @@ property_reader("QStatusBar", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QStatusBar", /::setCursor\s*\(/, "cursor")
property_reader("QStatusBar", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QStatusBar", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QStatusBar", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QStatusBar", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QStatusBar", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QStatusBar", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QStatusBar", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -8775,140 +8131,12 @@ property_reader("QStatusBar", /::(inputMethodHints|isInputMethodHints|hasInputMe
property_writer("QStatusBar", /::setInputMethodHints\s*\(/, "inputMethodHints")
property_reader("QStatusBar", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
property_writer("QStatusBar", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
-property_reader("QStringListModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QStringListModel", /::setObjectName\s*\(/, "objectName")
property_reader("QStyle", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QStyle", /::setObjectName\s*\(/, "objectName")
-property_reader("QStyleHints", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QStyleHints", /::setObjectName\s*\(/, "objectName")
-property_reader("QStyleHints", /::(cursorFlashTime|isCursorFlashTime|hasCursorFlashTime)\s*\(/, "cursorFlashTime")
-property_reader("QStyleHints", /::(fontSmoothingGamma|isFontSmoothingGamma|hasFontSmoothingGamma)\s*\(/, "fontSmoothingGamma")
-property_reader("QStyleHints", /::(keyboardAutoRepeatRate|isKeyboardAutoRepeatRate|hasKeyboardAutoRepeatRate)\s*\(/, "keyboardAutoRepeatRate")
-property_reader("QStyleHints", /::(keyboardInputInterval|isKeyboardInputInterval|hasKeyboardInputInterval)\s*\(/, "keyboardInputInterval")
-property_reader("QStyleHints", /::(mouseDoubleClickInterval|isMouseDoubleClickInterval|hasMouseDoubleClickInterval)\s*\(/, "mouseDoubleClickInterval")
-property_reader("QStyleHints", /::(mousePressAndHoldInterval|isMousePressAndHoldInterval|hasMousePressAndHoldInterval)\s*\(/, "mousePressAndHoldInterval")
-property_reader("QStyleHints", /::(passwordMaskCharacter|isPasswordMaskCharacter|hasPasswordMaskCharacter)\s*\(/, "passwordMaskCharacter")
-property_reader("QStyleHints", /::(passwordMaskDelay|isPasswordMaskDelay|hasPasswordMaskDelay)\s*\(/, "passwordMaskDelay")
-property_reader("QStyleHints", /::(setFocusOnTouchRelease|isSetFocusOnTouchRelease|hasSetFocusOnTouchRelease)\s*\(/, "setFocusOnTouchRelease")
-property_reader("QStyleHints", /::(showIsFullScreen|isShowIsFullScreen|hasShowIsFullScreen)\s*\(/, "showIsFullScreen")
-property_reader("QStyleHints", /::(startDragDistance|isStartDragDistance|hasStartDragDistance)\s*\(/, "startDragDistance")
-property_reader("QStyleHints", /::(startDragTime|isStartDragTime|hasStartDragTime)\s*\(/, "startDragTime")
-property_reader("QStyleHints", /::(startDragVelocity|isStartDragVelocity|hasStartDragVelocity)\s*\(/, "startDragVelocity")
-property_reader("QStyleHints", /::(useRtlExtensions|isUseRtlExtensions|hasUseRtlExtensions)\s*\(/, "useRtlExtensions")
-property_reader("QStyleHints", /::(tabFocusBehavior|isTabFocusBehavior|hasTabFocusBehavior)\s*\(/, "tabFocusBehavior")
-property_reader("QStyleHints", /::(singleClickActivation|isSingleClickActivation|hasSingleClickActivation)\s*\(/, "singleClickActivation")
property_reader("QStylePlugin", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QStylePlugin", /::setObjectName\s*\(/, "objectName")
property_reader("QStyledItemDelegate", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QStyledItemDelegate", /::setObjectName\s*\(/, "objectName")
-property_reader("QSvgRenderer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSvgRenderer", /::setObjectName\s*\(/, "objectName")
-property_reader("QSvgRenderer", /::(viewBox|isViewBox|hasViewBox)\s*\(/, "viewBox")
-property_writer("QSvgRenderer", /::setViewBox\s*\(/, "viewBox")
-property_reader("QSvgRenderer", /::(framesPerSecond|isFramesPerSecond|hasFramesPerSecond)\s*\(/, "framesPerSecond")
-property_writer("QSvgRenderer", /::setFramesPerSecond\s*\(/, "framesPerSecond")
-property_reader("QSvgRenderer", /::(currentFrame|isCurrentFrame|hasCurrentFrame)\s*\(/, "currentFrame")
-property_writer("QSvgRenderer", /::setCurrentFrame\s*\(/, "currentFrame")
-property_reader("QSvgWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSvgWidget", /::setObjectName\s*\(/, "objectName")
-property_reader("QSvgWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_reader("QSvgWidget", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
-property_writer("QSvgWidget", /::setWindowModality\s*\(/, "windowModality")
-property_reader("QSvgWidget", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QSvgWidget", /::setEnabled\s*\(/, "enabled")
-property_reader("QSvgWidget", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_writer("QSvgWidget", /::setGeometry\s*\(/, "geometry")
-property_reader("QSvgWidget", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
-property_reader("QSvgWidget", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
-property_reader("QSvgWidget", /::(x|isX|hasX)\s*\(/, "x")
-property_reader("QSvgWidget", /::(y|isY|hasY)\s*\(/, "y")
-property_reader("QSvgWidget", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QSvgWidget", /::setPos\s*\(/, "pos")
-property_reader("QSvgWidget", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
-property_reader("QSvgWidget", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QSvgWidget", /::setSize\s*\(/, "size")
-property_reader("QSvgWidget", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_reader("QSvgWidget", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_reader("QSvgWidget", /::(rect|isRect|hasRect)\s*\(/, "rect")
-property_reader("QSvgWidget", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
-property_reader("QSvgWidget", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
-property_reader("QSvgWidget", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
-property_writer("QSvgWidget", /::setSizePolicy\s*\(/, "sizePolicy")
-property_reader("QSvgWidget", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
-property_writer("QSvgWidget", /::setMinimumSize\s*\(/, "minimumSize")
-property_reader("QSvgWidget", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
-property_writer("QSvgWidget", /::setMaximumSize\s*\(/, "maximumSize")
-property_reader("QSvgWidget", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QSvgWidget", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QSvgWidget", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QSvgWidget", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QSvgWidget", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QSvgWidget", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QSvgWidget", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QSvgWidget", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QSvgWidget", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
-property_writer("QSvgWidget", /::setSizeIncrement\s*\(/, "sizeIncrement")
-property_reader("QSvgWidget", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
-property_writer("QSvgWidget", /::setBaseSize\s*\(/, "baseSize")
-property_reader("QSvgWidget", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
-property_writer("QSvgWidget", /::setPalette\s*\(/, "palette")
-property_reader("QSvgWidget", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QSvgWidget", /::setFont\s*\(/, "font")
-property_reader("QSvgWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
-property_writer("QSvgWidget", /::setCursor\s*\(/, "cursor")
-property_reader("QSvgWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
-property_writer("QSvgWidget", /::setMouseTracking\s*\(/, "mouseTracking")
-property_reader("QSvgWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
-property_reader("QSvgWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
-property_writer("QSvgWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
-property_reader("QSvgWidget", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
-property_reader("QSvgWidget", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
-property_writer("QSvgWidget", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
-property_reader("QSvgWidget", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
-property_writer("QSvgWidget", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
-property_reader("QSvgWidget", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QSvgWidget", /::setVisible\s*\(/, "visible")
-property_reader("QSvgWidget", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
-property_reader("QSvgWidget", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
-property_reader("QSvgWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_reader("QSvgWidget", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
-property_reader("QSvgWidget", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
-property_reader("QSvgWidget", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
-property_writer("QSvgWidget", /::setAcceptDrops\s*\(/, "acceptDrops")
-property_reader("QSvgWidget", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
-property_writer("QSvgWidget", /::setWindowTitle\s*\(/, "windowTitle")
-property_reader("QSvgWidget", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QSvgWidget", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QSvgWidget", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
-property_writer("QSvgWidget", /::setWindowIconText\s*\(/, "windowIconText")
-property_reader("QSvgWidget", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
-property_writer("QSvgWidget", /::setWindowOpacity\s*\(/, "windowOpacity")
-property_reader("QSvgWidget", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
-property_writer("QSvgWidget", /::setWindowModified\s*\(/, "windowModified")
-property_reader("QSvgWidget", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QSvgWidget", /::setToolTip\s*\(/, "toolTip")
-property_reader("QSvgWidget", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
-property_writer("QSvgWidget", /::setToolTipDuration\s*\(/, "toolTipDuration")
-property_reader("QSvgWidget", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QSvgWidget", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QSvgWidget", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QSvgWidget", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QSvgWidget", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
-property_writer("QSvgWidget", /::setAccessibleName\s*\(/, "accessibleName")
-property_reader("QSvgWidget", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
-property_writer("QSvgWidget", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-property_reader("QSvgWidget", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QSvgWidget", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QSvgWidget", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
-property_writer("QSvgWidget", /::setAutoFillBackground\s*\(/, "autoFillBackground")
-property_reader("QSvgWidget", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
-property_writer("QSvgWidget", /::setStyleSheet\s*\(/, "styleSheet")
-property_reader("QSvgWidget", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_writer("QSvgWidget", /::setLocale\s*\(/, "locale")
-property_reader("QSvgWidget", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
-property_writer("QSvgWidget", /::setWindowFilePath\s*\(/, "windowFilePath")
-property_reader("QSvgWidget", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
-property_writer("QSvgWidget", /::setInputMethodHints\s*\(/, "inputMethodHints")
property_reader("QSwipeGesture", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QSwipeGesture", /::setObjectName\s*\(/, "objectName")
property_reader("QSwipeGesture", /::(state|isState|hasState)\s*\(/, "state")
@@ -8924,8 +8152,6 @@ property_reader("QSwipeGesture", /::(swipeAngle|isSwipeAngle|hasSwipeAngle)\s*\(
property_writer("QSwipeGesture", /::setSwipeAngle\s*\(/, "swipeAngle")
property_reader("QSwipeGesture", /::(velocity|isVelocity|hasVelocity)\s*\(/, "velocity")
property_writer("QSwipeGesture", /::setVelocity\s*\(/, "velocity")
-property_reader("QSyntaxHighlighter", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QSyntaxHighlighter", /::setObjectName\s*\(/, "objectName")
property_reader("QSystemTrayIcon", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QSystemTrayIcon", /::setObjectName\s*\(/, "objectName")
property_reader("QSystemTrayIcon", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
@@ -8983,6 +8209,8 @@ property_reader("QTabBar", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTabBar", /::setCursor\s*\(/, "cursor")
property_reader("QTabBar", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTabBar", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTabBar", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTabBar", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTabBar", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTabBar", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTabBar", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -9110,6 +8338,8 @@ property_reader("QTabWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTabWidget", /::setCursor\s*\(/, "cursor")
property_reader("QTabWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTabWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTabWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTabWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTabWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTabWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTabWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -9231,6 +8461,8 @@ property_reader("QTableView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTableView", /::setCursor\s*\(/, "cursor")
property_reader("QTableView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTableView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTableView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTableView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTableView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTableView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTableView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -9390,6 +8622,8 @@ property_reader("QTableWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTableWidget", /::setCursor\s*\(/, "cursor")
property_reader("QTableWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTableWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTableWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTableWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTableWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTableWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTableWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -9526,14 +8760,6 @@ property_writer("QTapGesture", /::setHotSpot\s*\(/, "hotSpot")
property_reader("QTapGesture", /::(hasHotSpot|isHasHotSpot|hasHasHotSpot)\s*\(/, "hasHotSpot")
property_reader("QTapGesture", /::(position|isPosition|hasPosition)\s*\(/, "position")
property_writer("QTapGesture", /::setPosition\s*\(/, "position")
-property_reader("QTcpServer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTcpServer", /::setObjectName\s*\(/, "objectName")
-property_reader("QTcpSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTcpSocket", /::setObjectName\s*\(/, "objectName")
-property_reader("QTemporaryFile", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTemporaryFile", /::setObjectName\s*\(/, "objectName")
-property_reader("QTextBlockGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTextBlockGroup", /::setObjectName\s*\(/, "objectName")
property_reader("QTextBrowser", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QTextBrowser", /::setObjectName\s*\(/, "objectName")
property_reader("QTextBrowser", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -9583,6 +8809,8 @@ property_reader("QTextBrowser", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTextBrowser", /::setCursor\s*\(/, "cursor")
property_reader("QTextBrowser", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTextBrowser", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTextBrowser", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTextBrowser", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTextBrowser", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTextBrowser", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTextBrowser", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -9665,14 +8893,16 @@ property_reader("QTextBrowser", /::(lineWrapColumnOrWidth|isLineWrapColumnOrWidt
property_writer("QTextBrowser", /::setLineWrapColumnOrWidth\s*\(/, "lineWrapColumnOrWidth")
property_reader("QTextBrowser", /::(readOnly|isReadOnly|hasReadOnly)\s*\(/, "readOnly")
property_writer("QTextBrowser", /::setReadOnly\s*\(/, "readOnly")
+property_reader("QTextBrowser", /::(markdown|isMarkdown|hasMarkdown)\s*\(/, "markdown")
+property_writer("QTextBrowser", /::setMarkdown\s*\(/, "markdown")
property_reader("QTextBrowser", /::(html|isHtml|hasHtml)\s*\(/, "html")
property_writer("QTextBrowser", /::setHtml\s*\(/, "html")
property_reader("QTextBrowser", /::(plainText|isPlainText|hasPlainText)\s*\(/, "plainText")
property_writer("QTextBrowser", /::setPlainText\s*\(/, "plainText")
property_reader("QTextBrowser", /::(overwriteMode|isOverwriteMode|hasOverwriteMode)\s*\(/, "overwriteMode")
property_writer("QTextBrowser", /::setOverwriteMode\s*\(/, "overwriteMode")
-property_reader("QTextBrowser", /::(tabStopWidth|isTabStopWidth|hasTabStopWidth)\s*\(/, "tabStopWidth")
-property_writer("QTextBrowser", /::setTabStopWidth\s*\(/, "tabStopWidth")
+property_reader("QTextBrowser", /::(tabStopDistance|isTabStopDistance|hasTabStopDistance)\s*\(/, "tabStopDistance")
+property_writer("QTextBrowser", /::setTabStopDistance\s*\(/, "tabStopDistance")
property_reader("QTextBrowser", /::(acceptRichText|isAcceptRichText|hasAcceptRichText)\s*\(/, "acceptRichText")
property_writer("QTextBrowser", /::setAcceptRichText\s*\(/, "acceptRichText")
property_reader("QTextBrowser", /::(cursorWidth|isCursorWidth|hasCursorWidth)\s*\(/, "cursorWidth")
@@ -9685,38 +8915,13 @@ property_reader("QTextBrowser", /::(placeholderText|isPlaceholderText|hasPlaceho
property_writer("QTextBrowser", /::setPlaceholderText\s*\(/, "placeholderText")
property_reader("QTextBrowser", /::(source|isSource|hasSource)\s*\(/, "source")
property_writer("QTextBrowser", /::setSource\s*\(/, "source")
+property_reader("QTextBrowser", /::(sourceType|isSourceType|hasSourceType)\s*\(/, "sourceType")
property_reader("QTextBrowser", /::(searchPaths|isSearchPaths|hasSearchPaths)\s*\(/, "searchPaths")
property_writer("QTextBrowser", /::setSearchPaths\s*\(/, "searchPaths")
property_reader("QTextBrowser", /::(openExternalLinks|isOpenExternalLinks|hasOpenExternalLinks)\s*\(/, "openExternalLinks")
property_writer("QTextBrowser", /::setOpenExternalLinks\s*\(/, "openExternalLinks")
property_reader("QTextBrowser", /::(openLinks|isOpenLinks|hasOpenLinks)\s*\(/, "openLinks")
property_writer("QTextBrowser", /::setOpenLinks\s*\(/, "openLinks")
-property_reader("QTextDocument", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTextDocument", /::setObjectName\s*\(/, "objectName")
-property_reader("QTextDocument", /::(undoRedoEnabled|isUndoRedoEnabled|hasUndoRedoEnabled)\s*\(/, "undoRedoEnabled")
-property_writer("QTextDocument", /::setUndoRedoEnabled\s*\(/, "undoRedoEnabled")
-property_reader("QTextDocument", /::(modified|isModified|hasModified)\s*\(/, "modified")
-property_writer("QTextDocument", /::setModified\s*\(/, "modified")
-property_reader("QTextDocument", /::(pageSize|isPageSize|hasPageSize)\s*\(/, "pageSize")
-property_writer("QTextDocument", /::setPageSize\s*\(/, "pageSize")
-property_reader("QTextDocument", /::(defaultFont|isDefaultFont|hasDefaultFont)\s*\(/, "defaultFont")
-property_writer("QTextDocument", /::setDefaultFont\s*\(/, "defaultFont")
-property_reader("QTextDocument", /::(useDesignMetrics|isUseDesignMetrics|hasUseDesignMetrics)\s*\(/, "useDesignMetrics")
-property_writer("QTextDocument", /::setUseDesignMetrics\s*\(/, "useDesignMetrics")
-property_reader("QTextDocument", /::(size|isSize|hasSize)\s*\(/, "size")
-property_reader("QTextDocument", /::(textWidth|isTextWidth|hasTextWidth)\s*\(/, "textWidth")
-property_writer("QTextDocument", /::setTextWidth\s*\(/, "textWidth")
-property_reader("QTextDocument", /::(blockCount|isBlockCount|hasBlockCount)\s*\(/, "blockCount")
-property_reader("QTextDocument", /::(indentWidth|isIndentWidth|hasIndentWidth)\s*\(/, "indentWidth")
-property_writer("QTextDocument", /::setIndentWidth\s*\(/, "indentWidth")
-property_reader("QTextDocument", /::(defaultStyleSheet|isDefaultStyleSheet|hasDefaultStyleSheet)\s*\(/, "defaultStyleSheet")
-property_writer("QTextDocument", /::setDefaultStyleSheet\s*\(/, "defaultStyleSheet")
-property_reader("QTextDocument", /::(maximumBlockCount|isMaximumBlockCount|hasMaximumBlockCount)\s*\(/, "maximumBlockCount")
-property_writer("QTextDocument", /::setMaximumBlockCount\s*\(/, "maximumBlockCount")
-property_reader("QTextDocument", /::(documentMargin|isDocumentMargin|hasDocumentMargin)\s*\(/, "documentMargin")
-property_writer("QTextDocument", /::setDocumentMargin\s*\(/, "documentMargin")
-property_reader("QTextDocument", /::(baseUrl|isBaseUrl|hasBaseUrl)\s*\(/, "baseUrl")
-property_writer("QTextDocument", /::setBaseUrl\s*\(/, "baseUrl")
property_reader("QTextEdit", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QTextEdit", /::setObjectName\s*\(/, "objectName")
property_reader("QTextEdit", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -9766,6 +8971,8 @@ property_reader("QTextEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTextEdit", /::setCursor\s*\(/, "cursor")
property_reader("QTextEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTextEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTextEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTextEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTextEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTextEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTextEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -9848,14 +9055,16 @@ property_reader("QTextEdit", /::(lineWrapColumnOrWidth|isLineWrapColumnOrWidth|h
property_writer("QTextEdit", /::setLineWrapColumnOrWidth\s*\(/, "lineWrapColumnOrWidth")
property_reader("QTextEdit", /::(readOnly|isReadOnly|hasReadOnly)\s*\(/, "readOnly")
property_writer("QTextEdit", /::setReadOnly\s*\(/, "readOnly")
+property_reader("QTextEdit", /::(markdown|isMarkdown|hasMarkdown)\s*\(/, "markdown")
+property_writer("QTextEdit", /::setMarkdown\s*\(/, "markdown")
property_reader("QTextEdit", /::(html|isHtml|hasHtml)\s*\(/, "html")
property_writer("QTextEdit", /::setHtml\s*\(/, "html")
property_reader("QTextEdit", /::(plainText|isPlainText|hasPlainText)\s*\(/, "plainText")
property_writer("QTextEdit", /::setPlainText\s*\(/, "plainText")
property_reader("QTextEdit", /::(overwriteMode|isOverwriteMode|hasOverwriteMode)\s*\(/, "overwriteMode")
property_writer("QTextEdit", /::setOverwriteMode\s*\(/, "overwriteMode")
-property_reader("QTextEdit", /::(tabStopWidth|isTabStopWidth|hasTabStopWidth)\s*\(/, "tabStopWidth")
-property_writer("QTextEdit", /::setTabStopWidth\s*\(/, "tabStopWidth")
+property_reader("QTextEdit", /::(tabStopDistance|isTabStopDistance|hasTabStopDistance)\s*\(/, "tabStopDistance")
+property_writer("QTextEdit", /::setTabStopDistance\s*\(/, "tabStopDistance")
property_reader("QTextEdit", /::(acceptRichText|isAcceptRichText|hasAcceptRichText)\s*\(/, "acceptRichText")
property_writer("QTextEdit", /::setAcceptRichText\s*\(/, "acceptRichText")
property_reader("QTextEdit", /::(cursorWidth|isCursorWidth|hasCursorWidth)\s*\(/, "cursorWidth")
@@ -9866,23 +9075,6 @@ property_reader("QTextEdit", /::(document|isDocument|hasDocument)\s*\(/, "docume
property_writer("QTextEdit", /::setDocument\s*\(/, "document")
property_reader("QTextEdit", /::(placeholderText|isPlaceholderText|hasPlaceholderText)\s*\(/, "placeholderText")
property_writer("QTextEdit", /::setPlaceholderText\s*\(/, "placeholderText")
-property_reader("QTextFrame", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTextFrame", /::setObjectName\s*\(/, "objectName")
-property_reader("QTextList", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTextList", /::setObjectName\s*\(/, "objectName")
-property_reader("QTextObject", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTextObject", /::setObjectName\s*\(/, "objectName")
-property_reader("QTextTable", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTextTable", /::setObjectName\s*\(/, "objectName")
-property_reader("QThread", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QThread", /::setObjectName\s*\(/, "objectName")
-property_reader("QThreadPool", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QThreadPool", /::setObjectName\s*\(/, "objectName")
-property_reader("QThreadPool", /::(expiryTimeout|isExpiryTimeout|hasExpiryTimeout)\s*\(/, "expiryTimeout")
-property_writer("QThreadPool", /::setExpiryTimeout\s*\(/, "expiryTimeout")
-property_reader("QThreadPool", /::(maxThreadCount|isMaxThreadCount|hasMaxThreadCount)\s*\(/, "maxThreadCount")
-property_writer("QThreadPool", /::setMaxThreadCount\s*\(/, "maxThreadCount")
-property_reader("QThreadPool", /::(activeThreadCount|isActiveThreadCount|hasActiveThreadCount)\s*\(/, "activeThreadCount")
property_reader("QTimeEdit", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QTimeEdit", /::setObjectName\s*\(/, "objectName")
property_reader("QTimeEdit", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -9932,6 +9124,8 @@ property_reader("QTimeEdit", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTimeEdit", /::setCursor\s*\(/, "cursor")
property_reader("QTimeEdit", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTimeEdit", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTimeEdit", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTimeEdit", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTimeEdit", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTimeEdit", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTimeEdit", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10037,32 +9231,6 @@ property_reader("QTimeEdit", /::(timeSpec|isTimeSpec|hasTimeSpec)\s*\(/, "timeSp
property_writer("QTimeEdit", /::setTimeSpec\s*\(/, "timeSpec")
property_reader("QTimeEdit", /::(time|isTime|hasTime)\s*\(/, "time")
property_writer("QTimeEdit", /::setTime\s*\(/, "time")
-property_reader("QTimeLine", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTimeLine", /::setObjectName\s*\(/, "objectName")
-property_reader("QTimeLine", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_writer("QTimeLine", /::setDuration\s*\(/, "duration")
-property_reader("QTimeLine", /::(updateInterval|isUpdateInterval|hasUpdateInterval)\s*\(/, "updateInterval")
-property_writer("QTimeLine", /::setUpdateInterval\s*\(/, "updateInterval")
-property_reader("QTimeLine", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QTimeLine", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QTimeLine", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QTimeLine", /::setDirection\s*\(/, "direction")
-property_reader("QTimeLine", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QTimeLine", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QTimeLine", /::(curveShape|isCurveShape|hasCurveShape)\s*\(/, "curveShape")
-property_writer("QTimeLine", /::setCurveShape\s*\(/, "curveShape")
-property_reader("QTimeLine", /::(easingCurve|isEasingCurve|hasEasingCurve)\s*\(/, "easingCurve")
-property_writer("QTimeLine", /::setEasingCurve\s*\(/, "easingCurve")
-property_reader("QTimer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTimer", /::setObjectName\s*\(/, "objectName")
-property_reader("QTimer", /::(singleShot|isSingleShot|hasSingleShot)\s*\(/, "singleShot")
-property_writer("QTimer", /::setSingleShot\s*\(/, "singleShot")
-property_reader("QTimer", /::(interval|isInterval|hasInterval)\s*\(/, "interval")
-property_writer("QTimer", /::setInterval\s*\(/, "interval")
-property_reader("QTimer", /::(remainingTime|isRemainingTime|hasRemainingTime)\s*\(/, "remainingTime")
-property_reader("QTimer", /::(timerType|isTimerType|hasTimerType)\s*\(/, "timerType")
-property_writer("QTimer", /::setTimerType\s*\(/, "timerType")
-property_reader("QTimer", /::(active|isActive|hasActive)\s*\(/, "active")
property_reader("QToolBar", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QToolBar", /::setObjectName\s*\(/, "objectName")
property_reader("QToolBar", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -10112,6 +9280,8 @@ property_reader("QToolBar", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QToolBar", /::setCursor\s*\(/, "cursor")
property_reader("QToolBar", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QToolBar", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QToolBar", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QToolBar", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QToolBar", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QToolBar", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QToolBar", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10225,6 +9395,8 @@ property_reader("QToolBox", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QToolBox", /::setCursor\s*\(/, "cursor")
property_reader("QToolBox", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QToolBox", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QToolBox", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QToolBox", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QToolBox", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QToolBox", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QToolBox", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10339,6 +9511,8 @@ property_reader("QToolButton", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QToolButton", /::setCursor\s*\(/, "cursor")
property_reader("QToolButton", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QToolButton", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QToolButton", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QToolButton", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QToolButton", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QToolButton", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QToolButton", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10420,8 +9594,6 @@ property_reader("QToolButton", /::(autoRaise|isAutoRaise|hasAutoRaise)\s*\(/, "a
property_writer("QToolButton", /::setAutoRaise\s*\(/, "autoRaise")
property_reader("QToolButton", /::(arrowType|isArrowType|hasArrowType)\s*\(/, "arrowType")
property_writer("QToolButton", /::setArrowType\s*\(/, "arrowType")
-property_reader("QTranslator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QTranslator", /::setObjectName\s*\(/, "objectName")
property_reader("QTreeView", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QTreeView", /::setObjectName\s*\(/, "objectName")
property_reader("QTreeView", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -10471,6 +9643,8 @@ property_reader("QTreeView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTreeView", /::setCursor\s*\(/, "cursor")
property_reader("QTreeView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTreeView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTreeView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTreeView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTreeView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTreeView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTreeView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10642,6 +9816,8 @@ property_reader("QTreeWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QTreeWidget", /::setCursor\s*\(/, "cursor")
property_reader("QTreeWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QTreeWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QTreeWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QTreeWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QTreeWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QTreeWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QTreeWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10767,16 +9943,6 @@ property_writer("QTreeWidget", /::setExpandsOnDoubleClick\s*\(/, "expandsOnDoubl
property_reader("QTreeWidget", /::(columnCount|isColumnCount|hasColumnCount)\s*\(/, "columnCount")
property_writer("QTreeWidget", /::setColumnCount\s*\(/, "columnCount")
property_reader("QTreeWidget", /::(topLevelItemCount|isTopLevelItemCount|hasTopLevelItemCount)\s*\(/, "topLevelItemCount")
-property_reader("QUdpSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QUdpSocket", /::setObjectName\s*\(/, "objectName")
-property_reader("QUndoGroup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QUndoGroup", /::setObjectName\s*\(/, "objectName")
-property_reader("QUndoStack", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QUndoStack", /::setObjectName\s*\(/, "objectName")
-property_reader("QUndoStack", /::(active|isActive|hasActive)\s*\(/, "active")
-property_writer("QUndoStack", /::setActive\s*\(/, "active")
-property_reader("QUndoStack", /::(undoLimit|isUndoLimit|hasUndoLimit)\s*\(/, "undoLimit")
-property_writer("QUndoStack", /::setUndoLimit\s*\(/, "undoLimit")
property_reader("QUndoView", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QUndoView", /::setObjectName\s*\(/, "objectName")
property_reader("QUndoView", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -10826,6 +9992,8 @@ property_reader("QUndoView", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QUndoView", /::setCursor\s*\(/, "cursor")
property_reader("QUndoView", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QUndoView", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QUndoView", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QUndoView", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QUndoView", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QUndoView", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QUndoView", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -10952,164 +10120,20 @@ property_reader("QUndoView", /::(wordWrap|isWordWrap|hasWordWrap)\s*\(/, "wordWr
property_writer("QUndoView", /::setWordWrap\s*\(/, "wordWrap")
property_reader("QUndoView", /::(selectionRectVisible|isSelectionRectVisible|hasSelectionRectVisible)\s*\(/, "selectionRectVisible")
property_writer("QUndoView", /::setSelectionRectVisible\s*\(/, "selectionRectVisible")
+property_reader("QUndoView", /::(itemAlignment|isItemAlignment|hasItemAlignment)\s*\(/, "itemAlignment")
+property_writer("QUndoView", /::setItemAlignment\s*\(/, "itemAlignment")
property_reader("QUndoView", /::(emptyLabel|isEmptyLabel|hasEmptyLabel)\s*\(/, "emptyLabel")
property_writer("QUndoView", /::setEmptyLabel\s*\(/, "emptyLabel")
property_reader("QUndoView", /::(cleanIcon|isCleanIcon|hasCleanIcon)\s*\(/, "cleanIcon")
property_writer("QUndoView", /::setCleanIcon\s*\(/, "cleanIcon")
property_reader("QVBoxLayout", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QVBoxLayout", /::setObjectName\s*\(/, "objectName")
-property_reader("QVBoxLayout", /::(margin|isMargin|hasMargin)\s*\(/, "margin")
-property_writer("QVBoxLayout", /::setMargin\s*\(/, "margin")
property_reader("QVBoxLayout", /::(spacing|isSpacing|hasSpacing)\s*\(/, "spacing")
property_writer("QVBoxLayout", /::setSpacing\s*\(/, "spacing")
+property_reader("QVBoxLayout", /::(contentsMargins|isContentsMargins|hasContentsMargins)\s*\(/, "contentsMargins")
+property_writer("QVBoxLayout", /::setContentsMargins\s*\(/, "contentsMargins")
property_reader("QVBoxLayout", /::(sizeConstraint|isSizeConstraint|hasSizeConstraint)\s*\(/, "sizeConstraint")
property_writer("QVBoxLayout", /::setSizeConstraint\s*\(/, "sizeConstraint")
-property_reader("QValidator", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QValidator", /::setObjectName\s*\(/, "objectName")
-property_reader("QVariantAnimation", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVariantAnimation", /::setObjectName\s*\(/, "objectName")
-property_reader("QVariantAnimation", /::(state|isState|hasState)\s*\(/, "state")
-property_reader("QVariantAnimation", /::(loopCount|isLoopCount|hasLoopCount)\s*\(/, "loopCount")
-property_writer("QVariantAnimation", /::setLoopCount\s*\(/, "loopCount")
-property_reader("QVariantAnimation", /::(currentTime|isCurrentTime|hasCurrentTime)\s*\(/, "currentTime")
-property_writer("QVariantAnimation", /::setCurrentTime\s*\(/, "currentTime")
-property_reader("QVariantAnimation", /::(currentLoop|isCurrentLoop|hasCurrentLoop)\s*\(/, "currentLoop")
-property_reader("QVariantAnimation", /::(direction|isDirection|hasDirection)\s*\(/, "direction")
-property_writer("QVariantAnimation", /::setDirection\s*\(/, "direction")
-property_reader("QVariantAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_reader("QVariantAnimation", /::(startValue|isStartValue|hasStartValue)\s*\(/, "startValue")
-property_writer("QVariantAnimation", /::setStartValue\s*\(/, "startValue")
-property_reader("QVariantAnimation", /::(endValue|isEndValue|hasEndValue)\s*\(/, "endValue")
-property_writer("QVariantAnimation", /::setEndValue\s*\(/, "endValue")
-property_reader("QVariantAnimation", /::(currentValue|isCurrentValue|hasCurrentValue)\s*\(/, "currentValue")
-property_reader("QVariantAnimation", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
-property_writer("QVariantAnimation", /::setDuration\s*\(/, "duration")
-property_reader("QVariantAnimation", /::(easingCurve|isEasingCurve|hasEasingCurve)\s*\(/, "easingCurve")
-property_writer("QVariantAnimation", /::setEasingCurve\s*\(/, "easingCurve")
-property_reader("QVideoDeviceSelectorControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVideoDeviceSelectorControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QVideoEncoderSettingsControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVideoEncoderSettingsControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QVideoProbe", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVideoProbe", /::setObjectName\s*\(/, "objectName")
-property_reader("QVideoRendererControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVideoRendererControl", /::setObjectName\s*\(/, "objectName")
-property_reader("QVideoWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVideoWidget", /::setObjectName\s*\(/, "objectName")
-property_reader("QVideoWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
-property_reader("QVideoWidget", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
-property_writer("QVideoWidget", /::setWindowModality\s*\(/, "windowModality")
-property_reader("QVideoWidget", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
-property_writer("QVideoWidget", /::setEnabled\s*\(/, "enabled")
-property_reader("QVideoWidget", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
-property_writer("QVideoWidget", /::setGeometry\s*\(/, "geometry")
-property_reader("QVideoWidget", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
-property_reader("QVideoWidget", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
-property_reader("QVideoWidget", /::(x|isX|hasX)\s*\(/, "x")
-property_reader("QVideoWidget", /::(y|isY|hasY)\s*\(/, "y")
-property_reader("QVideoWidget", /::(pos|isPos|hasPos)\s*\(/, "pos")
-property_writer("QVideoWidget", /::setPos\s*\(/, "pos")
-property_reader("QVideoWidget", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
-property_reader("QVideoWidget", /::(size|isSize|hasSize)\s*\(/, "size")
-property_writer("QVideoWidget", /::setSize\s*\(/, "size")
-property_reader("QVideoWidget", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_reader("QVideoWidget", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_reader("QVideoWidget", /::(rect|isRect|hasRect)\s*\(/, "rect")
-property_reader("QVideoWidget", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
-property_reader("QVideoWidget", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
-property_reader("QVideoWidget", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
-property_writer("QVideoWidget", /::setSizePolicy\s*\(/, "sizePolicy")
-property_reader("QVideoWidget", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
-property_writer("QVideoWidget", /::setMinimumSize\s*\(/, "minimumSize")
-property_reader("QVideoWidget", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
-property_writer("QVideoWidget", /::setMaximumSize\s*\(/, "maximumSize")
-property_reader("QVideoWidget", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QVideoWidget", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QVideoWidget", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QVideoWidget", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QVideoWidget", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QVideoWidget", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QVideoWidget", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QVideoWidget", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QVideoWidget", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
-property_writer("QVideoWidget", /::setSizeIncrement\s*\(/, "sizeIncrement")
-property_reader("QVideoWidget", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
-property_writer("QVideoWidget", /::setBaseSize\s*\(/, "baseSize")
-property_reader("QVideoWidget", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
-property_writer("QVideoWidget", /::setPalette\s*\(/, "palette")
-property_reader("QVideoWidget", /::(font|isFont|hasFont)\s*\(/, "font")
-property_writer("QVideoWidget", /::setFont\s*\(/, "font")
-property_reader("QVideoWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
-property_writer("QVideoWidget", /::setCursor\s*\(/, "cursor")
-property_reader("QVideoWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
-property_writer("QVideoWidget", /::setMouseTracking\s*\(/, "mouseTracking")
-property_reader("QVideoWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
-property_reader("QVideoWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
-property_writer("QVideoWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
-property_reader("QVideoWidget", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
-property_reader("QVideoWidget", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
-property_writer("QVideoWidget", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
-property_reader("QVideoWidget", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
-property_writer("QVideoWidget", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
-property_reader("QVideoWidget", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QVideoWidget", /::setVisible\s*\(/, "visible")
-property_reader("QVideoWidget", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
-property_reader("QVideoWidget", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
-property_reader("QVideoWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_reader("QVideoWidget", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
-property_reader("QVideoWidget", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
-property_reader("QVideoWidget", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
-property_writer("QVideoWidget", /::setAcceptDrops\s*\(/, "acceptDrops")
-property_reader("QVideoWidget", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
-property_writer("QVideoWidget", /::setWindowTitle\s*\(/, "windowTitle")
-property_reader("QVideoWidget", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
-property_writer("QVideoWidget", /::setWindowIcon\s*\(/, "windowIcon")
-property_reader("QVideoWidget", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
-property_writer("QVideoWidget", /::setWindowIconText\s*\(/, "windowIconText")
-property_reader("QVideoWidget", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
-property_writer("QVideoWidget", /::setWindowOpacity\s*\(/, "windowOpacity")
-property_reader("QVideoWidget", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
-property_writer("QVideoWidget", /::setWindowModified\s*\(/, "windowModified")
-property_reader("QVideoWidget", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
-property_writer("QVideoWidget", /::setToolTip\s*\(/, "toolTip")
-property_reader("QVideoWidget", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
-property_writer("QVideoWidget", /::setToolTipDuration\s*\(/, "toolTipDuration")
-property_reader("QVideoWidget", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
-property_writer("QVideoWidget", /::setStatusTip\s*\(/, "statusTip")
-property_reader("QVideoWidget", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
-property_writer("QVideoWidget", /::setWhatsThis\s*\(/, "whatsThis")
-property_reader("QVideoWidget", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
-property_writer("QVideoWidget", /::setAccessibleName\s*\(/, "accessibleName")
-property_reader("QVideoWidget", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
-property_writer("QVideoWidget", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-property_reader("QVideoWidget", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
-property_writer("QVideoWidget", /::setLayoutDirection\s*\(/, "layoutDirection")
-property_reader("QVideoWidget", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
-property_writer("QVideoWidget", /::setAutoFillBackground\s*\(/, "autoFillBackground")
-property_reader("QVideoWidget", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
-property_writer("QVideoWidget", /::setStyleSheet\s*\(/, "styleSheet")
-property_reader("QVideoWidget", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
-property_writer("QVideoWidget", /::setLocale\s*\(/, "locale")
-property_reader("QVideoWidget", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
-property_writer("QVideoWidget", /::setWindowFilePath\s*\(/, "windowFilePath")
-property_reader("QVideoWidget", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
-property_writer("QVideoWidget", /::setInputMethodHints\s*\(/, "inputMethodHints")
-property_reader("QVideoWidget", /::(mediaObject|isMediaObject|hasMediaObject)\s*\(/, "mediaObject")
-property_writer("QVideoWidget", /::setMediaObject\s*\(/, "mediaObject")
-property_reader("QVideoWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
-property_writer("QVideoWidget", /::setFullScreen\s*\(/, "fullScreen")
-property_reader("QVideoWidget", /::(aspectRatioMode|isAspectRatioMode|hasAspectRatioMode)\s*\(/, "aspectRatioMode")
-property_writer("QVideoWidget", /::setAspectRatioMode\s*\(/, "aspectRatioMode")
-property_reader("QVideoWidget", /::(brightness|isBrightness|hasBrightness)\s*\(/, "brightness")
-property_writer("QVideoWidget", /::setBrightness\s*\(/, "brightness")
-property_reader("QVideoWidget", /::(contrast|isContrast|hasContrast)\s*\(/, "contrast")
-property_writer("QVideoWidget", /::setContrast\s*\(/, "contrast")
-property_reader("QVideoWidget", /::(hue|isHue|hasHue)\s*\(/, "hue")
-property_writer("QVideoWidget", /::setHue\s*\(/, "hue")
-property_reader("QVideoWidget", /::(saturation|isSaturation|hasSaturation)\s*\(/, "saturation")
-property_writer("QVideoWidget", /::setSaturation\s*\(/, "saturation")
-property_reader("QVideoWindowControl", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QVideoWindowControl", /::setObjectName\s*\(/, "objectName")
property_reader("QWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QWidget", /::setObjectName\s*\(/, "objectName")
property_reader("QWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -11159,6 +10183,8 @@ property_reader("QWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QWidget", /::setCursor\s*\(/, "cursor")
property_reader("QWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QWidget", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -11244,41 +10270,10 @@ property_reader("QWidgetAction", /::(menuRole|isMenuRole|hasMenuRole)\s*\(/, "me
property_writer("QWidgetAction", /::setMenuRole\s*\(/, "menuRole")
property_reader("QWidgetAction", /::(iconVisibleInMenu|isIconVisibleInMenu|hasIconVisibleInMenu)\s*\(/, "iconVisibleInMenu")
property_writer("QWidgetAction", /::setIconVisibleInMenu\s*\(/, "iconVisibleInMenu")
+property_reader("QWidgetAction", /::(shortcutVisibleInContextMenu|isShortcutVisibleInContextMenu|hasShortcutVisibleInContextMenu)\s*\(/, "shortcutVisibleInContextMenu")
+property_writer("QWidgetAction", /::setShortcutVisibleInContextMenu\s*\(/, "shortcutVisibleInContextMenu")
property_reader("QWidgetAction", /::(priority|isPriority|hasPriority)\s*\(/, "priority")
property_writer("QWidgetAction", /::setPriority\s*\(/, "priority")
-property_reader("QWindow", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
-property_writer("QWindow", /::setObjectName\s*\(/, "objectName")
-property_reader("QWindow", /::(title|isTitle|hasTitle)\s*\(/, "title")
-property_writer("QWindow", /::setTitle\s*\(/, "title")
-property_reader("QWindow", /::(modality|isModality|hasModality)\s*\(/, "modality")
-property_writer("QWindow", /::setModality\s*\(/, "modality")
-property_reader("QWindow", /::(flags|isFlags|hasFlags)\s*\(/, "flags")
-property_writer("QWindow", /::setFlags\s*\(/, "flags")
-property_reader("QWindow", /::(x|isX|hasX)\s*\(/, "x")
-property_writer("QWindow", /::setX\s*\(/, "x")
-property_reader("QWindow", /::(y|isY|hasY)\s*\(/, "y")
-property_writer("QWindow", /::setY\s*\(/, "y")
-property_reader("QWindow", /::(width|isWidth|hasWidth)\s*\(/, "width")
-property_writer("QWindow", /::setWidth\s*\(/, "width")
-property_reader("QWindow", /::(height|isHeight|hasHeight)\s*\(/, "height")
-property_writer("QWindow", /::setHeight\s*\(/, "height")
-property_reader("QWindow", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
-property_writer("QWindow", /::setMinimumWidth\s*\(/, "minimumWidth")
-property_reader("QWindow", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
-property_writer("QWindow", /::setMinimumHeight\s*\(/, "minimumHeight")
-property_reader("QWindow", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
-property_writer("QWindow", /::setMaximumWidth\s*\(/, "maximumWidth")
-property_reader("QWindow", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
-property_writer("QWindow", /::setMaximumHeight\s*\(/, "maximumHeight")
-property_reader("QWindow", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
-property_writer("QWindow", /::setVisible\s*\(/, "visible")
-property_reader("QWindow", /::(active|isActive|hasActive)\s*\(/, "active")
-property_reader("QWindow", /::(visibility|isVisibility|hasVisibility)\s*\(/, "visibility")
-property_writer("QWindow", /::setVisibility\s*\(/, "visibility")
-property_reader("QWindow", /::(contentOrientation|isContentOrientation|hasContentOrientation)\s*\(/, "contentOrientation")
-property_writer("QWindow", /::setContentOrientation\s*\(/, "contentOrientation")
-property_reader("QWindow", /::(opacity|isOpacity|hasOpacity)\s*\(/, "opacity")
-property_writer("QWindow", /::setOpacity\s*\(/, "opacity")
property_reader("QWizard", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
property_writer("QWizard", /::setObjectName\s*\(/, "objectName")
property_reader("QWizard", /::(modal|isModal|hasModal)\s*\(/, "modal")
@@ -11328,6 +10323,8 @@ property_reader("QWizard", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QWizard", /::setCursor\s*\(/, "cursor")
property_reader("QWizard", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QWizard", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QWizard", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QWizard", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QWizard", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QWizard", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QWizard", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -11443,6 +10440,8 @@ property_reader("QWizardPage", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
property_writer("QWizardPage", /::setCursor\s*\(/, "cursor")
property_reader("QWizardPage", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
property_writer("QWizardPage", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QWizardPage", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QWizardPage", /::setTabletTracking\s*\(/, "tabletTracking")
property_reader("QWizardPage", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
property_reader("QWizardPage", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
property_writer("QWizardPage", /::setFocusPolicy\s*\(/, "focusPolicy")
@@ -11498,98 +10497,1191 @@ property_reader("QWizardPage", /::(title|isTitle|hasTitle)\s*\(/, "title")
property_writer("QWizardPage", /::setTitle\s*\(/, "title")
property_reader("QWizardPage", /::(subTitle|isSubTitle|hasSubTitle)\s*\(/, "subTitle")
property_writer("QWizardPage", /::setSubTitle\s*\(/, "subTitle")
+property_reader("QSvgRenderer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSvgRenderer", /::setObjectName\s*\(/, "objectName")
+property_reader("QSvgRenderer", /::(viewBox|isViewBox|hasViewBox)\s*\(/, "viewBox")
+property_writer("QSvgRenderer", /::setViewBox\s*\(/, "viewBox")
+property_reader("QSvgRenderer", /::(framesPerSecond|isFramesPerSecond|hasFramesPerSecond)\s*\(/, "framesPerSecond")
+property_writer("QSvgRenderer", /::setFramesPerSecond\s*\(/, "framesPerSecond")
+property_reader("QSvgRenderer", /::(currentFrame|isCurrentFrame|hasCurrentFrame)\s*\(/, "currentFrame")
+property_writer("QSvgRenderer", /::setCurrentFrame\s*\(/, "currentFrame")
+property_reader("QSvgRenderer", /::(aspectRatioMode|isAspectRatioMode|hasAspectRatioMode)\s*\(/, "aspectRatioMode")
+property_writer("QSvgRenderer", /::setAspectRatioMode\s*\(/, "aspectRatioMode")
+property_reader("QAbstractPrintDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractPrintDialog", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_reader("QAbstractPrintDialog", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
+property_writer("QAbstractPrintDialog", /::setWindowModality\s*\(/, "windowModality")
+property_reader("QAbstractPrintDialog", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QAbstractPrintDialog", /::setEnabled\s*\(/, "enabled")
+property_reader("QAbstractPrintDialog", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
+property_writer("QAbstractPrintDialog", /::setGeometry\s*\(/, "geometry")
+property_reader("QAbstractPrintDialog", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
+property_reader("QAbstractPrintDialog", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
+property_reader("QAbstractPrintDialog", /::(x|isX|hasX)\s*\(/, "x")
+property_reader("QAbstractPrintDialog", /::(y|isY|hasY)\s*\(/, "y")
+property_reader("QAbstractPrintDialog", /::(pos|isPos|hasPos)\s*\(/, "pos")
+property_writer("QAbstractPrintDialog", /::setPos\s*\(/, "pos")
+property_reader("QAbstractPrintDialog", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
+property_reader("QAbstractPrintDialog", /::(size|isSize|hasSize)\s*\(/, "size")
+property_writer("QAbstractPrintDialog", /::setSize\s*\(/, "size")
+property_reader("QAbstractPrintDialog", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_reader("QAbstractPrintDialog", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_reader("QAbstractPrintDialog", /::(rect|isRect|hasRect)\s*\(/, "rect")
+property_reader("QAbstractPrintDialog", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
+property_reader("QAbstractPrintDialog", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
+property_reader("QAbstractPrintDialog", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
+property_writer("QAbstractPrintDialog", /::setSizePolicy\s*\(/, "sizePolicy")
+property_reader("QAbstractPrintDialog", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
+property_writer("QAbstractPrintDialog", /::setMinimumSize\s*\(/, "minimumSize")
+property_reader("QAbstractPrintDialog", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
+property_writer("QAbstractPrintDialog", /::setMaximumSize\s*\(/, "maximumSize")
+property_reader("QAbstractPrintDialog", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QAbstractPrintDialog", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QAbstractPrintDialog", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QAbstractPrintDialog", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QAbstractPrintDialog", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QAbstractPrintDialog", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QAbstractPrintDialog", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QAbstractPrintDialog", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QAbstractPrintDialog", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
+property_writer("QAbstractPrintDialog", /::setSizeIncrement\s*\(/, "sizeIncrement")
+property_reader("QAbstractPrintDialog", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
+property_writer("QAbstractPrintDialog", /::setBaseSize\s*\(/, "baseSize")
+property_reader("QAbstractPrintDialog", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
+property_writer("QAbstractPrintDialog", /::setPalette\s*\(/, "palette")
+property_reader("QAbstractPrintDialog", /::(font|isFont|hasFont)\s*\(/, "font")
+property_writer("QAbstractPrintDialog", /::setFont\s*\(/, "font")
+property_reader("QAbstractPrintDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
+property_writer("QAbstractPrintDialog", /::setCursor\s*\(/, "cursor")
+property_reader("QAbstractPrintDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
+property_writer("QAbstractPrintDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QAbstractPrintDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QAbstractPrintDialog", /::setTabletTracking\s*\(/, "tabletTracking")
+property_reader("QAbstractPrintDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
+property_reader("QAbstractPrintDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
+property_writer("QAbstractPrintDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
+property_reader("QAbstractPrintDialog", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
+property_reader("QAbstractPrintDialog", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
+property_writer("QAbstractPrintDialog", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
+property_reader("QAbstractPrintDialog", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
+property_writer("QAbstractPrintDialog", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
+property_reader("QAbstractPrintDialog", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QAbstractPrintDialog", /::setVisible\s*\(/, "visible")
+property_reader("QAbstractPrintDialog", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
+property_reader("QAbstractPrintDialog", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
+property_reader("QAbstractPrintDialog", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
+property_reader("QAbstractPrintDialog", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
+property_reader("QAbstractPrintDialog", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
+property_reader("QAbstractPrintDialog", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
+property_writer("QAbstractPrintDialog", /::setAcceptDrops\s*\(/, "acceptDrops")
+property_reader("QAbstractPrintDialog", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
+property_writer("QAbstractPrintDialog", /::setWindowTitle\s*\(/, "windowTitle")
+property_reader("QAbstractPrintDialog", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
+property_writer("QAbstractPrintDialog", /::setWindowIcon\s*\(/, "windowIcon")
+property_reader("QAbstractPrintDialog", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
+property_writer("QAbstractPrintDialog", /::setWindowIconText\s*\(/, "windowIconText")
+property_reader("QAbstractPrintDialog", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
+property_writer("QAbstractPrintDialog", /::setWindowOpacity\s*\(/, "windowOpacity")
+property_reader("QAbstractPrintDialog", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
+property_writer("QAbstractPrintDialog", /::setWindowModified\s*\(/, "windowModified")
+property_reader("QAbstractPrintDialog", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
+property_writer("QAbstractPrintDialog", /::setToolTip\s*\(/, "toolTip")
+property_reader("QAbstractPrintDialog", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
+property_writer("QAbstractPrintDialog", /::setToolTipDuration\s*\(/, "toolTipDuration")
+property_reader("QAbstractPrintDialog", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
+property_writer("QAbstractPrintDialog", /::setStatusTip\s*\(/, "statusTip")
+property_reader("QAbstractPrintDialog", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
+property_writer("QAbstractPrintDialog", /::setWhatsThis\s*\(/, "whatsThis")
+property_reader("QAbstractPrintDialog", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
+property_writer("QAbstractPrintDialog", /::setAccessibleName\s*\(/, "accessibleName")
+property_reader("QAbstractPrintDialog", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
+property_writer("QAbstractPrintDialog", /::setAccessibleDescription\s*\(/, "accessibleDescription")
+property_reader("QAbstractPrintDialog", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
+property_writer("QAbstractPrintDialog", /::setLayoutDirection\s*\(/, "layoutDirection")
+property_reader("QAbstractPrintDialog", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
+property_writer("QAbstractPrintDialog", /::setAutoFillBackground\s*\(/, "autoFillBackground")
+property_reader("QAbstractPrintDialog", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
+property_writer("QAbstractPrintDialog", /::setStyleSheet\s*\(/, "styleSheet")
+property_reader("QAbstractPrintDialog", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
+property_writer("QAbstractPrintDialog", /::setLocale\s*\(/, "locale")
+property_reader("QAbstractPrintDialog", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
+property_writer("QAbstractPrintDialog", /::setWindowFilePath\s*\(/, "windowFilePath")
+property_reader("QAbstractPrintDialog", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
+property_writer("QAbstractPrintDialog", /::setInputMethodHints\s*\(/, "inputMethodHints")
+property_reader("QAbstractPrintDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
+property_writer("QAbstractPrintDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
+property_reader("QAbstractPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_writer("QAbstractPrintDialog", /::setModal\s*\(/, "modal")
+property_reader("QPrintDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPrintDialog", /::setObjectName\s*\(/, "objectName")
+property_reader("QPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_reader("QPrintDialog", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
+property_writer("QPrintDialog", /::setWindowModality\s*\(/, "windowModality")
+property_reader("QPrintDialog", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QPrintDialog", /::setEnabled\s*\(/, "enabled")
+property_reader("QPrintDialog", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
+property_writer("QPrintDialog", /::setGeometry\s*\(/, "geometry")
+property_reader("QPrintDialog", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
+property_reader("QPrintDialog", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
+property_reader("QPrintDialog", /::(x|isX|hasX)\s*\(/, "x")
+property_reader("QPrintDialog", /::(y|isY|hasY)\s*\(/, "y")
+property_reader("QPrintDialog", /::(pos|isPos|hasPos)\s*\(/, "pos")
+property_writer("QPrintDialog", /::setPos\s*\(/, "pos")
+property_reader("QPrintDialog", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
+property_reader("QPrintDialog", /::(size|isSize|hasSize)\s*\(/, "size")
+property_writer("QPrintDialog", /::setSize\s*\(/, "size")
+property_reader("QPrintDialog", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_reader("QPrintDialog", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_reader("QPrintDialog", /::(rect|isRect|hasRect)\s*\(/, "rect")
+property_reader("QPrintDialog", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
+property_reader("QPrintDialog", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
+property_reader("QPrintDialog", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
+property_writer("QPrintDialog", /::setSizePolicy\s*\(/, "sizePolicy")
+property_reader("QPrintDialog", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
+property_writer("QPrintDialog", /::setMinimumSize\s*\(/, "minimumSize")
+property_reader("QPrintDialog", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
+property_writer("QPrintDialog", /::setMaximumSize\s*\(/, "maximumSize")
+property_reader("QPrintDialog", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QPrintDialog", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QPrintDialog", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QPrintDialog", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QPrintDialog", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QPrintDialog", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QPrintDialog", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QPrintDialog", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QPrintDialog", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
+property_writer("QPrintDialog", /::setSizeIncrement\s*\(/, "sizeIncrement")
+property_reader("QPrintDialog", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
+property_writer("QPrintDialog", /::setBaseSize\s*\(/, "baseSize")
+property_reader("QPrintDialog", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
+property_writer("QPrintDialog", /::setPalette\s*\(/, "palette")
+property_reader("QPrintDialog", /::(font|isFont|hasFont)\s*\(/, "font")
+property_writer("QPrintDialog", /::setFont\s*\(/, "font")
+property_reader("QPrintDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
+property_writer("QPrintDialog", /::setCursor\s*\(/, "cursor")
+property_reader("QPrintDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
+property_writer("QPrintDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QPrintDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QPrintDialog", /::setTabletTracking\s*\(/, "tabletTracking")
+property_reader("QPrintDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
+property_reader("QPrintDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
+property_writer("QPrintDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
+property_reader("QPrintDialog", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
+property_reader("QPrintDialog", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
+property_writer("QPrintDialog", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
+property_reader("QPrintDialog", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
+property_writer("QPrintDialog", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
+property_reader("QPrintDialog", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QPrintDialog", /::setVisible\s*\(/, "visible")
+property_reader("QPrintDialog", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
+property_reader("QPrintDialog", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
+property_reader("QPrintDialog", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
+property_reader("QPrintDialog", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
+property_reader("QPrintDialog", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
+property_reader("QPrintDialog", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
+property_writer("QPrintDialog", /::setAcceptDrops\s*\(/, "acceptDrops")
+property_reader("QPrintDialog", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
+property_writer("QPrintDialog", /::setWindowTitle\s*\(/, "windowTitle")
+property_reader("QPrintDialog", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
+property_writer("QPrintDialog", /::setWindowIcon\s*\(/, "windowIcon")
+property_reader("QPrintDialog", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
+property_writer("QPrintDialog", /::setWindowIconText\s*\(/, "windowIconText")
+property_reader("QPrintDialog", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
+property_writer("QPrintDialog", /::setWindowOpacity\s*\(/, "windowOpacity")
+property_reader("QPrintDialog", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
+property_writer("QPrintDialog", /::setWindowModified\s*\(/, "windowModified")
+property_reader("QPrintDialog", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
+property_writer("QPrintDialog", /::setToolTip\s*\(/, "toolTip")
+property_reader("QPrintDialog", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
+property_writer("QPrintDialog", /::setToolTipDuration\s*\(/, "toolTipDuration")
+property_reader("QPrintDialog", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
+property_writer("QPrintDialog", /::setStatusTip\s*\(/, "statusTip")
+property_reader("QPrintDialog", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
+property_writer("QPrintDialog", /::setWhatsThis\s*\(/, "whatsThis")
+property_reader("QPrintDialog", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
+property_writer("QPrintDialog", /::setAccessibleName\s*\(/, "accessibleName")
+property_reader("QPrintDialog", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
+property_writer("QPrintDialog", /::setAccessibleDescription\s*\(/, "accessibleDescription")
+property_reader("QPrintDialog", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
+property_writer("QPrintDialog", /::setLayoutDirection\s*\(/, "layoutDirection")
+property_reader("QPrintDialog", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
+property_writer("QPrintDialog", /::setAutoFillBackground\s*\(/, "autoFillBackground")
+property_reader("QPrintDialog", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
+property_writer("QPrintDialog", /::setStyleSheet\s*\(/, "styleSheet")
+property_reader("QPrintDialog", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
+property_writer("QPrintDialog", /::setLocale\s*\(/, "locale")
+property_reader("QPrintDialog", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
+property_writer("QPrintDialog", /::setWindowFilePath\s*\(/, "windowFilePath")
+property_reader("QPrintDialog", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
+property_writer("QPrintDialog", /::setInputMethodHints\s*\(/, "inputMethodHints")
+property_reader("QPrintDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
+property_writer("QPrintDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
+property_reader("QPrintDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_writer("QPrintDialog", /::setModal\s*\(/, "modal")
+property_reader("QPrintDialog", /::(options|isOptions|hasOptions)\s*\(/, "options")
+property_writer("QPrintDialog", /::setOptions\s*\(/, "options")
+property_reader("QPrintPreviewDialog", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPrintPreviewDialog", /::setObjectName\s*\(/, "objectName")
+property_reader("QPrintPreviewDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_reader("QPrintPreviewDialog", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
+property_writer("QPrintPreviewDialog", /::setWindowModality\s*\(/, "windowModality")
+property_reader("QPrintPreviewDialog", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QPrintPreviewDialog", /::setEnabled\s*\(/, "enabled")
+property_reader("QPrintPreviewDialog", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
+property_writer("QPrintPreviewDialog", /::setGeometry\s*\(/, "geometry")
+property_reader("QPrintPreviewDialog", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
+property_reader("QPrintPreviewDialog", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
+property_reader("QPrintPreviewDialog", /::(x|isX|hasX)\s*\(/, "x")
+property_reader("QPrintPreviewDialog", /::(y|isY|hasY)\s*\(/, "y")
+property_reader("QPrintPreviewDialog", /::(pos|isPos|hasPos)\s*\(/, "pos")
+property_writer("QPrintPreviewDialog", /::setPos\s*\(/, "pos")
+property_reader("QPrintPreviewDialog", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
+property_reader("QPrintPreviewDialog", /::(size|isSize|hasSize)\s*\(/, "size")
+property_writer("QPrintPreviewDialog", /::setSize\s*\(/, "size")
+property_reader("QPrintPreviewDialog", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_reader("QPrintPreviewDialog", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_reader("QPrintPreviewDialog", /::(rect|isRect|hasRect)\s*\(/, "rect")
+property_reader("QPrintPreviewDialog", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
+property_reader("QPrintPreviewDialog", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
+property_reader("QPrintPreviewDialog", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
+property_writer("QPrintPreviewDialog", /::setSizePolicy\s*\(/, "sizePolicy")
+property_reader("QPrintPreviewDialog", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
+property_writer("QPrintPreviewDialog", /::setMinimumSize\s*\(/, "minimumSize")
+property_reader("QPrintPreviewDialog", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
+property_writer("QPrintPreviewDialog", /::setMaximumSize\s*\(/, "maximumSize")
+property_reader("QPrintPreviewDialog", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QPrintPreviewDialog", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QPrintPreviewDialog", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QPrintPreviewDialog", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QPrintPreviewDialog", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QPrintPreviewDialog", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QPrintPreviewDialog", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QPrintPreviewDialog", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QPrintPreviewDialog", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
+property_writer("QPrintPreviewDialog", /::setSizeIncrement\s*\(/, "sizeIncrement")
+property_reader("QPrintPreviewDialog", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
+property_writer("QPrintPreviewDialog", /::setBaseSize\s*\(/, "baseSize")
+property_reader("QPrintPreviewDialog", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
+property_writer("QPrintPreviewDialog", /::setPalette\s*\(/, "palette")
+property_reader("QPrintPreviewDialog", /::(font|isFont|hasFont)\s*\(/, "font")
+property_writer("QPrintPreviewDialog", /::setFont\s*\(/, "font")
+property_reader("QPrintPreviewDialog", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
+property_writer("QPrintPreviewDialog", /::setCursor\s*\(/, "cursor")
+property_reader("QPrintPreviewDialog", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
+property_writer("QPrintPreviewDialog", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QPrintPreviewDialog", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QPrintPreviewDialog", /::setTabletTracking\s*\(/, "tabletTracking")
+property_reader("QPrintPreviewDialog", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
+property_reader("QPrintPreviewDialog", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
+property_writer("QPrintPreviewDialog", /::setFocusPolicy\s*\(/, "focusPolicy")
+property_reader("QPrintPreviewDialog", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
+property_reader("QPrintPreviewDialog", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
+property_writer("QPrintPreviewDialog", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
+property_reader("QPrintPreviewDialog", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
+property_writer("QPrintPreviewDialog", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
+property_reader("QPrintPreviewDialog", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QPrintPreviewDialog", /::setVisible\s*\(/, "visible")
+property_reader("QPrintPreviewDialog", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
+property_reader("QPrintPreviewDialog", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
+property_reader("QPrintPreviewDialog", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
+property_reader("QPrintPreviewDialog", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
+property_reader("QPrintPreviewDialog", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
+property_reader("QPrintPreviewDialog", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
+property_writer("QPrintPreviewDialog", /::setAcceptDrops\s*\(/, "acceptDrops")
+property_reader("QPrintPreviewDialog", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
+property_writer("QPrintPreviewDialog", /::setWindowTitle\s*\(/, "windowTitle")
+property_reader("QPrintPreviewDialog", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
+property_writer("QPrintPreviewDialog", /::setWindowIcon\s*\(/, "windowIcon")
+property_reader("QPrintPreviewDialog", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
+property_writer("QPrintPreviewDialog", /::setWindowIconText\s*\(/, "windowIconText")
+property_reader("QPrintPreviewDialog", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
+property_writer("QPrintPreviewDialog", /::setWindowOpacity\s*\(/, "windowOpacity")
+property_reader("QPrintPreviewDialog", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
+property_writer("QPrintPreviewDialog", /::setWindowModified\s*\(/, "windowModified")
+property_reader("QPrintPreviewDialog", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
+property_writer("QPrintPreviewDialog", /::setToolTip\s*\(/, "toolTip")
+property_reader("QPrintPreviewDialog", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
+property_writer("QPrintPreviewDialog", /::setToolTipDuration\s*\(/, "toolTipDuration")
+property_reader("QPrintPreviewDialog", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
+property_writer("QPrintPreviewDialog", /::setStatusTip\s*\(/, "statusTip")
+property_reader("QPrintPreviewDialog", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
+property_writer("QPrintPreviewDialog", /::setWhatsThis\s*\(/, "whatsThis")
+property_reader("QPrintPreviewDialog", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
+property_writer("QPrintPreviewDialog", /::setAccessibleName\s*\(/, "accessibleName")
+property_reader("QPrintPreviewDialog", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
+property_writer("QPrintPreviewDialog", /::setAccessibleDescription\s*\(/, "accessibleDescription")
+property_reader("QPrintPreviewDialog", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
+property_writer("QPrintPreviewDialog", /::setLayoutDirection\s*\(/, "layoutDirection")
+property_reader("QPrintPreviewDialog", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
+property_writer("QPrintPreviewDialog", /::setAutoFillBackground\s*\(/, "autoFillBackground")
+property_reader("QPrintPreviewDialog", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
+property_writer("QPrintPreviewDialog", /::setStyleSheet\s*\(/, "styleSheet")
+property_reader("QPrintPreviewDialog", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
+property_writer("QPrintPreviewDialog", /::setLocale\s*\(/, "locale")
+property_reader("QPrintPreviewDialog", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
+property_writer("QPrintPreviewDialog", /::setWindowFilePath\s*\(/, "windowFilePath")
+property_reader("QPrintPreviewDialog", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
+property_writer("QPrintPreviewDialog", /::setInputMethodHints\s*\(/, "inputMethodHints")
+property_reader("QPrintPreviewDialog", /::(sizeGripEnabled|isSizeGripEnabled|hasSizeGripEnabled)\s*\(/, "sizeGripEnabled")
+property_writer("QPrintPreviewDialog", /::setSizeGripEnabled\s*\(/, "sizeGripEnabled")
+property_reader("QPrintPreviewDialog", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_writer("QPrintPreviewDialog", /::setModal\s*\(/, "modal")
+property_reader("QPrintPreviewWidget", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QPrintPreviewWidget", /::setObjectName\s*\(/, "objectName")
+property_reader("QPrintPreviewWidget", /::(modal|isModal|hasModal)\s*\(/, "modal")
+property_reader("QPrintPreviewWidget", /::(windowModality|isWindowModality|hasWindowModality)\s*\(/, "windowModality")
+property_writer("QPrintPreviewWidget", /::setWindowModality\s*\(/, "windowModality")
+property_reader("QPrintPreviewWidget", /::(enabled|isEnabled|hasEnabled)\s*\(/, "enabled")
+property_writer("QPrintPreviewWidget", /::setEnabled\s*\(/, "enabled")
+property_reader("QPrintPreviewWidget", /::(geometry|isGeometry|hasGeometry)\s*\(/, "geometry")
+property_writer("QPrintPreviewWidget", /::setGeometry\s*\(/, "geometry")
+property_reader("QPrintPreviewWidget", /::(frameGeometry|isFrameGeometry|hasFrameGeometry)\s*\(/, "frameGeometry")
+property_reader("QPrintPreviewWidget", /::(normalGeometry|isNormalGeometry|hasNormalGeometry)\s*\(/, "normalGeometry")
+property_reader("QPrintPreviewWidget", /::(x|isX|hasX)\s*\(/, "x")
+property_reader("QPrintPreviewWidget", /::(y|isY|hasY)\s*\(/, "y")
+property_reader("QPrintPreviewWidget", /::(pos|isPos|hasPos)\s*\(/, "pos")
+property_writer("QPrintPreviewWidget", /::setPos\s*\(/, "pos")
+property_reader("QPrintPreviewWidget", /::(frameSize|isFrameSize|hasFrameSize)\s*\(/, "frameSize")
+property_reader("QPrintPreviewWidget", /::(size|isSize|hasSize)\s*\(/, "size")
+property_writer("QPrintPreviewWidget", /::setSize\s*\(/, "size")
+property_reader("QPrintPreviewWidget", /::(width|isWidth|hasWidth)\s*\(/, "width")
+property_reader("QPrintPreviewWidget", /::(height|isHeight|hasHeight)\s*\(/, "height")
+property_reader("QPrintPreviewWidget", /::(rect|isRect|hasRect)\s*\(/, "rect")
+property_reader("QPrintPreviewWidget", /::(childrenRect|isChildrenRect|hasChildrenRect)\s*\(/, "childrenRect")
+property_reader("QPrintPreviewWidget", /::(childrenRegion|isChildrenRegion|hasChildrenRegion)\s*\(/, "childrenRegion")
+property_reader("QPrintPreviewWidget", /::(sizePolicy|isSizePolicy|hasSizePolicy)\s*\(/, "sizePolicy")
+property_writer("QPrintPreviewWidget", /::setSizePolicy\s*\(/, "sizePolicy")
+property_reader("QPrintPreviewWidget", /::(minimumSize|isMinimumSize|hasMinimumSize)\s*\(/, "minimumSize")
+property_writer("QPrintPreviewWidget", /::setMinimumSize\s*\(/, "minimumSize")
+property_reader("QPrintPreviewWidget", /::(maximumSize|isMaximumSize|hasMaximumSize)\s*\(/, "maximumSize")
+property_writer("QPrintPreviewWidget", /::setMaximumSize\s*\(/, "maximumSize")
+property_reader("QPrintPreviewWidget", /::(minimumWidth|isMinimumWidth|hasMinimumWidth)\s*\(/, "minimumWidth")
+property_writer("QPrintPreviewWidget", /::setMinimumWidth\s*\(/, "minimumWidth")
+property_reader("QPrintPreviewWidget", /::(minimumHeight|isMinimumHeight|hasMinimumHeight)\s*\(/, "minimumHeight")
+property_writer("QPrintPreviewWidget", /::setMinimumHeight\s*\(/, "minimumHeight")
+property_reader("QPrintPreviewWidget", /::(maximumWidth|isMaximumWidth|hasMaximumWidth)\s*\(/, "maximumWidth")
+property_writer("QPrintPreviewWidget", /::setMaximumWidth\s*\(/, "maximumWidth")
+property_reader("QPrintPreviewWidget", /::(maximumHeight|isMaximumHeight|hasMaximumHeight)\s*\(/, "maximumHeight")
+property_writer("QPrintPreviewWidget", /::setMaximumHeight\s*\(/, "maximumHeight")
+property_reader("QPrintPreviewWidget", /::(sizeIncrement|isSizeIncrement|hasSizeIncrement)\s*\(/, "sizeIncrement")
+property_writer("QPrintPreviewWidget", /::setSizeIncrement\s*\(/, "sizeIncrement")
+property_reader("QPrintPreviewWidget", /::(baseSize|isBaseSize|hasBaseSize)\s*\(/, "baseSize")
+property_writer("QPrintPreviewWidget", /::setBaseSize\s*\(/, "baseSize")
+property_reader("QPrintPreviewWidget", /::(palette|isPalette|hasPalette)\s*\(/, "palette")
+property_writer("QPrintPreviewWidget", /::setPalette\s*\(/, "palette")
+property_reader("QPrintPreviewWidget", /::(font|isFont|hasFont)\s*\(/, "font")
+property_writer("QPrintPreviewWidget", /::setFont\s*\(/, "font")
+property_reader("QPrintPreviewWidget", /::(cursor|isCursor|hasCursor)\s*\(/, "cursor")
+property_writer("QPrintPreviewWidget", /::setCursor\s*\(/, "cursor")
+property_reader("QPrintPreviewWidget", /::(mouseTracking|isMouseTracking|hasMouseTracking)\s*\(/, "mouseTracking")
+property_writer("QPrintPreviewWidget", /::setMouseTracking\s*\(/, "mouseTracking")
+property_reader("QPrintPreviewWidget", /::(tabletTracking|isTabletTracking|hasTabletTracking)\s*\(/, "tabletTracking")
+property_writer("QPrintPreviewWidget", /::setTabletTracking\s*\(/, "tabletTracking")
+property_reader("QPrintPreviewWidget", /::(isActiveWindow|isIsActiveWindow|hasIsActiveWindow)\s*\(/, "isActiveWindow")
+property_reader("QPrintPreviewWidget", /::(focusPolicy|isFocusPolicy|hasFocusPolicy)\s*\(/, "focusPolicy")
+property_writer("QPrintPreviewWidget", /::setFocusPolicy\s*\(/, "focusPolicy")
+property_reader("QPrintPreviewWidget", /::(focus|isFocus|hasFocus)\s*\(/, "focus")
+property_reader("QPrintPreviewWidget", /::(contextMenuPolicy|isContextMenuPolicy|hasContextMenuPolicy)\s*\(/, "contextMenuPolicy")
+property_writer("QPrintPreviewWidget", /::setContextMenuPolicy\s*\(/, "contextMenuPolicy")
+property_reader("QPrintPreviewWidget", /::(updatesEnabled|isUpdatesEnabled|hasUpdatesEnabled)\s*\(/, "updatesEnabled")
+property_writer("QPrintPreviewWidget", /::setUpdatesEnabled\s*\(/, "updatesEnabled")
+property_reader("QPrintPreviewWidget", /::(visible|isVisible|hasVisible)\s*\(/, "visible")
+property_writer("QPrintPreviewWidget", /::setVisible\s*\(/, "visible")
+property_reader("QPrintPreviewWidget", /::(minimized|isMinimized|hasMinimized)\s*\(/, "minimized")
+property_reader("QPrintPreviewWidget", /::(maximized|isMaximized|hasMaximized)\s*\(/, "maximized")
+property_reader("QPrintPreviewWidget", /::(fullScreen|isFullScreen|hasFullScreen)\s*\(/, "fullScreen")
+property_reader("QPrintPreviewWidget", /::(sizeHint|isSizeHint|hasSizeHint)\s*\(/, "sizeHint")
+property_reader("QPrintPreviewWidget", /::(minimumSizeHint|isMinimumSizeHint|hasMinimumSizeHint)\s*\(/, "minimumSizeHint")
+property_reader("QPrintPreviewWidget", /::(acceptDrops|isAcceptDrops|hasAcceptDrops)\s*\(/, "acceptDrops")
+property_writer("QPrintPreviewWidget", /::setAcceptDrops\s*\(/, "acceptDrops")
+property_reader("QPrintPreviewWidget", /::(windowTitle|isWindowTitle|hasWindowTitle)\s*\(/, "windowTitle")
+property_writer("QPrintPreviewWidget", /::setWindowTitle\s*\(/, "windowTitle")
+property_reader("QPrintPreviewWidget", /::(windowIcon|isWindowIcon|hasWindowIcon)\s*\(/, "windowIcon")
+property_writer("QPrintPreviewWidget", /::setWindowIcon\s*\(/, "windowIcon")
+property_reader("QPrintPreviewWidget", /::(windowIconText|isWindowIconText|hasWindowIconText)\s*\(/, "windowIconText")
+property_writer("QPrintPreviewWidget", /::setWindowIconText\s*\(/, "windowIconText")
+property_reader("QPrintPreviewWidget", /::(windowOpacity|isWindowOpacity|hasWindowOpacity)\s*\(/, "windowOpacity")
+property_writer("QPrintPreviewWidget", /::setWindowOpacity\s*\(/, "windowOpacity")
+property_reader("QPrintPreviewWidget", /::(windowModified|isWindowModified|hasWindowModified)\s*\(/, "windowModified")
+property_writer("QPrintPreviewWidget", /::setWindowModified\s*\(/, "windowModified")
+property_reader("QPrintPreviewWidget", /::(toolTip|isToolTip|hasToolTip)\s*\(/, "toolTip")
+property_writer("QPrintPreviewWidget", /::setToolTip\s*\(/, "toolTip")
+property_reader("QPrintPreviewWidget", /::(toolTipDuration|isToolTipDuration|hasToolTipDuration)\s*\(/, "toolTipDuration")
+property_writer("QPrintPreviewWidget", /::setToolTipDuration\s*\(/, "toolTipDuration")
+property_reader("QPrintPreviewWidget", /::(statusTip|isStatusTip|hasStatusTip)\s*\(/, "statusTip")
+property_writer("QPrintPreviewWidget", /::setStatusTip\s*\(/, "statusTip")
+property_reader("QPrintPreviewWidget", /::(whatsThis|isWhatsThis|hasWhatsThis)\s*\(/, "whatsThis")
+property_writer("QPrintPreviewWidget", /::setWhatsThis\s*\(/, "whatsThis")
+property_reader("QPrintPreviewWidget", /::(accessibleName|isAccessibleName|hasAccessibleName)\s*\(/, "accessibleName")
+property_writer("QPrintPreviewWidget", /::setAccessibleName\s*\(/, "accessibleName")
+property_reader("QPrintPreviewWidget", /::(accessibleDescription|isAccessibleDescription|hasAccessibleDescription)\s*\(/, "accessibleDescription")
+property_writer("QPrintPreviewWidget", /::setAccessibleDescription\s*\(/, "accessibleDescription")
+property_reader("QPrintPreviewWidget", /::(layoutDirection|isLayoutDirection|hasLayoutDirection)\s*\(/, "layoutDirection")
+property_writer("QPrintPreviewWidget", /::setLayoutDirection\s*\(/, "layoutDirection")
+property_reader("QPrintPreviewWidget", /::(autoFillBackground|isAutoFillBackground|hasAutoFillBackground)\s*\(/, "autoFillBackground")
+property_writer("QPrintPreviewWidget", /::setAutoFillBackground\s*\(/, "autoFillBackground")
+property_reader("QPrintPreviewWidget", /::(styleSheet|isStyleSheet|hasStyleSheet)\s*\(/, "styleSheet")
+property_writer("QPrintPreviewWidget", /::setStyleSheet\s*\(/, "styleSheet")
+property_reader("QPrintPreviewWidget", /::(locale|isLocale|hasLocale)\s*\(/, "locale")
+property_writer("QPrintPreviewWidget", /::setLocale\s*\(/, "locale")
+property_reader("QPrintPreviewWidget", /::(windowFilePath|isWindowFilePath|hasWindowFilePath)\s*\(/, "windowFilePath")
+property_writer("QPrintPreviewWidget", /::setWindowFilePath\s*\(/, "windowFilePath")
+property_reader("QPrintPreviewWidget", /::(inputMethodHints|isInputMethodHints|hasInputMethodHints)\s*\(/, "inputMethodHints")
+property_writer("QPrintPreviewWidget", /::setInputMethodHints\s*\(/, "inputMethodHints")
+property_reader("QAudioDecoder", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioDecoder", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioDecoder", /::(source|isSource|hasSource)\s*\(/, "source")
+property_writer("QAudioDecoder", /::setSource\s*\(/, "source")
+property_reader("QAudioDecoder", /::(isDecoding|isIsDecoding|hasIsDecoding)\s*\(/, "isDecoding")
+property_reader("QAudioDecoder", /::(bufferAvailable|isBufferAvailable|hasBufferAvailable)\s*\(/, "bufferAvailable")
+property_reader("QAudioInput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioInput", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioInput", /::(device|isDevice|hasDevice)\s*\(/, "device")
+property_writer("QAudioInput", /::setDevice\s*\(/, "device")
+property_reader("QAudioInput", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
+property_writer("QAudioInput", /::setVolume\s*\(/, "volume")
+property_reader("QAudioInput", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
+property_writer("QAudioInput", /::setMuted\s*\(/, "muted")
+property_reader("QAudioOutput", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioOutput", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioOutput", /::(device|isDevice|hasDevice)\s*\(/, "device")
+property_writer("QAudioOutput", /::setDevice\s*\(/, "device")
+property_reader("QAudioOutput", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
+property_writer("QAudioOutput", /::setVolume\s*\(/, "volume")
+property_reader("QAudioOutput", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
+property_writer("QAudioOutput", /::setMuted\s*\(/, "muted")
+property_reader("QAudioSink", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioSink", /::setObjectName\s*\(/, "objectName")
+property_reader("QAudioSource", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAudioSource", /::setObjectName\s*\(/, "objectName")
+property_reader("QCamera", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QCamera", /::setObjectName\s*\(/, "objectName")
+property_reader("QCamera", /::(active|isActive|hasActive)\s*\(/, "active")
+property_writer("QCamera", /::setActive\s*\(/, "active")
+property_reader("QCamera", /::(cameraDevice|isCameraDevice|hasCameraDevice)\s*\(/, "cameraDevice")
+property_writer("QCamera", /::setCameraDevice\s*\(/, "cameraDevice")
+property_reader("QCamera", /::(error|isError|hasError)\s*\(/, "error")
+property_reader("QCamera", /::(errorString|isErrorString|hasErrorString)\s*\(/, "errorString")
+property_reader("QCamera", /::(cameraFormat|isCameraFormat|hasCameraFormat)\s*\(/, "cameraFormat")
+property_writer("QCamera", /::setCameraFormat\s*\(/, "cameraFormat")
+property_reader("QCamera", /::(focusMode|isFocusMode|hasFocusMode)\s*\(/, "focusMode")
+property_writer("QCamera", /::setFocusMode\s*\(/, "focusMode")
+property_reader("QCamera", /::(focusPoint|isFocusPoint|hasFocusPoint)\s*\(/, "focusPoint")
+property_reader("QCamera", /::(customFocusPoint|isCustomFocusPoint|hasCustomFocusPoint)\s*\(/, "customFocusPoint")
+property_writer("QCamera", /::setCustomFocusPoint\s*\(/, "customFocusPoint")
+property_reader("QCamera", /::(focusDistance|isFocusDistance|hasFocusDistance)\s*\(/, "focusDistance")
+property_writer("QCamera", /::setFocusDistance\s*\(/, "focusDistance")
+property_reader("QCamera", /::(minimumZoomFactor|isMinimumZoomFactor|hasMinimumZoomFactor)\s*\(/, "minimumZoomFactor")
+property_reader("QCamera", /::(maximumZoomFactor|isMaximumZoomFactor|hasMaximumZoomFactor)\s*\(/, "maximumZoomFactor")
+property_reader("QCamera", /::(zoomFactor|isZoomFactor|hasZoomFactor)\s*\(/, "zoomFactor")
+property_writer("QCamera", /::setZoomFactor\s*\(/, "zoomFactor")
+property_reader("QCamera", /::(exposureTime|isExposureTime|hasExposureTime)\s*\(/, "exposureTime")
+property_reader("QCamera", /::(manualExposureTime|isManualExposureTime|hasManualExposureTime)\s*\(/, "manualExposureTime")
+property_writer("QCamera", /::setManualExposureTime\s*\(/, "manualExposureTime")
+property_reader("QCamera", /::(isoSensitivity|isIsoSensitivity|hasIsoSensitivity)\s*\(/, "isoSensitivity")
+property_reader("QCamera", /::(manualIsoSensitivity|isManualIsoSensitivity|hasManualIsoSensitivity)\s*\(/, "manualIsoSensitivity")
+property_writer("QCamera", /::setManualIsoSensitivity\s*\(/, "manualIsoSensitivity")
+property_reader("QCamera", /::(exposureCompensation|isExposureCompensation|hasExposureCompensation)\s*\(/, "exposureCompensation")
+property_writer("QCamera", /::setExposureCompensation\s*\(/, "exposureCompensation")
+property_reader("QCamera", /::(exposureMode|isExposureMode|hasExposureMode)\s*\(/, "exposureMode")
+property_writer("QCamera", /::setExposureMode\s*\(/, "exposureMode")
+property_reader("QCamera", /::(flashMode|isFlashMode|hasFlashMode)\s*\(/, "flashMode")
+property_writer("QCamera", /::setFlashMode\s*\(/, "flashMode")
+property_reader("QCamera", /::(torchMode|isTorchMode|hasTorchMode)\s*\(/, "torchMode")
+property_writer("QCamera", /::setTorchMode\s*\(/, "torchMode")
+property_reader("QCamera", /::(whiteBalanceMode|isWhiteBalanceMode|hasWhiteBalanceMode)\s*\(/, "whiteBalanceMode")
+property_writer("QCamera", /::setWhiteBalanceMode\s*\(/, "whiteBalanceMode")
+property_reader("QCamera", /::(colorTemperature|isColorTemperature|hasColorTemperature)\s*\(/, "colorTemperature")
+property_writer("QCamera", /::setColorTemperature\s*\(/, "colorTemperature")
+property_reader("QCamera", /::(supportedFeatures|isSupportedFeatures|hasSupportedFeatures)\s*\(/, "supportedFeatures")
+property_reader("QImageCapture", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QImageCapture", /::setObjectName\s*\(/, "objectName")
+property_reader("QImageCapture", /::(readyForCapture|isReadyForCapture|hasReadyForCapture)\s*\(/, "readyForCapture")
+property_reader("QImageCapture", /::(metaData|isMetaData|hasMetaData)\s*\(/, "metaData")
+property_writer("QImageCapture", /::setMetaData\s*\(/, "metaData")
+property_reader("QImageCapture", /::(error|isError|hasError)\s*\(/, "error")
+property_reader("QImageCapture", /::(errorString|isErrorString|hasErrorString)\s*\(/, "errorString")
+property_reader("QImageCapture", /::(fileFormat|isFileFormat|hasFileFormat)\s*\(/, "fileFormat")
+property_reader("QImageCapture", /::(quality|isQuality|hasQuality)\s*\(/, "quality")
+property_reader("QMediaCaptureSession", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaCaptureSession", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaCaptureSession", /::(audioInput|isAudioInput|hasAudioInput)\s*\(/, "audioInput")
+property_writer("QMediaCaptureSession", /::setAudioInput\s*\(/, "audioInput")
+property_reader("QMediaCaptureSession", /::(audioOutput|isAudioOutput|hasAudioOutput)\s*\(/, "audioOutput")
+property_writer("QMediaCaptureSession", /::setAudioOutput\s*\(/, "audioOutput")
+property_reader("QMediaCaptureSession", /::(camera|isCamera|hasCamera)\s*\(/, "camera")
+property_writer("QMediaCaptureSession", /::setCamera\s*\(/, "camera")
+property_reader("QMediaCaptureSession", /::(imageCapture|isImageCapture|hasImageCapture)\s*\(/, "imageCapture")
+property_writer("QMediaCaptureSession", /::setImageCapture\s*\(/, "imageCapture")
+property_reader("QMediaCaptureSession", /::(recorder|isRecorder|hasRecorder)\s*\(/, "recorder")
+property_writer("QMediaCaptureSession", /::setRecorder\s*\(/, "recorder")
+property_reader("QMediaCaptureSession", /::(videoOutput|isVideoOutput|hasVideoOutput)\s*\(/, "videoOutput")
+property_writer("QMediaCaptureSession", /::setVideoOutput\s*\(/, "videoOutput")
+property_reader("QMediaDevices", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaDevices", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaDevices", /::(audioInputs|isAudioInputs|hasAudioInputs)\s*\(/, "audioInputs")
+property_reader("QMediaDevices", /::(audioOutputs|isAudioOutputs|hasAudioOutputs)\s*\(/, "audioOutputs")
+property_reader("QMediaDevices", /::(videoInputs|isVideoInputs|hasVideoInputs)\s*\(/, "videoInputs")
+property_reader("QMediaDevices", /::(defaultAudioInput|isDefaultAudioInput|hasDefaultAudioInput)\s*\(/, "defaultAudioInput")
+property_reader("QMediaDevices", /::(defaultAudioOutput|isDefaultAudioOutput|hasDefaultAudioOutput)\s*\(/, "defaultAudioOutput")
+property_reader("QMediaDevices", /::(defaultVideoInput|isDefaultVideoInput|hasDefaultVideoInput)\s*\(/, "defaultVideoInput")
+property_reader("QMediaPlayer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaPlayer", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaPlayer", /::(source|isSource|hasSource)\s*\(/, "source")
+property_writer("QMediaPlayer", /::setSource\s*\(/, "source")
+property_reader("QMediaPlayer", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QMediaPlayer", /::(position|isPosition|hasPosition)\s*\(/, "position")
+property_writer("QMediaPlayer", /::setPosition\s*\(/, "position")
+property_reader("QMediaPlayer", /::(bufferProgress|isBufferProgress|hasBufferProgress)\s*\(/, "bufferProgress")
+property_reader("QMediaPlayer", /::(hasAudio|isHasAudio|hasHasAudio)\s*\(/, "hasAudio")
+property_reader("QMediaPlayer", /::(hasVideo|isHasVideo|hasHasVideo)\s*\(/, "hasVideo")
+property_reader("QMediaPlayer", /::(seekable|isSeekable|hasSeekable)\s*\(/, "seekable")
+property_reader("QMediaPlayer", /::(playbackRate|isPlaybackRate|hasPlaybackRate)\s*\(/, "playbackRate")
+property_writer("QMediaPlayer", /::setPlaybackRate\s*\(/, "playbackRate")
+property_reader("QMediaPlayer", /::(loops|isLoops|hasLoops)\s*\(/, "loops")
+property_writer("QMediaPlayer", /::setLoops\s*\(/, "loops")
+property_reader("QMediaPlayer", /::(playbackState|isPlaybackState|hasPlaybackState)\s*\(/, "playbackState")
+property_reader("QMediaPlayer", /::(mediaStatus|isMediaStatus|hasMediaStatus)\s*\(/, "mediaStatus")
+property_reader("QMediaPlayer", /::(metaData|isMetaData|hasMetaData)\s*\(/, "metaData")
+property_reader("QMediaPlayer", /::(error|isError|hasError)\s*\(/, "error")
+property_reader("QMediaPlayer", /::(errorString|isErrorString|hasErrorString)\s*\(/, "errorString")
+property_reader("QMediaPlayer", /::(videoOutput|isVideoOutput|hasVideoOutput)\s*\(/, "videoOutput")
+property_writer("QMediaPlayer", /::setVideoOutput\s*\(/, "videoOutput")
+property_reader("QMediaPlayer", /::(audioOutput|isAudioOutput|hasAudioOutput)\s*\(/, "audioOutput")
+property_writer("QMediaPlayer", /::setAudioOutput\s*\(/, "audioOutput")
+property_reader("QMediaPlayer", /::(audioTracks|isAudioTracks|hasAudioTracks)\s*\(/, "audioTracks")
+property_reader("QMediaPlayer", /::(videoTracks|isVideoTracks|hasVideoTracks)\s*\(/, "videoTracks")
+property_reader("QMediaPlayer", /::(subtitleTracks|isSubtitleTracks|hasSubtitleTracks)\s*\(/, "subtitleTracks")
+property_reader("QMediaPlayer", /::(activeAudioTrack|isActiveAudioTrack|hasActiveAudioTrack)\s*\(/, "activeAudioTrack")
+property_writer("QMediaPlayer", /::setActiveAudioTrack\s*\(/, "activeAudioTrack")
+property_reader("QMediaPlayer", /::(activeVideoTrack|isActiveVideoTrack|hasActiveVideoTrack)\s*\(/, "activeVideoTrack")
+property_writer("QMediaPlayer", /::setActiveVideoTrack\s*\(/, "activeVideoTrack")
+property_reader("QMediaPlayer", /::(activeSubtitleTrack|isActiveSubtitleTrack|hasActiveSubtitleTrack)\s*\(/, "activeSubtitleTrack")
+property_writer("QMediaPlayer", /::setActiveSubtitleTrack\s*\(/, "activeSubtitleTrack")
+property_reader("QMediaRecorder", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QMediaRecorder", /::setObjectName\s*\(/, "objectName")
+property_reader("QMediaRecorder", /::(recorderState|isRecorderState|hasRecorderState)\s*\(/, "recorderState")
+property_reader("QMediaRecorder", /::(duration|isDuration|hasDuration)\s*\(/, "duration")
+property_reader("QMediaRecorder", /::(outputLocation|isOutputLocation|hasOutputLocation)\s*\(/, "outputLocation")
+property_writer("QMediaRecorder", /::setOutputLocation\s*\(/, "outputLocation")
+property_reader("QMediaRecorder", /::(actualLocation|isActualLocation|hasActualLocation)\s*\(/, "actualLocation")
+property_reader("QMediaRecorder", /::(metaData|isMetaData|hasMetaData)\s*\(/, "metaData")
+property_writer("QMediaRecorder", /::setMetaData\s*\(/, "metaData")
+property_reader("QMediaRecorder", /::(error|isError|hasError)\s*\(/, "error")
+property_reader("QMediaRecorder", /::(errorString|isErrorString|hasErrorString)\s*\(/, "errorString")
+property_reader("QMediaRecorder", /::(mediaFormat|isMediaFormat|hasMediaFormat)\s*\(/, "mediaFormat")
+property_writer("QMediaRecorder", /::setMediaFormat\s*\(/, "mediaFormat")
+property_reader("QMediaRecorder", /::(quality|isQuality|hasQuality)\s*\(/, "quality")
+property_writer("QMediaRecorder", /::setQuality\s*\(/, "quality")
+property_reader("QSoundEffect", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSoundEffect", /::setObjectName\s*\(/, "objectName")
+property_reader("QSoundEffect", /::(source|isSource|hasSource)\s*\(/, "source")
+property_writer("QSoundEffect", /::setSource\s*\(/, "source")
+property_reader("QSoundEffect", /::(loops|isLoops|hasLoops)\s*\(/, "loops")
+property_writer("QSoundEffect", /::setLoops\s*\(/, "loops")
+property_reader("QSoundEffect", /::(loopsRemaining|isLoopsRemaining|hasLoopsRemaining)\s*\(/, "loopsRemaining")
+property_reader("QSoundEffect", /::(volume|isVolume|hasVolume)\s*\(/, "volume")
+property_writer("QSoundEffect", /::setVolume\s*\(/, "volume")
+property_reader("QSoundEffect", /::(muted|isMuted|hasMuted)\s*\(/, "muted")
+property_writer("QSoundEffect", /::setMuted\s*\(/, "muted")
+property_reader("QSoundEffect", /::(playing|isPlaying|hasPlaying)\s*\(/, "playing")
+property_reader("QSoundEffect", /::(status|isStatus|hasStatus)\s*\(/, "status")
+property_reader("QSoundEffect", /::(audioDevice|isAudioDevice|hasAudioDevice)\s*\(/, "audioDevice")
+property_writer("QSoundEffect", /::setAudioDevice\s*\(/, "audioDevice")
+property_reader("QVideoSink", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QVideoSink", /::setObjectName\s*\(/, "objectName")
+property_reader("QUiLoader", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QUiLoader", /::setObjectName\s*\(/, "objectName")
+property_reader("QSqlDriver", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSqlDriver", /::setObjectName\s*\(/, "objectName")
+property_reader("QSqlQueryModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSqlQueryModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QSqlRelationalTableModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSqlRelationalTableModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QSqlTableModel", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSqlTableModel", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractNetworkCache", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractNetworkCache", /::setObjectName\s*\(/, "objectName")
+property_reader("QAbstractSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QAbstractSocket", /::setObjectName\s*\(/, "objectName")
+property_reader("QDnsLookup", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QDnsLookup", /::setObjectName\s*\(/, "objectName")
+property_reader("QDnsLookup", /::(error|isError|hasError)\s*\(/, "error")
+property_reader("QDnsLookup", /::(errorString|isErrorString|hasErrorString)\s*\(/, "errorString")
+property_reader("QDnsLookup", /::(name|isName|hasName)\s*\(/, "name")
+property_writer("QDnsLookup", /::setName\s*\(/, "name")
+property_reader("QDnsLookup", /::(type|isType|hasType)\s*\(/, "type")
+property_writer("QDnsLookup", /::setType\s*\(/, "type")
+property_reader("QDnsLookup", /::(nameserver|isNameserver|hasNameserver)\s*\(/, "nameserver")
+property_writer("QDnsLookup", /::setNameserver\s*\(/, "nameserver")
+property_reader("QDtls", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QDtls", /::setObjectName\s*\(/, "objectName")
+property_reader("QDtlsClientVerifier", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QDtlsClientVerifier", /::setObjectName\s*\(/, "objectName")
+property_reader("QHttpMultiPart", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QHttpMultiPart", /::setObjectName\s*\(/, "objectName")
+property_reader("QLocalServer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QLocalServer", /::setObjectName\s*\(/, "objectName")
+property_reader("QLocalServer", /::(socketOptions|isSocketOptions|hasSocketOptions)\s*\(/, "socketOptions")
+property_writer("QLocalServer", /::setSocketOptions\s*\(/, "socketOptions")
+property_reader("QLocalSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QLocalSocket", /::setObjectName\s*\(/, "objectName")
+property_reader("QLocalSocket", /::(socketOptions|isSocketOptions|hasSocketOptions)\s*\(/, "socketOptions")
+property_writer("QLocalSocket", /::setSocketOptions\s*\(/, "socketOptions")
+property_reader("QNetworkAccessManager", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QNetworkAccessManager", /::setObjectName\s*\(/, "objectName")
+property_reader("QNetworkCookieJar", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QNetworkCookieJar", /::setObjectName\s*\(/, "objectName")
+property_reader("QNetworkDiskCache", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QNetworkDiskCache", /::setObjectName\s*\(/, "objectName")
+property_reader("QNetworkInformation", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QNetworkInformation", /::setObjectName\s*\(/, "objectName")
+property_reader("QNetworkInformation", /::(reachability|isReachability|hasReachability)\s*\(/, "reachability")
+property_reader("QNetworkInformation", /::(isBehindCaptivePortal|isIsBehindCaptivePortal|hasIsBehindCaptivePortal)\s*\(/, "isBehindCaptivePortal")
+property_reader("QNetworkReply", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QNetworkReply", /::setObjectName\s*\(/, "objectName")
+property_reader("QSslSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QSslSocket", /::setObjectName\s*\(/, "objectName")
+property_reader("QTcpServer", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTcpServer", /::setObjectName\s*\(/, "objectName")
+property_reader("QTcpSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QTcpSocket", /::setObjectName\s*\(/, "objectName")
+property_reader("QUdpSocket", /::(objectName|isObjectName|hasObjectName)\s*\(/, "objectName")
+property_writer("QUdpSocket", /::setObjectName\s*\(/, "objectName")
# Synthetic properties
-# Property bufferSize (int)
-property_reader("QAbstractAudioInput", /::bufferSize\s*\(/, "bufferSize")
-property_writer("QAbstractAudioInput", /::setBufferSize\s*\(/, "bufferSize")
-# Property format (QAudioFormat)
-property_reader("QAbstractAudioInput", /::format\s*\(/, "format")
-property_writer("QAbstractAudioInput", /::setFormat\s*\(/, "format")
-# Property notifyInterval (int)
-property_reader("QAbstractAudioInput", /::notifyInterval\s*\(/, "notifyInterval")
-property_writer("QAbstractAudioInput", /::setNotifyInterval\s*\(/, "notifyInterval")
-# Property volume (double)
-property_reader("QAbstractAudioInput", /::volume\s*\(/, "volume")
-property_writer("QAbstractAudioInput", /::setVolume\s*\(/, "volume")
-# Property bufferSize (int)
-property_reader("QAbstractAudioOutput", /::bufferSize\s*\(/, "bufferSize")
-property_writer("QAbstractAudioOutput", /::setBufferSize\s*\(/, "bufferSize")
-# Property category (string)
-property_reader("QAbstractAudioOutput", /::category\s*\(/, "category")
-property_writer("QAbstractAudioOutput", /::setCategory\s*\(/, "category")
-# Property format (QAudioFormat)
-property_reader("QAbstractAudioOutput", /::format\s*\(/, "format")
-property_writer("QAbstractAudioOutput", /::setFormat\s*\(/, "format")
-# Property notifyInterval (int)
-property_reader("QAbstractAudioOutput", /::notifyInterval\s*\(/, "notifyInterval")
-property_writer("QAbstractAudioOutput", /::setNotifyInterval\s*\(/, "notifyInterval")
-# Property volume (double)
-property_reader("QAbstractAudioOutput", /::volume\s*\(/, "volume")
-property_writer("QAbstractAudioOutput", /::setVolume\s*\(/, "volume")
-# Property workingDirectory (QDir)
-property_reader("QAbstractFormBuilder", /::workingDirectory\s*\(/, "workingDirectory")
-property_writer("QAbstractFormBuilder", /::setWorkingDirectory\s*\(/, "workingDirectory")
-# Property brush (QBrush)
-property_reader("QAbstractGraphicsShapeItem", /::brush\s*\(/, "brush")
-property_writer("QAbstractGraphicsShapeItem", /::setBrush\s*\(/, "brush")
-# Property pen (QPen)
-property_reader("QAbstractGraphicsShapeItem", /::pen\s*\(/, "pen")
-property_writer("QAbstractGraphicsShapeItem", /::setPen\s*\(/, "pen")
# Property parent (QObject_Native *)
property_reader("QAbstractItemModel", /::parent\s*\(/, "parent")
property_writer("QObject", /::setParent\s*\(/, "parent")
-# Property currentIndex (QModelIndex)
-property_reader("QAbstractItemView", /::currentIndex\s*\(/, "currentIndex")
-property_writer("QAbstractItemView", /::setCurrentIndex\s*\(/, "currentIndex")
-# Property itemDelegate (QAbstractItemDelegate_Native *)
-property_reader("QAbstractItemView", /::itemDelegate\s*\(/, "itemDelegate")
-property_writer("QAbstractItemView", /::setItemDelegate\s*\(/, "itemDelegate")
-# Property model (QAbstractItemModel_Native *)
-property_reader("QAbstractItemView", /::model\s*\(/, "model")
-property_writer("QAbstractItemView", /::setModel\s*\(/, "model")
-# Property rootIndex (QModelIndex)
-property_reader("QAbstractItemView", /::rootIndex\s*\(/, "rootIndex")
-property_writer("QAbstractItemView", /::setRootIndex\s*\(/, "rootIndex")
-# Property selectionModel (QItemSelectionModel_Native *)
-property_reader("QAbstractItemView", /::selectionModel\s*\(/, "selectionModel")
-property_writer("QAbstractItemView", /::setSelectionModel\s*\(/, "selectionModel")
# Property parent (QObject_Native *)
property_reader("QAbstractListModel", /::parent\s*\(/, "parent")
property_writer("QObject", /::setParent\s*\(/, "parent")
-# Property enabledOptions (QAbstractPrintDialog_QFlags_PrintDialogOption)
-property_reader("QAbstractPrintDialog", /::enabledOptions\s*\(/, "enabledOptions")
-property_writer("QAbstractPrintDialog", /::setEnabledOptions\s*\(/, "enabledOptions")
-# Property printRange (QAbstractPrintDialog_PrintRange)
-property_reader("QAbstractPrintDialog", /::printRange\s*\(/, "printRange")
-property_writer("QAbstractPrintDialog", /::setPrintRange\s*\(/, "printRange")
-# Property cornerWidget (QWidget_Native *)
-property_reader("QAbstractScrollArea", /::cornerWidget\s*\(/, "cornerWidget")
-property_writer("QAbstractScrollArea", /::setCornerWidget\s*\(/, "cornerWidget")
-# Property horizontalScrollBar (QScrollBar_Native *)
-property_reader("QAbstractScrollArea", /::horizontalScrollBar\s*\(/, "horizontalScrollBar")
-property_writer("QAbstractScrollArea", /::setHorizontalScrollBar\s*\(/, "horizontalScrollBar")
-# Property verticalScrollBar (QScrollBar_Native *)
-property_reader("QAbstractScrollArea", /::verticalScrollBar\s*\(/, "verticalScrollBar")
-property_writer("QAbstractScrollArea", /::setVerticalScrollBar\s*\(/, "verticalScrollBar")
-# Property viewport (QWidget_Native *)
-property_reader("QAbstractScrollArea", /::viewport\s*\(/, "viewport")
-property_writer("QAbstractScrollArea", /::setViewport\s*\(/, "viewport")
-# Property pauseMode (QAbstractSocket_QFlags_PauseMode)
-property_reader("QAbstractSocket", /::pauseMode\s*\(/, "pauseMode")
-property_writer("QAbstractSocket", /::setPauseMode\s*\(/, "pauseMode")
-# Property proxy (QNetworkProxy)
-property_reader("QAbstractSocket", /::proxy\s*\(/, "proxy")
-property_writer("QAbstractSocket", /::setProxy\s*\(/, "proxy")
-# Property readBufferSize (long long)
-property_reader("QAbstractSocket", /::readBufferSize\s*\(/, "readBufferSize")
-property_writer("QAbstractSocket", /::setReadBufferSize\s*\(/, "readBufferSize")
-# Property groupSeparatorShown (bool)
-property_reader("QAbstractSpinBox", /::isGroupSeparatorShown\s*\(/, "groupSeparatorShown")
-property_writer("QAbstractSpinBox", /::setGroupSeparatorShown\s*\(/, "groupSeparatorShown")
# Property parent (QObject_Native *)
property_reader("QAbstractTableModel", /::parent\s*\(/, "parent")
property_writer("QObject", /::setParent\s*\(/, "parent")
+# Property data (byte array)
+property_reader("QBuffer", /::data\s*\(/, "data")
+property_writer("QBuffer", /::setData\s*\(/, "data")
+# Property pattern (byte array)
+property_reader("QByteArrayMatcher", /::pattern\s*\(/, "pattern")
+property_writer("QByteArrayMatcher", /::setPattern\s*\(/, "pattern")
+# Property caseSensitivity (Qt_CaseSensitivity)
+property_reader("QCollator", /::caseSensitivity\s*\(/, "caseSensitivity")
+property_writer("QCollator", /::setCaseSensitivity\s*\(/, "caseSensitivity")
+# Property ignorePunctuation (bool)
+property_reader("QCollator", /::ignorePunctuation\s*\(/, "ignorePunctuation")
+property_writer("QCollator", /::setIgnorePunctuation\s*\(/, "ignorePunctuation")
+# Property locale (QLocale)
+property_reader("QCollator", /::locale\s*\(/, "locale")
+property_writer("QCollator", /::setLocale\s*\(/, "locale")
+# Property numericMode (bool)
+property_reader("QCollator", /::numericMode\s*\(/, "numericMode")
+property_writer("QCollator", /::setNumericMode\s*\(/, "numericMode")
+# Property defaultValues (string[])
+property_reader("QCommandLineOption", /::defaultValues\s*\(/, "defaultValues")
+property_writer("QCommandLineOption", /::setDefaultValues\s*\(/, "defaultValues")
+# Property description (string)
+property_reader("QCommandLineOption", /::description\s*\(/, "description")
+property_writer("QCommandLineOption", /::setDescription\s*\(/, "description")
+# Property flags (QCommandLineOption_QFlags_Flag)
+property_reader("QCommandLineOption", /::flags\s*\(/, "flags")
+property_writer("QCommandLineOption", /::setFlags\s*\(/, "flags")
+# Property valueName (string)
+property_reader("QCommandLineOption", /::valueName\s*\(/, "valueName")
+property_writer("QCommandLineOption", /::setValueName\s*\(/, "valueName")
+# Property applicationDescription (string)
+property_reader("QCommandLineParser", /::applicationDescription\s*\(/, "applicationDescription")
+property_writer("QCommandLineParser", /::setApplicationDescription\s*\(/, "applicationDescription")
+# Property eventDispatcher (QAbstractEventDispatcher_Native *)
+property_reader("QCoreApplication", /::eventDispatcher\s*\(/, "eventDispatcher")
+property_writer("QCoreApplication", /::setEventDispatcher\s*\(/, "eventDispatcher")
+# Property libraryPaths (string[])
+property_reader("QCoreApplication", /::libraryPaths\s*\(/, "libraryPaths")
+property_writer("QCoreApplication", /::setLibraryPaths\s*\(/, "libraryPaths")
+# Property setuidAllowed (bool)
+property_reader("QCoreApplication", /::isSetuidAllowed\s*\(/, "setuidAllowed")
+property_writer("QCoreApplication", /::setSetuidAllowed\s*\(/, "setuidAllowed")
+# Property byteOrder (QDataStream_ByteOrder)
+property_reader("QDataStream", /::byteOrder\s*\(/, "byteOrder")
+property_writer("QDataStream", /::setByteOrder\s*\(/, "byteOrder")
+# Property device (QIODevice *)
+property_reader("QDataStream", /::device\s*\(/, "device")
+property_writer("QDataStream", /::setDevice\s*\(/, "device")
+# Property floatingPointPrecision (QDataStream_FloatingPointPrecision)
+property_reader("QDataStream", /::floatingPointPrecision\s*\(/, "floatingPointPrecision")
+property_writer("QDataStream", /::setFloatingPointPrecision\s*\(/, "floatingPointPrecision")
+# Property status (QDataStream_Status)
+property_reader("QDataStream", /::status\s*\(/, "status")
+property_writer("QDataStream", /::setStatus\s*\(/, "status")
+# Property version (int)
+property_reader("QDataStream", /::version\s*\(/, "version")
+property_writer("QDataStream", /::setVersion\s*\(/, "version")
+# Property date (QDate)
+property_reader("QDateTime", /::date\s*\(/, "date")
+property_writer("QDateTime", /::setDate\s*\(/, "date")
+# Property offsetFromUtc (int)
+property_reader("QDateTime", /::offsetFromUtc\s*\(/, "offsetFromUtc")
+property_writer("QDateTime", /::setOffsetFromUtc\s*\(/, "offsetFromUtc")
+# Property time (QTime)
+property_reader("QDateTime", /::time\s*\(/, "time")
+property_writer("QDateTime", /::setTime\s*\(/, "time")
+# Property timeSpec (Qt_TimeSpec)
+property_reader("QDateTime", /::timeSpec\s*\(/, "timeSpec")
+property_writer("QDateTime", /::setTimeSpec\s*\(/, "timeSpec")
+# Property timeZone (QTimeZone)
+property_reader("QDateTime", /::timeZone\s*\(/, "timeZone")
+property_writer("QDateTime", /::setTimeZone\s*\(/, "timeZone")
+# Property deadline (long long)
+property_reader("QDeadlineTimer", /::deadline\s*\(/, "deadline")
+property_writer("QDeadlineTimer", /::setDeadline\s*\(/, "deadline")
+# Property remainingTime (long long)
+property_reader("QDeadlineTimer", /::remainingTime\s*\(/, "remainingTime")
+property_writer("QDeadlineTimer", /::setRemainingTime\s*\(/, "remainingTime")
+# Property timerType (Qt_TimerType)
+property_reader("QDeadlineTimer", /::timerType\s*\(/, "timerType")
+property_writer("QDeadlineTimer", /::setTimerType\s*\(/, "timerType")
+# Property autoInsertSpaces (bool)
+property_reader("QDebug", /::autoInsertSpaces\s*\(/, "autoInsertSpaces")
+property_writer("QDebug", /::setAutoInsertSpaces\s*\(/, "autoInsertSpaces")
+# Property verbosity (int)
+property_reader("QDebug", /::verbosity\s*\(/, "verbosity")
+property_writer("QDebug", /::setVerbosity\s*\(/, "verbosity")
+# Property filter (QDir_QFlags_Filter)
+property_reader("QDir", /::filter\s*\(/, "filter")
+property_writer("QDir", /::setFilter\s*\(/, "filter")
+# Property nameFilters (string[])
+property_reader("QDir", /::nameFilters\s*\(/, "nameFilters")
+property_writer("QDir", /::setNameFilters\s*\(/, "nameFilters")
+# Property path (string)
+property_reader("QDir", /::path\s*\(/, "path")
+property_writer("QDir", /::setPath\s*\(/, "path")
+# Property sorting (QDir_QFlags_SortFlag)
+property_reader("QDir", /::sorting\s*\(/, "sorting")
+property_writer("QDir", /::setSorting\s*\(/, "sorting")
+# Property amplitude (double)
+property_reader("QEasingCurve", /::amplitude\s*\(/, "amplitude")
+property_writer("QEasingCurve", /::setAmplitude\s*\(/, "amplitude")
+# Property overshoot (double)
+property_reader("QEasingCurve", /::overshoot\s*\(/, "overshoot")
+property_writer("QEasingCurve", /::setOvershoot\s*\(/, "overshoot")
+# Property period (double)
+property_reader("QEasingCurve", /::period\s*\(/, "period")
+property_writer("QEasingCurve", /::setPeriod\s*\(/, "period")
+# Property type (QEasingCurve_Type)
+property_reader("QEasingCurve", /::type\s*\(/, "type")
+property_writer("QEasingCurve", /::setType\s*\(/, "type")
+# Property accepted (bool)
+property_reader("QEvent", /::isAccepted\s*\(/, "accepted")
+property_writer("QEvent", /::setAccepted\s*\(/, "accepted")
+# Property fileName (string)
+property_reader("QFile", /::fileName\s*\(/, "fileName")
+property_writer("QFile", /::setFileName\s*\(/, "fileName")
+# Property caching (bool)
+property_reader("QFileInfo", /::caching\s*\(/, "caching")
+property_writer("QFileInfo", /::setCaching\s*\(/, "caching")
+# Property extraSelectors (string[])
+property_reader("QFileSelector", /::extraSelectors\s*\(/, "extraSelectors")
+property_writer("QFileSelector", /::setExtraSelectors\s*\(/, "extraSelectors")
+# Property currentReadChannel (int)
+property_reader("QIODevice", /::currentReadChannel\s*\(/, "currentReadChannel")
+property_writer("QIODevice", /::setCurrentReadChannel\s*\(/, "currentReadChannel")
+# Property currentWriteChannel (int)
+property_reader("QIODevice", /::currentWriteChannel\s*\(/, "currentWriteChannel")
+property_writer("QIODevice", /::setCurrentWriteChannel\s*\(/, "currentWriteChannel")
+# Property textModeEnabled (bool)
+property_reader("QIODevice", /::isTextModeEnabled\s*\(/, "textModeEnabled")
+property_writer("QIODevice", /::setTextModeEnabled\s*\(/, "textModeEnabled")
+# Property parent (QObject_Native *)
+property_reader("QIdentityProxyModel", /::parent\s*\(/, "parent")
+property_writer("QObject", /::setParent\s*\(/, "parent")
+# Property array (QJsonArray)
+property_reader("QJsonDocument", /::array\s*\(/, "array")
+property_writer("QJsonDocument", /::setArray\s*\(/, "array")
+# Property p1 (QPoint)
+property_reader("QLine", /::p1\s*\(/, "p1")
+property_writer("QLine", /::setP1\s*\(/, "p1")
+# Property p2 (QPoint)
+property_reader("QLine", /::p2\s*\(/, "p2")
+property_writer("QLine", /::setP2\s*\(/, "p2")
+# Property angle (double)
+property_reader("QLineF", /::angle\s*\(/, "angle")
+property_writer("QLineF", /::setAngle\s*\(/, "angle")
+# Property length (double)
+property_reader("QLineF", /::length\s*\(/, "length")
+property_writer("QLineF", /::setLength\s*\(/, "length")
+# Property p1 (QPointF)
+property_reader("QLineF", /::p1\s*\(/, "p1")
+property_writer("QLineF", /::setP1\s*\(/, "p1")
+# Property p2 (QPointF)
+property_reader("QLineF", /::p2\s*\(/, "p2")
+property_writer("QLineF", /::setP2\s*\(/, "p2")
+# Property numberOptions (QLocale_QFlags_NumberOption)
+property_reader("QLocale", /::numberOptions\s*\(/, "numberOptions")
+property_writer("QLocale", /::setNumberOptions\s*\(/, "numberOptions")
+# Property staleLockTime (int)
+property_reader("QLockFile", /::staleLockTime\s*\(/, "staleLockTime")
+property_writer("QLockFile", /::setStaleLockTime\s*\(/, "staleLockTime")
+# Property bottom (int)
+property_reader("QMargins", /::bottom\s*\(/, "bottom")
+property_writer("QMargins", /::setBottom\s*\(/, "bottom")
+# Property left (int)
+property_reader("QMargins", /::left\s*\(/, "left")
+property_writer("QMargins", /::setLeft\s*\(/, "left")
+# Property right (int)
+property_reader("QMargins", /::right\s*\(/, "right")
+property_writer("QMargins", /::setRight\s*\(/, "right")
+# Property top (int)
+property_reader("QMargins", /::top\s*\(/, "top")
+property_writer("QMargins", /::setTop\s*\(/, "top")
+# Property bottom (double)
+property_reader("QMarginsF", /::bottom\s*\(/, "bottom")
+property_writer("QMarginsF", /::setBottom\s*\(/, "bottom")
+# Property left (double)
+property_reader("QMarginsF", /::left\s*\(/, "left")
+property_writer("QMarginsF", /::setLeft\s*\(/, "left")
+# Property right (double)
+property_reader("QMarginsF", /::right\s*\(/, "right")
+property_writer("QMarginsF", /::setRight\s*\(/, "right")
+# Property top (double)
+property_reader("QMarginsF", /::top\s*\(/, "top")
+property_writer("QMarginsF", /::setTop\s*\(/, "top")
+# Property colorData (variant)
+property_reader("QMimeData", /::colorData\s*\(/, "colorData")
+property_writer("QMimeData", /::setColorData\s*\(/, "colorData")
+# Property imageData (variant)
+property_reader("QMimeData", /::imageData\s*\(/, "imageData")
+property_writer("QMimeData", /::setImageData\s*\(/, "imageData")
+# Property objectName (string)
+property_reader("QObject", /::objectName\s*\(/, "objectName")
+property_writer("QObject", /::setObjectName\s*\(/, "objectName")
+# Property parent (QObject_Native *)
+property_reader("QObject", /::parent\s*\(/, "parent")
+property_writer("QObject", /::setParent\s*\(/, "parent")
+# Property x (int)
+property_reader("QPoint", /::x\s*\(/, "x")
+property_writer("QPoint", /::setX\s*\(/, "x")
+# Property y (int)
+property_reader("QPoint", /::y\s*\(/, "y")
+property_writer("QPoint", /::setY\s*\(/, "y")
+# Property x (double)
+property_reader("QPointF", /::x\s*\(/, "x")
+property_writer("QPointF", /::setX\s*\(/, "x")
+# Property y (double)
+property_reader("QPointF", /::y\s*\(/, "y")
+property_writer("QPointF", /::setY\s*\(/, "y")
+# Property arguments (string[])
+property_reader("QProcess", /::arguments\s*\(/, "arguments")
+property_writer("QProcess", /::setArguments\s*\(/, "arguments")
+# Property environment (string[])
+property_reader("QProcess", /::environment\s*\(/, "environment")
+property_writer("QProcess", /::setEnvironment\s*\(/, "environment")
+# Property inputChannelMode (QProcess_InputChannelMode)
+property_reader("QProcess", /::inputChannelMode\s*\(/, "inputChannelMode")
+property_writer("QProcess", /::setInputChannelMode\s*\(/, "inputChannelMode")
+# Property processChannelMode (QProcess_ProcessChannelMode)
+property_reader("QProcess", /::processChannelMode\s*\(/, "processChannelMode")
+property_writer("QProcess", /::setProcessChannelMode\s*\(/, "processChannelMode")
+# Property processEnvironment (QProcessEnvironment)
+property_reader("QProcess", /::processEnvironment\s*\(/, "processEnvironment")
+property_writer("QProcess", /::setProcessEnvironment\s*\(/, "processEnvironment")
+# Property program (string)
+property_reader("QProcess", /::program\s*\(/, "program")
+property_writer("QProcess", /::setProgram\s*\(/, "program")
+# Property readChannel (QProcess_ProcessChannel)
+property_reader("QProcess", /::readChannel\s*\(/, "readChannel")
+property_writer("QProcess", /::setReadChannel\s*\(/, "readChannel")
+# Property workingDirectory (string)
+property_reader("QProcess", /::workingDirectory\s*\(/, "workingDirectory")
+property_writer("QProcess", /::setWorkingDirectory\s*\(/, "workingDirectory")
+# Property bottom (int)
+property_reader("QRect", /::bottom\s*\(/, "bottom")
+property_writer("QRect", /::setBottom\s*\(/, "bottom")
+# Property bottomLeft (QPoint)
+property_reader("QRect", /::bottomLeft\s*\(/, "bottomLeft")
+property_writer("QRect", /::setBottomLeft\s*\(/, "bottomLeft")
+# Property bottomRight (QPoint)
+property_reader("QRect", /::bottomRight\s*\(/, "bottomRight")
+property_writer("QRect", /::setBottomRight\s*\(/, "bottomRight")
+# Property height (int)
+property_reader("QRect", /::height\s*\(/, "height")
+property_writer("QRect", /::setHeight\s*\(/, "height")
+# Property left (int)
+property_reader("QRect", /::left\s*\(/, "left")
+property_writer("QRect", /::setLeft\s*\(/, "left")
+# Property right (int)
+property_reader("QRect", /::right\s*\(/, "right")
+property_writer("QRect", /::setRight\s*\(/, "right")
+# Property size (QSize)
+property_reader("QRect", /::size\s*\(/, "size")
+property_writer("QRect", /::setSize\s*\(/, "size")
+# Property top (int)
+property_reader("QRect", /::top\s*\(/, "top")
+property_writer("QRect", /::setTop\s*\(/, "top")
+# Property topLeft (QPoint)
+property_reader("QRect", /::topLeft\s*\(/, "topLeft")
+property_writer("QRect", /::setTopLeft\s*\(/, "topLeft")
+# Property topRight (QPoint)
+property_reader("QRect", /::topRight\s*\(/, "topRight")
+property_writer("QRect", /::setTopRight\s*\(/, "topRight")
+# Property width (int)
+property_reader("QRect", /::width\s*\(/, "width")
+property_writer("QRect", /::setWidth\s*\(/, "width")
+# Property x (int)
+property_reader("QRect", /::x\s*\(/, "x")
+property_writer("QRect", /::setX\s*\(/, "x")
+# Property y (int)
+property_reader("QRect", /::y\s*\(/, "y")
+property_writer("QRect", /::setY\s*\(/, "y")
+# Property bottom (double)
+property_reader("QRectF", /::bottom\s*\(/, "bottom")
+property_writer("QRectF", /::setBottom\s*\(/, "bottom")
+# Property bottomLeft (QPointF)
+property_reader("QRectF", /::bottomLeft\s*\(/, "bottomLeft")
+property_writer("QRectF", /::setBottomLeft\s*\(/, "bottomLeft")
+# Property bottomRight (QPointF)
+property_reader("QRectF", /::bottomRight\s*\(/, "bottomRight")
+property_writer("QRectF", /::setBottomRight\s*\(/, "bottomRight")
+# Property height (double)
+property_reader("QRectF", /::height\s*\(/, "height")
+property_writer("QRectF", /::setHeight\s*\(/, "height")
+# Property left (double)
+property_reader("QRectF", /::left\s*\(/, "left")
+property_writer("QRectF", /::setLeft\s*\(/, "left")
+# Property right (double)
+property_reader("QRectF", /::right\s*\(/, "right")
+property_writer("QRectF", /::setRight\s*\(/, "right")
+# Property size (QSizeF)
+property_reader("QRectF", /::size\s*\(/, "size")
+property_writer("QRectF", /::setSize\s*\(/, "size")
+# Property top (double)
+property_reader("QRectF", /::top\s*\(/, "top")
+property_writer("QRectF", /::setTop\s*\(/, "top")
+# Property topLeft (QPointF)
+property_reader("QRectF", /::topLeft\s*\(/, "topLeft")
+property_writer("QRectF", /::setTopLeft\s*\(/, "topLeft")
+# Property topRight (QPointF)
+property_reader("QRectF", /::topRight\s*\(/, "topRight")
+property_writer("QRectF", /::setTopRight\s*\(/, "topRight")
+# Property width (double)
+property_reader("QRectF", /::width\s*\(/, "width")
+property_writer("QRectF", /::setWidth\s*\(/, "width")
+# Property x (double)
+property_reader("QRectF", /::x\s*\(/, "x")
+property_writer("QRectF", /::setX\s*\(/, "x")
+# Property y (double)
+property_reader("QRectF", /::y\s*\(/, "y")
+property_writer("QRectF", /::setY\s*\(/, "y")
+# Property pattern (string)
+property_reader("QRegularExpression", /::pattern\s*\(/, "pattern")
+property_writer("QRegularExpression", /::setPattern\s*\(/, "pattern")
+# Property patternOptions (QRegularExpression_QFlags_PatternOption)
+property_reader("QRegularExpression", /::patternOptions\s*\(/, "patternOptions")
+property_writer("QRegularExpression", /::setPatternOptions\s*\(/, "patternOptions")
+# Property fileName (string)
+property_reader("QResource", /::fileName\s*\(/, "fileName")
+property_writer("QResource", /::setFileName\s*\(/, "fileName")
+# Property locale (QLocale)
+property_reader("QResource", /::locale\s*\(/, "locale")
+property_writer("QResource", /::setLocale\s*\(/, "locale")
+# Property autoDelete (bool)
+property_reader("QRunnable", /::autoDelete\s*\(/, "autoDelete")
+property_writer("QRunnable", /::setAutoDelete\s*\(/, "autoDelete")
+# Property directWriteFallback (bool)
+property_reader("QSaveFile", /::directWriteFallback\s*\(/, "directWriteFallback")
+property_writer("QSaveFile", /::setDirectWriteFallback\s*\(/, "directWriteFallback")
+# Property fileName (string)
+property_reader("QSaveFile", /::fileName\s*\(/, "fileName")
+property_writer("QSaveFile", /::setFileName\s*\(/, "fileName")
+# Property atomicSyncRequired (bool)
+property_reader("QSettings", /::isAtomicSyncRequired\s*\(/, "atomicSyncRequired")
+property_writer("QSettings", /::setAtomicSyncRequired\s*\(/, "atomicSyncRequired")
+# Property defaultFormat (QSettings_Format)
+property_reader("QSettings", /::defaultFormat\s*\(/, "defaultFormat")
+property_writer("QSettings", /::setDefaultFormat\s*\(/, "defaultFormat")
+# Property fallbacksEnabled (bool)
+property_reader("QSettings", /::fallbacksEnabled\s*\(/, "fallbacksEnabled")
+property_writer("QSettings", /::setFallbacksEnabled\s*\(/, "fallbacksEnabled")
+# Property key (string)
+property_reader("QSharedMemory", /::key\s*\(/, "key")
+property_writer("QSharedMemory", /::setKey\s*\(/, "key")
+# Property nativeKey (string)
+property_reader("QSharedMemory", /::nativeKey\s*\(/, "nativeKey")
+property_writer("QSharedMemory", /::setNativeKey\s*\(/, "nativeKey")
+# Property height (int)
+property_reader("QSize", /::height\s*\(/, "height")
+property_writer("QSize", /::setHeight\s*\(/, "height")
+# Property width (int)
+property_reader("QSize", /::width\s*\(/, "width")
+property_writer("QSize", /::setWidth\s*\(/, "width")
+# Property height (double)
+property_reader("QSizeF", /::height\s*\(/, "height")
+property_writer("QSizeF", /::setHeight\s*\(/, "height")
+# Property width (double)
+property_reader("QSizeF", /::width\s*\(/, "width")
+property_writer("QSizeF", /::setWidth\s*\(/, "width")
+# Property enabled (bool)
+property_reader("QSocketNotifier", /::isEnabled\s*\(/, "enabled")
+property_writer("QSocketNotifier", /::setEnabled\s*\(/, "enabled")
+# Property socket (long long)
+property_reader("QSocketNotifier", /::socket\s*\(/, "socket")
+property_writer("QSocketNotifier", /::setSocket\s*\(/, "socket")
+# Property parent (QObject_Native *)
+property_reader("QSortFilterProxyModel", /::parent\s*\(/, "parent")
+property_writer("QObject", /::setParent\s*\(/, "parent")
+# Property testModeEnabled (bool)
+property_reader("QStandardPaths", /::isTestModeEnabled\s*\(/, "testModeEnabled")
+property_writer("QStandardPaths", /::setTestModeEnabled\s*\(/, "testModeEnabled")
+# Property stringList (string[])
+property_reader("QStringListModel", /::stringList\s*\(/, "stringList")
+property_writer("QStringListModel", /::setStringList\s*\(/, "stringList")
+# Property caseSensitivity (Qt_CaseSensitivity)
+property_reader("QStringMatcher", /::caseSensitivity\s*\(/, "caseSensitivity")
+property_writer("QStringMatcher", /::setCaseSensitivity\s*\(/, "caseSensitivity")
+# Property pattern (string)
+property_reader("QStringMatcher", /::pattern\s*\(/, "pattern")
+property_writer("QStringMatcher", /::setPattern\s*\(/, "pattern")
+# Property key (string)
+property_reader("QSystemSemaphore", /::key\s*\(/, "key")
+property_writer("QSystemSemaphore", /::setKey\s*\(/, "key")
+# Property autoRemove (bool)
+property_reader("QTemporaryDir", /::autoRemove\s*\(/, "autoRemove")
+property_writer("QTemporaryDir", /::setAutoRemove\s*\(/, "autoRemove")
+# Property autoRemove (bool)
+property_reader("QTemporaryFile", /::autoRemove\s*\(/, "autoRemove")
+property_writer("QTemporaryFile", /::setAutoRemove\s*\(/, "autoRemove")
+# Property fileName (string)
+property_reader("QTemporaryFile", /::fileName\s*\(/, "fileName")
+property_writer("QFile", /::setFileName\s*\(/, "fileName")
+# Property fileTemplate (string)
+property_reader("QTemporaryFile", /::fileTemplate\s*\(/, "fileTemplate")
+property_writer("QTemporaryFile", /::setFileTemplate\s*\(/, "fileTemplate")
+# Property position (long long)
+property_reader("QTextBoundaryFinder", /::position\s*\(/, "position")
+property_writer("QTextBoundaryFinder", /::setPosition\s*\(/, "position")
+# Property autoDetectUnicode (bool)
+property_reader("QTextStream", /::autoDetectUnicode\s*\(/, "autoDetectUnicode")
+property_writer("QTextStream", /::setAutoDetectUnicode\s*\(/, "autoDetectUnicode")
+# Property device (QIODevice *)
+property_reader("QTextStream", /::device\s*\(/, "device")
+property_writer("QTextStream", /::setDevice\s*\(/, "device")
+# Property encoding (QStringConverter_Encoding)
+property_reader("QTextStream", /::encoding\s*\(/, "encoding")
+property_writer("QTextStream", /::setEncoding\s*\(/, "encoding")
+# Property fieldAlignment (QTextStream_FieldAlignment)
+property_reader("QTextStream", /::fieldAlignment\s*\(/, "fieldAlignment")
+property_writer("QTextStream", /::setFieldAlignment\s*\(/, "fieldAlignment")
+# Property fieldWidth (int)
+property_reader("QTextStream", /::fieldWidth\s*\(/, "fieldWidth")
+property_writer("QTextStream", /::setFieldWidth\s*\(/, "fieldWidth")
+# Property generateByteOrderMark (bool)
+property_reader("QTextStream", /::generateByteOrderMark\s*\(/, "generateByteOrderMark")
+property_writer("QTextStream", /::setGenerateByteOrderMark\s*\(/, "generateByteOrderMark")
+# Property integerBase (int)
+property_reader("QTextStream", /::integerBase\s*\(/, "integerBase")
+property_writer("QTextStream", /::setIntegerBase\s*\(/, "integerBase")
+# Property locale (QLocale)
+property_reader("QTextStream", /::locale\s*\(/, "locale")
+property_writer("QTextStream", /::setLocale\s*\(/, "locale")
+# Property numberFlags (QTextStream_QFlags_NumberFlag)
+property_reader("QTextStream", /::numberFlags\s*\(/, "numberFlags")
+property_writer("QTextStream", /::setNumberFlags\s*\(/, "numberFlags")
+# Property padChar (unsigned int)
+property_reader("QTextStream", /::padChar\s*\(/, "padChar")
+property_writer("QTextStream", /::setPadChar\s*\(/, "padChar")
+# Property realNumberNotation (QTextStream_RealNumberNotation)
+property_reader("QTextStream", /::realNumberNotation\s*\(/, "realNumberNotation")
+property_writer("QTextStream", /::setRealNumberNotation\s*\(/, "realNumberNotation")
+# Property realNumberPrecision (int)
+property_reader("QTextStream", /::realNumberPrecision\s*\(/, "realNumberPrecision")
+property_writer("QTextStream", /::setRealNumberPrecision\s*\(/, "realNumberPrecision")
+# Property status (QTextStream_Status)
+property_reader("QTextStream", /::status\s*\(/, "status")
+property_writer("QTextStream", /::setStatus\s*\(/, "status")
+# Property string (string *)
+property_reader("QTextStream", /::string\s*\(/, "string")
+property_writer("QTextStream", /::setString\s*\(/, "string")
+# Property eventDispatcher (QAbstractEventDispatcher_Native *)
+property_reader("QThread", /::eventDispatcher\s*\(/, "eventDispatcher")
+property_writer("QThread", /::setEventDispatcher\s*\(/, "eventDispatcher")
+# Property priority (QThread_Priority)
+property_reader("QThread", /::priority\s*\(/, "priority")
+property_writer("QThread", /::setPriority\s*\(/, "priority")
+# Property stackSize (unsigned int)
+property_reader("QThread", /::stackSize\s*\(/, "stackSize")
+property_writer("QThread", /::setStackSize\s*\(/, "stackSize")
+# Property endFrame (int)
+property_reader("QTimeLine", /::endFrame\s*\(/, "endFrame")
+property_writer("QTimeLine", /::setEndFrame\s*\(/, "endFrame")
+# Property startFrame (int)
+property_reader("QTimeLine", /::startFrame\s*\(/, "startFrame")
+property_writer("QTimeLine", /::setStartFrame\s*\(/, "startFrame")
+# Property authority (string)
+property_reader("QUrl", /::authority\s*\(/, "authority")
+property_writer("QUrl", /::setAuthority\s*\(/, "authority")
+# Property fragment (string)
+property_reader("QUrl", /::fragment\s*\(/, "fragment")
+property_writer("QUrl", /::setFragment\s*\(/, "fragment")
+# Property host (string)
+property_reader("QUrl", /::host\s*\(/, "host")
+property_writer("QUrl", /::setHost\s*\(/, "host")
+# Property idnWhitelist (string[])
+property_reader("QUrl", /::idnWhitelist\s*\(/, "idnWhitelist")
+property_writer("QUrl", /::setIdnWhitelist\s*\(/, "idnWhitelist")
+# Property password (string)
+property_reader("QUrl", /::password\s*\(/, "password")
+property_writer("QUrl", /::setPassword\s*\(/, "password")
+# Property path (string)
+property_reader("QUrl", /::path\s*\(/, "path")
+property_writer("QUrl", /::setPath\s*\(/, "path")
+# Property port (int)
+property_reader("QUrl", /::port\s*\(/, "port")
+property_writer("QUrl", /::setPort\s*\(/, "port")
+# Property scheme (string)
+property_reader("QUrl", /::scheme\s*\(/, "scheme")
+property_writer("QUrl", /::setScheme\s*\(/, "scheme")
+# Property url (string)
+property_reader("QUrl", /::url\s*\(/, "url")
+property_writer("QUrl", /::setUrl\s*\(/, "url")
+# Property userInfo (string)
+property_reader("QUrl", /::userInfo\s*\(/, "userInfo")
+property_writer("QUrl", /::setUserInfo\s*\(/, "userInfo")
+# Property userName (string)
+property_reader("QUrl", /::userName\s*\(/, "userName")
+property_writer("QUrl", /::setUserName\s*\(/, "userName")
+# Property query (string)
+property_reader("QUrlQuery", /::query\s*\(/, "query")
+property_writer("QUrlQuery", /::setQuery\s*\(/, "query")
+# Property queryItems (QPair_QString_QString[])
+property_reader("QUrlQuery", /::queryItems\s*\(/, "queryItems")
+property_writer("QUrlQuery", /::setQueryItems\s*\(/, "queryItems")
+# Property keyValues (QPair_double_QVariant[])
+property_reader("QVariantAnimation", /::keyValues\s*\(/, "keyValues")
+property_writer("QVariantAnimation", /::setKeyValues\s*\(/, "keyValues")
+# Property device (QIODevice *)
+property_reader("QXmlStreamReader", /::device\s*\(/, "device")
+property_writer("QXmlStreamReader", /::setDevice\s*\(/, "device")
+# Property entityExpansionLimit (int)
+property_reader("QXmlStreamReader", /::entityExpansionLimit\s*\(/, "entityExpansionLimit")
+property_writer("QXmlStreamReader", /::setEntityExpansionLimit\s*\(/, "entityExpansionLimit")
+# Property entityResolver (QXmlStreamEntityResolver_Native *)
+property_reader("QXmlStreamReader", /::entityResolver\s*\(/, "entityResolver")
+property_writer("QXmlStreamReader", /::setEntityResolver\s*\(/, "entityResolver")
+# Property namespaceProcessing (bool)
+property_reader("QXmlStreamReader", /::namespaceProcessing\s*\(/, "namespaceProcessing")
+property_writer("QXmlStreamReader", /::setNamespaceProcessing\s*\(/, "namespaceProcessing")
+# Property autoFormatting (bool)
+property_reader("QXmlStreamWriter", /::autoFormatting\s*\(/, "autoFormatting")
+property_writer("QXmlStreamWriter", /::setAutoFormatting\s*\(/, "autoFormatting")
+# Property autoFormattingIndent (int)
+property_reader("QXmlStreamWriter", /::autoFormattingIndent\s*\(/, "autoFormattingIndent")
+property_writer("QXmlStreamWriter", /::setAutoFormattingIndent\s*\(/, "autoFormattingIndent")
+# Property device (QIODevice *)
+property_reader("QXmlStreamWriter", /::device\s*\(/, "device")
+property_writer("QXmlStreamWriter", /::setDevice\s*\(/, "device")
+# Property options (QAbstractFileIconProvider_QFlags_Option)
+property_reader("QAbstractFileIconProvider", /::options\s*\(/, "options")
+property_writer("QAbstractFileIconProvider", /::setOptions\s*\(/, "options")
# Property paintDevice (QPaintDevice_Native *)
property_reader("QAbstractTextDocumentLayout", /::paintDevice\s*\(/, "paintDevice")
property_writer("QAbstractTextDocumentLayout", /::setPaintDevice\s*\(/, "paintDevice")
@@ -11632,138 +11724,18 @@ property_writer("QAction", /::setActionGroup\s*\(/, "actionGroup")
# Property data (variant)
property_reader("QAction", /::data\s*\(/, "data")
property_writer("QAction", /::setData\s*\(/, "data")
-# Property menu (QMenu_Native *)
-property_reader("QAction", /::menu\s*\(/, "menu")
-property_writer("QAction", /::setMenu\s*\(/, "menu")
# Property separator (bool)
property_reader("QAction", /::isSeparator\s*\(/, "separator")
property_writer("QAction", /::setSeparator\s*\(/, "separator")
# Property shortcuts (QKeySequence[])
property_reader("QAction", /::shortcuts\s*\(/, "shortcuts")
property_writer("QAction", /::setShortcuts\s*\(/, "shortcuts")
-# Property startTime (long long)
-property_reader("QAnimationDriver", /::startTime\s*\(/, "startTime")
-property_writer("QAnimationDriver", /::setStartTime\s*\(/, "startTime")
-# Property activeWindow (QWidget_Native *)
-property_reader("QApplication", /::activeWindow\s*\(/, "activeWindow")
-property_writer("QApplication", /::setActiveWindow\s*\(/, "activeWindow")
-# Property colorSpec (int)
-property_reader("QApplication", /::colorSpec\s*\(/, "colorSpec")
-property_writer("QApplication", /::setColorSpec\s*\(/, "colorSpec")
-# Property font (QFont)
-property_reader("QApplication", /::font\s*\(/, "font")
-property_writer("QApplication", /::setFont\s*\(/, "font")
-# Property palette (QPalette)
-property_reader("QApplication", /::palette\s*\(/, "palette")
-property_writer("QApplication", /::setPalette\s*\(/, "palette")
-# Property style (QStyle_Native *)
-property_reader("QApplication", /::style\s*\(/, "style")
-property_writer("QApplication", /::setStyle\s*\(/, "style")
-# Property audioFormat (QAudioFormat)
-property_reader("QAudioDecoder", /::audioFormat\s*\(/, "audioFormat")
-property_writer("QAudioDecoder", /::setAudioFormat\s*\(/, "audioFormat")
-# Property sourceDevice (QIODevice *)
-property_reader("QAudioDecoder", /::sourceDevice\s*\(/, "sourceDevice")
-property_writer("QAudioDecoder", /::setSourceDevice\s*\(/, "sourceDevice")
-# Property audioFormat (QAudioFormat)
-property_reader("QAudioDecoderControl", /::audioFormat\s*\(/, "audioFormat")
-property_writer("QAudioDecoderControl", /::setAudioFormat\s*\(/, "audioFormat")
-# Property sourceDevice (QIODevice *)
-property_reader("QAudioDecoderControl", /::sourceDevice\s*\(/, "sourceDevice")
-property_writer("QAudioDecoderControl", /::setSourceDevice\s*\(/, "sourceDevice")
-# Property sourceFilename (string)
-property_reader("QAudioDecoderControl", /::sourceFilename\s*\(/, "sourceFilename")
-property_writer("QAudioDecoderControl", /::setSourceFilename\s*\(/, "sourceFilename")
-# Property bitRate (int)
-property_reader("QAudioEncoderSettings", /::bitRate\s*\(/, "bitRate")
-property_writer("QAudioEncoderSettings", /::setBitRate\s*\(/, "bitRate")
-# Property channelCount (int)
-property_reader("QAudioEncoderSettings", /::channelCount\s*\(/, "channelCount")
-property_writer("QAudioEncoderSettings", /::setChannelCount\s*\(/, "channelCount")
-# Property codec (string)
-property_reader("QAudioEncoderSettings", /::codec\s*\(/, "codec")
-property_writer("QAudioEncoderSettings", /::setCodec\s*\(/, "codec")
-# Property encodingMode (QMultimedia_EncodingMode)
-property_reader("QAudioEncoderSettings", /::encodingMode\s*\(/, "encodingMode")
-property_writer("QAudioEncoderSettings", /::setEncodingMode\s*\(/, "encodingMode")
-# Property encodingOptions (map)
-property_reader("QAudioEncoderSettings", /::encodingOptions\s*\(/, "encodingOptions")
-property_writer("QAudioEncoderSettings", /::setEncodingOptions\s*\(/, "encodingOptions")
-# Property quality (QMultimedia_EncodingQuality)
-property_reader("QAudioEncoderSettings", /::quality\s*\(/, "quality")
-property_writer("QAudioEncoderSettings", /::setQuality\s*\(/, "quality")
-# Property sampleRate (int)
-property_reader("QAudioEncoderSettings", /::sampleRate\s*\(/, "sampleRate")
-property_writer("QAudioEncoderSettings", /::setSampleRate\s*\(/, "sampleRate")
-# Property audioSettings (QAudioEncoderSettings)
-property_reader("QAudioEncoderSettingsControl", /::audioSettings\s*\(/, "audioSettings")
-property_writer("QAudioEncoderSettingsControl", /::setAudioSettings\s*\(/, "audioSettings")
-# Property byteOrder (QAudioFormat_Endian)
-property_reader("QAudioFormat", /::byteOrder\s*\(/, "byteOrder")
-property_writer("QAudioFormat", /::setByteOrder\s*\(/, "byteOrder")
-# Property channelCount (int)
-property_reader("QAudioFormat", /::channelCount\s*\(/, "channelCount")
-property_writer("QAudioFormat", /::setChannelCount\s*\(/, "channelCount")
-# Property codec (string)
-property_reader("QAudioFormat", /::codec\s*\(/, "codec")
-property_writer("QAudioFormat", /::setCodec\s*\(/, "codec")
-# Property sampleRate (int)
-property_reader("QAudioFormat", /::sampleRate\s*\(/, "sampleRate")
-property_writer("QAudioFormat", /::setSampleRate\s*\(/, "sampleRate")
-# Property sampleSize (int)
-property_reader("QAudioFormat", /::sampleSize\s*\(/, "sampleSize")
-property_writer("QAudioFormat", /::setSampleSize\s*\(/, "sampleSize")
-# Property sampleType (QAudioFormat_SampleType)
-property_reader("QAudioFormat", /::sampleType\s*\(/, "sampleType")
-property_writer("QAudioFormat", /::setSampleType\s*\(/, "sampleType")
-# Property bufferSize (int)
-property_reader("QAudioInput", /::bufferSize\s*\(/, "bufferSize")
-property_writer("QAudioInput", /::setBufferSize\s*\(/, "bufferSize")
-# Property notifyInterval (int)
-property_reader("QAudioInput", /::notifyInterval\s*\(/, "notifyInterval")
-property_writer("QAudioInput", /::setNotifyInterval\s*\(/, "notifyInterval")
-# Property volume (double)
-property_reader("QAudioInput", /::volume\s*\(/, "volume")
-property_writer("QAudioInput", /::setVolume\s*\(/, "volume")
-# Property activeInput (string)
-property_reader("QAudioInputSelectorControl", /::activeInput\s*\(/, "activeInput")
-property_writer("QAudioInputSelectorControl", /::setActiveInput\s*\(/, "activeInput")
-# Property bufferSize (int)
-property_reader("QAudioOutput", /::bufferSize\s*\(/, "bufferSize")
-property_writer("QAudioOutput", /::setBufferSize\s*\(/, "bufferSize")
-# Property category (string)
-property_reader("QAudioOutput", /::category\s*\(/, "category")
-property_writer("QAudioOutput", /::setCategory\s*\(/, "category")
-# Property notifyInterval (int)
-property_reader("QAudioOutput", /::notifyInterval\s*\(/, "notifyInterval")
-property_writer("QAudioOutput", /::setNotifyInterval\s*\(/, "notifyInterval")
-# Property volume (double)
-property_reader("QAudioOutput", /::volume\s*\(/, "volume")
-property_writer("QAudioOutput", /::setVolume\s*\(/, "volume")
-# Property activeOutput (string)
-property_reader("QAudioOutputSelectorControl", /::activeOutput\s*\(/, "activeOutput")
-property_writer("QAudioOutputSelectorControl", /::setActiveOutput\s*\(/, "activeOutput")
-# Property password (string)
-property_reader("QAuthenticator", /::password\s*\(/, "password")
-property_writer("QAuthenticator", /::setPassword\s*\(/, "password")
-# Property realm (string)
-property_reader("QAuthenticator", /::realm\s*\(/, "realm")
-property_writer("QAuthenticator", /::setRealm\s*\(/, "realm")
-# Property user (string)
-property_reader("QAuthenticator", /::user\s*\(/, "user")
-property_writer("QAuthenticator", /::setUser\s*\(/, "user")
-# Property direction (QBoxLayout_Direction)
-property_reader("QBoxLayout", /::direction\s*\(/, "direction")
-property_writer("QBoxLayout", /::setDirection\s*\(/, "direction")
-# Property geometry (QRect)
-property_reader("QLayout", /::geometry\s*\(/, "geometry")
-property_writer("QBoxLayout", /::setGeometry\s*\(/, "geometry")
+# Property exclusive (bool)
+property_reader("QActionGroup", /::isExclusive\s*\(/, "exclusive")
+property_writer("QActionGroup", /::setExclusive\s*\(/, "exclusive")
# Property color (QColor)
property_reader("QBrush", /::color\s*\(/, "color")
property_writer("QBrush", /::setColor\s*\(/, "color")
-# Property matrix (QMatrix)
-property_reader("QBrush", /::matrix\s*\(/, "matrix")
-property_writer("QBrush", /::setMatrix\s*\(/, "matrix")
# Property style (Qt_BrushStyle)
property_reader("QBrush", /::style\s*\(/, "style")
property_writer("QBrush", /::setStyle\s*\(/, "style")
@@ -11776,102 +11748,6 @@ property_writer("QBrush", /::setTextureImage\s*\(/, "textureImage")
# Property transform (QTransform)
property_reader("QBrush", /::transform\s*\(/, "transform")
property_writer("QBrush", /::setTransform\s*\(/, "transform")
-# Property data (string)
-property_reader("QBuffer", /::data\s*\(/, "data")
-property_writer("QBuffer", /::setData\s*\(/, "data")
-# Property pattern (string)
-property_reader("QByteArrayMatcher", /::pattern\s*\(/, "pattern")
-property_writer("QByteArrayMatcher", /::setPattern\s*\(/, "pattern")
-# Property headerTextFormat (QTextCharFormat)
-property_reader("QCalendarWidget", /::headerTextFormat\s*\(/, "headerTextFormat")
-property_writer("QCalendarWidget", /::setHeaderTextFormat\s*\(/, "headerTextFormat")
-# Property viewfinderSettings (QCameraViewfinderSettings)
-property_reader("QCamera", /::viewfinderSettings\s*\(/, "viewfinderSettings")
-property_writer("QCamera", /::setViewfinderSettings\s*\(/, "viewfinderSettings")
-# Property bufferFormat (QVideoFrame_PixelFormat)
-property_reader("QCameraCaptureBufferFormatControl", /::bufferFormat\s*\(/, "bufferFormat")
-property_writer("QCameraCaptureBufferFormatControl", /::setBufferFormat\s*\(/, "bufferFormat")
-# Property captureDestination (QCameraImageCapture_QFlags_CaptureDestination)
-property_reader("QCameraCaptureDestinationControl", /::captureDestination\s*\(/, "captureDestination")
-property_writer("QCameraCaptureDestinationControl", /::setCaptureDestination\s*\(/, "captureDestination")
-# Property captureMode (QCamera_QFlags_CaptureMode)
-property_reader("QCameraControl", /::captureMode\s*\(/, "captureMode")
-property_writer("QCameraControl", /::setCaptureMode\s*\(/, "captureMode")
-# Property state (QCamera_State)
-property_reader("QCameraControl", /::state\s*\(/, "state")
-property_writer("QCameraControl", /::setState\s*\(/, "state")
-# Property spotMeteringPoint (QPointF)
-property_reader("QCameraExposure", /::spotMeteringPoint\s*\(/, "spotMeteringPoint")
-property_writer("QCameraExposure", /::setSpotMeteringPoint\s*\(/, "spotMeteringPoint")
-# Property flashMode (QCameraExposure_QFlags_FlashMode)
-property_reader("QCameraFlashControl", /::flashMode\s*\(/, "flashMode")
-property_writer("QCameraFlashControl", /::setFlashMode\s*\(/, "flashMode")
-# Property customFocusPoint (QPointF)
-property_reader("QCameraFocusControl", /::customFocusPoint\s*\(/, "customFocusPoint")
-property_writer("QCameraFocusControl", /::setCustomFocusPoint\s*\(/, "customFocusPoint")
-# Property focusMode (QCameraFocus_QFlags_FocusMode)
-property_reader("QCameraFocusControl", /::focusMode\s*\(/, "focusMode")
-property_writer("QCameraFocusControl", /::setFocusMode\s*\(/, "focusMode")
-# Property focusPointMode (QCameraFocus_FocusPointMode)
-property_reader("QCameraFocusControl", /::focusPointMode\s*\(/, "focusPointMode")
-property_writer("QCameraFocusControl", /::setFocusPointMode\s*\(/, "focusPointMode")
-# Property status (QCameraFocusZone_FocusZoneStatus)
-property_reader("QCameraFocusZone", /::status\s*\(/, "status")
-property_writer("QCameraFocusZone", /::setStatus\s*\(/, "status")
-# Property bufferFormat (QVideoFrame_PixelFormat)
-property_reader("QCameraImageCapture", /::bufferFormat\s*\(/, "bufferFormat")
-property_writer("QCameraImageCapture", /::setBufferFormat\s*\(/, "bufferFormat")
-# Property captureDestination (QCameraImageCapture_QFlags_CaptureDestination)
-property_reader("QCameraImageCapture", /::captureDestination\s*\(/, "captureDestination")
-property_writer("QCameraImageCapture", /::setCaptureDestination\s*\(/, "captureDestination")
-# Property encodingSettings (QImageEncoderSettings)
-property_reader("QCameraImageCapture", /::encodingSettings\s*\(/, "encodingSettings")
-property_writer("QCameraImageCapture", /::setEncodingSettings\s*\(/, "encodingSettings")
-# Property driveMode (QCameraImageCapture_DriveMode)
-property_reader("QCameraImageCaptureControl", /::driveMode\s*\(/, "driveMode")
-property_writer("QCameraImageCaptureControl", /::setDriveMode\s*\(/, "driveMode")
-# Property colorFilter (QCameraImageProcessing_ColorFilter)
-property_reader("QCameraImageProcessing", /::colorFilter\s*\(/, "colorFilter")
-property_writer("QCameraImageProcessing", /::setColorFilter\s*\(/, "colorFilter")
-# Property contrast (double)
-property_reader("QCameraImageProcessing", /::contrast\s*\(/, "contrast")
-property_writer("QCameraImageProcessing", /::setContrast\s*\(/, "contrast")
-# Property denoisingLevel (double)
-property_reader("QCameraImageProcessing", /::denoisingLevel\s*\(/, "denoisingLevel")
-property_writer("QCameraImageProcessing", /::setDenoisingLevel\s*\(/, "denoisingLevel")
-# Property manualWhiteBalance (double)
-property_reader("QCameraImageProcessing", /::manualWhiteBalance\s*\(/, "manualWhiteBalance")
-property_writer("QCameraImageProcessing", /::setManualWhiteBalance\s*\(/, "manualWhiteBalance")
-# Property saturation (double)
-property_reader("QCameraImageProcessing", /::saturation\s*\(/, "saturation")
-property_writer("QCameraImageProcessing", /::setSaturation\s*\(/, "saturation")
-# Property sharpeningLevel (double)
-property_reader("QCameraImageProcessing", /::sharpeningLevel\s*\(/, "sharpeningLevel")
-property_writer("QCameraImageProcessing", /::setSharpeningLevel\s*\(/, "sharpeningLevel")
-# Property whiteBalanceMode (QCameraImageProcessing_WhiteBalanceMode)
-property_reader("QCameraImageProcessing", /::whiteBalanceMode\s*\(/, "whiteBalanceMode")
-property_writer("QCameraImageProcessing", /::setWhiteBalanceMode\s*\(/, "whiteBalanceMode")
-# Property maximumFrameRate (double)
-property_reader("QCameraViewfinderSettings", /::maximumFrameRate\s*\(/, "maximumFrameRate")
-property_writer("QCameraViewfinderSettings", /::setMaximumFrameRate\s*\(/, "maximumFrameRate")
-# Property minimumFrameRate (double)
-property_reader("QCameraViewfinderSettings", /::minimumFrameRate\s*\(/, "minimumFrameRate")
-property_writer("QCameraViewfinderSettings", /::setMinimumFrameRate\s*\(/, "minimumFrameRate")
-# Property pixelAspectRatio (QSize)
-property_reader("QCameraViewfinderSettings", /::pixelAspectRatio\s*\(/, "pixelAspectRatio")
-property_writer("QCameraViewfinderSettings", /::setPixelAspectRatio\s*\(/, "pixelAspectRatio")
-# Property pixelFormat (QVideoFrame_PixelFormat)
-property_reader("QCameraViewfinderSettings", /::pixelFormat\s*\(/, "pixelFormat")
-property_writer("QCameraViewfinderSettings", /::setPixelFormat\s*\(/, "pixelFormat")
-# Property resolution (QSize)
-property_reader("QCameraViewfinderSettings", /::resolution\s*\(/, "resolution")
-property_writer("QCameraViewfinderSettings", /::setResolution\s*\(/, "resolution")
-# Property viewfinderSettings (QCameraViewfinderSettings)
-property_reader("QCameraViewfinderSettingsControl2", /::viewfinderSettings\s*\(/, "viewfinderSettings")
-property_writer("QCameraViewfinderSettingsControl2", /::setViewfinderSettings\s*\(/, "viewfinderSettings")
-# Property checkState (Qt_CheckState)
-property_reader("QCheckBox", /::checkState\s*\(/, "checkState")
-property_writer("QCheckBox", /::setCheckState\s*\(/, "checkState")
# Property image (QImage_Native)
property_reader("QClipboard", /::image\s*\(/, "image")
property_writer("QClipboard", /::setImage\s*\(/, "image")
@@ -11884,40 +11760,28 @@ property_writer("QClipboard", /::setPixmap\s*\(/, "pixmap")
# Property text (string)
property_reader("QClipboard", /::text\s*\(/, "text")
property_writer("QClipboard", /::setText\s*\(/, "text")
-# Property caseSensitivity (Qt_CaseSensitivity)
-property_reader("QCollator", /::caseSensitivity\s*\(/, "caseSensitivity")
-property_writer("QCollator", /::setCaseSensitivity\s*\(/, "caseSensitivity")
-# Property ignorePunctuation (bool)
-property_reader("QCollator", /::ignorePunctuation\s*\(/, "ignorePunctuation")
-property_writer("QCollator", /::setIgnorePunctuation\s*\(/, "ignorePunctuation")
-# Property locale (QLocale)
-property_reader("QCollator", /::locale\s*\(/, "locale")
-property_writer("QCollator", /::setLocale\s*\(/, "locale")
-# Property numericMode (bool)
-property_reader("QCollator", /::numericMode\s*\(/, "numericMode")
-property_writer("QCollator", /::setNumericMode\s*\(/, "numericMode")
# Property alpha (int)
property_reader("QColor", /::alpha\s*\(/, "alpha")
property_writer("QColor", /::setAlpha\s*\(/, "alpha")
-# Property alphaF (double)
+# Property alphaF (float)
property_reader("QColor", /::alphaF\s*\(/, "alphaF")
property_writer("QColor", /::setAlphaF\s*\(/, "alphaF")
# Property blue (int)
property_reader("QColor", /::blue\s*\(/, "blue")
property_writer("QColor", /::setBlue\s*\(/, "blue")
-# Property blueF (double)
+# Property blueF (float)
property_reader("QColor", /::blueF\s*\(/, "blueF")
property_writer("QColor", /::setBlueF\s*\(/, "blueF")
# Property green (int)
property_reader("QColor", /::green\s*\(/, "green")
property_writer("QColor", /::setGreen\s*\(/, "green")
-# Property greenF (double)
+# Property greenF (float)
property_reader("QColor", /::greenF\s*\(/, "greenF")
property_writer("QColor", /::setGreenF\s*\(/, "greenF")
# Property red (int)
property_reader("QColor", /::red\s*\(/, "red")
property_writer("QColor", /::setRed\s*\(/, "red")
-# Property redF (double)
+# Property redF (float)
property_reader("QColor", /::redF\s*\(/, "redF")
property_writer("QColor", /::setRedF\s*\(/, "redF")
# Property rgb (unsigned int)
@@ -11926,195 +11790,30 @@ property_writer("QColor", /::setRgb\s*\(/, "rgb")
# Property rgba (unsigned int)
property_reader("QColor", /::rgba\s*\(/, "rgba")
property_writer("QColor", /::setRgba\s*\(/, "rgba")
-# Property columnWidths (int[])
-property_reader("QColumnView", /::columnWidths\s*\(/, "columnWidths")
-property_writer("QColumnView", /::setColumnWidths\s*\(/, "columnWidths")
-# Property model (QAbstractItemModel_Native *)
-property_reader("QAbstractItemView", /::model\s*\(/, "model")
-property_writer("QColumnView", /::setModel\s*\(/, "model")
-# Property previewWidget (QWidget_Native *)
-property_reader("QColumnView", /::previewWidget\s*\(/, "previewWidget")
-property_writer("QColumnView", /::setPreviewWidget\s*\(/, "previewWidget")
-# Property rootIndex (QModelIndex)
-property_reader("QAbstractItemView", /::rootIndex\s*\(/, "rootIndex")
-property_writer("QColumnView", /::setRootIndex\s*\(/, "rootIndex")
-# Property selectionModel (QItemSelectionModel_Native *)
-property_reader("QAbstractItemView", /::selectionModel\s*\(/, "selectionModel")
-property_writer("QColumnView", /::setSelectionModel\s*\(/, "selectionModel")
-# Property completer (QCompleter_Native *)
-property_reader("QComboBox", /::completer\s*\(/, "completer")
-property_writer("QComboBox", /::setCompleter\s*\(/, "completer")
-# Property itemDelegate (QAbstractItemDelegate_Native *)
-property_reader("QComboBox", /::itemDelegate\s*\(/, "itemDelegate")
-property_writer("QComboBox", /::setItemDelegate\s*\(/, "itemDelegate")
-# Property lineEdit (QLineEdit_Native *)
-property_reader("QComboBox", /::lineEdit\s*\(/, "lineEdit")
-property_writer("QComboBox", /::setLineEdit\s*\(/, "lineEdit")
-# Property model (QAbstractItemModel_Native *)
-property_reader("QComboBox", /::model\s*\(/, "model")
-property_writer("QComboBox", /::setModel\s*\(/, "model")
-# Property rootModelIndex (QModelIndex)
-property_reader("QComboBox", /::rootModelIndex\s*\(/, "rootModelIndex")
-property_writer("QComboBox", /::setRootModelIndex\s*\(/, "rootModelIndex")
-# Property validator (QValidator_Native *)
-property_reader("QComboBox", /::validator\s*\(/, "validator")
-property_writer("QComboBox", /::setValidator\s*\(/, "validator")
-# Property view (QAbstractItemView_Native *)
-property_reader("QComboBox", /::view\s*\(/, "view")
-property_writer("QComboBox", /::setView\s*\(/, "view")
-# Property defaultValues (string[])
-property_reader("QCommandLineOption", /::defaultValues\s*\(/, "defaultValues")
-property_writer("QCommandLineOption", /::setDefaultValues\s*\(/, "defaultValues")
+# Property rgba64 (QRgba64)
+property_reader("QColor", /::rgba64\s*\(/, "rgba64")
+property_writer("QColor", /::setRgba64\s*\(/, "rgba64")
# Property description (string)
-property_reader("QCommandLineOption", /::description\s*\(/, "description")
-property_writer("QCommandLineOption", /::setDescription\s*\(/, "description")
-# Property valueName (string)
-property_reader("QCommandLineOption", /::valueName\s*\(/, "valueName")
-property_writer("QCommandLineOption", /::setValueName\s*\(/, "valueName")
-# Property applicationDescription (string)
-property_reader("QCommandLineParser", /::applicationDescription\s*\(/, "applicationDescription")
-property_writer("QCommandLineParser", /::setApplicationDescription\s*\(/, "applicationDescription")
-# Property model (QAbstractItemModel_Native *)
-property_reader("QCompleter", /::model\s*\(/, "model")
-property_writer("QCompleter", /::setModel\s*\(/, "model")
-# Property popup (QAbstractItemView_Native *)
-property_reader("QCompleter", /::popup\s*\(/, "popup")
-property_writer("QCompleter", /::setPopup\s*\(/, "popup")
-# Property widget (QWidget_Native *)
-property_reader("QCompleter", /::widget\s*\(/, "widget")
-property_writer("QCompleter", /::setWidget\s*\(/, "widget")
+property_reader("QColorSpace", /::description\s*\(/, "description")
+property_writer("QColorSpace", /::setDescription\s*\(/, "description")
+# Property primaries (QColorSpace_Primaries)
+property_reader("QColorSpace", /::primaries\s*\(/, "primaries")
+property_writer("QColorSpace", /::setPrimaries\s*\(/, "primaries")
+# Property transferFunction (QColorSpace_TransferFunction)
+property_reader("QColorSpace", /::transferFunction\s*\(/, "transferFunction")
+property_writer("QColorSpace", /::setTransferFunction\s*\(/, "transferFunction")
# Property angle (double)
property_reader("QConicalGradient", /::angle\s*\(/, "angle")
property_writer("QConicalGradient", /::setAngle\s*\(/, "angle")
# Property center (QPointF)
property_reader("QConicalGradient", /::center\s*\(/, "center")
property_writer("QConicalGradient", /::setCenter\s*\(/, "center")
-# Property eventDispatcher (QAbstractEventDispatcher_Native *)
-property_reader("QCoreApplication", /::eventDispatcher\s*\(/, "eventDispatcher")
-property_writer("QCoreApplication", /::setEventDispatcher\s*\(/, "eventDispatcher")
-# Property libraryPaths (string[])
-property_reader("QCoreApplication", /::libraryPaths\s*\(/, "libraryPaths")
-property_writer("QCoreApplication", /::setLibraryPaths\s*\(/, "libraryPaths")
-# Property setuidAllowed (bool)
-property_reader("QCoreApplication", /::isSetuidAllowed\s*\(/, "setuidAllowed")
-property_writer("QCoreApplication", /::setSetuidAllowed\s*\(/, "setuidAllowed")
# Property pos (QPoint)
property_reader("QCursor", /::pos\s*\(/, "pos")
property_writer("QCursor", /::setPos\s*\(/, "pos")
# Property shape (Qt_CursorShape)
property_reader("QCursor", /::shape\s*\(/, "shape")
property_writer("QCursor", /::setShape\s*\(/, "shape")
-# Property byteOrder (QDataStream_ByteOrder)
-property_reader("QDataStream", /::byteOrder\s*\(/, "byteOrder")
-property_writer("QDataStream", /::setByteOrder\s*\(/, "byteOrder")
-# Property device (QIODevice *)
-property_reader("QDataStream", /::device\s*\(/, "device")
-property_writer("QDataStream", /::setDevice\s*\(/, "device")
-# Property floatingPointPrecision (QDataStream_FloatingPointPrecision)
-property_reader("QDataStream", /::floatingPointPrecision\s*\(/, "floatingPointPrecision")
-property_writer("QDataStream", /::setFloatingPointPrecision\s*\(/, "floatingPointPrecision")
-# Property status (QDataStream_Status)
-property_reader("QDataStream", /::status\s*\(/, "status")
-property_writer("QDataStream", /::setStatus\s*\(/, "status")
-# Property version (int)
-property_reader("QDataStream", /::version\s*\(/, "version")
-property_writer("QDataStream", /::setVersion\s*\(/, "version")
-# Property itemDelegate (QAbstractItemDelegate_Native *)
-property_reader("QDataWidgetMapper", /::itemDelegate\s*\(/, "itemDelegate")
-property_writer("QDataWidgetMapper", /::setItemDelegate\s*\(/, "itemDelegate")
-# Property model (QAbstractItemModel_Native *)
-property_reader("QDataWidgetMapper", /::model\s*\(/, "model")
-property_writer("QDataWidgetMapper", /::setModel\s*\(/, "model")
-# Property rootIndex (QModelIndex)
-property_reader("QDataWidgetMapper", /::rootIndex\s*\(/, "rootIndex")
-property_writer("QDataWidgetMapper", /::setRootIndex\s*\(/, "rootIndex")
-# Property date (QDate)
-property_reader("QDateTime", /::date\s*\(/, "date")
-property_writer("QDateTime", /::setDate\s*\(/, "date")
-# Property offsetFromUtc (int)
-property_reader("QDateTime", /::offsetFromUtc\s*\(/, "offsetFromUtc")
-property_writer("QDateTime", /::setOffsetFromUtc\s*\(/, "offsetFromUtc")
-# Property time (QTime)
-property_reader("QDateTime", /::time\s*\(/, "time")
-property_writer("QDateTime", /::setTime\s*\(/, "time")
-# Property timeSpec (Qt_TimeSpec)
-property_reader("QDateTime", /::timeSpec\s*\(/, "timeSpec")
-property_writer("QDateTime", /::setTimeSpec\s*\(/, "timeSpec")
-# Property timeZone (QTimeZone)
-property_reader("QDateTime", /::timeZone\s*\(/, "timeZone")
-property_writer("QDateTime", /::setTimeZone\s*\(/, "timeZone")
-# Property utcOffset (int)
-property_reader("QDateTime", /::utcOffset\s*\(/, "utcOffset")
-property_writer("QDateTime", /::setUtcOffset\s*\(/, "utcOffset")
-# Property calendarWidget (QCalendarWidget_Native *)
-property_reader("QDateTimeEdit", /::calendarWidget\s*\(/, "calendarWidget")
-property_writer("QDateTimeEdit", /::setCalendarWidget\s*\(/, "calendarWidget")
-# Property autoInsertSpaces (bool)
-property_reader("QDebug", /::autoInsertSpaces\s*\(/, "autoInsertSpaces")
-property_writer("QDebug", /::setAutoInsertSpaces\s*\(/, "autoInsertSpaces")
-# Property extension (QWidget_Native *)
-property_reader("QDialog", /::extension\s*\(/, "extension")
-property_writer("QDialog", /::setExtension\s*\(/, "extension")
-# Property orientation (Qt_Orientation)
-property_reader("QDialog", /::orientation\s*\(/, "orientation")
-property_writer("QDialog", /::setOrientation\s*\(/, "orientation")
-# Property result (int)
-property_reader("QDialog", /::result\s*\(/, "result")
-property_writer("QDialog", /::setResult\s*\(/, "result")
-# Property filter (QDir_QFlags_Filter)
-property_reader("QDir", /::filter\s*\(/, "filter")
-property_writer("QDir", /::setFilter\s*\(/, "filter")
-# Property nameFilters (string[])
-property_reader("QDir", /::nameFilters\s*\(/, "nameFilters")
-property_writer("QDir", /::setNameFilters\s*\(/, "nameFilters")
-# Property path (string)
-property_reader("QDir", /::path\s*\(/, "path")
-property_writer("QDir", /::setPath\s*\(/, "path")
-# Property sorting (QDir_QFlags_SortFlag)
-property_reader("QDir", /::sorting\s*\(/, "sorting")
-property_writer("QDir", /::setSorting\s*\(/, "sorting")
-# Property filter (QDir_QFlags_Filter)
-property_reader("QDirModel", /::filter\s*\(/, "filter")
-property_writer("QDirModel", /::setFilter\s*\(/, "filter")
-# Property iconProvider (QFileIconProvider_Native *)
-property_reader("QDirModel", /::iconProvider\s*\(/, "iconProvider")
-property_writer("QDirModel", /::setIconProvider\s*\(/, "iconProvider")
-# Property nameFilters (string[])
-property_reader("QDirModel", /::nameFilters\s*\(/, "nameFilters")
-property_writer("QDirModel", /::setNameFilters\s*\(/, "nameFilters")
-# Property parent (QObject_Native *)
-property_reader("QDirModel", /::parent\s*\(/, "parent")
-property_writer("QObject", /::setParent\s*\(/, "parent")
-# Property sorting (QDir_QFlags_SortFlag)
-property_reader("QDirModel", /::sorting\s*\(/, "sorting")
-property_writer("QDirModel", /::setSorting\s*\(/, "sorting")
-# Property titleBarWidget (QWidget_Native *)
-property_reader("QDockWidget", /::titleBarWidget\s*\(/, "titleBarWidget")
-property_writer("QDockWidget", /::setTitleBarWidget\s*\(/, "titleBarWidget")
-# Property widget (QWidget_Native *)
-property_reader("QDockWidget", /::widget\s*\(/, "widget")
-property_writer("QDockWidget", /::setWidget\s*\(/, "widget")
-# Property value (string)
-property_reader("QDomAttr", /::value\s*\(/, "value")
-property_writer("QDomAttr", /::setValue\s*\(/, "value")
-# Property data (string)
-property_reader("QDomCharacterData", /::data\s*\(/, "data")
-property_writer("QDomCharacterData", /::setData\s*\(/, "data")
-# Property tagName (string)
-property_reader("QDomElement", /::tagName\s*\(/, "tagName")
-property_writer("QDomElement", /::setTagName\s*\(/, "tagName")
-# Property invalidDataPolicy (QDomImplementation_InvalidDataPolicy)
-property_reader("QDomImplementation", /::invalidDataPolicy\s*\(/, "invalidDataPolicy")
-property_writer("QDomImplementation", /::setInvalidDataPolicy\s*\(/, "invalidDataPolicy")
-# Property nodeValue (string)
-property_reader("QDomNode", /::nodeValue\s*\(/, "nodeValue")
-property_writer("QDomNode", /::setNodeValue\s*\(/, "nodeValue")
-# Property prefix (string)
-property_reader("QDomNode", /::prefix\s*\(/, "prefix")
-property_writer("QDomNode", /::setPrefix\s*\(/, "prefix")
-# Property data (string)
-property_reader("QDomProcessingInstruction", /::data\s*\(/, "data")
-property_writer("QDomProcessingInstruction", /::setData\s*\(/, "data")
# Property hotSpot (QPoint)
property_reader("QDrag", /::hotSpot\s*\(/, "hotSpot")
property_writer("QDrag", /::setHotSpot\s*\(/, "hotSpot")
@@ -12127,78 +11826,30 @@ property_writer("QDrag", /::setPixmap\s*\(/, "pixmap")
# Property dropAction (Qt_DropAction)
property_reader("QDropEvent", /::dropAction\s*\(/, "dropAction")
property_writer("QDropEvent", /::setDropAction\s*\(/, "dropAction")
-# Property amplitude (double)
-property_reader("QEasingCurve", /::amplitude\s*\(/, "amplitude")
-property_writer("QEasingCurve", /::setAmplitude\s*\(/, "amplitude")
-# Property overshoot (double)
-property_reader("QEasingCurve", /::overshoot\s*\(/, "overshoot")
-property_writer("QEasingCurve", /::setOvershoot\s*\(/, "overshoot")
-# Property period (double)
-property_reader("QEasingCurve", /::period\s*\(/, "period")
-property_writer("QEasingCurve", /::setPeriod\s*\(/, "period")
-# Property type (QEasingCurve_Type)
-property_reader("QEasingCurve", /::type\s*\(/, "type")
-property_writer("QEasingCurve", /::setType\s*\(/, "type")
# Property accepted (bool)
-property_reader("QEvent", /::isAccepted\s*\(/, "accepted")
-property_writer("QEvent", /::setAccepted\s*\(/, "accepted")
-# Property fileName (string)
-property_reader("QFile", /::fileName\s*\(/, "fileName")
-property_writer("QFile", /::setFileName\s*\(/, "fileName")
-# Property directoryUrl (QUrl)
-property_reader("QFileDialog", /::directoryUrl\s*\(/, "directoryUrl")
-property_writer("QFileDialog", /::setDirectoryUrl\s*\(/, "directoryUrl")
-# Property filter (QDir_QFlags_Filter)
-property_reader("QFileDialog", /::filter\s*\(/, "filter")
-property_writer("QFileDialog", /::setFilter\s*\(/, "filter")
-# Property history (string[])
-property_reader("QFileDialog", /::history\s*\(/, "history")
-property_writer("QFileDialog", /::setHistory\s*\(/, "history")
-# Property iconProvider (QFileIconProvider_Native *)
-property_reader("QFileDialog", /::iconProvider\s*\(/, "iconProvider")
-property_writer("QFileDialog", /::setIconProvider\s*\(/, "iconProvider")
-# Property itemDelegate (QAbstractItemDelegate_Native *)
-property_reader("QFileDialog", /::itemDelegate\s*\(/, "itemDelegate")
-property_writer("QFileDialog", /::setItemDelegate\s*\(/, "itemDelegate")
-# Property mimeTypeFilters (string[])
-property_reader("QFileDialog", /::mimeTypeFilters\s*\(/, "mimeTypeFilters")
-property_writer("QFileDialog", /::setMimeTypeFilters\s*\(/, "mimeTypeFilters")
-# Property nameFilters (string[])
-property_reader("QFileDialog", /::nameFilters\s*\(/, "nameFilters")
-property_writer("QFileDialog", /::setNameFilters\s*\(/, "nameFilters")
-# Property proxyModel (QAbstractProxyModel_Native *)
-property_reader("QFileDialog", /::proxyModel\s*\(/, "proxyModel")
-property_writer("QFileDialog", /::setProxyModel\s*\(/, "proxyModel")
-# Property sidebarUrls (QUrl[])
-property_reader("QFileDialog", /::sidebarUrls\s*\(/, "sidebarUrls")
-property_writer("QFileDialog", /::setSidebarUrls\s*\(/, "sidebarUrls")
-# Property options (QFileIconProvider_QFlags_Option)
-property_reader("QFileIconProvider", /::options\s*\(/, "options")
-property_writer("QFileIconProvider", /::setOptions\s*\(/, "options")
-# Property caching (bool)
-property_reader("QFileInfo", /::caching\s*\(/, "caching")
-property_writer("QFileInfo", /::setCaching\s*\(/, "caching")
-# Property extraSelectors (string[])
-property_reader("QFileSelector", /::extraSelectors\s*\(/, "extraSelectors")
-property_writer("QFileSelector", /::setExtraSelectors\s*\(/, "extraSelectors")
+property_reader("QEventPoint", /::isAccepted\s*\(/, "accepted")
+property_writer("QEventPoint", /::setAccepted\s*\(/, "accepted")
# Property filter (QDir_QFlags_Filter)
property_reader("QFileSystemModel", /::filter\s*\(/, "filter")
property_writer("QFileSystemModel", /::setFilter\s*\(/, "filter")
-# Property iconProvider (QFileIconProvider_Native *)
+# Property iconProvider (QAbstractFileIconProvider_Native *)
property_reader("QFileSystemModel", /::iconProvider\s*\(/, "iconProvider")
property_writer("QFileSystemModel", /::setIconProvider\s*\(/, "iconProvider")
# Property nameFilters (string[])
property_reader("QFileSystemModel", /::nameFilters\s*\(/, "nameFilters")
property_writer("QFileSystemModel", /::setNameFilters\s*\(/, "nameFilters")
-# Property widget (QWidget_Native *)
-property_reader("QFocusFrame", /::widget\s*\(/, "widget")
-property_writer("QFocusFrame", /::setWidget\s*\(/, "widget")
+# Property parent (QObject_Native *)
+property_reader("QFileSystemModel", /::parent\s*\(/, "parent")
+property_writer("QObject", /::setParent\s*\(/, "parent")
# Property bold (bool)
property_reader("QFont", /::bold\s*\(/, "bold")
property_writer("QFont", /::setBold\s*\(/, "bold")
# Property capitalization (QFont_Capitalization)
property_reader("QFont", /::capitalization\s*\(/, "capitalization")
property_writer("QFont", /::setCapitalization\s*\(/, "capitalization")
+# Property families (string[])
+property_reader("QFont", /::families\s*\(/, "families")
+property_writer("QFont", /::setFamilies\s*\(/, "families")
# Property family (string)
property_reader("QFont", /::family\s*\(/, "family")
property_writer("QFont", /::setFamily\s*\(/, "family")
@@ -12214,6 +11865,9 @@ property_writer("QFont", /::setItalic\s*\(/, "italic")
# Property kerning (bool)
property_reader("QFont", /::kerning\s*\(/, "kerning")
property_writer("QFont", /::setKerning\s*\(/, "kerning")
+# Property legacyWeight (int)
+property_reader("QFont", /::legacyWeight\s*\(/, "legacyWeight")
+property_writer("QFont", /::setLegacyWeight\s*\(/, "legacyWeight")
# Property overline (bool)
property_reader("QFont", /::overline\s*\(/, "overline")
property_writer("QFont", /::setOverline\s*\(/, "overline")
@@ -12226,12 +11880,9 @@ property_writer("QFont", /::setPointSize\s*\(/, "pointSize")
# Property pointSizeF (double)
property_reader("QFont", /::pointSizeF\s*\(/, "pointSizeF")
property_writer("QFont", /::setPointSizeF\s*\(/, "pointSizeF")
-# Property rawMode (bool)
-property_reader("QFont", /::rawMode\s*\(/, "rawMode")
-property_writer("QFont", /::setRawMode\s*\(/, "rawMode")
-# Property rawName (string)
-property_reader("QFont", /::rawName\s*\(/, "rawName")
-property_writer("QFont", /::setRawName\s*\(/, "rawName")
+# Property resolveMask (unsigned int)
+property_reader("QFont", /::resolveMask\s*\(/, "resolveMask")
+property_writer("QFont", /::setResolveMask\s*\(/, "resolveMask")
# Property stretch (int)
property_reader("QFont", /::stretch\s*\(/, "stretch")
property_writer("QFont", /::setStretch\s*\(/, "stretch")
@@ -12253,24 +11904,12 @@ property_writer("QFont", /::setStyleStrategy\s*\(/, "styleStrategy")
# Property underline (bool)
property_reader("QFont", /::underline\s*\(/, "underline")
property_writer("QFont", /::setUnderline\s*\(/, "underline")
-# Property weight (int)
+# Property weight (QFont_Weight)
property_reader("QFont", /::weight\s*\(/, "weight")
property_writer("QFont", /::setWeight\s*\(/, "weight")
# Property wordSpacing (double)
property_reader("QFont", /::wordSpacing\s*\(/, "wordSpacing")
property_writer("QFont", /::setWordSpacing\s*\(/, "wordSpacing")
-# Property geometry (QRect)
-property_reader("QLayout", /::geometry\s*\(/, "geometry")
-property_writer("QFormLayout", /::setGeometry\s*\(/, "geometry")
-# Property frameStyle (int)
-property_reader("QFrame", /::frameStyle\s*\(/, "frameStyle")
-property_writer("QFrame", /::setFrameStyle\s*\(/, "frameStyle")
-# Property accepted (bool)
-property_reader("QGestureEvent", /::isAccepted\s*\(/, "accepted")
-property_writer("QGestureEvent", /::setAccepted\s*\(/, "accepted")
-# Property widget (QWidget_Native *)
-property_reader("QGestureEvent", /::widget\s*\(/, "widget")
-property_writer("QGestureEvent", /::setWidget\s*\(/, "widget")
# Property boundingRect (QRectF)
property_reader("QGlyphRun", /::boundingRect\s*\(/, "boundingRect")
property_writer("QGlyphRun", /::setBoundingRect\s*\(/, "boundingRect")
@@ -12310,6 +11949,1236 @@ property_writer("QGradient", /::setSpread\s*\(/, "spread")
# Property stops (QPair_double_QColor[])
property_reader("QGradient", /::stops\s*\(/, "stops")
property_writer("QGradient", /::setStops\s*\(/, "stops")
+# Property desktopSettingsAware (bool)
+property_reader("QGuiApplication", /::desktopSettingsAware\s*\(/, "desktopSettingsAware")
+property_writer("QGuiApplication", /::setDesktopSettingsAware\s*\(/, "desktopSettingsAware")
+# Property font (QFont)
+property_reader("QGuiApplication", /::font\s*\(/, "font")
+property_writer("QGuiApplication", /::setFont\s*\(/, "font")
+# Property highDpiScaleFactorRoundingPolicy (Qt_HighDpiScaleFactorRoundingPolicy)
+property_reader("QGuiApplication", /::highDpiScaleFactorRoundingPolicy\s*\(/, "highDpiScaleFactorRoundingPolicy")
+property_writer("QGuiApplication", /::setHighDpiScaleFactorRoundingPolicy\s*\(/, "highDpiScaleFactorRoundingPolicy")
+# Property palette (QPalette)
+property_reader("QGuiApplication", /::palette\s*\(/, "palette")
+property_writer("QGuiApplication", /::setPalette\s*\(/, "palette")
+# Property fallbackSearchPaths (string[])
+property_reader("QIcon", /::fallbackSearchPaths\s*\(/, "fallbackSearchPaths")
+property_writer("QIcon", /::setFallbackSearchPaths\s*\(/, "fallbackSearchPaths")
+# Property fallbackThemeName (string)
+property_reader("QIcon", /::fallbackThemeName\s*\(/, "fallbackThemeName")
+property_writer("QIcon", /::setFallbackThemeName\s*\(/, "fallbackThemeName")
+# Property themeName (string)
+property_reader("QIcon", /::themeName\s*\(/, "themeName")
+property_writer("QIcon", /::setThemeName\s*\(/, "themeName")
+# Property themeSearchPaths (string[])
+property_reader("QIcon", /::themeSearchPaths\s*\(/, "themeSearchPaths")
+property_writer("QIcon", /::setThemeSearchPaths\s*\(/, "themeSearchPaths")
+# Property colorCount (int)
+property_reader("QImage", /::colorCount\s*\(/, "colorCount")
+property_writer("QImage", /::setColorCount\s*\(/, "colorCount")
+# Property colorSpace (QColorSpace)
+property_reader("QImage", /::colorSpace\s*\(/, "colorSpace")
+property_writer("QImage", /::setColorSpace\s*\(/, "colorSpace")
+# Property colorTable (unsigned int[])
+property_reader("QImage", /::colorTable\s*\(/, "colorTable")
+property_writer("QImage", /::setColorTable\s*\(/, "colorTable")
+# Property devicePixelRatio (double)
+property_reader("QImage", /::devicePixelRatio\s*\(/, "devicePixelRatio")
+property_writer("QImage", /::setDevicePixelRatio\s*\(/, "devicePixelRatio")
+# Property dotsPerMeterX (int)
+property_reader("QImage", /::dotsPerMeterX\s*\(/, "dotsPerMeterX")
+property_writer("QImage", /::setDotsPerMeterX\s*\(/, "dotsPerMeterX")
+# Property dotsPerMeterY (int)
+property_reader("QImage", /::dotsPerMeterY\s*\(/, "dotsPerMeterY")
+property_writer("QImage", /::setDotsPerMeterY\s*\(/, "dotsPerMeterY")
+# Property offset (QPoint)
+property_reader("QImage", /::offset\s*\(/, "offset")
+property_writer("QImage", /::setOffset\s*\(/, "offset")
+# Property device (QIODevice *)
+property_reader("QImageIOHandler", /::device\s*\(/, "device")
+property_writer("QImageIOHandler", /::setDevice\s*\(/, "device")
+# Property format (byte array)
+property_reader("QImageIOHandler", /::format\s*\(/, "format")
+property_writer("QImageIOHandler", /::setFormat\s*\(/, "format")
+# Property allocationLimit (int)
+property_reader("QImageReader", /::allocationLimit\s*\(/, "allocationLimit")
+property_writer("QImageReader", /::setAllocationLimit\s*\(/, "allocationLimit")
+# Property autoDetectImageFormat (bool)
+property_reader("QImageReader", /::autoDetectImageFormat\s*\(/, "autoDetectImageFormat")
+property_writer("QImageReader", /::setAutoDetectImageFormat\s*\(/, "autoDetectImageFormat")
+# Property autoTransform (bool)
+property_reader("QImageReader", /::autoTransform\s*\(/, "autoTransform")
+property_writer("QImageReader", /::setAutoTransform\s*\(/, "autoTransform")
+# Property backgroundColor (QColor)
+property_reader("QImageReader", /::backgroundColor\s*\(/, "backgroundColor")
+property_writer("QImageReader", /::setBackgroundColor\s*\(/, "backgroundColor")
+# Property clipRect (QRect)
+property_reader("QImageReader", /::clipRect\s*\(/, "clipRect")
+property_writer("QImageReader", /::setClipRect\s*\(/, "clipRect")
+# Property decideFormatFromContent (bool)
+property_reader("QImageReader", /::decideFormatFromContent\s*\(/, "decideFormatFromContent")
+property_writer("QImageReader", /::setDecideFormatFromContent\s*\(/, "decideFormatFromContent")
+# Property device (QIODevice *)
+property_reader("QImageReader", /::device\s*\(/, "device")
+property_writer("QImageReader", /::setDevice\s*\(/, "device")
+# Property fileName (string)
+property_reader("QImageReader", /::fileName\s*\(/, "fileName")
+property_writer("QImageReader", /::setFileName\s*\(/, "fileName")
+# Property format (byte array)
+property_reader("QImageReader", /::format\s*\(/, "format")
+property_writer("QImageReader", /::setFormat\s*\(/, "format")
+# Property quality (int)
+property_reader("QImageReader", /::quality\s*\(/, "quality")
+property_writer("QImageReader", /::setQuality\s*\(/, "quality")
+# Property scaledClipRect (QRect)
+property_reader("QImageReader", /::scaledClipRect\s*\(/, "scaledClipRect")
+property_writer("QImageReader", /::setScaledClipRect\s*\(/, "scaledClipRect")
+# Property scaledSize (QSize)
+property_reader("QImageReader", /::scaledSize\s*\(/, "scaledSize")
+property_writer("QImageReader", /::setScaledSize\s*\(/, "scaledSize")
+# Property compression (int)
+property_reader("QImageWriter", /::compression\s*\(/, "compression")
+property_writer("QImageWriter", /::setCompression\s*\(/, "compression")
+# Property device (QIODevice *)
+property_reader("QImageWriter", /::device\s*\(/, "device")
+property_writer("QImageWriter", /::setDevice\s*\(/, "device")
+# Property fileName (string)
+property_reader("QImageWriter", /::fileName\s*\(/, "fileName")
+property_writer("QImageWriter", /::setFileName\s*\(/, "fileName")
+# Property format (byte array)
+property_reader("QImageWriter", /::format\s*\(/, "format")
+property_writer("QImageWriter", /::setFormat\s*\(/, "format")
+# Property optimizedWrite (bool)
+property_reader("QImageWriter", /::optimizedWrite\s*\(/, "optimizedWrite")
+property_writer("QImageWriter", /::setOptimizedWrite\s*\(/, "optimizedWrite")
+# Property progressiveScanWrite (bool)
+property_reader("QImageWriter", /::progressiveScanWrite\s*\(/, "progressiveScanWrite")
+property_writer("QImageWriter", /::setProgressiveScanWrite\s*\(/, "progressiveScanWrite")
+# Property quality (int)
+property_reader("QImageWriter", /::quality\s*\(/, "quality")
+property_writer("QImageWriter", /::setQuality\s*\(/, "quality")
+# Property subType (byte array)
+property_reader("QImageWriter", /::subType\s*\(/, "subType")
+property_writer("QImageWriter", /::setSubType\s*\(/, "subType")
+# Property transformation (QImageIOHandler_QFlags_Transformation)
+property_reader("QImageWriter", /::transformation\s*\(/, "transformation")
+property_writer("QImageWriter", /::setTransformation\s*\(/, "transformation")
+# Property modifiers (Qt_QFlags_KeyboardModifier)
+property_reader("QInputEvent", /::modifiers\s*\(/, "modifiers")
+property_writer("QInputEvent", /::setModifiers\s*\(/, "modifiers")
+# Property timestamp (unsigned long long)
+property_reader("QInputEvent", /::timestamp\s*\(/, "timestamp")
+property_writer("QInputEvent", /::setTimestamp\s*\(/, "timestamp")
+# Property inputItemRectangle (QRectF)
+property_reader("QInputMethod", /::inputItemRectangle\s*\(/, "inputItemRectangle")
+property_writer("QInputMethod", /::setInputItemRectangle\s*\(/, "inputItemRectangle")
+# Property inputItemTransform (QTransform)
+property_reader("QInputMethod", /::inputItemTransform\s*\(/, "inputItemTransform")
+property_writer("QInputMethod", /::setInputItemTransform\s*\(/, "inputItemTransform")
+# Property modifiers (Qt_QFlags_KeyboardModifier)
+property_reader("QKeyEvent", /::modifiers\s*\(/, "modifiers")
+property_writer("QInputEvent", /::setModifiers\s*\(/, "modifiers")
+# Property finalStop (QPointF)
+property_reader("QLinearGradient", /::finalStop\s*\(/, "finalStop")
+property_writer("QLinearGradient", /::setFinalStop\s*\(/, "finalStop")
+# Property start (QPointF)
+property_reader("QLinearGradient", /::start\s*\(/, "start")
+property_writer("QLinearGradient", /::setStart\s*\(/, "start")
+# Property backgroundColor (QColor)
+property_reader("QMovie", /::backgroundColor\s*\(/, "backgroundColor")
+property_writer("QMovie", /::setBackgroundColor\s*\(/, "backgroundColor")
+# Property device (QIODevice *)
+property_reader("QMovie", /::device\s*\(/, "device")
+property_writer("QMovie", /::setDevice\s*\(/, "device")
+# Property fileName (string)
+property_reader("QMovie", /::fileName\s*\(/, "fileName")
+property_writer("QMovie", /::setFileName\s*\(/, "fileName")
+# Property format (byte array)
+property_reader("QMovie", /::format\s*\(/, "format")
+property_writer("QMovie", /::setFormat\s*\(/, "format")
+# Property scaledSize (QSize)
+property_reader("QMovie", /::scaledSize\s*\(/, "scaledSize")
+property_writer("QMovie", /::setScaledSize\s*\(/, "scaledSize")
+# Property format (QSurfaceFormat)
+property_reader("QOffscreenSurface", /::format\s*\(/, "format")
+property_writer("QOffscreenSurface", /::setFormat\s*\(/, "format")
+# Property screen (QScreen_Native *)
+property_reader("QOffscreenSurface", /::screen\s*\(/, "screen")
+property_writer("QOffscreenSurface", /::setScreen\s*\(/, "screen")
+# Property minimumMargins (QMarginsF)
+property_reader("QPageLayout", /::minimumMargins\s*\(/, "minimumMargins")
+property_writer("QPageLayout", /::setMinimumMargins\s*\(/, "minimumMargins")
+# Property mode (QPageLayout_Mode)
+property_reader("QPageLayout", /::mode\s*\(/, "mode")
+property_writer("QPageLayout", /::setMode\s*\(/, "mode")
+# Property orientation (QPageLayout_Orientation)
+property_reader("QPageLayout", /::orientation\s*\(/, "orientation")
+property_writer("QPageLayout", /::setOrientation\s*\(/, "orientation")
+# Property pageSize (QPageSize)
+property_reader("QPageLayout", /::pageSize\s*\(/, "pageSize")
+property_writer("QPageLayout", /::setPageSize\s*\(/, "pageSize")
+# Property units (QPageLayout_Unit)
+property_reader("QPageLayout", /::units\s*\(/, "units")
+property_writer("QPageLayout", /::setUnits\s*\(/, "units")
+# Property pageRanges (QPageRanges)
+property_reader("QPagedPaintDevice", /::pageRanges\s*\(/, "pageRanges")
+property_writer("QPagedPaintDevice", /::setPageRanges\s*\(/, "pageRanges")
+# Property active (bool)
+property_reader("QPaintEngine", /::isActive\s*\(/, "active")
+property_writer("QPaintEngine", /::setActive\s*\(/, "active")
+# Property paintDevice (QPaintDevice_Native *)
+property_reader("QPaintEngine", /::paintDevice\s*\(/, "paintDevice")
+property_writer("QPaintEngine", /::setPaintDevice\s*\(/, "paintDevice")
+# Property systemClip (QRegion)
+property_reader("QPaintEngine", /::systemClip\s*\(/, "systemClip")
+property_writer("QPaintEngine", /::setSystemClip\s*\(/, "systemClip")
+# Property systemRect (QRect)
+property_reader("QPaintEngine", /::systemRect\s*\(/, "systemRect")
+property_writer("QPaintEngine", /::setSystemRect\s*\(/, "systemRect")
+# Property background (QBrush)
+property_reader("QPainter", /::background\s*\(/, "background")
+property_writer("QPainter", /::setBackground\s*\(/, "background")
+# Property backgroundMode (Qt_BGMode)
+property_reader("QPainter", /::backgroundMode\s*\(/, "backgroundMode")
+property_writer("QPainter", /::setBackgroundMode\s*\(/, "backgroundMode")
+# Property brush (QBrush)
+property_reader("QPainter", /::brush\s*\(/, "brush")
+property_writer("QPainter", /::setBrush\s*\(/, "brush")
+# Property brushOrigin (QPoint)
+property_reader("QPainter", /::brushOrigin\s*\(/, "brushOrigin")
+property_writer("QPainter", /::setBrushOrigin\s*\(/, "brushOrigin")
+# Property clipPath (QPainterPath)
+property_reader("QPainter", /::clipPath\s*\(/, "clipPath")
+property_writer("QPainter", /::setClipPath\s*\(/, "clipPath")
+# Property clipRegion (QRegion)
+property_reader("QPainter", /::clipRegion\s*\(/, "clipRegion")
+property_writer("QPainter", /::setClipRegion\s*\(/, "clipRegion")
+# Property clipping (bool)
+property_reader("QPainter", /::hasClipping\s*\(/, "clipping")
+property_writer("QPainter", /::setClipping\s*\(/, "clipping")
+# Property compositionMode (QPainter_CompositionMode)
+property_reader("QPainter", /::compositionMode\s*\(/, "compositionMode")
+property_writer("QPainter", /::setCompositionMode\s*\(/, "compositionMode")
+# Property font (QFont)
+property_reader("QPainter", /::font\s*\(/, "font")
+property_writer("QPainter", /::setFont\s*\(/, "font")
+# Property layoutDirection (Qt_LayoutDirection)
+property_reader("QPainter", /::layoutDirection\s*\(/, "layoutDirection")
+property_writer("QPainter", /::setLayoutDirection\s*\(/, "layoutDirection")
+# Property opacity (double)
+property_reader("QPainter", /::opacity\s*\(/, "opacity")
+property_writer("QPainter", /::setOpacity\s*\(/, "opacity")
+# Property renderHints (QPainter_QFlags_RenderHint)
+property_reader("QPainter", /::renderHints\s*\(/, "renderHints")
+property_writer("QPainter", /::setRenderHints\s*\(/, "renderHints")
+# Property transform (QTransform)
+property_reader("QPainter", /::transform\s*\(/, "transform")
+property_writer("QPainter", /::setTransform\s*\(/, "transform")
+# Property viewTransformEnabled (bool)
+property_reader("QPainter", /::viewTransformEnabled\s*\(/, "viewTransformEnabled")
+property_writer("QPainter", /::setViewTransformEnabled\s*\(/, "viewTransformEnabled")
+# Property viewport (QRect)
+property_reader("QPainter", /::viewport\s*\(/, "viewport")
+property_writer("QPainter", /::setViewport\s*\(/, "viewport")
+# Property window (QRect)
+property_reader("QPainter", /::window\s*\(/, "window")
+property_writer("QPainter", /::setWindow\s*\(/, "window")
+# Property worldMatrixEnabled (bool)
+property_reader("QPainter", /::worldMatrixEnabled\s*\(/, "worldMatrixEnabled")
+property_writer("QPainter", /::setWorldMatrixEnabled\s*\(/, "worldMatrixEnabled")
+# Property worldTransform (QTransform)
+property_reader("QPainter", /::worldTransform\s*\(/, "worldTransform")
+property_writer("QPainter", /::setWorldTransform\s*\(/, "worldTransform")
+# Property fillRule (Qt_FillRule)
+property_reader("QPainterPath", /::fillRule\s*\(/, "fillRule")
+property_writer("QPainterPath", /::setFillRule\s*\(/, "fillRule")
+# Property capStyle (Qt_PenCapStyle)
+property_reader("QPainterPathStroker", /::capStyle\s*\(/, "capStyle")
+property_writer("QPainterPathStroker", /::setCapStyle\s*\(/, "capStyle")
+# Property curveThreshold (double)
+property_reader("QPainterPathStroker", /::curveThreshold\s*\(/, "curveThreshold")
+property_writer("QPainterPathStroker", /::setCurveThreshold\s*\(/, "curveThreshold")
+# Property dashOffset (double)
+property_reader("QPainterPathStroker", /::dashOffset\s*\(/, "dashOffset")
+property_writer("QPainterPathStroker", /::setDashOffset\s*\(/, "dashOffset")
+# Property joinStyle (Qt_PenJoinStyle)
+property_reader("QPainterPathStroker", /::joinStyle\s*\(/, "joinStyle")
+property_writer("QPainterPathStroker", /::setJoinStyle\s*\(/, "joinStyle")
+# Property miterLimit (double)
+property_reader("QPainterPathStroker", /::miterLimit\s*\(/, "miterLimit")
+property_writer("QPainterPathStroker", /::setMiterLimit\s*\(/, "miterLimit")
+# Property width (double)
+property_reader("QPainterPathStroker", /::width\s*\(/, "width")
+property_writer("QPainterPathStroker", /::setWidth\s*\(/, "width")
+# Property currentColorGroup (QPalette_ColorGroup)
+property_reader("QPalette", /::currentColorGroup\s*\(/, "currentColorGroup")
+property_writer("QPalette", /::setCurrentColorGroup\s*\(/, "currentColorGroup")
+# Property resolveMask (unsigned long long)
+property_reader("QPalette", /::resolveMask\s*\(/, "resolveMask")
+property_writer("QPalette", /::setResolveMask\s*\(/, "resolveMask")
+# Property creator (string)
+property_reader("QPdfWriter", /::creator\s*\(/, "creator")
+property_writer("QPdfWriter", /::setCreator\s*\(/, "creator")
+# Property documentXmpMetadata (byte array)
+property_reader("QPdfWriter", /::documentXmpMetadata\s*\(/, "documentXmpMetadata")
+property_writer("QPdfWriter", /::setDocumentXmpMetadata\s*\(/, "documentXmpMetadata")
+# Property pdfVersion (QPagedPaintDevice_PdfVersion)
+property_reader("QPdfWriter", /::pdfVersion\s*\(/, "pdfVersion")
+property_writer("QPdfWriter", /::setPdfVersion\s*\(/, "pdfVersion")
+# Property resolution (int)
+property_reader("QPdfWriter", /::resolution\s*\(/, "resolution")
+property_writer("QPdfWriter", /::setResolution\s*\(/, "resolution")
+# Property title (string)
+property_reader("QPdfWriter", /::title\s*\(/, "title")
+property_writer("QPdfWriter", /::setTitle\s*\(/, "title")
+# Property brush (QBrush)
+property_reader("QPen", /::brush\s*\(/, "brush")
+property_writer("QPen", /::setBrush\s*\(/, "brush")
+# Property capStyle (Qt_PenCapStyle)
+property_reader("QPen", /::capStyle\s*\(/, "capStyle")
+property_writer("QPen", /::setCapStyle\s*\(/, "capStyle")
+# Property color (QColor)
+property_reader("QPen", /::color\s*\(/, "color")
+property_writer("QPen", /::setColor\s*\(/, "color")
+# Property cosmetic (bool)
+property_reader("QPen", /::isCosmetic\s*\(/, "cosmetic")
+property_writer("QPen", /::setCosmetic\s*\(/, "cosmetic")
+# Property dashOffset (double)
+property_reader("QPen", /::dashOffset\s*\(/, "dashOffset")
+property_writer("QPen", /::setDashOffset\s*\(/, "dashOffset")
+# Property dashPattern (double[])
+property_reader("QPen", /::dashPattern\s*\(/, "dashPattern")
+property_writer("QPen", /::setDashPattern\s*\(/, "dashPattern")
+# Property joinStyle (Qt_PenJoinStyle)
+property_reader("QPen", /::joinStyle\s*\(/, "joinStyle")
+property_writer("QPen", /::setJoinStyle\s*\(/, "joinStyle")
+# Property miterLimit (double)
+property_reader("QPen", /::miterLimit\s*\(/, "miterLimit")
+property_writer("QPen", /::setMiterLimit\s*\(/, "miterLimit")
+# Property style (Qt_PenStyle)
+property_reader("QPen", /::style\s*\(/, "style")
+property_writer("QPen", /::setStyle\s*\(/, "style")
+# Property width (int)
+property_reader("QPen", /::width\s*\(/, "width")
+property_writer("QPen", /::setWidth\s*\(/, "width")
+# Property widthF (double)
+property_reader("QPen", /::widthF\s*\(/, "widthF")
+property_writer("QPen", /::setWidthF\s*\(/, "widthF")
+# Property boundingRect (QRect)
+property_reader("QPicture", /::boundingRect\s*\(/, "boundingRect")
+property_writer("QPicture", /::setBoundingRect\s*\(/, "boundingRect")
+# Property devicePixelRatio (double)
+property_reader("QPixmap", /::devicePixelRatio\s*\(/, "devicePixelRatio")
+property_writer("QPixmap", /::setDevicePixelRatio\s*\(/, "devicePixelRatio")
+# Property mask (QBitmap_Native)
+property_reader("QPixmap", /::mask\s*\(/, "mask")
+property_writer("QPixmap", /::setMask\s*\(/, "mask")
+# Property cacheLimit (int)
+property_reader("QPixmapCache", /::cacheLimit\s*\(/, "cacheLimit")
+property_writer("QPixmapCache", /::setCacheLimit\s*\(/, "cacheLimit")
+# Property accepted (bool)
+property_reader("QEvent", /::isAccepted\s*\(/, "accepted")
+property_writer("QPointerEvent", /::setAccepted\s*\(/, "accepted")
+# Property timestamp (unsigned long long)
+property_reader("QInputEvent", /::timestamp\s*\(/, "timestamp")
+property_writer("QPointerEvent", /::setTimestamp\s*\(/, "timestamp")
+# Property scalar (float)
+property_reader("QQuaternion", /::scalar\s*\(/, "scalar")
+property_writer("QQuaternion", /::setScalar\s*\(/, "scalar")
+# Property vector (QVector3D)
+property_reader("QQuaternion", /::vector\s*\(/, "vector")
+property_writer("QQuaternion", /::setVector\s*\(/, "vector")
+# Property x (float)
+property_reader("QQuaternion", /::x\s*\(/, "x")
+property_writer("QQuaternion", /::setX\s*\(/, "x")
+# Property y (float)
+property_reader("QQuaternion", /::y\s*\(/, "y")
+property_writer("QQuaternion", /::setY\s*\(/, "y")
+# Property z (float)
+property_reader("QQuaternion", /::z\s*\(/, "z")
+property_writer("QQuaternion", /::setZ\s*\(/, "z")
+# Property center (QPointF)
+property_reader("QRadialGradient", /::center\s*\(/, "center")
+property_writer("QRadialGradient", /::setCenter\s*\(/, "center")
+# Property centerRadius (double)
+property_reader("QRadialGradient", /::centerRadius\s*\(/, "centerRadius")
+property_writer("QRadialGradient", /::setCenterRadius\s*\(/, "centerRadius")
+# Property focalPoint (QPointF)
+property_reader("QRadialGradient", /::focalPoint\s*\(/, "focalPoint")
+property_writer("QRadialGradient", /::setFocalPoint\s*\(/, "focalPoint")
+# Property focalRadius (double)
+property_reader("QRadialGradient", /::focalRadius\s*\(/, "focalRadius")
+property_writer("QRadialGradient", /::setFocalRadius\s*\(/, "focalRadius")
+# Property radius (double)
+property_reader("QRadialGradient", /::radius\s*\(/, "radius")
+property_writer("QRadialGradient", /::setRadius\s*\(/, "radius")
+# Property pixelSize (double)
+property_reader("QRawFont", /::pixelSize\s*\(/, "pixelSize")
+property_writer("QRawFont", /::setPixelSize\s*\(/, "pixelSize")
+# Property alpha (unsigned short)
+property_reader("QRgba64", /::alpha\s*\(/, "alpha")
+property_writer("QRgba64", /::setAlpha\s*\(/, "alpha")
+# Property blue (unsigned short)
+property_reader("QRgba64", /::blue\s*\(/, "blue")
+property_writer("QRgba64", /::setBlue\s*\(/, "blue")
+# Property green (unsigned short)
+property_reader("QRgba64", /::green\s*\(/, "green")
+property_writer("QRgba64", /::setGreen\s*\(/, "green")
+# Property red (unsigned short)
+property_reader("QRgba64", /::red\s*\(/, "red")
+property_writer("QRgba64", /::setRed\s*\(/, "red")
+# Property contentPos (QPointF)
+property_reader("QScrollPrepareEvent", /::contentPos\s*\(/, "contentPos")
+property_writer("QScrollPrepareEvent", /::setContentPos\s*\(/, "contentPos")
+# Property contentPosRange (QRectF)
+property_reader("QScrollPrepareEvent", /::contentPosRange\s*\(/, "contentPosRange")
+property_writer("QScrollPrepareEvent", /::setContentPosRange\s*\(/, "contentPosRange")
+# Property viewportSize (QSizeF)
+property_reader("QScrollPrepareEvent", /::viewportSize\s*\(/, "viewportSize")
+property_writer("QScrollPrepareEvent", /::setViewportSize\s*\(/, "viewportSize")
+# Property discardCommand (string[])
+property_reader("QSessionManager", /::discardCommand\s*\(/, "discardCommand")
+property_writer("QSessionManager", /::setDiscardCommand\s*\(/, "discardCommand")
+# Property restartCommand (string[])
+property_reader("QSessionManager", /::restartCommand\s*\(/, "restartCommand")
+property_writer("QSessionManager", /::setRestartCommand\s*\(/, "restartCommand")
+# Property restartHint (QSessionManager_RestartHint)
+property_reader("QSessionManager", /::restartHint\s*\(/, "restartHint")
+property_writer("QSessionManager", /::setRestartHint\s*\(/, "restartHint")
+# Property whatsThis (string)
+property_reader("QShortcut", /::whatsThis\s*\(/, "whatsThis")
+property_writer("QShortcut", /::setWhatsThis\s*\(/, "whatsThis")
+# Property exclusivePointGrabber (QObject_Native *)
+property_reader("QSinglePointEvent", /::exclusivePointGrabber\s*\(/, "exclusivePointGrabber")
+property_writer("QSinglePointEvent", /::setExclusivePointGrabber\s*\(/, "exclusivePointGrabber")
+# Property accessibleDescription (string)
+property_reader("QStandardItem", /::accessibleDescription\s*\(/, "accessibleDescription")
+property_writer("QStandardItem", /::setAccessibleDescription\s*\(/, "accessibleDescription")
+# Property accessibleText (string)
+property_reader("QStandardItem", /::accessibleText\s*\(/, "accessibleText")
+property_writer("QStandardItem", /::setAccessibleText\s*\(/, "accessibleText")
+# Property autoTristate (bool)
+property_reader("QStandardItem", /::isAutoTristate\s*\(/, "autoTristate")
+property_writer("QStandardItem", /::setAutoTristate\s*\(/, "autoTristate")
+# Property background (QBrush)
+property_reader("QStandardItem", /::background\s*\(/, "background")
+property_writer("QStandardItem", /::setBackground\s*\(/, "background")
+# Property checkState (Qt_CheckState)
+property_reader("QStandardItem", /::checkState\s*\(/, "checkState")
+property_writer("QStandardItem", /::setCheckState\s*\(/, "checkState")
+# Property checkable (bool)
+property_reader("QStandardItem", /::isCheckable\s*\(/, "checkable")
+property_writer("QStandardItem", /::setCheckable\s*\(/, "checkable")
+# Property columnCount (int)
+property_reader("QStandardItem", /::columnCount\s*\(/, "columnCount")
+property_writer("QStandardItem", /::setColumnCount\s*\(/, "columnCount")
+# Property data (variant)
+property_reader("QStandardItem", /::data\s*\(/, "data")
+property_writer("QStandardItem", /::setData\s*\(/, "data")
+# Property dragEnabled (bool)
+property_reader("QStandardItem", /::isDragEnabled\s*\(/, "dragEnabled")
+property_writer("QStandardItem", /::setDragEnabled\s*\(/, "dragEnabled")
+# Property dropEnabled (bool)
+property_reader("QStandardItem", /::isDropEnabled\s*\(/, "dropEnabled")
+property_writer("QStandardItem", /::setDropEnabled\s*\(/, "dropEnabled")
+# Property editable (bool)
+property_reader("QStandardItem", /::isEditable\s*\(/, "editable")
+property_writer("QStandardItem", /::setEditable\s*\(/, "editable")
+# Property enabled (bool)
+property_reader("QStandardItem", /::isEnabled\s*\(/, "enabled")
+property_writer("QStandardItem", /::setEnabled\s*\(/, "enabled")
+# Property flags (Qt_QFlags_ItemFlag)
+property_reader("QStandardItem", /::flags\s*\(/, "flags")
+property_writer("QStandardItem", /::setFlags\s*\(/, "flags")
+# Property font (QFont)
+property_reader("QStandardItem", /::font\s*\(/, "font")
+property_writer("QStandardItem", /::setFont\s*\(/, "font")
+# Property foreground (QBrush)
+property_reader("QStandardItem", /::foreground\s*\(/, "foreground")
+property_writer("QStandardItem", /::setForeground\s*\(/, "foreground")
+# Property icon (QIcon)
+property_reader("QStandardItem", /::icon\s*\(/, "icon")
+property_writer("QStandardItem", /::setIcon\s*\(/, "icon")
+# Property rowCount (int)
+property_reader("QStandardItem", /::rowCount\s*\(/, "rowCount")
+property_writer("QStandardItem", /::setRowCount\s*\(/, "rowCount")
+# Property selectable (bool)
+property_reader("QStandardItem", /::isSelectable\s*\(/, "selectable")
+property_writer("QStandardItem", /::setSelectable\s*\(/, "selectable")
+# Property sizeHint (QSize)
+property_reader("QStandardItem", /::sizeHint\s*\(/, "sizeHint")
+property_writer("QStandardItem", /::setSizeHint\s*\(/, "sizeHint")
+# Property statusTip (string)
+property_reader("QStandardItem", /::statusTip\s*\(/, "statusTip")
+property_writer("QStandardItem", /::setStatusTip\s*\(/, "statusTip")
+# Property text (string)
+property_reader("QStandardItem", /::text\s*\(/, "text")
+property_writer("QStandardItem", /::setText\s*\(/, "text")
+# Property textAlignment (Qt_QFlags_AlignmentFlag)
+property_reader("QStandardItem", /::textAlignment\s*\(/, "textAlignment")
+property_writer("QStandardItem", /::setTextAlignment\s*\(/, "textAlignment")
+# Property toolTip (string)
+property_reader("QStandardItem", /::toolTip\s*\(/, "toolTip")
+property_writer("QStandardItem", /::setToolTip\s*\(/, "toolTip")
+# Property userTristate (bool)
+property_reader("QStandardItem", /::isUserTristate\s*\(/, "userTristate")
+property_writer("QStandardItem", /::setUserTristate\s*\(/, "userTristate")
+# Property whatsThis (string)
+property_reader("QStandardItem", /::whatsThis\s*\(/, "whatsThis")
+property_writer("QStandardItem", /::setWhatsThis\s*\(/, "whatsThis")
+# Property columnCount (int)
+property_reader("QStandardItemModel", /::columnCount\s*\(/, "columnCount")
+property_writer("QStandardItemModel", /::setColumnCount\s*\(/, "columnCount")
+# Property itemPrototype (QStandardItem_Native *)
+property_reader("QStandardItemModel", /::itemPrototype\s*\(/, "itemPrototype")
+property_writer("QStandardItemModel", /::setItemPrototype\s*\(/, "itemPrototype")
+# Property parent (QObject_Native *)
+property_reader("QStandardItemModel", /::parent\s*\(/, "parent")
+property_writer("QObject", /::setParent\s*\(/, "parent")
+# Property rowCount (int)
+property_reader("QStandardItemModel", /::rowCount\s*\(/, "rowCount")
+property_writer("QStandardItemModel", /::setRowCount\s*\(/, "rowCount")
+# Property performanceHint (QStaticText_PerformanceHint)
+property_reader("QStaticText", /::performanceHint\s*\(/, "performanceHint")
+property_writer("QStaticText", /::setPerformanceHint\s*\(/, "performanceHint")
+# Property text (string)
+property_reader("QStaticText", /::text\s*\(/, "text")
+property_writer("QStaticText", /::setText\s*\(/, "text")
+# Property textFormat (Qt_TextFormat)
+property_reader("QStaticText", /::textFormat\s*\(/, "textFormat")
+property_writer("QStaticText", /::setTextFormat\s*\(/, "textFormat")
+# Property textOption (QTextOption)
+property_reader("QStaticText", /::textOption\s*\(/, "textOption")
+property_writer("QStaticText", /::setTextOption\s*\(/, "textOption")
+# Property textWidth (double)
+property_reader("QStaticText", /::textWidth\s*\(/, "textWidth")
+property_writer("QStaticText", /::setTextWidth\s*\(/, "textWidth")
+# Property alphaBufferSize (int)
+property_reader("QSurfaceFormat", /::alphaBufferSize\s*\(/, "alphaBufferSize")
+property_writer("QSurfaceFormat", /::setAlphaBufferSize\s*\(/, "alphaBufferSize")
+# Property blueBufferSize (int)
+property_reader("QSurfaceFormat", /::blueBufferSize\s*\(/, "blueBufferSize")
+property_writer("QSurfaceFormat", /::setBlueBufferSize\s*\(/, "blueBufferSize")
+# Property colorSpace (QColorSpace)
+property_reader("QSurfaceFormat", /::colorSpace\s*\(/, "colorSpace")
+property_writer("QSurfaceFormat", /::setColorSpace\s*\(/, "colorSpace")
+# Property defaultFormat (QSurfaceFormat)
+property_reader("QSurfaceFormat", /::defaultFormat\s*\(/, "defaultFormat")
+property_writer("QSurfaceFormat", /::setDefaultFormat\s*\(/, "defaultFormat")
+# Property depthBufferSize (int)
+property_reader("QSurfaceFormat", /::depthBufferSize\s*\(/, "depthBufferSize")
+property_writer("QSurfaceFormat", /::setDepthBufferSize\s*\(/, "depthBufferSize")
+# Property greenBufferSize (int)
+property_reader("QSurfaceFormat", /::greenBufferSize\s*\(/, "greenBufferSize")
+property_writer("QSurfaceFormat", /::setGreenBufferSize\s*\(/, "greenBufferSize")
+# Property majorVersion (int)
+property_reader("QSurfaceFormat", /::majorVersion\s*\(/, "majorVersion")
+property_writer("QSurfaceFormat", /::setMajorVersion\s*\(/, "majorVersion")
+# Property minorVersion (int)
+property_reader("QSurfaceFormat", /::minorVersion\s*\(/, "minorVersion")
+property_writer("QSurfaceFormat", /::setMinorVersion\s*\(/, "minorVersion")
+# Property options (QSurfaceFormat_QFlags_FormatOption)
+property_reader("QSurfaceFormat", /::options\s*\(/, "options")
+property_writer("QSurfaceFormat", /::setOptions\s*\(/, "options")
+# Property profile (QSurfaceFormat_OpenGLContextProfile)
+property_reader("QSurfaceFormat", /::profile\s*\(/, "profile")
+property_writer("QSurfaceFormat", /::setProfile\s*\(/, "profile")
+# Property redBufferSize (int)
+property_reader("QSurfaceFormat", /::redBufferSize\s*\(/, "redBufferSize")
+property_writer("QSurfaceFormat", /::setRedBufferSize\s*\(/, "redBufferSize")
+# Property renderableType (QSurfaceFormat_RenderableType)
+property_reader("QSurfaceFormat", /::renderableType\s*\(/, "renderableType")
+property_writer("QSurfaceFormat", /::setRenderableType\s*\(/, "renderableType")
+# Property samples (int)
+property_reader("QSurfaceFormat", /::samples\s*\(/, "samples")
+property_writer("QSurfaceFormat", /::setSamples\s*\(/, "samples")
+# Property stencilBufferSize (int)
+property_reader("QSurfaceFormat", /::stencilBufferSize\s*\(/, "stencilBufferSize")
+property_writer("QSurfaceFormat", /::setStencilBufferSize\s*\(/, "stencilBufferSize")
+# Property stereo (bool)
+property_reader("QSurfaceFormat", /::stereo\s*\(/, "stereo")
+property_writer("QSurfaceFormat", /::setStereo\s*\(/, "stereo")
+# Property swapBehavior (QSurfaceFormat_SwapBehavior)
+property_reader("QSurfaceFormat", /::swapBehavior\s*\(/, "swapBehavior")
+property_writer("QSurfaceFormat", /::setSwapBehavior\s*\(/, "swapBehavior")
+# Property swapInterval (int)
+property_reader("QSurfaceFormat", /::swapInterval\s*\(/, "swapInterval")
+property_writer("QSurfaceFormat", /::setSwapInterval\s*\(/, "swapInterval")
+# Property document (QTextDocument_Native *)
+property_reader("QSyntaxHighlighter", /::document\s*\(/, "document")
+property_writer("QSyntaxHighlighter", /::setDocument\s*\(/, "document")
+# Property lineCount (int)
+property_reader("QTextBlock", /::lineCount\s*\(/, "lineCount")
+property_writer("QTextBlock", /::setLineCount\s*\(/, "lineCount")
+# Property revision (int)
+property_reader("QTextBlock", /::revision\s*\(/, "revision")
+property_writer("QTextBlock", /::setRevision\s*\(/, "revision")
+# Property userData (QTextBlockUserData_Native *)
+property_reader("QTextBlock", /::userData\s*\(/, "userData")
+property_writer("QTextBlock", /::setUserData\s*\(/, "userData")
+# Property userState (int)
+property_reader("QTextBlock", /::userState\s*\(/, "userState")
+property_writer("QTextBlock", /::setUserState\s*\(/, "userState")
+# Property visible (bool)
+property_reader("QTextBlock", /::isVisible\s*\(/, "visible")
+property_writer("QTextBlock", /::setVisible\s*\(/, "visible")
+# Property alignment (Qt_QFlags_AlignmentFlag)
+property_reader("QTextBlockFormat", /::alignment\s*\(/, "alignment")
+property_writer("QTextBlockFormat", /::setAlignment\s*\(/, "alignment")
+# Property bottomMargin (double)
+property_reader("QTextBlockFormat", /::bottomMargin\s*\(/, "bottomMargin")
+property_writer("QTextBlockFormat", /::setBottomMargin\s*\(/, "bottomMargin")
+# Property headingLevel (int)
+property_reader("QTextBlockFormat", /::headingLevel\s*\(/, "headingLevel")
+property_writer("QTextBlockFormat", /::setHeadingLevel\s*\(/, "headingLevel")
+# Property indent (int)
+property_reader("QTextBlockFormat", /::indent\s*\(/, "indent")
+property_writer("QTextBlockFormat", /::setIndent\s*\(/, "indent")
+# Property leftMargin (double)
+property_reader("QTextBlockFormat", /::leftMargin\s*\(/, "leftMargin")
+property_writer("QTextBlockFormat", /::setLeftMargin\s*\(/, "leftMargin")
+# Property marker (QTextBlockFormat_MarkerType)
+property_reader("QTextBlockFormat", /::marker\s*\(/, "marker")
+property_writer("QTextBlockFormat", /::setMarker\s*\(/, "marker")
+# Property nonBreakableLines (bool)
+property_reader("QTextBlockFormat", /::nonBreakableLines\s*\(/, "nonBreakableLines")
+property_writer("QTextBlockFormat", /::setNonBreakableLines\s*\(/, "nonBreakableLines")
+# Property pageBreakPolicy (QTextFormat_QFlags_PageBreakFlag)
+property_reader("QTextBlockFormat", /::pageBreakPolicy\s*\(/, "pageBreakPolicy")
+property_writer("QTextBlockFormat", /::setPageBreakPolicy\s*\(/, "pageBreakPolicy")
+# Property rightMargin (double)
+property_reader("QTextBlockFormat", /::rightMargin\s*\(/, "rightMargin")
+property_writer("QTextBlockFormat", /::setRightMargin\s*\(/, "rightMargin")
+# Property tabPositions (QTextOption_Tab[])
+property_reader("QTextBlockFormat", /::tabPositions\s*\(/, "tabPositions")
+property_writer("QTextBlockFormat", /::setTabPositions\s*\(/, "tabPositions")
+# Property textIndent (double)
+property_reader("QTextBlockFormat", /::textIndent\s*\(/, "textIndent")
+property_writer("QTextBlockFormat", /::setTextIndent\s*\(/, "textIndent")
+# Property topMargin (double)
+property_reader("QTextBlockFormat", /::topMargin\s*\(/, "topMargin")
+property_writer("QTextBlockFormat", /::setTopMargin\s*\(/, "topMargin")
+# Property anchor (bool)
+property_reader("QTextCharFormat", /::isAnchor\s*\(/, "anchor")
+property_writer("QTextCharFormat", /::setAnchor\s*\(/, "anchor")
+# Property anchorHref (string)
+property_reader("QTextCharFormat", /::anchorHref\s*\(/, "anchorHref")
+property_writer("QTextCharFormat", /::setAnchorHref\s*\(/, "anchorHref")
+# Property anchorNames (string[])
+property_reader("QTextCharFormat", /::anchorNames\s*\(/, "anchorNames")
+property_writer("QTextCharFormat", /::setAnchorNames\s*\(/, "anchorNames")
+# Property baselineOffset (double)
+property_reader("QTextCharFormat", /::baselineOffset\s*\(/, "baselineOffset")
+property_writer("QTextCharFormat", /::setBaselineOffset\s*\(/, "baselineOffset")
+# Property font (QFont)
+property_reader("QTextCharFormat", /::font\s*\(/, "font")
+property_writer("QTextCharFormat", /::setFont\s*\(/, "font")
+# Property fontCapitalization (QFont_Capitalization)
+property_reader("QTextCharFormat", /::fontCapitalization\s*\(/, "fontCapitalization")
+property_writer("QTextCharFormat", /::setFontCapitalization\s*\(/, "fontCapitalization")
+# Property fontFamily (string)
+property_reader("QTextCharFormat", /::fontFamily\s*\(/, "fontFamily")
+property_writer("QTextCharFormat", /::setFontFamily\s*\(/, "fontFamily")
+# Property fontFixedPitch (bool)
+property_reader("QTextCharFormat", /::fontFixedPitch\s*\(/, "fontFixedPitch")
+property_writer("QTextCharFormat", /::setFontFixedPitch\s*\(/, "fontFixedPitch")
+# Property fontHintingPreference (QFont_HintingPreference)
+property_reader("QTextCharFormat", /::fontHintingPreference\s*\(/, "fontHintingPreference")
+property_writer("QTextCharFormat", /::setFontHintingPreference\s*\(/, "fontHintingPreference")
+# Property fontItalic (bool)
+property_reader("QTextCharFormat", /::fontItalic\s*\(/, "fontItalic")
+property_writer("QTextCharFormat", /::setFontItalic\s*\(/, "fontItalic")
+# Property fontKerning (bool)
+property_reader("QTextCharFormat", /::fontKerning\s*\(/, "fontKerning")
+property_writer("QTextCharFormat", /::setFontKerning\s*\(/, "fontKerning")
+# Property fontLetterSpacing (double)
+property_reader("QTextCharFormat", /::fontLetterSpacing\s*\(/, "fontLetterSpacing")
+property_writer("QTextCharFormat", /::setFontLetterSpacing\s*\(/, "fontLetterSpacing")
+# Property fontLetterSpacingType (QFont_SpacingType)
+property_reader("QTextCharFormat", /::fontLetterSpacingType\s*\(/, "fontLetterSpacingType")
+property_writer("QTextCharFormat", /::setFontLetterSpacingType\s*\(/, "fontLetterSpacingType")
+# Property fontOverline (bool)
+property_reader("QTextCharFormat", /::fontOverline\s*\(/, "fontOverline")
+property_writer("QTextCharFormat", /::setFontOverline\s*\(/, "fontOverline")
+# Property fontPointSize (double)
+property_reader("QTextCharFormat", /::fontPointSize\s*\(/, "fontPointSize")
+property_writer("QTextCharFormat", /::setFontPointSize\s*\(/, "fontPointSize")
+# Property fontStretch (int)
+property_reader("QTextCharFormat", /::fontStretch\s*\(/, "fontStretch")
+property_writer("QTextCharFormat", /::setFontStretch\s*\(/, "fontStretch")
+# Property fontStrikeOut (bool)
+property_reader("QTextCharFormat", /::fontStrikeOut\s*\(/, "fontStrikeOut")
+property_writer("QTextCharFormat", /::setFontStrikeOut\s*\(/, "fontStrikeOut")
+# Property fontStyleHint (QFont_StyleHint)
+property_reader("QTextCharFormat", /::fontStyleHint\s*\(/, "fontStyleHint")
+property_writer("QTextCharFormat", /::setFontStyleHint\s*\(/, "fontStyleHint")
+# Property fontStyleStrategy (QFont_StyleStrategy)
+property_reader("QTextCharFormat", /::fontStyleStrategy\s*\(/, "fontStyleStrategy")
+property_writer("QTextCharFormat", /::setFontStyleStrategy\s*\(/, "fontStyleStrategy")
+# Property fontUnderline (bool)
+property_reader("QTextCharFormat", /::fontUnderline\s*\(/, "fontUnderline")
+property_writer("QTextCharFormat", /::setFontUnderline\s*\(/, "fontUnderline")
+# Property fontWeight (int)
+property_reader("QTextCharFormat", /::fontWeight\s*\(/, "fontWeight")
+property_writer("QTextCharFormat", /::setFontWeight\s*\(/, "fontWeight")
+# Property fontWordSpacing (double)
+property_reader("QTextCharFormat", /::fontWordSpacing\s*\(/, "fontWordSpacing")
+property_writer("QTextCharFormat", /::setFontWordSpacing\s*\(/, "fontWordSpacing")
+# Property subScriptBaseline (double)
+property_reader("QTextCharFormat", /::subScriptBaseline\s*\(/, "subScriptBaseline")
+property_writer("QTextCharFormat", /::setSubScriptBaseline\s*\(/, "subScriptBaseline")
+# Property superScriptBaseline (double)
+property_reader("QTextCharFormat", /::superScriptBaseline\s*\(/, "superScriptBaseline")
+property_writer("QTextCharFormat", /::setSuperScriptBaseline\s*\(/, "superScriptBaseline")
+# Property tableCellColumnSpan (int)
+property_reader("QTextCharFormat", /::tableCellColumnSpan\s*\(/, "tableCellColumnSpan")
+property_writer("QTextCharFormat", /::setTableCellColumnSpan\s*\(/, "tableCellColumnSpan")
+# Property tableCellRowSpan (int)
+property_reader("QTextCharFormat", /::tableCellRowSpan\s*\(/, "tableCellRowSpan")
+property_writer("QTextCharFormat", /::setTableCellRowSpan\s*\(/, "tableCellRowSpan")
+# Property textOutline (QPen)
+property_reader("QTextCharFormat", /::textOutline\s*\(/, "textOutline")
+property_writer("QTextCharFormat", /::setTextOutline\s*\(/, "textOutline")
+# Property toolTip (string)
+property_reader("QTextCharFormat", /::toolTip\s*\(/, "toolTip")
+property_writer("QTextCharFormat", /::setToolTip\s*\(/, "toolTip")
+# Property underlineColor (QColor)
+property_reader("QTextCharFormat", /::underlineColor\s*\(/, "underlineColor")
+property_writer("QTextCharFormat", /::setUnderlineColor\s*\(/, "underlineColor")
+# Property underlineStyle (QTextCharFormat_UnderlineStyle)
+property_reader("QTextCharFormat", /::underlineStyle\s*\(/, "underlineStyle")
+property_writer("QTextCharFormat", /::setUnderlineStyle\s*\(/, "underlineStyle")
+# Property verticalAlignment (QTextCharFormat_VerticalAlignment)
+property_reader("QTextCharFormat", /::verticalAlignment\s*\(/, "verticalAlignment")
+property_writer("QTextCharFormat", /::setVerticalAlignment\s*\(/, "verticalAlignment")
+# Property blockCharFormat (QTextCharFormat)
+property_reader("QTextCursor", /::blockCharFormat\s*\(/, "blockCharFormat")
+property_writer("QTextCursor", /::setBlockCharFormat\s*\(/, "blockCharFormat")
+# Property blockFormat (QTextBlockFormat)
+property_reader("QTextCursor", /::blockFormat\s*\(/, "blockFormat")
+property_writer("QTextCursor", /::setBlockFormat\s*\(/, "blockFormat")
+# Property charFormat (QTextCharFormat)
+property_reader("QTextCursor", /::charFormat\s*\(/, "charFormat")
+property_writer("QTextCursor", /::setCharFormat\s*\(/, "charFormat")
+# Property keepPositionOnInsert (bool)
+property_reader("QTextCursor", /::keepPositionOnInsert\s*\(/, "keepPositionOnInsert")
+property_writer("QTextCursor", /::setKeepPositionOnInsert\s*\(/, "keepPositionOnInsert")
+# Property position (int)
+property_reader("QTextCursor", /::position\s*\(/, "position")
+property_writer("QTextCursor", /::setPosition\s*\(/, "position")
+# Property verticalMovementX (int)
+property_reader("QTextCursor", /::verticalMovementX\s*\(/, "verticalMovementX")
+property_writer("QTextCursor", /::setVerticalMovementX\s*\(/, "verticalMovementX")
+# Property visualNavigation (bool)
+property_reader("QTextCursor", /::visualNavigation\s*\(/, "visualNavigation")
+property_writer("QTextCursor", /::setVisualNavigation\s*\(/, "visualNavigation")
+# Property baselineOffset (double)
+property_reader("QTextDocument", /::baselineOffset\s*\(/, "baselineOffset")
+property_writer("QTextDocument", /::setBaselineOffset\s*\(/, "baselineOffset")
+# Property defaultCursorMoveStyle (Qt_CursorMoveStyle)
+property_reader("QTextDocument", /::defaultCursorMoveStyle\s*\(/, "defaultCursorMoveStyle")
+property_writer("QTextDocument", /::setDefaultCursorMoveStyle\s*\(/, "defaultCursorMoveStyle")
+# Property defaultTextOption (QTextOption)
+property_reader("QTextDocument", /::defaultTextOption\s*\(/, "defaultTextOption")
+property_writer("QTextDocument", /::setDefaultTextOption\s*\(/, "defaultTextOption")
+# Property documentLayout (QAbstractTextDocumentLayout_Native *)
+property_reader("QTextDocument", /::documentLayout\s*\(/, "documentLayout")
+property_writer("QTextDocument", /::setDocumentLayout\s*\(/, "documentLayout")
+# Property subScriptBaseline (double)
+property_reader("QTextDocument", /::subScriptBaseline\s*\(/, "subScriptBaseline")
+property_writer("QTextDocument", /::setSubScriptBaseline\s*\(/, "subScriptBaseline")
+# Property superScriptBaseline (double)
+property_reader("QTextDocument", /::superScriptBaseline\s*\(/, "superScriptBaseline")
+property_writer("QTextDocument", /::setSuperScriptBaseline\s*\(/, "superScriptBaseline")
+# Property device (QIODevice *)
+property_reader("QTextDocumentWriter", /::device\s*\(/, "device")
+property_writer("QTextDocumentWriter", /::setDevice\s*\(/, "device")
+# Property fileName (string)
+property_reader("QTextDocumentWriter", /::fileName\s*\(/, "fileName")
+property_writer("QTextDocumentWriter", /::setFileName\s*\(/, "fileName")
+# Property format (byte array)
+property_reader("QTextDocumentWriter", /::format\s*\(/, "format")
+property_writer("QTextDocumentWriter", /::setFormat\s*\(/, "format")
+# Property background (QBrush)
+property_reader("QTextFormat", /::background\s*\(/, "background")
+property_writer("QTextFormat", /::setBackground\s*\(/, "background")
+# Property foreground (QBrush)
+property_reader("QTextFormat", /::foreground\s*\(/, "foreground")
+property_writer("QTextFormat", /::setForeground\s*\(/, "foreground")
+# Property layoutDirection (Qt_LayoutDirection)
+property_reader("QTextFormat", /::layoutDirection\s*\(/, "layoutDirection")
+property_writer("QTextFormat", /::setLayoutDirection\s*\(/, "layoutDirection")
+# Property objectIndex (int)
+property_reader("QTextFormat", /::objectIndex\s*\(/, "objectIndex")
+property_writer("QTextFormat", /::setObjectIndex\s*\(/, "objectIndex")
+# Property objectType (int)
+property_reader("QTextFormat", /::objectType\s*\(/, "objectType")
+property_writer("QTextFormat", /::setObjectType\s*\(/, "objectType")
+# Property frameFormat (QTextFrameFormat)
+property_reader("QTextFrame", /::frameFormat\s*\(/, "frameFormat")
+property_writer("QTextFrame", /::setFrameFormat\s*\(/, "frameFormat")
+# Property border (double)
+property_reader("QTextFrameFormat", /::border\s*\(/, "border")
+property_writer("QTextFrameFormat", /::setBorder\s*\(/, "border")
+# Property borderBrush (QBrush)
+property_reader("QTextFrameFormat", /::borderBrush\s*\(/, "borderBrush")
+property_writer("QTextFrameFormat", /::setBorderBrush\s*\(/, "borderBrush")
+# Property borderStyle (QTextFrameFormat_BorderStyle)
+property_reader("QTextFrameFormat", /::borderStyle\s*\(/, "borderStyle")
+property_writer("QTextFrameFormat", /::setBorderStyle\s*\(/, "borderStyle")
+# Property bottomMargin (double)
+property_reader("QTextFrameFormat", /::bottomMargin\s*\(/, "bottomMargin")
+property_writer("QTextFrameFormat", /::setBottomMargin\s*\(/, "bottomMargin")
+# Property leftMargin (double)
+property_reader("QTextFrameFormat", /::leftMargin\s*\(/, "leftMargin")
+property_writer("QTextFrameFormat", /::setLeftMargin\s*\(/, "leftMargin")
+# Property margin (double)
+property_reader("QTextFrameFormat", /::margin\s*\(/, "margin")
+property_writer("QTextFrameFormat", /::setMargin\s*\(/, "margin")
+# Property padding (double)
+property_reader("QTextFrameFormat", /::padding\s*\(/, "padding")
+property_writer("QTextFrameFormat", /::setPadding\s*\(/, "padding")
+# Property pageBreakPolicy (QTextFormat_QFlags_PageBreakFlag)
+property_reader("QTextFrameFormat", /::pageBreakPolicy\s*\(/, "pageBreakPolicy")
+property_writer("QTextFrameFormat", /::setPageBreakPolicy\s*\(/, "pageBreakPolicy")
+# Property position (QTextFrameFormat_Position)
+property_reader("QTextFrameFormat", /::position\s*\(/, "position")
+property_writer("QTextFrameFormat", /::setPosition\s*\(/, "position")
+# Property rightMargin (double)
+property_reader("QTextFrameFormat", /::rightMargin\s*\(/, "rightMargin")
+property_writer("QTextFrameFormat", /::setRightMargin\s*\(/, "rightMargin")
+# Property topMargin (double)
+property_reader("QTextFrameFormat", /::topMargin\s*\(/, "topMargin")
+property_writer("QTextFrameFormat", /::setTopMargin\s*\(/, "topMargin")
+# Property height (double)
+property_reader("QTextImageFormat", /::height\s*\(/, "height")
+property_writer("QTextImageFormat", /::setHeight\s*\(/, "height")
+# Property name (string)
+property_reader("QTextImageFormat", /::name\s*\(/, "name")
+property_writer("QTextImageFormat", /::setName\s*\(/, "name")
+# Property quality (int)
+property_reader("QTextImageFormat", /::quality\s*\(/, "quality")
+property_writer("QTextImageFormat", /::setQuality\s*\(/, "quality")
+# Property width (double)
+property_reader("QTextImageFormat", /::width\s*\(/, "width")
+property_writer("QTextImageFormat", /::setWidth\s*\(/, "width")
+# Property ascent (double)
+property_reader("QTextInlineObject", /::ascent\s*\(/, "ascent")
+property_writer("QTextInlineObject", /::setAscent\s*\(/, "ascent")
+# Property descent (double)
+property_reader("QTextInlineObject", /::descent\s*\(/, "descent")
+property_writer("QTextInlineObject", /::setDescent\s*\(/, "descent")
+# Property width (double)
+property_reader("QTextInlineObject", /::width\s*\(/, "width")
+property_writer("QTextInlineObject", /::setWidth\s*\(/, "width")
+# Property cacheEnabled (bool)
+property_reader("QTextLayout", /::cacheEnabled\s*\(/, "cacheEnabled")
+property_writer("QTextLayout", /::setCacheEnabled\s*\(/, "cacheEnabled")
+# Property cursorMoveStyle (Qt_CursorMoveStyle)
+property_reader("QTextLayout", /::cursorMoveStyle\s*\(/, "cursorMoveStyle")
+property_writer("QTextLayout", /::setCursorMoveStyle\s*\(/, "cursorMoveStyle")
+# Property font (QFont)
+property_reader("QTextLayout", /::font\s*\(/, "font")
+property_writer("QTextLayout", /::setFont\s*\(/, "font")
+# Property formats (QTextLayout_FormatRange[])
+property_reader("QTextLayout", /::formats\s*\(/, "formats")
+property_writer("QTextLayout", /::setFormats\s*\(/, "formats")
+# Property position (QPointF)
+property_reader("QTextLayout", /::position\s*\(/, "position")
+property_writer("QTextLayout", /::setPosition\s*\(/, "position")
+# Property text (string)
+property_reader("QTextLayout", /::text\s*\(/, "text")
+property_writer("QTextLayout", /::setText\s*\(/, "text")
+# Property textOption (QTextOption)
+property_reader("QTextLayout", /::textOption\s*\(/, "textOption")
+property_writer("QTextLayout", /::setTextOption\s*\(/, "textOption")
+# Property leadingIncluded (bool)
+property_reader("QTextLine", /::leadingIncluded\s*\(/, "leadingIncluded")
+property_writer("QTextLine", /::setLeadingIncluded\s*\(/, "leadingIncluded")
+# Property position (QPointF)
+property_reader("QTextLine", /::position\s*\(/, "position")
+property_writer("QTextLine", /::setPosition\s*\(/, "position")
+# Property format (QTextListFormat)
+property_reader("QTextList", /::format\s*\(/, "format")
+property_writer("QTextList", /::setFormat\s*\(/, "format")
+# Property indent (int)
+property_reader("QTextListFormat", /::indent\s*\(/, "indent")
+property_writer("QTextListFormat", /::setIndent\s*\(/, "indent")
+# Property numberPrefix (string)
+property_reader("QTextListFormat", /::numberPrefix\s*\(/, "numberPrefix")
+property_writer("QTextListFormat", /::setNumberPrefix\s*\(/, "numberPrefix")
+# Property numberSuffix (string)
+property_reader("QTextListFormat", /::numberSuffix\s*\(/, "numberSuffix")
+property_writer("QTextListFormat", /::setNumberSuffix\s*\(/, "numberSuffix")
+# Property style (QTextListFormat_Style)
+property_reader("QTextListFormat", /::style\s*\(/, "style")
+property_writer("QTextListFormat", /::setStyle\s*\(/, "style")
+# Property alignment (Qt_QFlags_AlignmentFlag)
+property_reader("QTextOption", /::alignment\s*\(/, "alignment")
+property_writer("QTextOption", /::setAlignment\s*\(/, "alignment")
+# Property flags (QTextOption_QFlags_Flag)
+property_reader("QTextOption", /::flags\s*\(/, "flags")
+property_writer("QTextOption", /::setFlags\s*\(/, "flags")
+# Property tabArray (double[])
+property_reader("QTextOption", /::tabArray\s*\(/, "tabArray")
+property_writer("QTextOption", /::setTabArray\s*\(/, "tabArray")
+# Property tabStopDistance (double)
+property_reader("QTextOption", /::tabStopDistance\s*\(/, "tabStopDistance")
+property_writer("QTextOption", /::setTabStopDistance\s*\(/, "tabStopDistance")
+# Property tabs (QTextOption_Tab[])
+property_reader("QTextOption", /::tabs\s*\(/, "tabs")
+property_writer("QTextOption", /::setTabs\s*\(/, "tabs")
+# Property textDirection (Qt_LayoutDirection)
+property_reader("QTextOption", /::textDirection\s*\(/, "textDirection")
+property_writer("QTextOption", /::setTextDirection\s*\(/, "textDirection")
+# Property useDesignMetrics (bool)
+property_reader("QTextOption", /::useDesignMetrics\s*\(/, "useDesignMetrics")
+property_writer("QTextOption", /::setUseDesignMetrics\s*\(/, "useDesignMetrics")
+# Property wrapMode (QTextOption_WrapMode)
+property_reader("QTextOption", /::wrapMode\s*\(/, "wrapMode")
+property_writer("QTextOption", /::setWrapMode\s*\(/, "wrapMode")
+# Property format (QTextTableFormat)
+property_reader("QTextTable", /::format\s*\(/, "format")
+property_writer("QTextTable", /::setFormat\s*\(/, "format")
+# Property format (QTextCharFormat)
+property_reader("QTextTableCell", /::format\s*\(/, "format")
+property_writer("QTextTableCell", /::setFormat\s*\(/, "format")
+# Property bottomBorder (double)
+property_reader("QTextTableCellFormat", /::bottomBorder\s*\(/, "bottomBorder")
+property_writer("QTextTableCellFormat", /::setBottomBorder\s*\(/, "bottomBorder")
+# Property bottomBorderBrush (QBrush)
+property_reader("QTextTableCellFormat", /::bottomBorderBrush\s*\(/, "bottomBorderBrush")
+property_writer("QTextTableCellFormat", /::setBottomBorderBrush\s*\(/, "bottomBorderBrush")
+# Property bottomBorderStyle (QTextFrameFormat_BorderStyle)
+property_reader("QTextTableCellFormat", /::bottomBorderStyle\s*\(/, "bottomBorderStyle")
+property_writer("QTextTableCellFormat", /::setBottomBorderStyle\s*\(/, "bottomBorderStyle")
+# Property bottomPadding (double)
+property_reader("QTextTableCellFormat", /::bottomPadding\s*\(/, "bottomPadding")
+property_writer("QTextTableCellFormat", /::setBottomPadding\s*\(/, "bottomPadding")
+# Property leftBorder (double)
+property_reader("QTextTableCellFormat", /::leftBorder\s*\(/, "leftBorder")
+property_writer("QTextTableCellFormat", /::setLeftBorder\s*\(/, "leftBorder")
+# Property leftBorderBrush (QBrush)
+property_reader("QTextTableCellFormat", /::leftBorderBrush\s*\(/, "leftBorderBrush")
+property_writer("QTextTableCellFormat", /::setLeftBorderBrush\s*\(/, "leftBorderBrush")
+# Property leftBorderStyle (QTextFrameFormat_BorderStyle)
+property_reader("QTextTableCellFormat", /::leftBorderStyle\s*\(/, "leftBorderStyle")
+property_writer("QTextTableCellFormat", /::setLeftBorderStyle\s*\(/, "leftBorderStyle")
+# Property leftPadding (double)
+property_reader("QTextTableCellFormat", /::leftPadding\s*\(/, "leftPadding")
+property_writer("QTextTableCellFormat", /::setLeftPadding\s*\(/, "leftPadding")
+# Property rightBorder (double)
+property_reader("QTextTableCellFormat", /::rightBorder\s*\(/, "rightBorder")
+property_writer("QTextTableCellFormat", /::setRightBorder\s*\(/, "rightBorder")
+# Property rightBorderBrush (QBrush)
+property_reader("QTextTableCellFormat", /::rightBorderBrush\s*\(/, "rightBorderBrush")
+property_writer("QTextTableCellFormat", /::setRightBorderBrush\s*\(/, "rightBorderBrush")
+# Property rightBorderStyle (QTextFrameFormat_BorderStyle)
+property_reader("QTextTableCellFormat", /::rightBorderStyle\s*\(/, "rightBorderStyle")
+property_writer("QTextTableCellFormat", /::setRightBorderStyle\s*\(/, "rightBorderStyle")
+# Property rightPadding (double)
+property_reader("QTextTableCellFormat", /::rightPadding\s*\(/, "rightPadding")
+property_writer("QTextTableCellFormat", /::setRightPadding\s*\(/, "rightPadding")
+# Property topBorder (double)
+property_reader("QTextTableCellFormat", /::topBorder\s*\(/, "topBorder")
+property_writer("QTextTableCellFormat", /::setTopBorder\s*\(/, "topBorder")
+# Property topBorderBrush (QBrush)
+property_reader("QTextTableCellFormat", /::topBorderBrush\s*\(/, "topBorderBrush")
+property_writer("QTextTableCellFormat", /::setTopBorderBrush\s*\(/, "topBorderBrush")
+# Property topBorderStyle (QTextFrameFormat_BorderStyle)
+property_reader("QTextTableCellFormat", /::topBorderStyle\s*\(/, "topBorderStyle")
+property_writer("QTextTableCellFormat", /::setTopBorderStyle\s*\(/, "topBorderStyle")
+# Property topPadding (double)
+property_reader("QTextTableCellFormat", /::topPadding\s*\(/, "topPadding")
+property_writer("QTextTableCellFormat", /::setTopPadding\s*\(/, "topPadding")
+# Property alignment (Qt_QFlags_AlignmentFlag)
+property_reader("QTextTableFormat", /::alignment\s*\(/, "alignment")
+property_writer("QTextTableFormat", /::setAlignment\s*\(/, "alignment")
+# Property borderCollapse (bool)
+property_reader("QTextTableFormat", /::borderCollapse\s*\(/, "borderCollapse")
+property_writer("QTextTableFormat", /::setBorderCollapse\s*\(/, "borderCollapse")
+# Property cellPadding (double)
+property_reader("QTextTableFormat", /::cellPadding\s*\(/, "cellPadding")
+property_writer("QTextTableFormat", /::setCellPadding\s*\(/, "cellPadding")
+# Property cellSpacing (double)
+property_reader("QTextTableFormat", /::cellSpacing\s*\(/, "cellSpacing")
+property_writer("QTextTableFormat", /::setCellSpacing\s*\(/, "cellSpacing")
+# Property columnWidthConstraints (QTextLength[])
+property_reader("QTextTableFormat", /::columnWidthConstraints\s*\(/, "columnWidthConstraints")
+property_writer("QTextTableFormat", /::setColumnWidthConstraints\s*\(/, "columnWidthConstraints")
+# Property columns (int)
+property_reader("QTextTableFormat", /::columns\s*\(/, "columns")
+property_writer("QTextTableFormat", /::setColumns\s*\(/, "columns")
+# Property headerRowCount (int)
+property_reader("QTextTableFormat", /::headerRowCount\s*\(/, "headerRowCount")
+property_writer("QTextTableFormat", /::setHeaderRowCount\s*\(/, "headerRowCount")
+# Property obsolete (bool)
+property_reader("QUndoCommand", /::isObsolete\s*\(/, "obsolete")
+property_writer("QUndoCommand", /::setObsolete\s*\(/, "obsolete")
+# Property text (string)
+property_reader("QUndoCommand", /::text\s*\(/, "text")
+property_writer("QUndoCommand", /::setText\s*\(/, "text")
+# Property activeStack (QUndoStack_Native *)
+property_reader("QUndoGroup", /::activeStack\s*\(/, "activeStack")
+property_writer("QUndoGroup", /::setActiveStack\s*\(/, "activeStack")
+# Property index (int)
+property_reader("QUndoStack", /::index\s*\(/, "index")
+property_writer("QUndoStack", /::setIndex\s*\(/, "index")
+# Property locale (QLocale)
+property_reader("QValidator", /::locale\s*\(/, "locale")
+property_writer("QValidator", /::setLocale\s*\(/, "locale")
+# Property x (float)
+property_reader("QVector2D", /::x\s*\(/, "x")
+property_writer("QVector2D", /::setX\s*\(/, "x")
+# Property y (float)
+property_reader("QVector2D", /::y\s*\(/, "y")
+property_writer("QVector2D", /::setY\s*\(/, "y")
+# Property x (float)
+property_reader("QVector3D", /::x\s*\(/, "x")
+property_writer("QVector3D", /::setX\s*\(/, "x")
+# Property y (float)
+property_reader("QVector3D", /::y\s*\(/, "y")
+property_writer("QVector3D", /::setY\s*\(/, "y")
+# Property z (float)
+property_reader("QVector3D", /::z\s*\(/, "z")
+property_writer("QVector3D", /::setZ\s*\(/, "z")
+# Property w (float)
+property_reader("QVector4D", /::w\s*\(/, "w")
+property_writer("QVector4D", /::setW\s*\(/, "w")
+# Property x (float)
+property_reader("QVector4D", /::x\s*\(/, "x")
+property_writer("QVector4D", /::setX\s*\(/, "x")
+# Property y (float)
+property_reader("QVector4D", /::y\s*\(/, "y")
+property_writer("QVector4D", /::setY\s*\(/, "y")
+# Property z (float)
+property_reader("QVector4D", /::z\s*\(/, "z")
+property_writer("QVector4D", /::setZ\s*\(/, "z")
+# Property baseSize (QSize)
+property_reader("QWindow", /::baseSize\s*\(/, "baseSize")
+property_writer("QWindow", /::setBaseSize\s*\(/, "baseSize")
+# Property cursor (QCursor)
+property_reader("QWindow", /::cursor\s*\(/, "cursor")
+property_writer("QWindow", /::setCursor\s*\(/, "cursor")
+# Property filePath (string)
+property_reader("QWindow", /::filePath\s*\(/, "filePath")
+property_writer("QWindow", /::setFilePath\s*\(/, "filePath")
+# Property format (QSurfaceFormat)
+property_reader("QWindow", /::format\s*\(/, "format")
+property_writer("QWindow", /::setFormat\s*\(/, "format")
+# Property framePosition (QPoint)
+property_reader("QWindow", /::framePosition\s*\(/, "framePosition")
+property_writer("QWindow", /::setFramePosition\s*\(/, "framePosition")
+# Property geometry (QRect)
+property_reader("QWindow", /::geometry\s*\(/, "geometry")
+property_writer("QWindow", /::setGeometry\s*\(/, "geometry")
+# Property icon (QIcon)
+property_reader("QWindow", /::icon\s*\(/, "icon")
+property_writer("QWindow", /::setIcon\s*\(/, "icon")
+# Property mask (QRegion)
+property_reader("QWindow", /::mask\s*\(/, "mask")
+property_writer("QWindow", /::setMask\s*\(/, "mask")
+# Property maximumSize (QSize)
+property_reader("QWindow", /::maximumSize\s*\(/, "maximumSize")
+property_writer("QWindow", /::setMaximumSize\s*\(/, "maximumSize")
+# Property minimumSize (QSize)
+property_reader("QWindow", /::minimumSize\s*\(/, "minimumSize")
+property_writer("QWindow", /::setMinimumSize\s*\(/, "minimumSize")
+# Property parent (QWindow_Native *)
+property_reader("QWindow", /::parent\s*\(/, "parent")
+property_writer("QWindow", /::setParent\s*\(/, "parent")
+# Property position (QPoint)
+property_reader("QWindow", /::position\s*\(/, "position")
+property_writer("QWindow", /::setPosition\s*\(/, "position")
+# Property screen (QScreen_Native *)
+property_reader("QWindow", /::screen\s*\(/, "screen")
+property_writer("QWindow", /::setScreen\s*\(/, "screen")
+# Property sizeIncrement (QSize)
+property_reader("QWindow", /::sizeIncrement\s*\(/, "sizeIncrement")
+property_writer("QWindow", /::setSizeIncrement\s*\(/, "sizeIncrement")
+# Property surfaceType (QSurface_SurfaceType)
+property_reader("QWindow", /::surfaceType\s*\(/, "surfaceType")
+property_writer("QWindow", /::setSurfaceType\s*\(/, "surfaceType")
+# Property windowState (Qt_WindowState)
+property_reader("QWindow", /::windowState\s*\(/, "windowState")
+property_writer("QWindow", /::setWindowState\s*\(/, "windowState")
+# Property windowStates (Qt_QFlags_WindowState)
+property_reader("QWindow", /::windowStates\s*\(/, "windowStates")
+property_writer("QWindow", /::setWindowStates\s*\(/, "windowStates")
+# Property brush (QBrush)
+property_reader("QAbstractGraphicsShapeItem", /::brush\s*\(/, "brush")
+property_writer("QAbstractGraphicsShapeItem", /::setBrush\s*\(/, "brush")
+# Property pen (QPen)
+property_reader("QAbstractGraphicsShapeItem", /::pen\s*\(/, "pen")
+property_writer("QAbstractGraphicsShapeItem", /::setPen\s*\(/, "pen")
+# Property currentIndex (QModelIndex)
+property_reader("QAbstractItemView", /::currentIndex\s*\(/, "currentIndex")
+property_writer("QAbstractItemView", /::setCurrentIndex\s*\(/, "currentIndex")
+# Property itemDelegate (QAbstractItemDelegate_Native *)
+property_reader("QAbstractItemView", /::itemDelegate\s*\(/, "itemDelegate")
+property_writer("QAbstractItemView", /::setItemDelegate\s*\(/, "itemDelegate")
+# Property model (QAbstractItemModel_Native *)
+property_reader("QAbstractItemView", /::model\s*\(/, "model")
+property_writer("QAbstractItemView", /::setModel\s*\(/, "model")
+# Property rootIndex (QModelIndex)
+property_reader("QAbstractItemView", /::rootIndex\s*\(/, "rootIndex")
+property_writer("QAbstractItemView", /::setRootIndex\s*\(/, "rootIndex")
+# Property selectionModel (QItemSelectionModel_Native *)
+property_reader("QAbstractItemView", /::selectionModel\s*\(/, "selectionModel")
+property_writer("QAbstractItemView", /::setSelectionModel\s*\(/, "selectionModel")
+# Property cornerWidget (QWidget_Native *)
+property_reader("QAbstractScrollArea", /::cornerWidget\s*\(/, "cornerWidget")
+property_writer("QAbstractScrollArea", /::setCornerWidget\s*\(/, "cornerWidget")
+# Property horizontalScrollBar (QScrollBar_Native *)
+property_reader("QAbstractScrollArea", /::horizontalScrollBar\s*\(/, "horizontalScrollBar")
+property_writer("QAbstractScrollArea", /::setHorizontalScrollBar\s*\(/, "horizontalScrollBar")
+# Property verticalScrollBar (QScrollBar_Native *)
+property_reader("QAbstractScrollArea", /::verticalScrollBar\s*\(/, "verticalScrollBar")
+property_writer("QAbstractScrollArea", /::setVerticalScrollBar\s*\(/, "verticalScrollBar")
+# Property viewport (QWidget_Native *)
+property_reader("QAbstractScrollArea", /::viewport\s*\(/, "viewport")
+property_writer("QAbstractScrollArea", /::setViewport\s*\(/, "viewport")
+# Property groupSeparatorShown (bool)
+property_reader("QAbstractSpinBox", /::isGroupSeparatorShown\s*\(/, "groupSeparatorShown")
+property_writer("QAbstractSpinBox", /::setGroupSeparatorShown\s*\(/, "groupSeparatorShown")
+# Property activeWindow (QWidget_Native *)
+property_reader("QApplication", /::activeWindow\s*\(/, "activeWindow")
+property_writer("QApplication", /::setActiveWindow\s*\(/, "activeWindow")
+# Property font (QFont)
+property_reader("QApplication", /::font\s*\(/, "font")
+property_writer("QApplication", /::setFont\s*\(/, "font")
+# Property palette (QPalette)
+property_reader("QApplication", /::palette\s*\(/, "palette")
+property_writer("QApplication", /::setPalette\s*\(/, "palette")
+# Property style (QStyle_Native *)
+property_reader("QApplication", /::style\s*\(/, "style")
+property_writer("QApplication", /::setStyle\s*\(/, "style")
+# Property direction (QBoxLayout_Direction)
+property_reader("QBoxLayout", /::direction\s*\(/, "direction")
+property_writer("QBoxLayout", /::setDirection\s*\(/, "direction")
+# Property geometry (QRect)
+property_reader("QLayout", /::geometry\s*\(/, "geometry")
+property_writer("QBoxLayout", /::setGeometry\s*\(/, "geometry")
+# Property calendar (QCalendar)
+property_reader("QCalendarWidget", /::calendar\s*\(/, "calendar")
+property_writer("QCalendarWidget", /::setCalendar\s*\(/, "calendar")
+# Property headerTextFormat (QTextCharFormat)
+property_reader("QCalendarWidget", /::headerTextFormat\s*\(/, "headerTextFormat")
+property_writer("QCalendarWidget", /::setHeaderTextFormat\s*\(/, "headerTextFormat")
+# Property checkState (Qt_CheckState)
+property_reader("QCheckBox", /::checkState\s*\(/, "checkState")
+property_writer("QCheckBox", /::setCheckState\s*\(/, "checkState")
+# Property columnWidths (int[])
+property_reader("QColumnView", /::columnWidths\s*\(/, "columnWidths")
+property_writer("QColumnView", /::setColumnWidths\s*\(/, "columnWidths")
+# Property model (QAbstractItemModel_Native *)
+property_reader("QAbstractItemView", /::model\s*\(/, "model")
+property_writer("QColumnView", /::setModel\s*\(/, "model")
+# Property previewWidget (QWidget_Native *)
+property_reader("QColumnView", /::previewWidget\s*\(/, "previewWidget")
+property_writer("QColumnView", /::setPreviewWidget\s*\(/, "previewWidget")
+# Property rootIndex (QModelIndex)
+property_reader("QAbstractItemView", /::rootIndex\s*\(/, "rootIndex")
+property_writer("QColumnView", /::setRootIndex\s*\(/, "rootIndex")
+# Property selectionModel (QItemSelectionModel_Native *)
+property_reader("QAbstractItemView", /::selectionModel\s*\(/, "selectionModel")
+property_writer("QColumnView", /::setSelectionModel\s*\(/, "selectionModel")
+# Property completer (QCompleter_Native *)
+property_reader("QComboBox", /::completer\s*\(/, "completer")
+property_writer("QComboBox", /::setCompleter\s*\(/, "completer")
+# Property itemDelegate (QAbstractItemDelegate_Native *)
+property_reader("QComboBox", /::itemDelegate\s*\(/, "itemDelegate")
+property_writer("QComboBox", /::setItemDelegate\s*\(/, "itemDelegate")
+# Property lineEdit (QLineEdit_Native *)
+property_reader("QComboBox", /::lineEdit\s*\(/, "lineEdit")
+property_writer("QComboBox", /::setLineEdit\s*\(/, "lineEdit")
+# Property model (QAbstractItemModel_Native *)
+property_reader("QComboBox", /::model\s*\(/, "model")
+property_writer("QComboBox", /::setModel\s*\(/, "model")
+# Property rootModelIndex (QModelIndex)
+property_reader("QComboBox", /::rootModelIndex\s*\(/, "rootModelIndex")
+property_writer("QComboBox", /::setRootModelIndex\s*\(/, "rootModelIndex")
+# Property validator (QValidator_Native *)
+property_reader("QComboBox", /::validator\s*\(/, "validator")
+property_writer("QComboBox", /::setValidator\s*\(/, "validator")
+# Property view (QAbstractItemView_Native *)
+property_reader("QComboBox", /::view\s*\(/, "view")
+property_writer("QComboBox", /::setView\s*\(/, "view")
+# Property model (QAbstractItemModel_Native *)
+property_reader("QCompleter", /::model\s*\(/, "model")
+property_writer("QCompleter", /::setModel\s*\(/, "model")
+# Property popup (QAbstractItemView_Native *)
+property_reader("QCompleter", /::popup\s*\(/, "popup")
+property_writer("QCompleter", /::setPopup\s*\(/, "popup")
+# Property widget (QWidget_Native *)
+property_reader("QCompleter", /::widget\s*\(/, "widget")
+property_writer("QCompleter", /::setWidget\s*\(/, "widget")
+# Property itemDelegate (QAbstractItemDelegate_Native *)
+property_reader("QDataWidgetMapper", /::itemDelegate\s*\(/, "itemDelegate")
+property_writer("QDataWidgetMapper", /::setItemDelegate\s*\(/, "itemDelegate")
+# Property model (QAbstractItemModel_Native *)
+property_reader("QDataWidgetMapper", /::model\s*\(/, "model")
+property_writer("QDataWidgetMapper", /::setModel\s*\(/, "model")
+# Property rootIndex (QModelIndex)
+property_reader("QDataWidgetMapper", /::rootIndex\s*\(/, "rootIndex")
+property_writer("QDataWidgetMapper", /::setRootIndex\s*\(/, "rootIndex")
+# Property calendar (QCalendar)
+property_reader("QDateTimeEdit", /::calendar\s*\(/, "calendar")
+property_writer("QDateTimeEdit", /::setCalendar\s*\(/, "calendar")
+# Property calendarWidget (QCalendarWidget_Native *)
+property_reader("QDateTimeEdit", /::calendarWidget\s*\(/, "calendarWidget")
+property_writer("QDateTimeEdit", /::setCalendarWidget\s*\(/, "calendarWidget")
+# Property result (int)
+property_reader("QDialog", /::result\s*\(/, "result")
+property_writer("QDialog", /::setResult\s*\(/, "result")
+# Property titleBarWidget (QWidget_Native *)
+property_reader("QDockWidget", /::titleBarWidget\s*\(/, "titleBarWidget")
+property_writer("QDockWidget", /::setTitleBarWidget\s*\(/, "titleBarWidget")
+# Property widget (QWidget_Native *)
+property_reader("QDockWidget", /::widget\s*\(/, "widget")
+property_writer("QDockWidget", /::setWidget\s*\(/, "widget")
+# Property directoryUrl (QUrl)
+property_reader("QFileDialog", /::directoryUrl\s*\(/, "directoryUrl")
+property_writer("QFileDialog", /::setDirectoryUrl\s*\(/, "directoryUrl")
+# Property filter (QDir_QFlags_Filter)
+property_reader("QFileDialog", /::filter\s*\(/, "filter")
+property_writer("QFileDialog", /::setFilter\s*\(/, "filter")
+# Property history (string[])
+property_reader("QFileDialog", /::history\s*\(/, "history")
+property_writer("QFileDialog", /::setHistory\s*\(/, "history")
+# Property iconProvider (QAbstractFileIconProvider_Native *)
+property_reader("QFileDialog", /::iconProvider\s*\(/, "iconProvider")
+property_writer("QFileDialog", /::setIconProvider\s*\(/, "iconProvider")
+# Property itemDelegate (QAbstractItemDelegate_Native *)
+property_reader("QFileDialog", /::itemDelegate\s*\(/, "itemDelegate")
+property_writer("QFileDialog", /::setItemDelegate\s*\(/, "itemDelegate")
+# Property mimeTypeFilters (string[])
+property_reader("QFileDialog", /::mimeTypeFilters\s*\(/, "mimeTypeFilters")
+property_writer("QFileDialog", /::setMimeTypeFilters\s*\(/, "mimeTypeFilters")
+# Property nameFilters (string[])
+property_reader("QFileDialog", /::nameFilters\s*\(/, "nameFilters")
+property_writer("QFileDialog", /::setNameFilters\s*\(/, "nameFilters")
+# Property proxyModel (QAbstractProxyModel_Native *)
+property_reader("QFileDialog", /::proxyModel\s*\(/, "proxyModel")
+property_writer("QFileDialog", /::setProxyModel\s*\(/, "proxyModel")
+# Property sidebarUrls (QUrl[])
+property_reader("QFileDialog", /::sidebarUrls\s*\(/, "sidebarUrls")
+property_writer("QFileDialog", /::setSidebarUrls\s*\(/, "sidebarUrls")
+# Property widget (QWidget_Native *)
+property_reader("QFocusFrame", /::widget\s*\(/, "widget")
+property_writer("QFocusFrame", /::setWidget\s*\(/, "widget")
+# Property geometry (QRect)
+property_reader("QLayout", /::geometry\s*\(/, "geometry")
+property_writer("QFormLayout", /::setGeometry\s*\(/, "geometry")
+# Property frameStyle (int)
+property_reader("QFrame", /::frameStyle\s*\(/, "frameStyle")
+property_writer("QFrame", /::setFrameStyle\s*\(/, "frameStyle")
+# Property accepted (bool)
+property_reader("QGestureEvent", /::isAccepted\s*\(/, "accepted")
+property_writer("QGestureEvent", /::setAccepted\s*\(/, "accepted")
+# Property widget (QWidget_Native *)
+property_reader("QGestureEvent", /::widget\s*\(/, "widget")
+property_writer("QGestureEvent", /::setWidget\s*\(/, "widget")
# Property geometry (QRectF)
property_reader("QGraphicsLayoutItem", /::geometry\s*\(/, "geometry")
property_writer("QGraphicsAnchorLayout", /::setGeometry\s*\(/, "geometry")
@@ -12385,9 +13254,6 @@ property_writer("QGraphicsItem", /::setHandlesChildEvents\s*\(/, "handlesChildEv
# Property inputMethodHints (Qt_QFlags_InputMethodHint)
property_reader("QGraphicsItem", /::inputMethodHints\s*\(/, "inputMethodHints")
property_writer("QGraphicsItem", /::setInputMethodHints\s*\(/, "inputMethodHints")
-# Property matrix (QMatrix)
-property_reader("QGraphicsItem", /::matrix\s*\(/, "matrix")
-property_writer("QGraphicsItem", /::setMatrix\s*\(/, "matrix")
# Property opacity (double)
property_reader("QGraphicsItem", /::opacity\s*\(/, "opacity")
property_writer("QGraphicsItem", /::setOpacity\s*\(/, "opacity")
@@ -12580,6 +13446,9 @@ property_writer("QGraphicsSceneDragDropEvent", /::setScreenPos\s*\(/, "screenPos
# Property source (QWidget_Native *)
property_reader("QGraphicsSceneDragDropEvent", /::source\s*\(/, "source")
property_writer("QGraphicsSceneDragDropEvent", /::setSource\s*\(/, "source")
+# Property timestamp (unsigned long long)
+property_reader("QGraphicsSceneEvent", /::timestamp\s*\(/, "timestamp")
+property_writer("QGraphicsSceneEvent", /::setTimestamp\s*\(/, "timestamp")
# Property widget (QWidget_Native *)
property_reader("QGraphicsSceneEvent", /::widget\s*\(/, "widget")
property_writer("QGraphicsSceneEvent", /::setWidget\s*\(/, "widget")
@@ -12661,12 +13530,21 @@ property_writer("QGraphicsSceneWheelEvent", /::setButtons\s*\(/, "buttons")
# Property delta (int)
property_reader("QGraphicsSceneWheelEvent", /::delta\s*\(/, "delta")
property_writer("QGraphicsSceneWheelEvent", /::setDelta\s*\(/, "delta")
+# Property inverted (bool)
+property_reader("QGraphicsSceneWheelEvent", /::isInverted\s*\(/, "inverted")
+property_writer("QGraphicsSceneWheelEvent", /::setInverted\s*\(/, "inverted")
# Property modifiers (Qt_QFlags_KeyboardModifier)
property_reader("QGraphicsSceneWheelEvent", /::modifiers\s*\(/, "modifiers")
property_writer("QGraphicsSceneWheelEvent", /::setModifiers\s*\(/, "modifiers")
# Property orientation (Qt_Orientation)
property_reader("QGraphicsSceneWheelEvent", /::orientation\s*\(/, "orientation")
property_writer("QGraphicsSceneWheelEvent", /::setOrientation\s*\(/, "orientation")
+# Property phase (Qt_ScrollPhase)
+property_reader("QGraphicsSceneWheelEvent", /::phase\s*\(/, "phase")
+property_writer("QGraphicsSceneWheelEvent", /::setPhase\s*\(/, "phase")
+# Property pixelDelta (QPoint)
+property_reader("QGraphicsSceneWheelEvent", /::pixelDelta\s*\(/, "pixelDelta")
+property_writer("QGraphicsSceneWheelEvent", /::setPixelDelta\s*\(/, "pixelDelta")
# Property pos (QPointF)
property_reader("QGraphicsSceneWheelEvent", /::pos\s*\(/, "pos")
property_writer("QGraphicsSceneWheelEvent", /::setPos\s*\(/, "pos")
@@ -12682,9 +13560,6 @@ property_writer("QGraphicsSimpleTextItem", /::setFont\s*\(/, "font")
# Property text (string)
property_reader("QGraphicsSimpleTextItem", /::text\s*\(/, "text")
property_writer("QGraphicsSimpleTextItem", /::setText\s*\(/, "text")
-# Property cachingEnabled (bool)
-property_reader("QGraphicsSvgItem", /::isCachingEnabled\s*\(/, "cachingEnabled")
-property_writer("QGraphicsSvgItem", /::setCachingEnabled\s*\(/, "cachingEnabled")
# Property defaultTextColor (QColor)
property_reader("QGraphicsTextItem", /::defaultTextColor\s*\(/, "defaultTextColor")
property_writer("QGraphicsTextItem", /::setDefaultTextColor\s*\(/, "defaultTextColor")
@@ -12709,9 +13584,6 @@ property_writer("QGraphicsTextItem", /::setTextInteractionFlags\s*\(/, "textInte
# Property textWidth (double)
property_reader("QGraphicsTextItem", /::textWidth\s*\(/, "textWidth")
property_writer("QGraphicsTextItem", /::setTextWidth\s*\(/, "textWidth")
-# Property matrix (QMatrix)
-property_reader("QGraphicsView", /::matrix\s*\(/, "matrix")
-property_writer("QGraphicsView", /::setMatrix\s*\(/, "matrix")
# Property scene (QGraphicsScene_Native *)
property_reader("QGraphicsView", /::scene\s*\(/, "scene")
property_writer("QGraphicsView", /::setScene\s*\(/, "scene")
@@ -12733,15 +13605,6 @@ property_writer("QGridLayout", /::setOriginCorner\s*\(/, "originCorner")
# Property verticalSpacing (int)
property_reader("QGridLayout", /::verticalSpacing\s*\(/, "verticalSpacing")
property_writer("QGridLayout", /::setVerticalSpacing\s*\(/, "verticalSpacing")
-# Property desktopSettingsAware (bool)
-property_reader("QGuiApplication", /::desktopSettingsAware\s*\(/, "desktopSettingsAware")
-property_writer("QGuiApplication", /::setDesktopSettingsAware\s*\(/, "desktopSettingsAware")
-# Property font (QFont)
-property_reader("QGuiApplication", /::font\s*\(/, "font")
-property_writer("QGuiApplication", /::setFont\s*\(/, "font")
-# Property palette (QPalette)
-property_reader("QGuiApplication", /::palette\s*\(/, "palette")
-property_writer("QGuiApplication", /::setPalette\s*\(/, "palette")
# Property model (QAbstractItemModel_Native *)
property_reader("QAbstractItemView", /::model\s*\(/, "model")
property_writer("QHeaderView", /::setModel\s*\(/, "model")
@@ -12760,141 +13623,6 @@ property_writer("QHeaderView", /::setSectionsMovable\s*\(/, "sectionsMovable")
# Property sortIndicatorShown (bool)
property_reader("QHeaderView", /::isSortIndicatorShown\s*\(/, "sortIndicatorShown")
property_writer("QHeaderView", /::setSortIndicatorShown\s*\(/, "sortIndicatorShown")
-# Property scopeId (string)
-property_reader("QHostAddress", /::scopeId\s*\(/, "scopeId")
-property_writer("QHostAddress", /::setScopeId\s*\(/, "scopeId")
-# Property addresses (QHostAddress[])
-property_reader("QHostInfo", /::addresses\s*\(/, "addresses")
-property_writer("QHostInfo", /::setAddresses\s*\(/, "addresses")
-# Property error (QHostInfo_HostInfoError)
-property_reader("QHostInfo", /::error\s*\(/, "error")
-property_writer("QHostInfo", /::setError\s*\(/, "error")
-# Property errorString (string)
-property_reader("QHostInfo", /::errorString\s*\(/, "errorString")
-property_writer("QHostInfo", /::setErrorString\s*\(/, "errorString")
-# Property hostName (string)
-property_reader("QHostInfo", /::hostName\s*\(/, "hostName")
-property_writer("QHostInfo", /::setHostName\s*\(/, "hostName")
-# Property lookupId (int)
-property_reader("QHostInfo", /::lookupId\s*\(/, "lookupId")
-property_writer("QHostInfo", /::setLookupId\s*\(/, "lookupId")
-# Property boundary (string)
-property_reader("QHttpMultiPart", /::boundary\s*\(/, "boundary")
-property_writer("QHttpMultiPart", /::setBoundary\s*\(/, "boundary")
-# Property textModeEnabled (bool)
-property_reader("QIODevice", /::isTextModeEnabled\s*\(/, "textModeEnabled")
-property_writer("QIODevice", /::setTextModeEnabled\s*\(/, "textModeEnabled")
-# Property themeName (string)
-property_reader("QIcon", /::themeName\s*\(/, "themeName")
-property_writer("QIcon", /::setThemeName\s*\(/, "themeName")
-# Property themeSearchPaths (string[])
-property_reader("QIcon", /::themeSearchPaths\s*\(/, "themeSearchPaths")
-property_writer("QIcon", /::setThemeSearchPaths\s*\(/, "themeSearchPaths")
-# Property alphaChannel (QImage_Native)
-property_reader("QImage", /::alphaChannel\s*\(/, "alphaChannel")
-property_writer("QImage", /::setAlphaChannel\s*\(/, "alphaChannel")
-# Property colorCount (int)
-property_reader("QImage", /::colorCount\s*\(/, "colorCount")
-property_writer("QImage", /::setColorCount\s*\(/, "colorCount")
-# Property devicePixelRatio (double)
-property_reader("QImage", /::devicePixelRatio\s*\(/, "devicePixelRatio")
-property_writer("QImage", /::setDevicePixelRatio\s*\(/, "devicePixelRatio")
-# Property dotsPerMeterX (int)
-property_reader("QImage", /::dotsPerMeterX\s*\(/, "dotsPerMeterX")
-property_writer("QImage", /::setDotsPerMeterX\s*\(/, "dotsPerMeterX")
-# Property dotsPerMeterY (int)
-property_reader("QImage", /::dotsPerMeterY\s*\(/, "dotsPerMeterY")
-property_writer("QImage", /::setDotsPerMeterY\s*\(/, "dotsPerMeterY")
-# Property offset (QPoint)
-property_reader("QImage", /::offset\s*\(/, "offset")
-property_writer("QImage", /::setOffset\s*\(/, "offset")
-# Property imageSettings (QImageEncoderSettings)
-property_reader("QImageEncoderControl", /::imageSettings\s*\(/, "imageSettings")
-property_writer("QImageEncoderControl", /::setImageSettings\s*\(/, "imageSettings")
-# Property codec (string)
-property_reader("QImageEncoderSettings", /::codec\s*\(/, "codec")
-property_writer("QImageEncoderSettings", /::setCodec\s*\(/, "codec")
-# Property encodingOptions (map)
-property_reader("QImageEncoderSettings", /::encodingOptions\s*\(/, "encodingOptions")
-property_writer("QImageEncoderSettings", /::setEncodingOptions\s*\(/, "encodingOptions")
-# Property quality (QMultimedia_EncodingQuality)
-property_reader("QImageEncoderSettings", /::quality\s*\(/, "quality")
-property_writer("QImageEncoderSettings", /::setQuality\s*\(/, "quality")
-# Property resolution (QSize)
-property_reader("QImageEncoderSettings", /::resolution\s*\(/, "resolution")
-property_writer("QImageEncoderSettings", /::setResolution\s*\(/, "resolution")
-# Property device (QIODevice *)
-property_reader("QImageIOHandler", /::device\s*\(/, "device")
-property_writer("QImageIOHandler", /::setDevice\s*\(/, "device")
-# Property format (string)
-property_reader("QImageIOHandler", /::format\s*\(/, "format")
-property_writer("QImageIOHandler", /::setFormat\s*\(/, "format")
-# Property autoDetectImageFormat (bool)
-property_reader("QImageReader", /::autoDetectImageFormat\s*\(/, "autoDetectImageFormat")
-property_writer("QImageReader", /::setAutoDetectImageFormat\s*\(/, "autoDetectImageFormat")
-# Property autoTransform (bool)
-property_reader("QImageReader", /::autoTransform\s*\(/, "autoTransform")
-property_writer("QImageReader", /::setAutoTransform\s*\(/, "autoTransform")
-# Property backgroundColor (QColor)
-property_reader("QImageReader", /::backgroundColor\s*\(/, "backgroundColor")
-property_writer("QImageReader", /::setBackgroundColor\s*\(/, "backgroundColor")
-# Property clipRect (QRect)
-property_reader("QImageReader", /::clipRect\s*\(/, "clipRect")
-property_writer("QImageReader", /::setClipRect\s*\(/, "clipRect")
-# Property decideFormatFromContent (bool)
-property_reader("QImageReader", /::decideFormatFromContent\s*\(/, "decideFormatFromContent")
-property_writer("QImageReader", /::setDecideFormatFromContent\s*\(/, "decideFormatFromContent")
-# Property device (QIODevice *)
-property_reader("QImageReader", /::device\s*\(/, "device")
-property_writer("QImageReader", /::setDevice\s*\(/, "device")
-# Property fileName (string)
-property_reader("QImageReader", /::fileName\s*\(/, "fileName")
-property_writer("QImageReader", /::setFileName\s*\(/, "fileName")
-# Property format (string)
-property_reader("QImageReader", /::format\s*\(/, "format")
-property_writer("QImageReader", /::setFormat\s*\(/, "format")
-# Property quality (int)
-property_reader("QImageReader", /::quality\s*\(/, "quality")
-property_writer("QImageReader", /::setQuality\s*\(/, "quality")
-# Property scaledClipRect (QRect)
-property_reader("QImageReader", /::scaledClipRect\s*\(/, "scaledClipRect")
-property_writer("QImageReader", /::setScaledClipRect\s*\(/, "scaledClipRect")
-# Property scaledSize (QSize)
-property_reader("QImageReader", /::scaledSize\s*\(/, "scaledSize")
-property_writer("QImageReader", /::setScaledSize\s*\(/, "scaledSize")
-# Property compression (int)
-property_reader("QImageWriter", /::compression\s*\(/, "compression")
-property_writer("QImageWriter", /::setCompression\s*\(/, "compression")
-# Property description (string)
-property_reader("QImageWriter", /::description\s*\(/, "description")
-property_writer("QImageWriter", /::setDescription\s*\(/, "description")
-# Property device (QIODevice *)
-property_reader("QImageWriter", /::device\s*\(/, "device")
-property_writer("QImageWriter", /::setDevice\s*\(/, "device")
-# Property fileName (string)
-property_reader("QImageWriter", /::fileName\s*\(/, "fileName")
-property_writer("QImageWriter", /::setFileName\s*\(/, "fileName")
-# Property format (string)
-property_reader("QImageWriter", /::format\s*\(/, "format")
-property_writer("QImageWriter", /::setFormat\s*\(/, "format")
-# Property gamma (float)
-property_reader("QImageWriter", /::gamma\s*\(/, "gamma")
-property_writer("QImageWriter", /::setGamma\s*\(/, "gamma")
-# Property optimizedWrite (bool)
-property_reader("QImageWriter", /::optimizedWrite\s*\(/, "optimizedWrite")
-property_writer("QImageWriter", /::setOptimizedWrite\s*\(/, "optimizedWrite")
-# Property progressiveScanWrite (bool)
-property_reader("QImageWriter", /::progressiveScanWrite\s*\(/, "progressiveScanWrite")
-property_writer("QImageWriter", /::setProgressiveScanWrite\s*\(/, "progressiveScanWrite")
-# Property quality (int)
-property_reader("QImageWriter", /::quality\s*\(/, "quality")
-property_writer("QImageWriter", /::setQuality\s*\(/, "quality")
-# Property subType (string)
-property_reader("QImageWriter", /::subType\s*\(/, "subType")
-property_writer("QImageWriter", /::setSubType\s*\(/, "subType")
-# Property transformation (QImageIOHandler_QFlags_Transformation)
-property_reader("QImageWriter", /::transformation\s*\(/, "transformation")
-property_writer("QImageWriter", /::setTransformation\s*\(/, "transformation")
# Property cancelButtonText (string)
property_reader("QInputDialog", /::cancelButtonText\s*\(/, "cancelButtonText")
property_writer("QInputDialog", /::setCancelButtonText\s*\(/, "cancelButtonText")
@@ -12913,6 +13641,9 @@ property_writer("QInputDialog", /::setDoubleMaximum\s*\(/, "doubleMaximum")
# Property doubleMinimum (double)
property_reader("QInputDialog", /::doubleMinimum\s*\(/, "doubleMinimum")
property_writer("QInputDialog", /::setDoubleMinimum\s*\(/, "doubleMinimum")
+# Property doubleStep (double)
+property_reader("QInputDialog", /::doubleStep\s*\(/, "doubleStep")
+property_writer("QInputDialog", /::setDoubleStep\s*\(/, "doubleStep")
# Property doubleValue (double)
property_reader("QInputDialog", /::doubleValue\s*\(/, "doubleValue")
property_writer("QInputDialog", /::setDoubleValue\s*\(/, "doubleValue")
@@ -12946,42 +13677,21 @@ property_writer("QInputDialog", /::setTextEchoMode\s*\(/, "textEchoMode")
# Property textValue (string)
property_reader("QInputDialog", /::textValue\s*\(/, "textValue")
property_writer("QInputDialog", /::setTextValue\s*\(/, "textValue")
-# Property modifiers (Qt_QFlags_KeyboardModifier)
-property_reader("QInputEvent", /::modifiers\s*\(/, "modifiers")
-property_writer("QInputEvent", /::setModifiers\s*\(/, "modifiers")
-# Property timestamp (unsigned long)
-property_reader("QInputEvent", /::timestamp\s*\(/, "timestamp")
-property_writer("QInputEvent", /::setTimestamp\s*\(/, "timestamp")
-# Property inputItemRectangle (QRectF)
-property_reader("QInputMethod", /::inputItemRectangle\s*\(/, "inputItemRectangle")
-property_writer("QInputMethod", /::setInputItemRectangle\s*\(/, "inputItemRectangle")
-# Property inputItemTransform (QTransform)
-property_reader("QInputMethod", /::inputItemTransform\s*\(/, "inputItemTransform")
-property_writer("QInputMethod", /::setInputItemTransform\s*\(/, "inputItemTransform")
-# Property commitString (string)
-property_reader("QInputMethodEvent", /::commitString\s*\(/, "commitString")
-property_writer("QInputMethodEvent", /::setCommitString\s*\(/, "commitString")
# Property itemEditorFactory (QItemEditorFactory_Native *)
property_reader("QItemDelegate", /::itemEditorFactory\s*\(/, "itemEditorFactory")
property_writer("QItemDelegate", /::setItemEditorFactory\s*\(/, "itemEditorFactory")
# Property defaultFactory (QItemEditorFactory_Native *)
property_reader("QItemEditorFactory", /::defaultFactory\s*\(/, "defaultFactory")
property_writer("QItemEditorFactory", /::setDefaultFactory\s*\(/, "defaultFactory")
-# Property array (QJsonArray)
-property_reader("QJsonDocument", /::array\s*\(/, "array")
-property_writer("QJsonDocument", /::setArray\s*\(/, "array")
-# Property modifiers (Qt_QFlags_KeyboardModifier)
-property_reader("QKeyEvent", /::modifiers\s*\(/, "modifiers")
-property_writer("QInputEvent", /::setModifiers\s*\(/, "modifiers")
# Property buddy (QWidget_Native *)
property_reader("QLabel", /::buddy\s*\(/, "buddy")
property_writer("QLabel", /::setBuddy\s*\(/, "buddy")
# Property movie (QMovie_Native *)
property_reader("QLabel", /::movie\s*\(/, "movie")
property_writer("QLabel", /::setMovie\s*\(/, "movie")
-# Property contentsMargins (QMargins)
-property_reader("QLayout", /::contentsMargins\s*\(/, "contentsMargins")
-property_writer("QLayout", /::setContentsMargins\s*\(/, "contentsMargins")
+# Property picture (QPicture_Native)
+property_reader("QLabel", /::picture\s*\(/, "picture")
+property_writer("QLabel", /::setPicture\s*\(/, "picture")
# Property enabled (bool)
property_reader("QLayout", /::isEnabled\s*\(/, "enabled")
property_writer("QLayout", /::setEnabled\s*\(/, "enabled")
@@ -12997,12 +13707,6 @@ property_writer("QLayoutItem", /::setAlignment\s*\(/, "alignment")
# Property geometry (QRect)
property_reader("QLayoutItem", /::geometry\s*\(/, "geometry")
property_writer("QLayoutItem", /::setGeometry\s*\(/, "geometry")
-# Property p1 (QPoint)
-property_reader("QLine", /::p1\s*\(/, "p1")
-property_writer("QLine", /::setP1\s*\(/, "p1")
-# Property p2 (QPoint)
-property_reader("QLine", /::p2\s*\(/, "p2")
-property_writer("QLine", /::setP2\s*\(/, "p2")
# Property completer (QCompleter_Native *)
property_reader("QLineEdit", /::completer\s*\(/, "completer")
property_writer("QLineEdit", /::setCompleter\s*\(/, "completer")
@@ -13012,36 +13716,18 @@ property_writer("QLineEdit", /::setTextMargins\s*\(/, "textMargins")
# Property validator (QValidator_Native *)
property_reader("QLineEdit", /::validator\s*\(/, "validator")
property_writer("QLineEdit", /::setValidator\s*\(/, "validator")
-# Property angle (double)
-property_reader("QLineF", /::angle\s*\(/, "angle")
-property_writer("QLineF", /::setAngle\s*\(/, "angle")
-# Property length (double)
-property_reader("QLineF", /::length\s*\(/, "length")
-property_writer("QLineF", /::setLength\s*\(/, "length")
-# Property p1 (QPointF)
-property_reader("QLineF", /::p1\s*\(/, "p1")
-property_writer("QLineF", /::setP1\s*\(/, "p1")
-# Property p2 (QPointF)
-property_reader("QLineF", /::p2\s*\(/, "p2")
-property_writer("QLineF", /::setP2\s*\(/, "p2")
-# Property finalStop (QPointF)
-property_reader("QLinearGradient", /::finalStop\s*\(/, "finalStop")
-property_writer("QLinearGradient", /::setFinalStop\s*\(/, "finalStop")
-# Property start (QPointF)
-property_reader("QLinearGradient", /::start\s*\(/, "start")
-property_writer("QLinearGradient", /::setStart\s*\(/, "start")
# Property rootIndex (QModelIndex)
property_reader("QAbstractItemView", /::rootIndex\s*\(/, "rootIndex")
property_writer("QListView", /::setRootIndex\s*\(/, "rootIndex")
# Property currentItem (QListWidgetItem_Native *)
property_reader("QListWidget", /::currentItem\s*\(/, "currentItem")
property_writer("QListWidget", /::setCurrentItem\s*\(/, "currentItem")
+# Property selectionModel (QItemSelectionModel_Native *)
+property_reader("QAbstractItemView", /::selectionModel\s*\(/, "selectionModel")
+property_writer("QListWidget", /::setSelectionModel\s*\(/, "selectionModel")
# Property background (QBrush)
property_reader("QListWidgetItem", /::background\s*\(/, "background")
property_writer("QListWidgetItem", /::setBackground\s*\(/, "background")
-# Property backgroundColor (QColor)
-property_reader("QListWidgetItem", /::backgroundColor\s*\(/, "backgroundColor")
-property_writer("QListWidgetItem", /::setBackgroundColor\s*\(/, "backgroundColor")
# Property checkState (Qt_CheckState)
property_reader("QListWidgetItem", /::checkState\s*\(/, "checkState")
property_writer("QListWidgetItem", /::setCheckState\s*\(/, "checkState")
@@ -13075,30 +13761,12 @@ property_writer("QListWidgetItem", /::setText\s*\(/, "text")
# Property textAlignment (int)
property_reader("QListWidgetItem", /::textAlignment\s*\(/, "textAlignment")
property_writer("QListWidgetItem", /::setTextAlignment\s*\(/, "textAlignment")
-# Property textColor (QColor)
-property_reader("QListWidgetItem", /::textColor\s*\(/, "textColor")
-property_writer("QListWidgetItem", /::setTextColor\s*\(/, "textColor")
# Property toolTip (string)
property_reader("QListWidgetItem", /::toolTip\s*\(/, "toolTip")
property_writer("QListWidgetItem", /::setToolTip\s*\(/, "toolTip")
# Property whatsThis (string)
property_reader("QListWidgetItem", /::whatsThis\s*\(/, "whatsThis")
property_writer("QListWidgetItem", /::setWhatsThis\s*\(/, "whatsThis")
-# Property maxPendingConnections (int)
-property_reader("QLocalServer", /::maxPendingConnections\s*\(/, "maxPendingConnections")
-property_writer("QLocalServer", /::setMaxPendingConnections\s*\(/, "maxPendingConnections")
-# Property readBufferSize (long long)
-property_reader("QLocalSocket", /::readBufferSize\s*\(/, "readBufferSize")
-property_writer("QLocalSocket", /::setReadBufferSize\s*\(/, "readBufferSize")
-# Property serverName (string)
-property_reader("QLocalSocket", /::serverName\s*\(/, "serverName")
-property_writer("QLocalSocket", /::setServerName\s*\(/, "serverName")
-# Property numberOptions (QLocale_QFlags_NumberOption)
-property_reader("QLocale", /::numberOptions\s*\(/, "numberOptions")
-property_writer("QLocale", /::setNumberOptions\s*\(/, "numberOptions")
-# Property staleLockTime (int)
-property_reader("QLockFile", /::staleLockTime\s*\(/, "staleLockTime")
-property_writer("QLockFile", /::setStaleLockTime\s*\(/, "staleLockTime")
# Property centralWidget (QWidget_Native *)
property_reader("QMainWindow", /::centralWidget\s*\(/, "centralWidget")
property_writer("QMainWindow", /::setCentralWidget\s*\(/, "centralWidget")
@@ -13111,36 +13779,6 @@ property_writer("QMainWindow", /::setMenuWidget\s*\(/, "menuWidget")
# Property statusBar (QStatusBar_Native *)
property_reader("QMainWindow", /::statusBar\s*\(/, "statusBar")
property_writer("QMainWindow", /::setStatusBar\s*\(/, "statusBar")
-# Property color (QMapNodeBase_Color)
-property_reader("QMapNodeBase", /::color\s*\(/, "color")
-property_writer("QMapNodeBase", /::setColor\s*\(/, "color")
-# Property parent (QMapNodeBase *)
-property_reader("QMapNodeBase", /::parent\s*\(/, "parent")
-property_writer("QMapNodeBase", /::setParent\s*\(/, "parent")
-# Property bottom (int)
-property_reader("QMargins", /::bottom\s*\(/, "bottom")
-property_writer("QMargins", /::setBottom\s*\(/, "bottom")
-# Property left (int)
-property_reader("QMargins", /::left\s*\(/, "left")
-property_writer("QMargins", /::setLeft\s*\(/, "left")
-# Property right (int)
-property_reader("QMargins", /::right\s*\(/, "right")
-property_writer("QMargins", /::setRight\s*\(/, "right")
-# Property top (int)
-property_reader("QMargins", /::top\s*\(/, "top")
-property_writer("QMargins", /::setTop\s*\(/, "top")
-# Property bottom (double)
-property_reader("QMarginsF", /::bottom\s*\(/, "bottom")
-property_writer("QMarginsF", /::setBottom\s*\(/, "bottom")
-# Property left (double)
-property_reader("QMarginsF", /::left\s*\(/, "left")
-property_writer("QMarginsF", /::setLeft\s*\(/, "left")
-# Property right (double)
-property_reader("QMarginsF", /::right\s*\(/, "right")
-property_writer("QMarginsF", /::setRight\s*\(/, "right")
-# Property top (double)
-property_reader("QMarginsF", /::top\s*\(/, "top")
-property_writer("QMarginsF", /::setTop\s*\(/, "top")
# Property activeSubWindow (QMdiSubWindow_Native *)
property_reader("QMdiArea", /::activeSubWindow\s*\(/, "activeSubWindow")
property_writer("QMdiArea", /::setActiveSubWindow\s*\(/, "activeSubWindow")
@@ -13150,72 +13788,6 @@ property_writer("QMdiSubWindow", /::setSystemMenu\s*\(/, "systemMenu")
# Property widget (QWidget_Native *)
property_reader("QMdiSubWindow", /::widget\s*\(/, "widget")
property_writer("QMdiSubWindow", /::setWidget\s*\(/, "widget")
-# Property containerFormat (string)
-property_reader("QMediaContainerControl", /::containerFormat\s*\(/, "containerFormat")
-property_writer("QMediaContainerControl", /::setContainerFormat\s*\(/, "containerFormat")
-# Property crossfadeTime (double)
-property_reader("QMediaGaplessPlaybackControl", /::crossfadeTime\s*\(/, "crossfadeTime")
-property_writer("QMediaGaplessPlaybackControl", /::setCrossfadeTime\s*\(/, "crossfadeTime")
-# Property nextMedia (QMediaContent)
-property_reader("QMediaGaplessPlaybackControl", /::nextMedia\s*\(/, "nextMedia")
-property_writer("QMediaGaplessPlaybackControl", /::setNextMedia\s*\(/, "nextMedia")
-# Property muted (bool)
-property_reader("QMediaPlayerControl", /::isMuted\s*\(/, "muted")
-property_writer("QMediaPlayerControl", /::setMuted\s*\(/, "muted")
-# Property playbackRate (double)
-property_reader("QMediaPlayerControl", /::playbackRate\s*\(/, "playbackRate")
-property_writer("QMediaPlayerControl", /::setPlaybackRate\s*\(/, "playbackRate")
-# Property position (long long)
-property_reader("QMediaPlayerControl", /::position\s*\(/, "position")
-property_writer("QMediaPlayerControl", /::setPosition\s*\(/, "position")
-# Property volume (int)
-property_reader("QMediaPlayerControl", /::volume\s*\(/, "volume")
-property_writer("QMediaPlayerControl", /::setVolume\s*\(/, "volume")
-# Property audioSettings (QAudioEncoderSettings)
-property_reader("QMediaRecorder", /::audioSettings\s*\(/, "audioSettings")
-property_writer("QMediaRecorder", /::setAudioSettings\s*\(/, "audioSettings")
-# Property containerFormat (string)
-property_reader("QMediaRecorder", /::containerFormat\s*\(/, "containerFormat")
-property_writer("QMediaRecorder", /::setContainerFormat\s*\(/, "containerFormat")
-# Property videoSettings (QVideoEncoderSettings)
-property_reader("QMediaRecorder", /::videoSettings\s*\(/, "videoSettings")
-property_writer("QMediaRecorder", /::setVideoSettings\s*\(/, "videoSettings")
-# Property muted (bool)
-property_reader("QMediaRecorderControl", /::isMuted\s*\(/, "muted")
-property_writer("QMediaRecorderControl", /::setMuted\s*\(/, "muted")
-# Property state (QMediaRecorder_State)
-property_reader("QMediaRecorderControl", /::state\s*\(/, "state")
-property_writer("QMediaRecorderControl", /::setState\s*\(/, "state")
-# Property volume (double)
-property_reader("QMediaRecorderControl", /::volume\s*\(/, "volume")
-property_writer("QMediaRecorderControl", /::setVolume\s*\(/, "volume")
-# Property audioBitRate (int)
-property_reader("QMediaResource", /::audioBitRate\s*\(/, "audioBitRate")
-property_writer("QMediaResource", /::setAudioBitRate\s*\(/, "audioBitRate")
-# Property audioCodec (string)
-property_reader("QMediaResource", /::audioCodec\s*\(/, "audioCodec")
-property_writer("QMediaResource", /::setAudioCodec\s*\(/, "audioCodec")
-# Property channelCount (int)
-property_reader("QMediaResource", /::channelCount\s*\(/, "channelCount")
-property_writer("QMediaResource", /::setChannelCount\s*\(/, "channelCount")
-# Property dataSize (long long)
-property_reader("QMediaResource", /::dataSize\s*\(/, "dataSize")
-property_writer("QMediaResource", /::setDataSize\s*\(/, "dataSize")
-# Property language (string)
-property_reader("QMediaResource", /::language\s*\(/, "language")
-property_writer("QMediaResource", /::setLanguage\s*\(/, "language")
-# Property resolution (QSize)
-property_reader("QMediaResource", /::resolution\s*\(/, "resolution")
-property_writer("QMediaResource", /::setResolution\s*\(/, "resolution")
-# Property sampleRate (int)
-property_reader("QMediaResource", /::sampleRate\s*\(/, "sampleRate")
-property_writer("QMediaResource", /::setSampleRate\s*\(/, "sampleRate")
-# Property videoBitRate (int)
-property_reader("QMediaResource", /::videoBitRate\s*\(/, "videoBitRate")
-property_writer("QMediaResource", /::setVideoBitRate\s*\(/, "videoBitRate")
-# Property videoCodec (string)
-property_reader("QMediaResource", /::videoCodec\s*\(/, "videoCodec")
-property_writer("QMediaResource", /::setVideoCodec\s*\(/, "videoCodec")
# Property activeAction (QAction_Native *)
property_reader("QMenu", /::activeAction\s*\(/, "activeAction")
property_writer("QMenu", /::setActiveAction\s*\(/, "activeAction")
@@ -13237,345 +13809,6 @@ property_writer("QMessageBox", /::setDefaultButton\s*\(/, "defaultButton")
# Property escapeButton (QAbstractButton_Native *)
property_reader("QMessageBox", /::escapeButton\s*\(/, "escapeButton")
property_writer("QMessageBox", /::setEscapeButton\s*\(/, "escapeButton")
-# Property colorData (variant)
-property_reader("QMimeData", /::colorData\s*\(/, "colorData")
-property_writer("QMimeData", /::setColorData\s*\(/, "colorData")
-# Property imageData (variant)
-property_reader("QMimeData", /::imageData\s*\(/, "imageData")
-property_writer("QMimeData", /::setImageData\s*\(/, "imageData")
-# Property backgroundColor (QColor)
-property_reader("QMovie", /::backgroundColor\s*\(/, "backgroundColor")
-property_writer("QMovie", /::setBackgroundColor\s*\(/, "backgroundColor")
-# Property device (QIODevice *)
-property_reader("QMovie", /::device\s*\(/, "device")
-property_writer("QMovie", /::setDevice\s*\(/, "device")
-# Property fileName (string)
-property_reader("QMovie", /::fileName\s*\(/, "fileName")
-property_writer("QMovie", /::setFileName\s*\(/, "fileName")
-# Property format (string)
-property_reader("QMovie", /::format\s*\(/, "format")
-property_writer("QMovie", /::setFormat\s*\(/, "format")
-# Property scaledSize (QSize)
-property_reader("QMovie", /::scaledSize\s*\(/, "scaledSize")
-property_writer("QMovie", /::setScaledSize\s*\(/, "scaledSize")
-# Property cache (QAbstractNetworkCache_Native *)
-property_reader("QNetworkAccessManager", /::cache\s*\(/, "cache")
-property_writer("QNetworkAccessManager", /::setCache\s*\(/, "cache")
-# Property configuration (QNetworkConfiguration)
-property_reader("QNetworkAccessManager", /::configuration\s*\(/, "configuration")
-property_writer("QNetworkAccessManager", /::setConfiguration\s*\(/, "configuration")
-# Property cookieJar (QNetworkCookieJar_Native *)
-property_reader("QNetworkAccessManager", /::cookieJar\s*\(/, "cookieJar")
-property_writer("QNetworkAccessManager", /::setCookieJar\s*\(/, "cookieJar")
-# Property proxy (QNetworkProxy)
-property_reader("QNetworkAccessManager", /::proxy\s*\(/, "proxy")
-property_writer("QNetworkAccessManager", /::setProxy\s*\(/, "proxy")
-# Property proxyFactory (QNetworkProxyFactory_Native *)
-property_reader("QNetworkAccessManager", /::proxyFactory\s*\(/, "proxyFactory")
-property_writer("QNetworkAccessManager", /::setProxyFactory\s*\(/, "proxyFactory")
-# Property broadcast (QHostAddress)
-property_reader("QNetworkAddressEntry", /::broadcast\s*\(/, "broadcast")
-property_writer("QNetworkAddressEntry", /::setBroadcast\s*\(/, "broadcast")
-# Property ip (QHostAddress)
-property_reader("QNetworkAddressEntry", /::ip\s*\(/, "ip")
-property_writer("QNetworkAddressEntry", /::setIp\s*\(/, "ip")
-# Property netmask (QHostAddress)
-property_reader("QNetworkAddressEntry", /::netmask\s*\(/, "netmask")
-property_writer("QNetworkAddressEntry", /::setNetmask\s*\(/, "netmask")
-# Property prefixLength (int)
-property_reader("QNetworkAddressEntry", /::prefixLength\s*\(/, "prefixLength")
-property_writer("QNetworkAddressEntry", /::setPrefixLength\s*\(/, "prefixLength")
-# Property expirationDate (QDateTime)
-property_reader("QNetworkCacheMetaData", /::expirationDate\s*\(/, "expirationDate")
-property_writer("QNetworkCacheMetaData", /::setExpirationDate\s*\(/, "expirationDate")
-# Property lastModified (QDateTime)
-property_reader("QNetworkCacheMetaData", /::lastModified\s*\(/, "lastModified")
-property_writer("QNetworkCacheMetaData", /::setLastModified\s*\(/, "lastModified")
-# Property rawHeaders (QPair_QByteArray_QByteArray[])
-property_reader("QNetworkCacheMetaData", /::rawHeaders\s*\(/, "rawHeaders")
-property_writer("QNetworkCacheMetaData", /::setRawHeaders\s*\(/, "rawHeaders")
-# Property saveToDisk (bool)
-property_reader("QNetworkCacheMetaData", /::saveToDisk\s*\(/, "saveToDisk")
-property_writer("QNetworkCacheMetaData", /::setSaveToDisk\s*\(/, "saveToDisk")
-# Property url (QUrl)
-property_reader("QNetworkCacheMetaData", /::url\s*\(/, "url")
-property_writer("QNetworkCacheMetaData", /::setUrl\s*\(/, "url")
-# Property domain (string)
-property_reader("QNetworkCookie", /::domain\s*\(/, "domain")
-property_writer("QNetworkCookie", /::setDomain\s*\(/, "domain")
-# Property expirationDate (QDateTime)
-property_reader("QNetworkCookie", /::expirationDate\s*\(/, "expirationDate")
-property_writer("QNetworkCookie", /::setExpirationDate\s*\(/, "expirationDate")
-# Property httpOnly (bool)
-property_reader("QNetworkCookie", /::isHttpOnly\s*\(/, "httpOnly")
-property_writer("QNetworkCookie", /::setHttpOnly\s*\(/, "httpOnly")
-# Property name (string)
-property_reader("QNetworkCookie", /::name\s*\(/, "name")
-property_writer("QNetworkCookie", /::setName\s*\(/, "name")
-# Property path (string)
-property_reader("QNetworkCookie", /::path\s*\(/, "path")
-property_writer("QNetworkCookie", /::setPath\s*\(/, "path")
-# Property secure (bool)
-property_reader("QNetworkCookie", /::isSecure\s*\(/, "secure")
-property_writer("QNetworkCookie", /::setSecure\s*\(/, "secure")
-# Property value (string)
-property_reader("QNetworkCookie", /::value\s*\(/, "value")
-property_writer("QNetworkCookie", /::setValue\s*\(/, "value")
-# Property cacheDirectory (string)
-property_reader("QNetworkDiskCache", /::cacheDirectory\s*\(/, "cacheDirectory")
-property_writer("QNetworkDiskCache", /::setCacheDirectory\s*\(/, "cacheDirectory")
-# Property maximumCacheSize (long long)
-property_reader("QNetworkDiskCache", /::maximumCacheSize\s*\(/, "maximumCacheSize")
-property_writer("QNetworkDiskCache", /::setMaximumCacheSize\s*\(/, "maximumCacheSize")
-# Property applicationProxy (QNetworkProxy)
-property_reader("QNetworkProxy", /::applicationProxy\s*\(/, "applicationProxy")
-property_writer("QNetworkProxy", /::setApplicationProxy\s*\(/, "applicationProxy")
-# Property capabilities (QNetworkProxy_QFlags_Capability)
-property_reader("QNetworkProxy", /::capabilities\s*\(/, "capabilities")
-property_writer("QNetworkProxy", /::setCapabilities\s*\(/, "capabilities")
-# Property hostName (string)
-property_reader("QNetworkProxy", /::hostName\s*\(/, "hostName")
-property_writer("QNetworkProxy", /::setHostName\s*\(/, "hostName")
-# Property password (string)
-property_reader("QNetworkProxy", /::password\s*\(/, "password")
-property_writer("QNetworkProxy", /::setPassword\s*\(/, "password")
-# Property port (unsigned short)
-property_reader("QNetworkProxy", /::port\s*\(/, "port")
-property_writer("QNetworkProxy", /::setPort\s*\(/, "port")
-# Property type (QNetworkProxy_ProxyType)
-property_reader("QNetworkProxy", /::type\s*\(/, "type")
-property_writer("QNetworkProxy", /::setType\s*\(/, "type")
-# Property user (string)
-property_reader("QNetworkProxy", /::user\s*\(/, "user")
-property_writer("QNetworkProxy", /::setUser\s*\(/, "user")
-# Property localPort (int)
-property_reader("QNetworkProxyQuery", /::localPort\s*\(/, "localPort")
-property_writer("QNetworkProxyQuery", /::setLocalPort\s*\(/, "localPort")
-# Property networkConfiguration (QNetworkConfiguration)
-property_reader("QNetworkProxyQuery", /::networkConfiguration\s*\(/, "networkConfiguration")
-property_writer("QNetworkProxyQuery", /::setNetworkConfiguration\s*\(/, "networkConfiguration")
-# Property peerHostName (string)
-property_reader("QNetworkProxyQuery", /::peerHostName\s*\(/, "peerHostName")
-property_writer("QNetworkProxyQuery", /::setPeerHostName\s*\(/, "peerHostName")
-# Property peerPort (int)
-property_reader("QNetworkProxyQuery", /::peerPort\s*\(/, "peerPort")
-property_writer("QNetworkProxyQuery", /::setPeerPort\s*\(/, "peerPort")
-# Property protocolTag (string)
-property_reader("QNetworkProxyQuery", /::protocolTag\s*\(/, "protocolTag")
-property_writer("QNetworkProxyQuery", /::setProtocolTag\s*\(/, "protocolTag")
-# Property queryType (QNetworkProxyQuery_QueryType)
-property_reader("QNetworkProxyQuery", /::queryType\s*\(/, "queryType")
-property_writer("QNetworkProxyQuery", /::setQueryType\s*\(/, "queryType")
-# Property url (QUrl)
-property_reader("QNetworkProxyQuery", /::url\s*\(/, "url")
-property_writer("QNetworkProxyQuery", /::setUrl\s*\(/, "url")
-# Property readBufferSize (long long)
-property_reader("QNetworkReply", /::readBufferSize\s*\(/, "readBufferSize")
-property_writer("QNetworkReply", /::setReadBufferSize\s*\(/, "readBufferSize")
-# Property sslConfiguration (QSslConfiguration)
-property_reader("QNetworkReply", /::sslConfiguration\s*\(/, "sslConfiguration")
-property_writer("QNetworkReply", /::setSslConfiguration\s*\(/, "sslConfiguration")
-# Property originatingObject (QObject_Native *)
-property_reader("QNetworkRequest", /::originatingObject\s*\(/, "originatingObject")
-property_writer("QNetworkRequest", /::setOriginatingObject\s*\(/, "originatingObject")
-# Property priority (QNetworkRequest_Priority)
-property_reader("QNetworkRequest", /::priority\s*\(/, "priority")
-property_writer("QNetworkRequest", /::setPriority\s*\(/, "priority")
-# Property sslConfiguration (QSslConfiguration)
-property_reader("QNetworkRequest", /::sslConfiguration\s*\(/, "sslConfiguration")
-property_writer("QNetworkRequest", /::setSslConfiguration\s*\(/, "sslConfiguration")
-# Property url (QUrl)
-property_reader("QNetworkRequest", /::url\s*\(/, "url")
-property_writer("QNetworkRequest", /::setUrl\s*\(/, "url")
-# Property objectName (string)
-property_reader("QObject", /::objectName\s*\(/, "objectName")
-property_writer("QObject", /::setObjectName\s*\(/, "objectName")
-# Property parent (QObject_Native *)
-property_reader("QObject", /::parent\s*\(/, "parent")
-property_writer("QObject", /::setParent\s*\(/, "parent")
-# Property format (QSurfaceFormat)
-property_reader("QOffscreenSurface", /::format\s*\(/, "format")
-property_writer("QOffscreenSurface", /::setFormat\s*\(/, "format")
-# Property screen (QScreen_Native *)
-property_reader("QOffscreenSurface", /::screen\s*\(/, "screen")
-property_writer("QOffscreenSurface", /::setScreen\s*\(/, "screen")
-# Property minimumMargins (QMarginsF)
-property_reader("QPageLayout", /::minimumMargins\s*\(/, "minimumMargins")
-property_writer("QPageLayout", /::setMinimumMargins\s*\(/, "minimumMargins")
-# Property mode (QPageLayout_Mode)
-property_reader("QPageLayout", /::mode\s*\(/, "mode")
-property_writer("QPageLayout", /::setMode\s*\(/, "mode")
-# Property orientation (QPageLayout_Orientation)
-property_reader("QPageLayout", /::orientation\s*\(/, "orientation")
-property_writer("QPageLayout", /::setOrientation\s*\(/, "orientation")
-# Property pageSize (QPageSize)
-property_reader("QPageLayout", /::pageSize\s*\(/, "pageSize")
-property_writer("QPageLayout", /::setPageSize\s*\(/, "pageSize")
-# Property units (QPageLayout_Unit)
-property_reader("QPageLayout", /::units\s*\(/, "units")
-property_writer("QPageLayout", /::setUnits\s*\(/, "units")
-# Property margins (QPagedPaintDevice_Margins)
-property_reader("QPagedPaintDevice", /::margins\s*\(/, "margins")
-property_writer("QPagedPaintDevice", /::setMargins\s*\(/, "margins")
-# Property pageSize (QPagedPaintDevice_PageSize)
-property_reader("QPagedPaintDevice", /::pageSize\s*\(/, "pageSize")
-property_writer("QPagedPaintDevice", /::setPageSize\s*\(/, "pageSize")
-# Property pageSizeMM (QSizeF)
-property_reader("QPagedPaintDevice", /::pageSizeMM\s*\(/, "pageSizeMM")
-property_writer("QPagedPaintDevice", /::setPageSizeMM\s*\(/, "pageSizeMM")
-# Property active (bool)
-property_reader("QPaintEngine", /::isActive\s*\(/, "active")
-property_writer("QPaintEngine", /::setActive\s*\(/, "active")
-# Property paintDevice (QPaintDevice_Native *)
-property_reader("QPaintEngine", /::paintDevice\s*\(/, "paintDevice")
-property_writer("QPaintEngine", /::setPaintDevice\s*\(/, "paintDevice")
-# Property systemClip (QRegion)
-property_reader("QPaintEngine", /::systemClip\s*\(/, "systemClip")
-property_writer("QPaintEngine", /::setSystemClip\s*\(/, "systemClip")
-# Property systemRect (QRect)
-property_reader("QPaintEngine", /::systemRect\s*\(/, "systemRect")
-property_writer("QPaintEngine", /::setSystemRect\s*\(/, "systemRect")
-# Property background (QBrush)
-property_reader("QPainter", /::background\s*\(/, "background")
-property_writer("QPainter", /::setBackground\s*\(/, "background")
-# Property backgroundMode (Qt_BGMode)
-property_reader("QPainter", /::backgroundMode\s*\(/, "backgroundMode")
-property_writer("QPainter", /::setBackgroundMode\s*\(/, "backgroundMode")
-# Property brush (QBrush)
-property_reader("QPainter", /::brush\s*\(/, "brush")
-property_writer("QPainter", /::setBrush\s*\(/, "brush")
-# Property brushOrigin (QPoint)
-property_reader("QPainter", /::brushOrigin\s*\(/, "brushOrigin")
-property_writer("QPainter", /::setBrushOrigin\s*\(/, "brushOrigin")
-# Property clipPath (QPainterPath)
-property_reader("QPainter", /::clipPath\s*\(/, "clipPath")
-property_writer("QPainter", /::setClipPath\s*\(/, "clipPath")
-# Property clipRegion (QRegion)
-property_reader("QPainter", /::clipRegion\s*\(/, "clipRegion")
-property_writer("QPainter", /::setClipRegion\s*\(/, "clipRegion")
-# Property clipping (bool)
-property_reader("QPainter", /::hasClipping\s*\(/, "clipping")
-property_writer("QPainter", /::setClipping\s*\(/, "clipping")
-# Property compositionMode (QPainter_CompositionMode)
-property_reader("QPainter", /::compositionMode\s*\(/, "compositionMode")
-property_writer("QPainter", /::setCompositionMode\s*\(/, "compositionMode")
-# Property font (QFont)
-property_reader("QPainter", /::font\s*\(/, "font")
-property_writer("QPainter", /::setFont\s*\(/, "font")
-# Property layoutDirection (Qt_LayoutDirection)
-property_reader("QPainter", /::layoutDirection\s*\(/, "layoutDirection")
-property_writer("QPainter", /::setLayoutDirection\s*\(/, "layoutDirection")
-# Property matrix (QMatrix)
-property_reader("QPainter", /::matrix\s*\(/, "matrix")
-property_writer("QPainter", /::setMatrix\s*\(/, "matrix")
-# Property matrixEnabled (bool)
-property_reader("QPainter", /::matrixEnabled\s*\(/, "matrixEnabled")
-property_writer("QPainter", /::setMatrixEnabled\s*\(/, "matrixEnabled")
-# Property opacity (double)
-property_reader("QPainter", /::opacity\s*\(/, "opacity")
-property_writer("QPainter", /::setOpacity\s*\(/, "opacity")
-# Property renderHints (QPainter_QFlags_RenderHint)
-property_reader("QPainter", /::renderHints\s*\(/, "renderHints")
-property_writer("QPainter", /::setRenderHints\s*\(/, "renderHints")
-# Property transform (QTransform)
-property_reader("QPainter", /::transform\s*\(/, "transform")
-property_writer("QPainter", /::setTransform\s*\(/, "transform")
-# Property viewTransformEnabled (bool)
-property_reader("QPainter", /::viewTransformEnabled\s*\(/, "viewTransformEnabled")
-property_writer("QPainter", /::setViewTransformEnabled\s*\(/, "viewTransformEnabled")
-# Property viewport (QRect)
-property_reader("QPainter", /::viewport\s*\(/, "viewport")
-property_writer("QPainter", /::setViewport\s*\(/, "viewport")
-# Property window (QRect)
-property_reader("QPainter", /::window\s*\(/, "window")
-property_writer("QPainter", /::setWindow\s*\(/, "window")
-# Property worldMatrix (QMatrix)
-property_reader("QPainter", /::worldMatrix\s*\(/, "worldMatrix")
-property_writer("QPainter", /::setWorldMatrix\s*\(/, "worldMatrix")
-# Property worldMatrixEnabled (bool)
-property_reader("QPainter", /::worldMatrixEnabled\s*\(/, "worldMatrixEnabled")
-property_writer("QPainter", /::setWorldMatrixEnabled\s*\(/, "worldMatrixEnabled")
-# Property worldTransform (QTransform)
-property_reader("QPainter", /::worldTransform\s*\(/, "worldTransform")
-property_writer("QPainter", /::setWorldTransform\s*\(/, "worldTransform")
-# Property fillRule (Qt_FillRule)
-property_reader("QPainterPath", /::fillRule\s*\(/, "fillRule")
-property_writer("QPainterPath", /::setFillRule\s*\(/, "fillRule")
-# Property capStyle (Qt_PenCapStyle)
-property_reader("QPainterPathStroker", /::capStyle\s*\(/, "capStyle")
-property_writer("QPainterPathStroker", /::setCapStyle\s*\(/, "capStyle")
-# Property curveThreshold (double)
-property_reader("QPainterPathStroker", /::curveThreshold\s*\(/, "curveThreshold")
-property_writer("QPainterPathStroker", /::setCurveThreshold\s*\(/, "curveThreshold")
-# Property dashOffset (double)
-property_reader("QPainterPathStroker", /::dashOffset\s*\(/, "dashOffset")
-property_writer("QPainterPathStroker", /::setDashOffset\s*\(/, "dashOffset")
-# Property joinStyle (Qt_PenJoinStyle)
-property_reader("QPainterPathStroker", /::joinStyle\s*\(/, "joinStyle")
-property_writer("QPainterPathStroker", /::setJoinStyle\s*\(/, "joinStyle")
-# Property miterLimit (double)
-property_reader("QPainterPathStroker", /::miterLimit\s*\(/, "miterLimit")
-property_writer("QPainterPathStroker", /::setMiterLimit\s*\(/, "miterLimit")
-# Property width (double)
-property_reader("QPainterPathStroker", /::width\s*\(/, "width")
-property_writer("QPainterPathStroker", /::setWidth\s*\(/, "width")
-# Property currentColorGroup (QPalette_ColorGroup)
-property_reader("QPalette", /::currentColorGroup\s*\(/, "currentColorGroup")
-property_writer("QPalette", /::setCurrentColorGroup\s*\(/, "currentColorGroup")
-# Property creator (string)
-property_reader("QPdfWriter", /::creator\s*\(/, "creator")
-property_writer("QPdfWriter", /::setCreator\s*\(/, "creator")
-# Property resolution (int)
-property_reader("QPdfWriter", /::resolution\s*\(/, "resolution")
-property_writer("QPdfWriter", /::setResolution\s*\(/, "resolution")
-# Property title (string)
-property_reader("QPdfWriter", /::title\s*\(/, "title")
-property_writer("QPdfWriter", /::setTitle\s*\(/, "title")
-# Property brush (QBrush)
-property_reader("QPen", /::brush\s*\(/, "brush")
-property_writer("QPen", /::setBrush\s*\(/, "brush")
-# Property capStyle (Qt_PenCapStyle)
-property_reader("QPen", /::capStyle\s*\(/, "capStyle")
-property_writer("QPen", /::setCapStyle\s*\(/, "capStyle")
-# Property color (QColor)
-property_reader("QPen", /::color\s*\(/, "color")
-property_writer("QPen", /::setColor\s*\(/, "color")
-# Property cosmetic (bool)
-property_reader("QPen", /::isCosmetic\s*\(/, "cosmetic")
-property_writer("QPen", /::setCosmetic\s*\(/, "cosmetic")
-# Property dashOffset (double)
-property_reader("QPen", /::dashOffset\s*\(/, "dashOffset")
-property_writer("QPen", /::setDashOffset\s*\(/, "dashOffset")
-# Property dashPattern (double[])
-property_reader("QPen", /::dashPattern\s*\(/, "dashPattern")
-property_writer("QPen", /::setDashPattern\s*\(/, "dashPattern")
-# Property joinStyle (Qt_PenJoinStyle)
-property_reader("QPen", /::joinStyle\s*\(/, "joinStyle")
-property_writer("QPen", /::setJoinStyle\s*\(/, "joinStyle")
-# Property miterLimit (double)
-property_reader("QPen", /::miterLimit\s*\(/, "miterLimit")
-property_writer("QPen", /::setMiterLimit\s*\(/, "miterLimit")
-# Property style (Qt_PenStyle)
-property_reader("QPen", /::style\s*\(/, "style")
-property_writer("QPen", /::setStyle\s*\(/, "style")
-# Property width (int)
-property_reader("QPen", /::width\s*\(/, "width")
-property_writer("QPen", /::setWidth\s*\(/, "width")
-# Property widthF (double)
-property_reader("QPen", /::widthF\s*\(/, "widthF")
-property_writer("QPen", /::setWidthF\s*\(/, "widthF")
-# Property boundingRect (QRect)
-property_reader("QPicture", /::boundingRect\s*\(/, "boundingRect")
-property_writer("QPicture", /::setBoundingRect\s*\(/, "boundingRect")
-# Property devicePixelRatio (double)
-property_reader("QPixmap", /::devicePixelRatio\s*\(/, "devicePixelRatio")
-property_writer("QPixmap", /::setDevicePixelRatio\s*\(/, "devicePixelRatio")
-# Property mask (QBitmap_Native)
-property_reader("QPixmap", /::mask\s*\(/, "mask")
-property_writer("QPixmap", /::setMask\s*\(/, "mask")
-# Property cacheLimit (int)
-property_reader("QPixmapCache", /::cacheLimit\s*\(/, "cacheLimit")
-property_writer("QPixmapCache", /::setCacheLimit\s*\(/, "cacheLimit")
# Property currentCharFormat (QTextCharFormat)
property_reader("QPlainTextEdit", /::currentCharFormat\s*\(/, "currentCharFormat")
property_writer("QPlainTextEdit", /::setCurrentCharFormat\s*\(/, "currentCharFormat")
@@ -13591,351 +13824,12 @@ property_writer("QPlainTextEdit", /::setTextCursor\s*\(/, "textCursor")
# Property wordWrapMode (QTextOption_WrapMode)
property_reader("QPlainTextEdit", /::wordWrapMode\s*\(/, "wordWrapMode")
property_writer("QPlainTextEdit", /::setWordWrapMode\s*\(/, "wordWrapMode")
-# Property x (int)
-property_reader("QPoint", /::x\s*\(/, "x")
-property_writer("QPoint", /::setX\s*\(/, "x")
-# Property y (int)
-property_reader("QPoint", /::y\s*\(/, "y")
-property_writer("QPoint", /::setY\s*\(/, "y")
-# Property x (double)
-property_reader("QPointF", /::x\s*\(/, "x")
-property_writer("QPointF", /::setX\s*\(/, "x")
-# Property y (double)
-property_reader("QPointF", /::y\s*\(/, "y")
-property_writer("QPointF", /::setY\s*\(/, "y")
-# Property currentPage (int)
-property_reader("QPrintPreviewWidget", /::currentPage\s*\(/, "currentPage")
-property_writer("QPrintPreviewWidget", /::setCurrentPage\s*\(/, "currentPage")
-# Property orientation (QPrinter_Orientation)
-property_reader("QPrintPreviewWidget", /::orientation\s*\(/, "orientation")
-property_writer("QPrintPreviewWidget", /::setOrientation\s*\(/, "orientation")
-# Property viewMode (QPrintPreviewWidget_ViewMode)
-property_reader("QPrintPreviewWidget", /::viewMode\s*\(/, "viewMode")
-property_writer("QPrintPreviewWidget", /::setViewMode\s*\(/, "viewMode")
-# Property zoomFactor (double)
-property_reader("QPrintPreviewWidget", /::zoomFactor\s*\(/, "zoomFactor")
-property_writer("QPrintPreviewWidget", /::setZoomFactor\s*\(/, "zoomFactor")
-# Property zoomMode (QPrintPreviewWidget_ZoomMode)
-property_reader("QPrintPreviewWidget", /::zoomMode\s*\(/, "zoomMode")
-property_writer("QPrintPreviewWidget", /::setZoomMode\s*\(/, "zoomMode")
-# Property collateCopies (bool)
-property_reader("QPrinter", /::collateCopies\s*\(/, "collateCopies")
-property_writer("QPrinter", /::setCollateCopies\s*\(/, "collateCopies")
-# Property colorMode (QPrinter_ColorMode)
-property_reader("QPrinter", /::colorMode\s*\(/, "colorMode")
-property_writer("QPrinter", /::setColorMode\s*\(/, "colorMode")
-# Property copyCount (int)
-property_reader("QPrinter", /::copyCount\s*\(/, "copyCount")
-property_writer("QPrinter", /::setCopyCount\s*\(/, "copyCount")
-# Property creator (string)
-property_reader("QPrinter", /::creator\s*\(/, "creator")
-property_writer("QPrinter", /::setCreator\s*\(/, "creator")
-# Property docName (string)
-property_reader("QPrinter", /::docName\s*\(/, "docName")
-property_writer("QPrinter", /::setDocName\s*\(/, "docName")
-# Property doubleSidedPrinting (bool)
-property_reader("QPrinter", /::doubleSidedPrinting\s*\(/, "doubleSidedPrinting")
-property_writer("QPrinter", /::setDoubleSidedPrinting\s*\(/, "doubleSidedPrinting")
-# Property duplex (QPrinter_DuplexMode)
-property_reader("QPrinter", /::duplex\s*\(/, "duplex")
-property_writer("QPrinter", /::setDuplex\s*\(/, "duplex")
-# Property fontEmbeddingEnabled (bool)
-property_reader("QPrinter", /::fontEmbeddingEnabled\s*\(/, "fontEmbeddingEnabled")
-property_writer("QPrinter", /::setFontEmbeddingEnabled\s*\(/, "fontEmbeddingEnabled")
-# Property fullPage (bool)
-property_reader("QPrinter", /::fullPage\s*\(/, "fullPage")
-property_writer("QPrinter", /::setFullPage\s*\(/, "fullPage")
-# Property margins (QPagedPaintDevice_Margins)
-property_reader("QPagedPaintDevice", /::margins\s*\(/, "margins")
-property_writer("QPrinter", /::setMargins\s*\(/, "margins")
-# Property numCopies (int)
-property_reader("QPrinter", /::numCopies\s*\(/, "numCopies")
-property_writer("QPrinter", /::setNumCopies\s*\(/, "numCopies")
-# Property orientation (QPrinter_Orientation)
-property_reader("QPrinter", /::orientation\s*\(/, "orientation")
-property_writer("QPrinter", /::setOrientation\s*\(/, "orientation")
-# Property outputFileName (string)
-property_reader("QPrinter", /::outputFileName\s*\(/, "outputFileName")
-property_writer("QPrinter", /::setOutputFileName\s*\(/, "outputFileName")
-# Property outputFormat (QPrinter_OutputFormat)
-property_reader("QPrinter", /::outputFormat\s*\(/, "outputFormat")
-property_writer("QPrinter", /::setOutputFormat\s*\(/, "outputFormat")
-# Property pageOrder (QPrinter_PageOrder)
-property_reader("QPrinter", /::pageOrder\s*\(/, "pageOrder")
-property_writer("QPrinter", /::setPageOrder\s*\(/, "pageOrder")
-# Property pageSize (QPagedPaintDevice_PageSize)
-property_reader("QPrinter", /::pageSize\s*\(/, "pageSize")
-property_writer("QPrinter", /::setPageSize\s*\(/, "pageSize")
-# Property pageSizeMM (QSizeF)
-property_reader("QPagedPaintDevice", /::pageSizeMM\s*\(/, "pageSizeMM")
-property_writer("QPrinter", /::setPageSizeMM\s*\(/, "pageSizeMM")
-# Property paperName (string)
-property_reader("QPrinter", /::paperName\s*\(/, "paperName")
-property_writer("QPrinter", /::setPaperName\s*\(/, "paperName")
-# Property paperSize (QPagedPaintDevice_PageSize)
-property_reader("QPrinter", /::paperSize\s*\(/, "paperSize")
-property_writer("QPrinter", /::setPaperSize\s*\(/, "paperSize")
-# Property paperSource (QPrinter_PaperSource)
-property_reader("QPrinter", /::paperSource\s*\(/, "paperSource")
-property_writer("QPrinter", /::setPaperSource\s*\(/, "paperSource")
-# Property printProgram (string)
-property_reader("QPrinter", /::printProgram\s*\(/, "printProgram")
-property_writer("QPrinter", /::setPrintProgram\s*\(/, "printProgram")
-# Property printRange (QPrinter_PrintRange)
-property_reader("QPrinter", /::printRange\s*\(/, "printRange")
-property_writer("QPrinter", /::setPrintRange\s*\(/, "printRange")
-# Property printerName (string)
-property_reader("QPrinter", /::printerName\s*\(/, "printerName")
-property_writer("QPrinter", /::setPrinterName\s*\(/, "printerName")
-# Property resolution (int)
-property_reader("QPrinter", /::resolution\s*\(/, "resolution")
-property_writer("QPrinter", /::setResolution\s*\(/, "resolution")
-# Property winPageSize (int)
-property_reader("QPrinter", /::winPageSize\s*\(/, "winPageSize")
-property_writer("QPrinter", /::setWinPageSize\s*\(/, "winPageSize")
-# Property arguments (string[])
-property_reader("QProcess", /::arguments\s*\(/, "arguments")
-property_writer("QProcess", /::setArguments\s*\(/, "arguments")
-# Property environment (string[])
-property_reader("QProcess", /::environment\s*\(/, "environment")
-property_writer("QProcess", /::setEnvironment\s*\(/, "environment")
-# Property inputChannelMode (QProcess_InputChannelMode)
-property_reader("QProcess", /::inputChannelMode\s*\(/, "inputChannelMode")
-property_writer("QProcess", /::setInputChannelMode\s*\(/, "inputChannelMode")
-# Property processChannelMode (QProcess_ProcessChannelMode)
-property_reader("QProcess", /::processChannelMode\s*\(/, "processChannelMode")
-property_writer("QProcess", /::setProcessChannelMode\s*\(/, "processChannelMode")
-# Property processEnvironment (QProcessEnvironment)
-property_reader("QProcess", /::processEnvironment\s*\(/, "processEnvironment")
-property_writer("QProcess", /::setProcessEnvironment\s*\(/, "processEnvironment")
-# Property program (string)
-property_reader("QProcess", /::program\s*\(/, "program")
-property_writer("QProcess", /::setProgram\s*\(/, "program")
-# Property readChannel (QProcess_ProcessChannel)
-property_reader("QProcess", /::readChannel\s*\(/, "readChannel")
-property_writer("QProcess", /::setReadChannel\s*\(/, "readChannel")
-# Property readChannelMode (QProcess_ProcessChannelMode)
-property_reader("QProcess", /::readChannelMode\s*\(/, "readChannelMode")
-property_writer("QProcess", /::setReadChannelMode\s*\(/, "readChannelMode")
-# Property workingDirectory (string)
-property_reader("QProcess", /::workingDirectory\s*\(/, "workingDirectory")
-property_writer("QProcess", /::setWorkingDirectory\s*\(/, "workingDirectory")
# Property menu (QMenu_Native *)
property_reader("QPushButton", /::menu\s*\(/, "menu")
property_writer("QPushButton", /::setMenu\s*\(/, "menu")
-# Property scalar (float)
-property_reader("QQuaternion", /::scalar\s*\(/, "scalar")
-property_writer("QQuaternion", /::setScalar\s*\(/, "scalar")
-# Property vector (QVector3D)
-property_reader("QQuaternion", /::vector\s*\(/, "vector")
-property_writer("QQuaternion", /::setVector\s*\(/, "vector")
-# Property x (float)
-property_reader("QQuaternion", /::x\s*\(/, "x")
-property_writer("QQuaternion", /::setX\s*\(/, "x")
-# Property y (float)
-property_reader("QQuaternion", /::y\s*\(/, "y")
-property_writer("QQuaternion", /::setY\s*\(/, "y")
-# Property z (float)
-property_reader("QQuaternion", /::z\s*\(/, "z")
-property_writer("QQuaternion", /::setZ\s*\(/, "z")
-# Property center (QPointF)
-property_reader("QRadialGradient", /::center\s*\(/, "center")
-property_writer("QRadialGradient", /::setCenter\s*\(/, "center")
-# Property centerRadius (double)
-property_reader("QRadialGradient", /::centerRadius\s*\(/, "centerRadius")
-property_writer("QRadialGradient", /::setCenterRadius\s*\(/, "centerRadius")
-# Property focalPoint (QPointF)
-property_reader("QRadialGradient", /::focalPoint\s*\(/, "focalPoint")
-property_writer("QRadialGradient", /::setFocalPoint\s*\(/, "focalPoint")
-# Property focalRadius (double)
-property_reader("QRadialGradient", /::focalRadius\s*\(/, "focalRadius")
-property_writer("QRadialGradient", /::setFocalRadius\s*\(/, "focalRadius")
-# Property radius (double)
-property_reader("QRadialGradient", /::radius\s*\(/, "radius")
-property_writer("QRadialGradient", /::setRadius\s*\(/, "radius")
-# Property alternativeFrequenciesEnabled (bool)
-property_reader("QRadioDataControl", /::isAlternativeFrequenciesEnabled\s*\(/, "alternativeFrequenciesEnabled")
-property_writer("QRadioDataControl", /::setAlternativeFrequenciesEnabled\s*\(/, "alternativeFrequenciesEnabled")
-# Property band (QRadioTuner_Band)
-property_reader("QRadioTunerControl", /::band\s*\(/, "band")
-property_writer("QRadioTunerControl", /::setBand\s*\(/, "band")
-# Property frequency (int)
-property_reader("QRadioTunerControl", /::frequency\s*\(/, "frequency")
-property_writer("QRadioTunerControl", /::setFrequency\s*\(/, "frequency")
-# Property muted (bool)
-property_reader("QRadioTunerControl", /::isMuted\s*\(/, "muted")
-property_writer("QRadioTunerControl", /::setMuted\s*\(/, "muted")
-# Property stereoMode (QRadioTuner_StereoMode)
-property_reader("QRadioTunerControl", /::stereoMode\s*\(/, "stereoMode")
-property_writer("QRadioTunerControl", /::setStereoMode\s*\(/, "stereoMode")
-# Property volume (int)
-property_reader("QRadioTunerControl", /::volume\s*\(/, "volume")
-property_writer("QRadioTunerControl", /::setVolume\s*\(/, "volume")
-# Property pixelSize (double)
-property_reader("QRawFont", /::pixelSize\s*\(/, "pixelSize")
-property_writer("QRawFont", /::setPixelSize\s*\(/, "pixelSize")
-# Property bottom (int)
-property_reader("QRect", /::bottom\s*\(/, "bottom")
-property_writer("QRect", /::setBottom\s*\(/, "bottom")
-# Property bottomLeft (QPoint)
-property_reader("QRect", /::bottomLeft\s*\(/, "bottomLeft")
-property_writer("QRect", /::setBottomLeft\s*\(/, "bottomLeft")
-# Property bottomRight (QPoint)
-property_reader("QRect", /::bottomRight\s*\(/, "bottomRight")
-property_writer("QRect", /::setBottomRight\s*\(/, "bottomRight")
-# Property height (int)
-property_reader("QRect", /::height\s*\(/, "height")
-property_writer("QRect", /::setHeight\s*\(/, "height")
-# Property left (int)
-property_reader("QRect", /::left\s*\(/, "left")
-property_writer("QRect", /::setLeft\s*\(/, "left")
-# Property right (int)
-property_reader("QRect", /::right\s*\(/, "right")
-property_writer("QRect", /::setRight\s*\(/, "right")
-# Property size (QSize)
-property_reader("QRect", /::size\s*\(/, "size")
-property_writer("QRect", /::setSize\s*\(/, "size")
-# Property top (int)
-property_reader("QRect", /::top\s*\(/, "top")
-property_writer("QRect", /::setTop\s*\(/, "top")
-# Property topLeft (QPoint)
-property_reader("QRect", /::topLeft\s*\(/, "topLeft")
-property_writer("QRect", /::setTopLeft\s*\(/, "topLeft")
-# Property topRight (QPoint)
-property_reader("QRect", /::topRight\s*\(/, "topRight")
-property_writer("QRect", /::setTopRight\s*\(/, "topRight")
-# Property width (int)
-property_reader("QRect", /::width\s*\(/, "width")
-property_writer("QRect", /::setWidth\s*\(/, "width")
-# Property x (int)
-property_reader("QRect", /::x\s*\(/, "x")
-property_writer("QRect", /::setX\s*\(/, "x")
-# Property y (int)
-property_reader("QRect", /::y\s*\(/, "y")
-property_writer("QRect", /::setY\s*\(/, "y")
-# Property bottom (double)
-property_reader("QRectF", /::bottom\s*\(/, "bottom")
-property_writer("QRectF", /::setBottom\s*\(/, "bottom")
-# Property bottomLeft (QPointF)
-property_reader("QRectF", /::bottomLeft\s*\(/, "bottomLeft")
-property_writer("QRectF", /::setBottomLeft\s*\(/, "bottomLeft")
-# Property bottomRight (QPointF)
-property_reader("QRectF", /::bottomRight\s*\(/, "bottomRight")
-property_writer("QRectF", /::setBottomRight\s*\(/, "bottomRight")
-# Property height (double)
-property_reader("QRectF", /::height\s*\(/, "height")
-property_writer("QRectF", /::setHeight\s*\(/, "height")
-# Property left (double)
-property_reader("QRectF", /::left\s*\(/, "left")
-property_writer("QRectF", /::setLeft\s*\(/, "left")
-# Property right (double)
-property_reader("QRectF", /::right\s*\(/, "right")
-property_writer("QRectF", /::setRight\s*\(/, "right")
-# Property size (QSizeF)
-property_reader("QRectF", /::size\s*\(/, "size")
-property_writer("QRectF", /::setSize\s*\(/, "size")
-# Property top (double)
-property_reader("QRectF", /::top\s*\(/, "top")
-property_writer("QRectF", /::setTop\s*\(/, "top")
-# Property topLeft (QPointF)
-property_reader("QRectF", /::topLeft\s*\(/, "topLeft")
-property_writer("QRectF", /::setTopLeft\s*\(/, "topLeft")
-# Property topRight (QPointF)
-property_reader("QRectF", /::topRight\s*\(/, "topRight")
-property_writer("QRectF", /::setTopRight\s*\(/, "topRight")
-# Property width (double)
-property_reader("QRectF", /::width\s*\(/, "width")
-property_writer("QRectF", /::setWidth\s*\(/, "width")
-# Property x (double)
-property_reader("QRectF", /::x\s*\(/, "x")
-property_writer("QRectF", /::setX\s*\(/, "x")
-# Property y (double)
-property_reader("QRectF", /::y\s*\(/, "y")
-property_writer("QRectF", /::setY\s*\(/, "y")
-# Property caseSensitivity (Qt_CaseSensitivity)
-property_reader("QRegExp", /::caseSensitivity\s*\(/, "caseSensitivity")
-property_writer("QRegExp", /::setCaseSensitivity\s*\(/, "caseSensitivity")
-# Property minimal (bool)
-property_reader("QRegExp", /::isMinimal\s*\(/, "minimal")
-property_writer("QRegExp", /::setMinimal\s*\(/, "minimal")
-# Property pattern (string)
-property_reader("QRegExp", /::pattern\s*\(/, "pattern")
-property_writer("QRegExp", /::setPattern\s*\(/, "pattern")
-# Property patternSyntax (QRegExp_PatternSyntax)
-property_reader("QRegExp", /::patternSyntax\s*\(/, "patternSyntax")
-property_writer("QRegExp", /::setPatternSyntax\s*\(/, "patternSyntax")
-# Property rects (QRect[])
-property_reader("QRegion", /::rects\s*\(/, "rects")
-property_writer("QRegion", /::setRects\s*\(/, "rects")
-# Property pattern (string)
-property_reader("QRegularExpression", /::pattern\s*\(/, "pattern")
-property_writer("QRegularExpression", /::setPattern\s*\(/, "pattern")
-# Property patternOptions (QRegularExpression_QFlags_PatternOption)
-property_reader("QRegularExpression", /::patternOptions\s*\(/, "patternOptions")
-property_writer("QRegularExpression", /::setPatternOptions\s*\(/, "patternOptions")
-# Property fileName (string)
-property_reader("QResource", /::fileName\s*\(/, "fileName")
-property_writer("QResource", /::setFileName\s*\(/, "fileName")
-# Property locale (QLocale)
-property_reader("QResource", /::locale\s*\(/, "locale")
-property_writer("QResource", /::setLocale\s*\(/, "locale")
-# Property autoDelete (bool)
-property_reader("QRunnable", /::autoDelete\s*\(/, "autoDelete")
-property_writer("QRunnable", /::setAutoDelete\s*\(/, "autoDelete")
-# Property directWriteFallback (bool)
-property_reader("QSaveFile", /::directWriteFallback\s*\(/, "directWriteFallback")
-property_writer("QSaveFile", /::setDirectWriteFallback\s*\(/, "directWriteFallback")
-# Property fileName (string)
-property_reader("QSaveFile", /::fileName\s*\(/, "fileName")
-property_writer("QSaveFile", /::setFileName\s*\(/, "fileName")
-# Property orientationUpdateMask (Qt_QFlags_ScreenOrientation)
-property_reader("QScreen", /::orientationUpdateMask\s*\(/, "orientationUpdateMask")
-property_writer("QScreen", /::setOrientationUpdateMask\s*\(/, "orientationUpdateMask")
# Property widget (QWidget_Native *)
property_reader("QScrollArea", /::widget\s*\(/, "widget")
property_writer("QScrollArea", /::setWidget\s*\(/, "widget")
-# Property contentPos (QPointF)
-property_reader("QScrollPrepareEvent", /::contentPos\s*\(/, "contentPos")
-property_writer("QScrollPrepareEvent", /::setContentPos\s*\(/, "contentPos")
-# Property contentPosRange (QRectF)
-property_reader("QScrollPrepareEvent", /::contentPosRange\s*\(/, "contentPosRange")
-property_writer("QScrollPrepareEvent", /::setContentPosRange\s*\(/, "contentPosRange")
-# Property viewportSize (QSizeF)
-property_reader("QScrollPrepareEvent", /::viewportSize\s*\(/, "viewportSize")
-property_writer("QScrollPrepareEvent", /::setViewportSize\s*\(/, "viewportSize")
-# Property discardCommand (string[])
-property_reader("QSessionManager", /::discardCommand\s*\(/, "discardCommand")
-property_writer("QSessionManager", /::setDiscardCommand\s*\(/, "discardCommand")
-# Property restartCommand (string[])
-property_reader("QSessionManager", /::restartCommand\s*\(/, "restartCommand")
-property_writer("QSessionManager", /::setRestartCommand\s*\(/, "restartCommand")
-# Property restartHint (QSessionManager_RestartHint)
-property_reader("QSessionManager", /::restartHint\s*\(/, "restartHint")
-property_writer("QSessionManager", /::setRestartHint\s*\(/, "restartHint")
-# Property defaultFormat (QSettings_Format)
-property_reader("QSettings", /::defaultFormat\s*\(/, "defaultFormat")
-property_writer("QSettings", /::setDefaultFormat\s*\(/, "defaultFormat")
-# Property fallbacksEnabled (bool)
-property_reader("QSettings", /::fallbacksEnabled\s*\(/, "fallbacksEnabled")
-property_writer("QSettings", /::setFallbacksEnabled\s*\(/, "fallbacksEnabled")
-# Property key (string)
-property_reader("QSharedMemory", /::key\s*\(/, "key")
-property_writer("QSharedMemory", /::setKey\s*\(/, "key")
-# Property nativeKey (string)
-property_reader("QSharedMemory", /::nativeKey\s*\(/, "nativeKey")
-property_writer("QSharedMemory", /::setNativeKey\s*\(/, "nativeKey")
-# Property height (int)
-property_reader("QSize", /::height\s*\(/, "height")
-property_writer("QSize", /::setHeight\s*\(/, "height")
-# Property width (int)
-property_reader("QSize", /::width\s*\(/, "width")
-property_writer("QSize", /::setWidth\s*\(/, "width")
-# Property height (double)
-property_reader("QSizeF", /::height\s*\(/, "height")
-property_writer("QSizeF", /::setHeight\s*\(/, "height")
-# Property width (double)
-property_reader("QSizeF", /::width\s*\(/, "width")
-property_writer("QSizeF", /::setWidth\s*\(/, "width")
# Property controlType (QSizePolicy_ControlType)
property_reader("QSizePolicy", /::controlType\s*\(/, "controlType")
property_writer("QSizePolicy", /::setControlType\s*\(/, "controlType")
@@ -13960,27 +13854,6 @@ property_writer("QSizePolicy", /::setVerticalStretch\s*\(/, "verticalStretch")
# Property widthForHeight (bool)
property_reader("QSizePolicy", /::hasWidthForHeight\s*\(/, "widthForHeight")
property_writer("QSizePolicy", /::setWidthForHeight\s*\(/, "widthForHeight")
-# Property enabled (bool)
-property_reader("QSocketNotifier", /::isEnabled\s*\(/, "enabled")
-property_writer("QSocketNotifier", /::setEnabled\s*\(/, "enabled")
-# Property parent (QObject_Native *)
-property_reader("QSortFilterProxyModel", /::parent\s*\(/, "parent")
-property_writer("QObject", /::setParent\s*\(/, "parent")
-# Property loops (int)
-property_reader("QSound", /::loops\s*\(/, "loops")
-property_writer("QSound", /::setLoops\s*\(/, "loops")
-# Property loopCount (int)
-property_reader("QSoundEffect", /::loopCount\s*\(/, "loopCount")
-property_writer("QSoundEffect", /::setLoopCount\s*\(/, "loopCount")
-# Property column (long long)
-property_reader("QSourceLocation", /::column\s*\(/, "column")
-property_writer("QSourceLocation", /::setColumn\s*\(/, "column")
-# Property line (long long)
-property_reader("QSourceLocation", /::line\s*\(/, "line")
-property_writer("QSourceLocation", /::setLine\s*\(/, "line")
-# Property uri (QUrl)
-property_reader("QSourceLocation", /::uri\s*\(/, "uri")
-property_writer("QSourceLocation", /::setUri\s*\(/, "uri")
# Property geometry (QRect)
property_reader("QSpacerItem", /::geometry\s*\(/, "geometry")
property_writer("QSpacerItem", /::setGeometry\s*\(/, "geometry")
@@ -13993,174 +13866,6 @@ property_writer("QSplitter", /::setSizes\s*\(/, "sizes")
# Property orientation (Qt_Orientation)
property_reader("QSplitterHandle", /::orientation\s*\(/, "orientation")
property_writer("QSplitterHandle", /::setOrientation\s*\(/, "orientation")
-# Property connectOptions (string)
-property_reader("QSqlDatabase", /::connectOptions\s*\(/, "connectOptions")
-property_writer("QSqlDatabase", /::setConnectOptions\s*\(/, "connectOptions")
-# Property databaseName (string)
-property_reader("QSqlDatabase", /::databaseName\s*\(/, "databaseName")
-property_writer("QSqlDatabase", /::setDatabaseName\s*\(/, "databaseName")
-# Property hostName (string)
-property_reader("QSqlDatabase", /::hostName\s*\(/, "hostName")
-property_writer("QSqlDatabase", /::setHostName\s*\(/, "hostName")
-# Property numericalPrecisionPolicy (QSql_NumericalPrecisionPolicy)
-property_reader("QSqlDatabase", /::numericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
-property_writer("QSqlDatabase", /::setNumericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
-# Property password (string)
-property_reader("QSqlDatabase", /::password\s*\(/, "password")
-property_writer("QSqlDatabase", /::setPassword\s*\(/, "password")
-# Property port (int)
-property_reader("QSqlDatabase", /::port\s*\(/, "port")
-property_writer("QSqlDatabase", /::setPort\s*\(/, "port")
-# Property userName (string)
-property_reader("QSqlDatabase", /::userName\s*\(/, "userName")
-property_writer("QSqlDatabase", /::setUserName\s*\(/, "userName")
-# Property numericalPrecisionPolicy (QSql_NumericalPrecisionPolicy)
-property_reader("QSqlDriver", /::numericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
-property_writer("QSqlDriver", /::setNumericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
-# Property databaseText (string)
-property_reader("QSqlError", /::databaseText\s*\(/, "databaseText")
-property_writer("QSqlError", /::setDatabaseText\s*\(/, "databaseText")
-# Property driverText (string)
-property_reader("QSqlError", /::driverText\s*\(/, "driverText")
-property_writer("QSqlError", /::setDriverText\s*\(/, "driverText")
-# Property number (int)
-property_reader("QSqlError", /::number\s*\(/, "number")
-property_writer("QSqlError", /::setNumber\s*\(/, "number")
-# Property type (QSqlError_ErrorType)
-property_reader("QSqlError", /::type\s*\(/, "type")
-property_writer("QSqlError", /::setType\s*\(/, "type")
-# Property autoValue (bool)
-property_reader("QSqlField", /::isAutoValue\s*\(/, "autoValue")
-property_writer("QSqlField", /::setAutoValue\s*\(/, "autoValue")
-# Property defaultValue (variant)
-property_reader("QSqlField", /::defaultValue\s*\(/, "defaultValue")
-property_writer("QSqlField", /::setDefaultValue\s*\(/, "defaultValue")
-# Property generated (bool)
-property_reader("QSqlField", /::isGenerated\s*\(/, "generated")
-property_writer("QSqlField", /::setGenerated\s*\(/, "generated")
-# Property length (int)
-property_reader("QSqlField", /::length\s*\(/, "length")
-property_writer("QSqlField", /::setLength\s*\(/, "length")
-# Property name (string)
-property_reader("QSqlField", /::name\s*\(/, "name")
-property_writer("QSqlField", /::setName\s*\(/, "name")
-# Property precision (int)
-property_reader("QSqlField", /::precision\s*\(/, "precision")
-property_writer("QSqlField", /::setPrecision\s*\(/, "precision")
-# Property readOnly (bool)
-property_reader("QSqlField", /::isReadOnly\s*\(/, "readOnly")
-property_writer("QSqlField", /::setReadOnly\s*\(/, "readOnly")
-# Property requiredStatus (QSqlField_RequiredStatus)
-property_reader("QSqlField", /::requiredStatus\s*\(/, "requiredStatus")
-property_writer("QSqlField", /::setRequiredStatus\s*\(/, "requiredStatus")
-# Property type (QVariant_Type)
-property_reader("QSqlField", /::type\s*\(/, "type")
-property_writer("QSqlField", /::setType\s*\(/, "type")
-# Property value (variant)
-property_reader("QSqlField", /::value\s*\(/, "value")
-property_writer("QSqlField", /::setValue\s*\(/, "value")
-# Property cursorName (string)
-property_reader("QSqlIndex", /::cursorName\s*\(/, "cursorName")
-property_writer("QSqlIndex", /::setCursorName\s*\(/, "cursorName")
-# Property name (string)
-property_reader("QSqlIndex", /::name\s*\(/, "name")
-property_writer("QSqlIndex", /::setName\s*\(/, "name")
-# Property forwardOnly (bool)
-property_reader("QSqlQuery", /::isForwardOnly\s*\(/, "forwardOnly")
-property_writer("QSqlQuery", /::setForwardOnly\s*\(/, "forwardOnly")
-# Property numericalPrecisionPolicy (QSql_NumericalPrecisionPolicy)
-property_reader("QSqlQuery", /::numericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
-property_writer("QSqlQuery", /::setNumericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
-# Property query (QSqlQuery)
-property_reader("QSqlQueryModel", /::query\s*\(/, "query")
-property_writer("QSqlQueryModel", /::setQuery\s*\(/, "query")
-# Property editStrategy (QSqlTableModel_EditStrategy)
-property_reader("QSqlTableModel", /::editStrategy\s*\(/, "editStrategy")
-property_writer("QSqlTableModel", /::setEditStrategy\s*\(/, "editStrategy")
-# Property filter (string)
-property_reader("QSqlTableModel", /::filter\s*\(/, "filter")
-property_writer("QSqlTableModel", /::setFilter\s*\(/, "filter")
-# Property allowedNextProtocols (string[])
-property_reader("QSslConfiguration", /::allowedNextProtocols\s*\(/, "allowedNextProtocols")
-property_writer("QSslConfiguration", /::setAllowedNextProtocols\s*\(/, "allowedNextProtocols")
-# Property caCertificates (QSslCertificate[])
-property_reader("QSslConfiguration", /::caCertificates\s*\(/, "caCertificates")
-property_writer("QSslConfiguration", /::setCaCertificates\s*\(/, "caCertificates")
-# Property ciphers (QSslCipher[])
-property_reader("QSslConfiguration", /::ciphers\s*\(/, "ciphers")
-property_writer("QSslConfiguration", /::setCiphers\s*\(/, "ciphers")
-# Property defaultConfiguration (QSslConfiguration)
-property_reader("QSslConfiguration", /::defaultConfiguration\s*\(/, "defaultConfiguration")
-property_writer("QSslConfiguration", /::setDefaultConfiguration\s*\(/, "defaultConfiguration")
-# Property ellipticCurves (QSslEllipticCurve[])
-property_reader("QSslConfiguration", /::ellipticCurves\s*\(/, "ellipticCurves")
-property_writer("QSslConfiguration", /::setEllipticCurves\s*\(/, "ellipticCurves")
-# Property localCertificate (QSslCertificate)
-property_reader("QSslConfiguration", /::localCertificate\s*\(/, "localCertificate")
-property_writer("QSslConfiguration", /::setLocalCertificate\s*\(/, "localCertificate")
-# Property localCertificateChain (QSslCertificate[])
-property_reader("QSslConfiguration", /::localCertificateChain\s*\(/, "localCertificateChain")
-property_writer("QSslConfiguration", /::setLocalCertificateChain\s*\(/, "localCertificateChain")
-# Property peerVerifyDepth (int)
-property_reader("QSslConfiguration", /::peerVerifyDepth\s*\(/, "peerVerifyDepth")
-property_writer("QSslConfiguration", /::setPeerVerifyDepth\s*\(/, "peerVerifyDepth")
-# Property peerVerifyMode (QSslSocket_PeerVerifyMode)
-property_reader("QSslConfiguration", /::peerVerifyMode\s*\(/, "peerVerifyMode")
-property_writer("QSslConfiguration", /::setPeerVerifyMode\s*\(/, "peerVerifyMode")
-# Property privateKey (QSslKey)
-property_reader("QSslConfiguration", /::privateKey\s*\(/, "privateKey")
-property_writer("QSslConfiguration", /::setPrivateKey\s*\(/, "privateKey")
-# Property protocol (QSsl_SslProtocol)
-property_reader("QSslConfiguration", /::protocol\s*\(/, "protocol")
-property_writer("QSslConfiguration", /::setProtocol\s*\(/, "protocol")
-# Property sessionTicket (string)
-property_reader("QSslConfiguration", /::sessionTicket\s*\(/, "sessionTicket")
-property_writer("QSslConfiguration", /::setSessionTicket\s*\(/, "sessionTicket")
-# Property identity (string)
-property_reader("QSslPreSharedKeyAuthenticator", /::identity\s*\(/, "identity")
-property_writer("QSslPreSharedKeyAuthenticator", /::setIdentity\s*\(/, "identity")
-# Property preSharedKey (string)
-property_reader("QSslPreSharedKeyAuthenticator", /::preSharedKey\s*\(/, "preSharedKey")
-property_writer("QSslPreSharedKeyAuthenticator", /::setPreSharedKey\s*\(/, "preSharedKey")
-# Property caCertificates (QSslCertificate[])
-property_reader("QSslSocket", /::caCertificates\s*\(/, "caCertificates")
-property_writer("QSslSocket", /::setCaCertificates\s*\(/, "caCertificates")
-# Property ciphers (QSslCipher[])
-property_reader("QSslSocket", /::ciphers\s*\(/, "ciphers")
-property_writer("QSslSocket", /::setCiphers\s*\(/, "ciphers")
-# Property defaultCaCertificates (QSslCertificate[])
-property_reader("QSslSocket", /::defaultCaCertificates\s*\(/, "defaultCaCertificates")
-property_writer("QSslSocket", /::setDefaultCaCertificates\s*\(/, "defaultCaCertificates")
-# Property defaultCiphers (QSslCipher[])
-property_reader("QSslSocket", /::defaultCiphers\s*\(/, "defaultCiphers")
-property_writer("QSslSocket", /::setDefaultCiphers\s*\(/, "defaultCiphers")
-# Property localCertificate (QSslCertificate)
-property_reader("QSslSocket", /::localCertificate\s*\(/, "localCertificate")
-property_writer("QSslSocket", /::setLocalCertificate\s*\(/, "localCertificate")
-# Property localCertificateChain (QSslCertificate[])
-property_reader("QSslSocket", /::localCertificateChain\s*\(/, "localCertificateChain")
-property_writer("QSslSocket", /::setLocalCertificateChain\s*\(/, "localCertificateChain")
-# Property peerVerifyDepth (int)
-property_reader("QSslSocket", /::peerVerifyDepth\s*\(/, "peerVerifyDepth")
-property_writer("QSslSocket", /::setPeerVerifyDepth\s*\(/, "peerVerifyDepth")
-# Property peerVerifyMode (QSslSocket_PeerVerifyMode)
-property_reader("QSslSocket", /::peerVerifyMode\s*\(/, "peerVerifyMode")
-property_writer("QSslSocket", /::setPeerVerifyMode\s*\(/, "peerVerifyMode")
-# Property peerVerifyName (string)
-property_reader("QSslSocket", /::peerVerifyName\s*\(/, "peerVerifyName")
-property_writer("QSslSocket", /::setPeerVerifyName\s*\(/, "peerVerifyName")
-# Property privateKey (QSslKey)
-property_reader("QSslSocket", /::privateKey\s*\(/, "privateKey")
-property_writer("QSslSocket", /::setPrivateKey\s*\(/, "privateKey")
-# Property protocol (QSsl_SslProtocol)
-property_reader("QSslSocket", /::protocol\s*\(/, "protocol")
-property_writer("QSslSocket", /::setProtocol\s*\(/, "protocol")
-# Property readBufferSize (long long)
-property_reader("QAbstractSocket", /::readBufferSize\s*\(/, "readBufferSize")
-property_writer("QSslSocket", /::setReadBufferSize\s*\(/, "readBufferSize")
-# Property sslConfiguration (QSslConfiguration)
-property_reader("QSslSocket", /::sslConfiguration\s*\(/, "sslConfiguration")
-property_writer("QSslSocket", /::setSslConfiguration\s*\(/, "sslConfiguration")
# Property currentWidget (QWidget_Native *)
property_reader("QStackedLayout", /::currentWidget\s*\(/, "currentWidget")
property_writer("QStackedLayout", /::setCurrentWidget\s*\(/, "currentWidget")
@@ -14170,195 +13875,9 @@ property_writer("QStackedLayout", /::setGeometry\s*\(/, "geometry")
# Property currentWidget (QWidget_Native *)
property_reader("QStackedWidget", /::currentWidget\s*\(/, "currentWidget")
property_writer("QStackedWidget", /::setCurrentWidget\s*\(/, "currentWidget")
-# Property accessibleDescription (string)
-property_reader("QStandardItem", /::accessibleDescription\s*\(/, "accessibleDescription")
-property_writer("QStandardItem", /::setAccessibleDescription\s*\(/, "accessibleDescription")
-# Property accessibleText (string)
-property_reader("QStandardItem", /::accessibleText\s*\(/, "accessibleText")
-property_writer("QStandardItem", /::setAccessibleText\s*\(/, "accessibleText")
-# Property background (QBrush)
-property_reader("QStandardItem", /::background\s*\(/, "background")
-property_writer("QStandardItem", /::setBackground\s*\(/, "background")
-# Property checkState (Qt_CheckState)
-property_reader("QStandardItem", /::checkState\s*\(/, "checkState")
-property_writer("QStandardItem", /::setCheckState\s*\(/, "checkState")
-# Property checkable (bool)
-property_reader("QStandardItem", /::isCheckable\s*\(/, "checkable")
-property_writer("QStandardItem", /::setCheckable\s*\(/, "checkable")
-# Property columnCount (int)
-property_reader("QStandardItem", /::columnCount\s*\(/, "columnCount")
-property_writer("QStandardItem", /::setColumnCount\s*\(/, "columnCount")
-# Property data (variant)
-property_reader("QStandardItem", /::data\s*\(/, "data")
-property_writer("QStandardItem", /::setData\s*\(/, "data")
-# Property dragEnabled (bool)
-property_reader("QStandardItem", /::isDragEnabled\s*\(/, "dragEnabled")
-property_writer("QStandardItem", /::setDragEnabled\s*\(/, "dragEnabled")
-# Property dropEnabled (bool)
-property_reader("QStandardItem", /::isDropEnabled\s*\(/, "dropEnabled")
-property_writer("QStandardItem", /::setDropEnabled\s*\(/, "dropEnabled")
-# Property editable (bool)
-property_reader("QStandardItem", /::isEditable\s*\(/, "editable")
-property_writer("QStandardItem", /::setEditable\s*\(/, "editable")
-# Property enabled (bool)
-property_reader("QStandardItem", /::isEnabled\s*\(/, "enabled")
-property_writer("QStandardItem", /::setEnabled\s*\(/, "enabled")
-# Property flags (Qt_QFlags_ItemFlag)
-property_reader("QStandardItem", /::flags\s*\(/, "flags")
-property_writer("QStandardItem", /::setFlags\s*\(/, "flags")
-# Property font (QFont)
-property_reader("QStandardItem", /::font\s*\(/, "font")
-property_writer("QStandardItem", /::setFont\s*\(/, "font")
-# Property foreground (QBrush)
-property_reader("QStandardItem", /::foreground\s*\(/, "foreground")
-property_writer("QStandardItem", /::setForeground\s*\(/, "foreground")
-# Property icon (QIcon)
-property_reader("QStandardItem", /::icon\s*\(/, "icon")
-property_writer("QStandardItem", /::setIcon\s*\(/, "icon")
-# Property rowCount (int)
-property_reader("QStandardItem", /::rowCount\s*\(/, "rowCount")
-property_writer("QStandardItem", /::setRowCount\s*\(/, "rowCount")
-# Property selectable (bool)
-property_reader("QStandardItem", /::isSelectable\s*\(/, "selectable")
-property_writer("QStandardItem", /::setSelectable\s*\(/, "selectable")
-# Property sizeHint (QSize)
-property_reader("QStandardItem", /::sizeHint\s*\(/, "sizeHint")
-property_writer("QStandardItem", /::setSizeHint\s*\(/, "sizeHint")
-# Property statusTip (string)
-property_reader("QStandardItem", /::statusTip\s*\(/, "statusTip")
-property_writer("QStandardItem", /::setStatusTip\s*\(/, "statusTip")
-# Property text (string)
-property_reader("QStandardItem", /::text\s*\(/, "text")
-property_writer("QStandardItem", /::setText\s*\(/, "text")
-# Property textAlignment (Qt_QFlags_AlignmentFlag)
-property_reader("QStandardItem", /::textAlignment\s*\(/, "textAlignment")
-property_writer("QStandardItem", /::setTextAlignment\s*\(/, "textAlignment")
-# Property toolTip (string)
-property_reader("QStandardItem", /::toolTip\s*\(/, "toolTip")
-property_writer("QStandardItem", /::setToolTip\s*\(/, "toolTip")
-# Property tristate (bool)
-property_reader("QStandardItem", /::isTristate\s*\(/, "tristate")
-property_writer("QStandardItem", /::setTristate\s*\(/, "tristate")
-# Property whatsThis (string)
-property_reader("QStandardItem", /::whatsThis\s*\(/, "whatsThis")
-property_writer("QStandardItem", /::setWhatsThis\s*\(/, "whatsThis")
-# Property columnCount (int)
-property_reader("QStandardItemModel", /::columnCount\s*\(/, "columnCount")
-property_writer("QStandardItemModel", /::setColumnCount\s*\(/, "columnCount")
-# Property itemPrototype (QStandardItem_Native *)
-property_reader("QStandardItemModel", /::itemPrototype\s*\(/, "itemPrototype")
-property_writer("QStandardItemModel", /::setItemPrototype\s*\(/, "itemPrototype")
-# Property parent (QObject_Native *)
-property_reader("QStandardItemModel", /::parent\s*\(/, "parent")
-property_writer("QObject", /::setParent\s*\(/, "parent")
-# Property rowCount (int)
-property_reader("QStandardItemModel", /::rowCount\s*\(/, "rowCount")
-property_writer("QStandardItemModel", /::setRowCount\s*\(/, "rowCount")
-# Property testModeEnabled (bool)
-property_reader("QStandardPaths", /::isTestModeEnabled\s*\(/, "testModeEnabled")
-property_writer("QStandardPaths", /::setTestModeEnabled\s*\(/, "testModeEnabled")
-# Property performanceHint (QStaticText_PerformanceHint)
-property_reader("QStaticText", /::performanceHint\s*\(/, "performanceHint")
-property_writer("QStaticText", /::setPerformanceHint\s*\(/, "performanceHint")
-# Property text (string)
-property_reader("QStaticText", /::text\s*\(/, "text")
-property_writer("QStaticText", /::setText\s*\(/, "text")
-# Property textFormat (Qt_TextFormat)
-property_reader("QStaticText", /::textFormat\s*\(/, "textFormat")
-property_writer("QStaticText", /::setTextFormat\s*\(/, "textFormat")
-# Property textOption (QTextOption)
-property_reader("QStaticText", /::textOption\s*\(/, "textOption")
-property_writer("QStaticText", /::setTextOption\s*\(/, "textOption")
-# Property textWidth (double)
-property_reader("QStaticText", /::textWidth\s*\(/, "textWidth")
-property_writer("QStaticText", /::setTextWidth\s*\(/, "textWidth")
-# Property stringList (string[])
-property_reader("QStringListModel", /::stringList\s*\(/, "stringList")
-property_writer("QStringListModel", /::setStringList\s*\(/, "stringList")
-# Property caseSensitivity (Qt_CaseSensitivity)
-property_reader("QStringMatcher", /::caseSensitivity\s*\(/, "caseSensitivity")
-property_writer("QStringMatcher", /::setCaseSensitivity\s*\(/, "caseSensitivity")
-# Property pattern (string)
-property_reader("QStringMatcher", /::pattern\s*\(/, "pattern")
-property_writer("QStringMatcher", /::setPattern\s*\(/, "pattern")
# Property itemEditorFactory (QItemEditorFactory_Native *)
property_reader("QStyledItemDelegate", /::itemEditorFactory\s*\(/, "itemEditorFactory")
property_writer("QStyledItemDelegate", /::setItemEditorFactory\s*\(/, "itemEditorFactory")
-# Property alphaBufferSize (int)
-property_reader("QSurfaceFormat", /::alphaBufferSize\s*\(/, "alphaBufferSize")
-property_writer("QSurfaceFormat", /::setAlphaBufferSize\s*\(/, "alphaBufferSize")
-# Property blueBufferSize (int)
-property_reader("QSurfaceFormat", /::blueBufferSize\s*\(/, "blueBufferSize")
-property_writer("QSurfaceFormat", /::setBlueBufferSize\s*\(/, "blueBufferSize")
-# Property defaultFormat (QSurfaceFormat)
-property_reader("QSurfaceFormat", /::defaultFormat\s*\(/, "defaultFormat")
-property_writer("QSurfaceFormat", /::setDefaultFormat\s*\(/, "defaultFormat")
-# Property depthBufferSize (int)
-property_reader("QSurfaceFormat", /::depthBufferSize\s*\(/, "depthBufferSize")
-property_writer("QSurfaceFormat", /::setDepthBufferSize\s*\(/, "depthBufferSize")
-# Property greenBufferSize (int)
-property_reader("QSurfaceFormat", /::greenBufferSize\s*\(/, "greenBufferSize")
-property_writer("QSurfaceFormat", /::setGreenBufferSize\s*\(/, "greenBufferSize")
-# Property majorVersion (int)
-property_reader("QSurfaceFormat", /::majorVersion\s*\(/, "majorVersion")
-property_writer("QSurfaceFormat", /::setMajorVersion\s*\(/, "majorVersion")
-# Property minorVersion (int)
-property_reader("QSurfaceFormat", /::minorVersion\s*\(/, "minorVersion")
-property_writer("QSurfaceFormat", /::setMinorVersion\s*\(/, "minorVersion")
-# Property options (QSurfaceFormat_QFlags_FormatOption)
-property_reader("QSurfaceFormat", /::options\s*\(/, "options")
-property_writer("QSurfaceFormat", /::setOptions\s*\(/, "options")
-# Property profile (QSurfaceFormat_OpenGLContextProfile)
-property_reader("QSurfaceFormat", /::profile\s*\(/, "profile")
-property_writer("QSurfaceFormat", /::setProfile\s*\(/, "profile")
-# Property redBufferSize (int)
-property_reader("QSurfaceFormat", /::redBufferSize\s*\(/, "redBufferSize")
-property_writer("QSurfaceFormat", /::setRedBufferSize\s*\(/, "redBufferSize")
-# Property renderableType (QSurfaceFormat_RenderableType)
-property_reader("QSurfaceFormat", /::renderableType\s*\(/, "renderableType")
-property_writer("QSurfaceFormat", /::setRenderableType\s*\(/, "renderableType")
-# Property samples (int)
-property_reader("QSurfaceFormat", /::samples\s*\(/, "samples")
-property_writer("QSurfaceFormat", /::setSamples\s*\(/, "samples")
-# Property stencilBufferSize (int)
-property_reader("QSurfaceFormat", /::stencilBufferSize\s*\(/, "stencilBufferSize")
-property_writer("QSurfaceFormat", /::setStencilBufferSize\s*\(/, "stencilBufferSize")
-# Property stereo (bool)
-property_reader("QSurfaceFormat", /::stereo\s*\(/, "stereo")
-property_writer("QSurfaceFormat", /::setStereo\s*\(/, "stereo")
-# Property swapBehavior (QSurfaceFormat_SwapBehavior)
-property_reader("QSurfaceFormat", /::swapBehavior\s*\(/, "swapBehavior")
-property_writer("QSurfaceFormat", /::setSwapBehavior\s*\(/, "swapBehavior")
-# Property swapInterval (int)
-property_reader("QSurfaceFormat", /::swapInterval\s*\(/, "swapInterval")
-property_writer("QSurfaceFormat", /::setSwapInterval\s*\(/, "swapInterval")
-# Property description (string)
-property_reader("QSvgGenerator", /::description\s*\(/, "description")
-property_writer("QSvgGenerator", /::setDescription\s*\(/, "description")
-# Property fileName (string)
-property_reader("QSvgGenerator", /::fileName\s*\(/, "fileName")
-property_writer("QSvgGenerator", /::setFileName\s*\(/, "fileName")
-# Property outputDevice (QIODevice *)
-property_reader("QSvgGenerator", /::outputDevice\s*\(/, "outputDevice")
-property_writer("QSvgGenerator", /::setOutputDevice\s*\(/, "outputDevice")
-# Property resolution (int)
-property_reader("QSvgGenerator", /::resolution\s*\(/, "resolution")
-property_writer("QSvgGenerator", /::setResolution\s*\(/, "resolution")
-# Property size (QSize)
-property_reader("QSvgGenerator", /::size\s*\(/, "size")
-property_writer("QSvgGenerator", /::setSize\s*\(/, "size")
-# Property title (string)
-property_reader("QSvgGenerator", /::title\s*\(/, "title")
-property_writer("QSvgGenerator", /::setTitle\s*\(/, "title")
-# Property viewBox (QRect)
-property_reader("QSvgGenerator", /::viewBox\s*\(/, "viewBox")
-property_writer("QSvgGenerator", /::setViewBox\s*\(/, "viewBox")
-# Property document (QTextDocument_Native *)
-property_reader("QSyntaxHighlighter", /::document\s*\(/, "document")
-property_writer("QSyntaxHighlighter", /::setDocument\s*\(/, "document")
-# Property key (string)
-property_reader("QSystemSemaphore", /::key\s*\(/, "key")
-property_writer("QSystemSemaphore", /::setKey\s*\(/, "key")
# Property contextMenu (QMenu_Native *)
property_reader("QSystemTrayIcon", /::contextMenu\s*\(/, "contextMenu")
property_writer("QSystemTrayIcon", /::setContextMenu\s*\(/, "contextMenu")
@@ -14392,9 +13911,6 @@ property_writer("QTableWidget", /::setItemPrototype\s*\(/, "itemPrototype")
# Property background (QBrush)
property_reader("QTableWidgetItem", /::background\s*\(/, "background")
property_writer("QTableWidgetItem", /::setBackground\s*\(/, "background")
-# Property backgroundColor (QColor)
-property_reader("QTableWidgetItem", /::backgroundColor\s*\(/, "backgroundColor")
-property_writer("QTableWidgetItem", /::setBackgroundColor\s*\(/, "backgroundColor")
# Property checkState (Qt_CheckState)
property_reader("QTableWidgetItem", /::checkState\s*\(/, "checkState")
property_writer("QTableWidgetItem", /::setCheckState\s*\(/, "checkState")
@@ -14425,9 +13941,6 @@ property_writer("QTableWidgetItem", /::setText\s*\(/, "text")
# Property textAlignment (int)
property_reader("QTableWidgetItem", /::textAlignment\s*\(/, "textAlignment")
property_writer("QTableWidgetItem", /::setTextAlignment\s*\(/, "textAlignment")
-# Property textColor (QColor)
-property_reader("QTableWidgetItem", /::textColor\s*\(/, "textColor")
-property_writer("QTableWidgetItem", /::setTextColor\s*\(/, "textColor")
# Property toolTip (string)
property_reader("QTableWidgetItem", /::toolTip\s*\(/, "toolTip")
property_writer("QTableWidgetItem", /::setToolTip\s*\(/, "toolTip")
@@ -14437,204 +13950,6 @@ property_writer("QTableWidgetItem", /::setWhatsThis\s*\(/, "whatsThis")
# Property timeout (int)
property_reader("QTapAndHoldGesture", /::timeout\s*\(/, "timeout")
property_writer("QTapAndHoldGesture", /::setTimeout\s*\(/, "timeout")
-# Property maxPendingConnections (int)
-property_reader("QTcpServer", /::maxPendingConnections\s*\(/, "maxPendingConnections")
-property_writer("QTcpServer", /::setMaxPendingConnections\s*\(/, "maxPendingConnections")
-# Property proxy (QNetworkProxy)
-property_reader("QTcpServer", /::proxy\s*\(/, "proxy")
-property_writer("QTcpServer", /::setProxy\s*\(/, "proxy")
-# Property autoRemove (bool)
-property_reader("QTemporaryDir", /::autoRemove\s*\(/, "autoRemove")
-property_writer("QTemporaryDir", /::setAutoRemove\s*\(/, "autoRemove")
-# Property autoRemove (bool)
-property_reader("QTemporaryFile", /::autoRemove\s*\(/, "autoRemove")
-property_writer("QTemporaryFile", /::setAutoRemove\s*\(/, "autoRemove")
-# Property fileName (string)
-property_reader("QTemporaryFile", /::fileName\s*\(/, "fileName")
-property_writer("QFile", /::setFileName\s*\(/, "fileName")
-# Property fileTemplate (string)
-property_reader("QTemporaryFile", /::fileTemplate\s*\(/, "fileTemplate")
-property_writer("QTemporaryFile", /::setFileTemplate\s*\(/, "fileTemplate")
-# Property lineCount (int)
-property_reader("QTextBlock", /::lineCount\s*\(/, "lineCount")
-property_writer("QTextBlock", /::setLineCount\s*\(/, "lineCount")
-# Property revision (int)
-property_reader("QTextBlock", /::revision\s*\(/, "revision")
-property_writer("QTextBlock", /::setRevision\s*\(/, "revision")
-# Property userData (QTextBlockUserData_Native *)
-property_reader("QTextBlock", /::userData\s*\(/, "userData")
-property_writer("QTextBlock", /::setUserData\s*\(/, "userData")
-# Property userState (int)
-property_reader("QTextBlock", /::userState\s*\(/, "userState")
-property_writer("QTextBlock", /::setUserState\s*\(/, "userState")
-# Property visible (bool)
-property_reader("QTextBlock", /::isVisible\s*\(/, "visible")
-property_writer("QTextBlock", /::setVisible\s*\(/, "visible")
-# Property alignment (Qt_QFlags_AlignmentFlag)
-property_reader("QTextBlockFormat", /::alignment\s*\(/, "alignment")
-property_writer("QTextBlockFormat", /::setAlignment\s*\(/, "alignment")
-# Property bottomMargin (double)
-property_reader("QTextBlockFormat", /::bottomMargin\s*\(/, "bottomMargin")
-property_writer("QTextBlockFormat", /::setBottomMargin\s*\(/, "bottomMargin")
-# Property indent (int)
-property_reader("QTextBlockFormat", /::indent\s*\(/, "indent")
-property_writer("QTextBlockFormat", /::setIndent\s*\(/, "indent")
-# Property leftMargin (double)
-property_reader("QTextBlockFormat", /::leftMargin\s*\(/, "leftMargin")
-property_writer("QTextBlockFormat", /::setLeftMargin\s*\(/, "leftMargin")
-# Property nonBreakableLines (bool)
-property_reader("QTextBlockFormat", /::nonBreakableLines\s*\(/, "nonBreakableLines")
-property_writer("QTextBlockFormat", /::setNonBreakableLines\s*\(/, "nonBreakableLines")
-# Property pageBreakPolicy (QTextFormat_QFlags_PageBreakFlag)
-property_reader("QTextBlockFormat", /::pageBreakPolicy\s*\(/, "pageBreakPolicy")
-property_writer("QTextBlockFormat", /::setPageBreakPolicy\s*\(/, "pageBreakPolicy")
-# Property rightMargin (double)
-property_reader("QTextBlockFormat", /::rightMargin\s*\(/, "rightMargin")
-property_writer("QTextBlockFormat", /::setRightMargin\s*\(/, "rightMargin")
-# Property tabPositions (QTextOption_Tab[])
-property_reader("QTextBlockFormat", /::tabPositions\s*\(/, "tabPositions")
-property_writer("QTextBlockFormat", /::setTabPositions\s*\(/, "tabPositions")
-# Property textIndent (double)
-property_reader("QTextBlockFormat", /::textIndent\s*\(/, "textIndent")
-property_writer("QTextBlockFormat", /::setTextIndent\s*\(/, "textIndent")
-# Property topMargin (double)
-property_reader("QTextBlockFormat", /::topMargin\s*\(/, "topMargin")
-property_writer("QTextBlockFormat", /::setTopMargin\s*\(/, "topMargin")
-# Property position (int)
-property_reader("QTextBoundaryFinder", /::position\s*\(/, "position")
-property_writer("QTextBoundaryFinder", /::setPosition\s*\(/, "position")
-# Property anchor (bool)
-property_reader("QTextCharFormat", /::isAnchor\s*\(/, "anchor")
-property_writer("QTextCharFormat", /::setAnchor\s*\(/, "anchor")
-# Property anchorHref (string)
-property_reader("QTextCharFormat", /::anchorHref\s*\(/, "anchorHref")
-property_writer("QTextCharFormat", /::setAnchorHref\s*\(/, "anchorHref")
-# Property anchorName (string)
-property_reader("QTextCharFormat", /::anchorName\s*\(/, "anchorName")
-property_writer("QTextCharFormat", /::setAnchorName\s*\(/, "anchorName")
-# Property anchorNames (string[])
-property_reader("QTextCharFormat", /::anchorNames\s*\(/, "anchorNames")
-property_writer("QTextCharFormat", /::setAnchorNames\s*\(/, "anchorNames")
-# Property font (QFont)
-property_reader("QTextCharFormat", /::font\s*\(/, "font")
-property_writer("QTextCharFormat", /::setFont\s*\(/, "font")
-# Property fontCapitalization (QFont_Capitalization)
-property_reader("QTextCharFormat", /::fontCapitalization\s*\(/, "fontCapitalization")
-property_writer("QTextCharFormat", /::setFontCapitalization\s*\(/, "fontCapitalization")
-# Property fontFamily (string)
-property_reader("QTextCharFormat", /::fontFamily\s*\(/, "fontFamily")
-property_writer("QTextCharFormat", /::setFontFamily\s*\(/, "fontFamily")
-# Property fontFixedPitch (bool)
-property_reader("QTextCharFormat", /::fontFixedPitch\s*\(/, "fontFixedPitch")
-property_writer("QTextCharFormat", /::setFontFixedPitch\s*\(/, "fontFixedPitch")
-# Property fontHintingPreference (QFont_HintingPreference)
-property_reader("QTextCharFormat", /::fontHintingPreference\s*\(/, "fontHintingPreference")
-property_writer("QTextCharFormat", /::setFontHintingPreference\s*\(/, "fontHintingPreference")
-# Property fontItalic (bool)
-property_reader("QTextCharFormat", /::fontItalic\s*\(/, "fontItalic")
-property_writer("QTextCharFormat", /::setFontItalic\s*\(/, "fontItalic")
-# Property fontKerning (bool)
-property_reader("QTextCharFormat", /::fontKerning\s*\(/, "fontKerning")
-property_writer("QTextCharFormat", /::setFontKerning\s*\(/, "fontKerning")
-# Property fontLetterSpacing (double)
-property_reader("QTextCharFormat", /::fontLetterSpacing\s*\(/, "fontLetterSpacing")
-property_writer("QTextCharFormat", /::setFontLetterSpacing\s*\(/, "fontLetterSpacing")
-# Property fontLetterSpacingType (QFont_SpacingType)
-property_reader("QTextCharFormat", /::fontLetterSpacingType\s*\(/, "fontLetterSpacingType")
-property_writer("QTextCharFormat", /::setFontLetterSpacingType\s*\(/, "fontLetterSpacingType")
-# Property fontOverline (bool)
-property_reader("QTextCharFormat", /::fontOverline\s*\(/, "fontOverline")
-property_writer("QTextCharFormat", /::setFontOverline\s*\(/, "fontOverline")
-# Property fontPointSize (double)
-property_reader("QTextCharFormat", /::fontPointSize\s*\(/, "fontPointSize")
-property_writer("QTextCharFormat", /::setFontPointSize\s*\(/, "fontPointSize")
-# Property fontStretch (int)
-property_reader("QTextCharFormat", /::fontStretch\s*\(/, "fontStretch")
-property_writer("QTextCharFormat", /::setFontStretch\s*\(/, "fontStretch")
-# Property fontStrikeOut (bool)
-property_reader("QTextCharFormat", /::fontStrikeOut\s*\(/, "fontStrikeOut")
-property_writer("QTextCharFormat", /::setFontStrikeOut\s*\(/, "fontStrikeOut")
-# Property fontStyleHint (QFont_StyleHint)
-property_reader("QTextCharFormat", /::fontStyleHint\s*\(/, "fontStyleHint")
-property_writer("QTextCharFormat", /::setFontStyleHint\s*\(/, "fontStyleHint")
-# Property fontStyleStrategy (QFont_StyleStrategy)
-property_reader("QTextCharFormat", /::fontStyleStrategy\s*\(/, "fontStyleStrategy")
-property_writer("QTextCharFormat", /::setFontStyleStrategy\s*\(/, "fontStyleStrategy")
-# Property fontUnderline (bool)
-property_reader("QTextCharFormat", /::fontUnderline\s*\(/, "fontUnderline")
-property_writer("QTextCharFormat", /::setFontUnderline\s*\(/, "fontUnderline")
-# Property fontWeight (int)
-property_reader("QTextCharFormat", /::fontWeight\s*\(/, "fontWeight")
-property_writer("QTextCharFormat", /::setFontWeight\s*\(/, "fontWeight")
-# Property fontWordSpacing (double)
-property_reader("QTextCharFormat", /::fontWordSpacing\s*\(/, "fontWordSpacing")
-property_writer("QTextCharFormat", /::setFontWordSpacing\s*\(/, "fontWordSpacing")
-# Property tableCellColumnSpan (int)
-property_reader("QTextCharFormat", /::tableCellColumnSpan\s*\(/, "tableCellColumnSpan")
-property_writer("QTextCharFormat", /::setTableCellColumnSpan\s*\(/, "tableCellColumnSpan")
-# Property tableCellRowSpan (int)
-property_reader("QTextCharFormat", /::tableCellRowSpan\s*\(/, "tableCellRowSpan")
-property_writer("QTextCharFormat", /::setTableCellRowSpan\s*\(/, "tableCellRowSpan")
-# Property textOutline (QPen)
-property_reader("QTextCharFormat", /::textOutline\s*\(/, "textOutline")
-property_writer("QTextCharFormat", /::setTextOutline\s*\(/, "textOutline")
-# Property toolTip (string)
-property_reader("QTextCharFormat", /::toolTip\s*\(/, "toolTip")
-property_writer("QTextCharFormat", /::setToolTip\s*\(/, "toolTip")
-# Property underlineColor (QColor)
-property_reader("QTextCharFormat", /::underlineColor\s*\(/, "underlineColor")
-property_writer("QTextCharFormat", /::setUnderlineColor\s*\(/, "underlineColor")
-# Property underlineStyle (QTextCharFormat_UnderlineStyle)
-property_reader("QTextCharFormat", /::underlineStyle\s*\(/, "underlineStyle")
-property_writer("QTextCharFormat", /::setUnderlineStyle\s*\(/, "underlineStyle")
-# Property verticalAlignment (QTextCharFormat_VerticalAlignment)
-property_reader("QTextCharFormat", /::verticalAlignment\s*\(/, "verticalAlignment")
-property_writer("QTextCharFormat", /::setVerticalAlignment\s*\(/, "verticalAlignment")
-# Property codecForLocale (QTextCodec_Native *)
-property_reader("QTextCodec", /::codecForLocale\s*\(/, "codecForLocale")
-property_writer("QTextCodec", /::setCodecForLocale\s*\(/, "codecForLocale")
-# Property blockCharFormat (QTextCharFormat)
-property_reader("QTextCursor", /::blockCharFormat\s*\(/, "blockCharFormat")
-property_writer("QTextCursor", /::setBlockCharFormat\s*\(/, "blockCharFormat")
-# Property blockFormat (QTextBlockFormat)
-property_reader("QTextCursor", /::blockFormat\s*\(/, "blockFormat")
-property_writer("QTextCursor", /::setBlockFormat\s*\(/, "blockFormat")
-# Property charFormat (QTextCharFormat)
-property_reader("QTextCursor", /::charFormat\s*\(/, "charFormat")
-property_writer("QTextCursor", /::setCharFormat\s*\(/, "charFormat")
-# Property keepPositionOnInsert (bool)
-property_reader("QTextCursor", /::keepPositionOnInsert\s*\(/, "keepPositionOnInsert")
-property_writer("QTextCursor", /::setKeepPositionOnInsert\s*\(/, "keepPositionOnInsert")
-# Property position (int)
-property_reader("QTextCursor", /::position\s*\(/, "position")
-property_writer("QTextCursor", /::setPosition\s*\(/, "position")
-# Property verticalMovementX (int)
-property_reader("QTextCursor", /::verticalMovementX\s*\(/, "verticalMovementX")
-property_writer("QTextCursor", /::setVerticalMovementX\s*\(/, "verticalMovementX")
-# Property visualNavigation (bool)
-property_reader("QTextCursor", /::visualNavigation\s*\(/, "visualNavigation")
-property_writer("QTextCursor", /::setVisualNavigation\s*\(/, "visualNavigation")
-# Property defaultCursorMoveStyle (Qt_CursorMoveStyle)
-property_reader("QTextDocument", /::defaultCursorMoveStyle\s*\(/, "defaultCursorMoveStyle")
-property_writer("QTextDocument", /::setDefaultCursorMoveStyle\s*\(/, "defaultCursorMoveStyle")
-# Property defaultTextOption (QTextOption)
-property_reader("QTextDocument", /::defaultTextOption\s*\(/, "defaultTextOption")
-property_writer("QTextDocument", /::setDefaultTextOption\s*\(/, "defaultTextOption")
-# Property documentLayout (QAbstractTextDocumentLayout_Native *)
-property_reader("QTextDocument", /::documentLayout\s*\(/, "documentLayout")
-property_writer("QTextDocument", /::setDocumentLayout\s*\(/, "documentLayout")
-# Property codec (QTextCodec_Native *)
-property_reader("QTextDocumentWriter", /::codec\s*\(/, "codec")
-property_writer("QTextDocumentWriter", /::setCodec\s*\(/, "codec")
-# Property device (QIODevice *)
-property_reader("QTextDocumentWriter", /::device\s*\(/, "device")
-property_writer("QTextDocumentWriter", /::setDevice\s*\(/, "device")
-# Property fileName (string)
-property_reader("QTextDocumentWriter", /::fileName\s*\(/, "fileName")
-property_writer("QTextDocumentWriter", /::setFileName\s*\(/, "fileName")
-# Property format (string)
-property_reader("QTextDocumentWriter", /::format\s*\(/, "format")
-property_writer("QTextDocumentWriter", /::setFormat\s*\(/, "format")
# Property alignment (Qt_QFlags_AlignmentFlag)
property_reader("QTextEdit", /::alignment\s*\(/, "alignment")
property_writer("QTextEdit", /::setAlignment\s*\(/, "alignment")
@@ -14674,234 +13989,6 @@ property_writer("QTextEdit", /::setTextCursor\s*\(/, "textCursor")
# Property wordWrapMode (QTextOption_WrapMode)
property_reader("QTextEdit", /::wordWrapMode\s*\(/, "wordWrapMode")
property_writer("QTextEdit", /::setWordWrapMode\s*\(/, "wordWrapMode")
-# Property background (QBrush)
-property_reader("QTextFormat", /::background\s*\(/, "background")
-property_writer("QTextFormat", /::setBackground\s*\(/, "background")
-# Property foreground (QBrush)
-property_reader("QTextFormat", /::foreground\s*\(/, "foreground")
-property_writer("QTextFormat", /::setForeground\s*\(/, "foreground")
-# Property layoutDirection (Qt_LayoutDirection)
-property_reader("QTextFormat", /::layoutDirection\s*\(/, "layoutDirection")
-property_writer("QTextFormat", /::setLayoutDirection\s*\(/, "layoutDirection")
-# Property objectIndex (int)
-property_reader("QTextFormat", /::objectIndex\s*\(/, "objectIndex")
-property_writer("QTextFormat", /::setObjectIndex\s*\(/, "objectIndex")
-# Property objectType (int)
-property_reader("QTextFormat", /::objectType\s*\(/, "objectType")
-property_writer("QTextFormat", /::setObjectType\s*\(/, "objectType")
-# Property frameFormat (QTextFrameFormat)
-property_reader("QTextFrame", /::frameFormat\s*\(/, "frameFormat")
-property_writer("QTextFrame", /::setFrameFormat\s*\(/, "frameFormat")
-# Property border (double)
-property_reader("QTextFrameFormat", /::border\s*\(/, "border")
-property_writer("QTextFrameFormat", /::setBorder\s*\(/, "border")
-# Property borderBrush (QBrush)
-property_reader("QTextFrameFormat", /::borderBrush\s*\(/, "borderBrush")
-property_writer("QTextFrameFormat", /::setBorderBrush\s*\(/, "borderBrush")
-# Property borderStyle (QTextFrameFormat_BorderStyle)
-property_reader("QTextFrameFormat", /::borderStyle\s*\(/, "borderStyle")
-property_writer("QTextFrameFormat", /::setBorderStyle\s*\(/, "borderStyle")
-# Property bottomMargin (double)
-property_reader("QTextFrameFormat", /::bottomMargin\s*\(/, "bottomMargin")
-property_writer("QTextFrameFormat", /::setBottomMargin\s*\(/, "bottomMargin")
-# Property leftMargin (double)
-property_reader("QTextFrameFormat", /::leftMargin\s*\(/, "leftMargin")
-property_writer("QTextFrameFormat", /::setLeftMargin\s*\(/, "leftMargin")
-# Property margin (double)
-property_reader("QTextFrameFormat", /::margin\s*\(/, "margin")
-property_writer("QTextFrameFormat", /::setMargin\s*\(/, "margin")
-# Property padding (double)
-property_reader("QTextFrameFormat", /::padding\s*\(/, "padding")
-property_writer("QTextFrameFormat", /::setPadding\s*\(/, "padding")
-# Property pageBreakPolicy (QTextFormat_QFlags_PageBreakFlag)
-property_reader("QTextFrameFormat", /::pageBreakPolicy\s*\(/, "pageBreakPolicy")
-property_writer("QTextFrameFormat", /::setPageBreakPolicy\s*\(/, "pageBreakPolicy")
-# Property position (QTextFrameFormat_Position)
-property_reader("QTextFrameFormat", /::position\s*\(/, "position")
-property_writer("QTextFrameFormat", /::setPosition\s*\(/, "position")
-# Property rightMargin (double)
-property_reader("QTextFrameFormat", /::rightMargin\s*\(/, "rightMargin")
-property_writer("QTextFrameFormat", /::setRightMargin\s*\(/, "rightMargin")
-# Property topMargin (double)
-property_reader("QTextFrameFormat", /::topMargin\s*\(/, "topMargin")
-property_writer("QTextFrameFormat", /::setTopMargin\s*\(/, "topMargin")
-# Property height (double)
-property_reader("QTextImageFormat", /::height\s*\(/, "height")
-property_writer("QTextImageFormat", /::setHeight\s*\(/, "height")
-# Property name (string)
-property_reader("QTextImageFormat", /::name\s*\(/, "name")
-property_writer("QTextImageFormat", /::setName\s*\(/, "name")
-# Property width (double)
-property_reader("QTextImageFormat", /::width\s*\(/, "width")
-property_writer("QTextImageFormat", /::setWidth\s*\(/, "width")
-# Property ascent (double)
-property_reader("QTextInlineObject", /::ascent\s*\(/, "ascent")
-property_writer("QTextInlineObject", /::setAscent\s*\(/, "ascent")
-# Property descent (double)
-property_reader("QTextInlineObject", /::descent\s*\(/, "descent")
-property_writer("QTextInlineObject", /::setDescent\s*\(/, "descent")
-# Property width (double)
-property_reader("QTextInlineObject", /::width\s*\(/, "width")
-property_writer("QTextInlineObject", /::setWidth\s*\(/, "width")
-# Property additionalFormats (QTextLayout_FormatRange[])
-property_reader("QTextLayout", /::additionalFormats\s*\(/, "additionalFormats")
-property_writer("QTextLayout", /::setAdditionalFormats\s*\(/, "additionalFormats")
-# Property cacheEnabled (bool)
-property_reader("QTextLayout", /::cacheEnabled\s*\(/, "cacheEnabled")
-property_writer("QTextLayout", /::setCacheEnabled\s*\(/, "cacheEnabled")
-# Property cursorMoveStyle (Qt_CursorMoveStyle)
-property_reader("QTextLayout", /::cursorMoveStyle\s*\(/, "cursorMoveStyle")
-property_writer("QTextLayout", /::setCursorMoveStyle\s*\(/, "cursorMoveStyle")
-# Property font (QFont)
-property_reader("QTextLayout", /::font\s*\(/, "font")
-property_writer("QTextLayout", /::setFont\s*\(/, "font")
-# Property position (QPointF)
-property_reader("QTextLayout", /::position\s*\(/, "position")
-property_writer("QTextLayout", /::setPosition\s*\(/, "position")
-# Property text (string)
-property_reader("QTextLayout", /::text\s*\(/, "text")
-property_writer("QTextLayout", /::setText\s*\(/, "text")
-# Property textOption (QTextOption)
-property_reader("QTextLayout", /::textOption\s*\(/, "textOption")
-property_writer("QTextLayout", /::setTextOption\s*\(/, "textOption")
-# Property leadingIncluded (bool)
-property_reader("QTextLine", /::leadingIncluded\s*\(/, "leadingIncluded")
-property_writer("QTextLine", /::setLeadingIncluded\s*\(/, "leadingIncluded")
-# Property position (QPointF)
-property_reader("QTextLine", /::position\s*\(/, "position")
-property_writer("QTextLine", /::setPosition\s*\(/, "position")
-# Property format (QTextListFormat)
-property_reader("QTextList", /::format\s*\(/, "format")
-property_writer("QTextList", /::setFormat\s*\(/, "format")
-# Property indent (int)
-property_reader("QTextListFormat", /::indent\s*\(/, "indent")
-property_writer("QTextListFormat", /::setIndent\s*\(/, "indent")
-# Property numberPrefix (string)
-property_reader("QTextListFormat", /::numberPrefix\s*\(/, "numberPrefix")
-property_writer("QTextListFormat", /::setNumberPrefix\s*\(/, "numberPrefix")
-# Property numberSuffix (string)
-property_reader("QTextListFormat", /::numberSuffix\s*\(/, "numberSuffix")
-property_writer("QTextListFormat", /::setNumberSuffix\s*\(/, "numberSuffix")
-# Property style (QTextListFormat_Style)
-property_reader("QTextListFormat", /::style\s*\(/, "style")
-property_writer("QTextListFormat", /::setStyle\s*\(/, "style")
-# Property alignment (Qt_QFlags_AlignmentFlag)
-property_reader("QTextOption", /::alignment\s*\(/, "alignment")
-property_writer("QTextOption", /::setAlignment\s*\(/, "alignment")
-# Property flags (QTextOption_QFlags_Flag)
-property_reader("QTextOption", /::flags\s*\(/, "flags")
-property_writer("QTextOption", /::setFlags\s*\(/, "flags")
-# Property tabArray (double[])
-property_reader("QTextOption", /::tabArray\s*\(/, "tabArray")
-property_writer("QTextOption", /::setTabArray\s*\(/, "tabArray")
-# Property tabStop (double)
-property_reader("QTextOption", /::tabStop\s*\(/, "tabStop")
-property_writer("QTextOption", /::setTabStop\s*\(/, "tabStop")
-# Property tabs (QTextOption_Tab[])
-property_reader("QTextOption", /::tabs\s*\(/, "tabs")
-property_writer("QTextOption", /::setTabs\s*\(/, "tabs")
-# Property textDirection (Qt_LayoutDirection)
-property_reader("QTextOption", /::textDirection\s*\(/, "textDirection")
-property_writer("QTextOption", /::setTextDirection\s*\(/, "textDirection")
-# Property useDesignMetrics (bool)
-property_reader("QTextOption", /::useDesignMetrics\s*\(/, "useDesignMetrics")
-property_writer("QTextOption", /::setUseDesignMetrics\s*\(/, "useDesignMetrics")
-# Property wrapMode (QTextOption_WrapMode)
-property_reader("QTextOption", /::wrapMode\s*\(/, "wrapMode")
-property_writer("QTextOption", /::setWrapMode\s*\(/, "wrapMode")
-# Property autoDetectUnicode (bool)
-property_reader("QTextStream", /::autoDetectUnicode\s*\(/, "autoDetectUnicode")
-property_writer("QTextStream", /::setAutoDetectUnicode\s*\(/, "autoDetectUnicode")
-# Property codec (QTextCodec_Native *)
-property_reader("QTextStream", /::codec\s*\(/, "codec")
-property_writer("QTextStream", /::setCodec\s*\(/, "codec")
-# Property device (QIODevice *)
-property_reader("QTextStream", /::device\s*\(/, "device")
-property_writer("QTextStream", /::setDevice\s*\(/, "device")
-# Property fieldAlignment (QTextStream_FieldAlignment)
-property_reader("QTextStream", /::fieldAlignment\s*\(/, "fieldAlignment")
-property_writer("QTextStream", /::setFieldAlignment\s*\(/, "fieldAlignment")
-# Property fieldWidth (int)
-property_reader("QTextStream", /::fieldWidth\s*\(/, "fieldWidth")
-property_writer("QTextStream", /::setFieldWidth\s*\(/, "fieldWidth")
-# Property generateByteOrderMark (bool)
-property_reader("QTextStream", /::generateByteOrderMark\s*\(/, "generateByteOrderMark")
-property_writer("QTextStream", /::setGenerateByteOrderMark\s*\(/, "generateByteOrderMark")
-# Property integerBase (int)
-property_reader("QTextStream", /::integerBase\s*\(/, "integerBase")
-property_writer("QTextStream", /::setIntegerBase\s*\(/, "integerBase")
-# Property locale (QLocale)
-property_reader("QTextStream", /::locale\s*\(/, "locale")
-property_writer("QTextStream", /::setLocale\s*\(/, "locale")
-# Property numberFlags (QTextStream_QFlags_NumberFlag)
-property_reader("QTextStream", /::numberFlags\s*\(/, "numberFlags")
-property_writer("QTextStream", /::setNumberFlags\s*\(/, "numberFlags")
-# Property padChar (unsigned int)
-property_reader("QTextStream", /::padChar\s*\(/, "padChar")
-property_writer("QTextStream", /::setPadChar\s*\(/, "padChar")
-# Property realNumberNotation (QTextStream_RealNumberNotation)
-property_reader("QTextStream", /::realNumberNotation\s*\(/, "realNumberNotation")
-property_writer("QTextStream", /::setRealNumberNotation\s*\(/, "realNumberNotation")
-# Property realNumberPrecision (int)
-property_reader("QTextStream", /::realNumberPrecision\s*\(/, "realNumberPrecision")
-property_writer("QTextStream", /::setRealNumberPrecision\s*\(/, "realNumberPrecision")
-# Property status (QTextStream_Status)
-property_reader("QTextStream", /::status\s*\(/, "status")
-property_writer("QTextStream", /::setStatus\s*\(/, "status")
-# Property string (string *)
-property_reader("QTextStream", /::string\s*\(/, "string")
-property_writer("QTextStream", /::setString\s*\(/, "string")
-# Property format (QTextTableFormat)
-property_reader("QTextTable", /::format\s*\(/, "format")
-property_writer("QTextTable", /::setFormat\s*\(/, "format")
-# Property format (QTextCharFormat)
-property_reader("QTextTableCell", /::format\s*\(/, "format")
-property_writer("QTextTableCell", /::setFormat\s*\(/, "format")
-# Property bottomPadding (double)
-property_reader("QTextTableCellFormat", /::bottomPadding\s*\(/, "bottomPadding")
-property_writer("QTextTableCellFormat", /::setBottomPadding\s*\(/, "bottomPadding")
-# Property leftPadding (double)
-property_reader("QTextTableCellFormat", /::leftPadding\s*\(/, "leftPadding")
-property_writer("QTextTableCellFormat", /::setLeftPadding\s*\(/, "leftPadding")
-# Property rightPadding (double)
-property_reader("QTextTableCellFormat", /::rightPadding\s*\(/, "rightPadding")
-property_writer("QTextTableCellFormat", /::setRightPadding\s*\(/, "rightPadding")
-# Property topPadding (double)
-property_reader("QTextTableCellFormat", /::topPadding\s*\(/, "topPadding")
-property_writer("QTextTableCellFormat", /::setTopPadding\s*\(/, "topPadding")
-# Property alignment (Qt_QFlags_AlignmentFlag)
-property_reader("QTextTableFormat", /::alignment\s*\(/, "alignment")
-property_writer("QTextTableFormat", /::setAlignment\s*\(/, "alignment")
-# Property cellPadding (double)
-property_reader("QTextTableFormat", /::cellPadding\s*\(/, "cellPadding")
-property_writer("QTextTableFormat", /::setCellPadding\s*\(/, "cellPadding")
-# Property cellSpacing (double)
-property_reader("QTextTableFormat", /::cellSpacing\s*\(/, "cellSpacing")
-property_writer("QTextTableFormat", /::setCellSpacing\s*\(/, "cellSpacing")
-# Property columnWidthConstraints (QTextLength[])
-property_reader("QTextTableFormat", /::columnWidthConstraints\s*\(/, "columnWidthConstraints")
-property_writer("QTextTableFormat", /::setColumnWidthConstraints\s*\(/, "columnWidthConstraints")
-# Property columns (int)
-property_reader("QTextTableFormat", /::columns\s*\(/, "columns")
-property_writer("QTextTableFormat", /::setColumns\s*\(/, "columns")
-# Property headerRowCount (int)
-property_reader("QTextTableFormat", /::headerRowCount\s*\(/, "headerRowCount")
-property_writer("QTextTableFormat", /::setHeaderRowCount\s*\(/, "headerRowCount")
-# Property eventDispatcher (QAbstractEventDispatcher_Native *)
-property_reader("QThread", /::eventDispatcher\s*\(/, "eventDispatcher")
-property_writer("QThread", /::setEventDispatcher\s*\(/, "eventDispatcher")
-# Property priority (QThread_Priority)
-property_reader("QThread", /::priority\s*\(/, "priority")
-property_writer("QThread", /::setPriority\s*\(/, "priority")
-# Property stackSize (unsigned int)
-property_reader("QThread", /::stackSize\s*\(/, "stackSize")
-property_writer("QThread", /::setStackSize\s*\(/, "stackSize")
-# Property endFrame (int)
-property_reader("QTimeLine", /::endFrame\s*\(/, "endFrame")
-property_writer("QTimeLine", /::setEndFrame\s*\(/, "endFrame")
-# Property startFrame (int)
-property_reader("QTimeLine", /::startFrame\s*\(/, "startFrame")
-property_writer("QTimeLine", /::setStartFrame\s*\(/, "startFrame")
# Property currentWidget (QWidget_Native *)
property_reader("QToolBox", /::currentWidget\s*\(/, "currentWidget")
property_writer("QToolBox", /::setCurrentWidget\s*\(/, "currentWidget")
@@ -14917,93 +14004,6 @@ property_writer("QToolTip", /::setFont\s*\(/, "font")
# Property palette (QPalette)
property_reader("QToolTip", /::palette\s*\(/, "palette")
property_writer("QToolTip", /::setPalette\s*\(/, "palette")
-# Property capabilities (QTouchDevice_QFlags_CapabilityFlag)
-property_reader("QTouchDevice", /::capabilities\s*\(/, "capabilities")
-property_writer("QTouchDevice", /::setCapabilities\s*\(/, "capabilities")
-# Property maximumTouchPoints (int)
-property_reader("QTouchDevice", /::maximumTouchPoints\s*\(/, "maximumTouchPoints")
-property_writer("QTouchDevice", /::setMaximumTouchPoints\s*\(/, "maximumTouchPoints")
-# Property name (string)
-property_reader("QTouchDevice", /::name\s*\(/, "name")
-property_writer("QTouchDevice", /::setName\s*\(/, "name")
-# Property type (QTouchDevice_DeviceType)
-property_reader("QTouchDevice", /::type\s*\(/, "type")
-property_writer("QTouchDevice", /::setType\s*\(/, "type")
-# Property device (QTouchDevice *)
-property_reader("QTouchEvent", /::device\s*\(/, "device")
-property_writer("QTouchEvent", /::setDevice\s*\(/, "device")
-# Property target (QObject_Native *)
-property_reader("QTouchEvent", /::target\s*\(/, "target")
-property_writer("QTouchEvent", /::setTarget\s*\(/, "target")
-# Property touchPointStates (Qt_QFlags_TouchPointState)
-property_reader("QTouchEvent", /::touchPointStates\s*\(/, "touchPointStates")
-property_writer("QTouchEvent", /::setTouchPointStates\s*\(/, "touchPointStates")
-# Property touchPoints (QTouchEvent_TouchPoint[])
-property_reader("QTouchEvent", /::touchPoints\s*\(/, "touchPoints")
-property_writer("QTouchEvent", /::setTouchPoints\s*\(/, "touchPoints")
-# Property window (QWindow_Native *)
-property_reader("QTouchEvent", /::window\s*\(/, "window")
-property_writer("QTouchEvent", /::setWindow\s*\(/, "window")
-# Property flags (QTouchEvent_TouchPoint_QFlags_InfoFlag)
-property_reader("QTouchEvent_TouchPoint", /::flags\s*\(/, "flags")
-property_writer("QTouchEvent_TouchPoint", /::setFlags\s*\(/, "flags")
-# Property id (int)
-property_reader("QTouchEvent_TouchPoint", /::id\s*\(/, "id")
-property_writer("QTouchEvent_TouchPoint", /::setId\s*\(/, "id")
-# Property lastNormalizedPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::lastNormalizedPos\s*\(/, "lastNormalizedPos")
-property_writer("QTouchEvent_TouchPoint", /::setLastNormalizedPos\s*\(/, "lastNormalizedPos")
-# Property lastPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::lastPos\s*\(/, "lastPos")
-property_writer("QTouchEvent_TouchPoint", /::setLastPos\s*\(/, "lastPos")
-# Property lastScenePos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::lastScenePos\s*\(/, "lastScenePos")
-property_writer("QTouchEvent_TouchPoint", /::setLastScenePos\s*\(/, "lastScenePos")
-# Property lastScreenPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::lastScreenPos\s*\(/, "lastScreenPos")
-property_writer("QTouchEvent_TouchPoint", /::setLastScreenPos\s*\(/, "lastScreenPos")
-# Property normalizedPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::normalizedPos\s*\(/, "normalizedPos")
-property_writer("QTouchEvent_TouchPoint", /::setNormalizedPos\s*\(/, "normalizedPos")
-# Property pos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::pos\s*\(/, "pos")
-property_writer("QTouchEvent_TouchPoint", /::setPos\s*\(/, "pos")
-# Property pressure (double)
-property_reader("QTouchEvent_TouchPoint", /::pressure\s*\(/, "pressure")
-property_writer("QTouchEvent_TouchPoint", /::setPressure\s*\(/, "pressure")
-# Property rawScreenPositions (QPointF[])
-property_reader("QTouchEvent_TouchPoint", /::rawScreenPositions\s*\(/, "rawScreenPositions")
-property_writer("QTouchEvent_TouchPoint", /::setRawScreenPositions\s*\(/, "rawScreenPositions")
-# Property rect (QRectF)
-property_reader("QTouchEvent_TouchPoint", /::rect\s*\(/, "rect")
-property_writer("QTouchEvent_TouchPoint", /::setRect\s*\(/, "rect")
-# Property scenePos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::scenePos\s*\(/, "scenePos")
-property_writer("QTouchEvent_TouchPoint", /::setScenePos\s*\(/, "scenePos")
-# Property sceneRect (QRectF)
-property_reader("QTouchEvent_TouchPoint", /::sceneRect\s*\(/, "sceneRect")
-property_writer("QTouchEvent_TouchPoint", /::setSceneRect\s*\(/, "sceneRect")
-# Property screenPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::screenPos\s*\(/, "screenPos")
-property_writer("QTouchEvent_TouchPoint", /::setScreenPos\s*\(/, "screenPos")
-# Property screenRect (QRectF)
-property_reader("QTouchEvent_TouchPoint", /::screenRect\s*\(/, "screenRect")
-property_writer("QTouchEvent_TouchPoint", /::setScreenRect\s*\(/, "screenRect")
-# Property startNormalizedPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::startNormalizedPos\s*\(/, "startNormalizedPos")
-property_writer("QTouchEvent_TouchPoint", /::setStartNormalizedPos\s*\(/, "startNormalizedPos")
-# Property startPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::startPos\s*\(/, "startPos")
-property_writer("QTouchEvent_TouchPoint", /::setStartPos\s*\(/, "startPos")
-# Property startScenePos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::startScenePos\s*\(/, "startScenePos")
-property_writer("QTouchEvent_TouchPoint", /::setStartScenePos\s*\(/, "startScenePos")
-# Property startScreenPos (QPointF)
-property_reader("QTouchEvent_TouchPoint", /::startScreenPos\s*\(/, "startScreenPos")
-property_writer("QTouchEvent_TouchPoint", /::setStartScreenPos\s*\(/, "startScreenPos")
-# Property velocity (QVector2D)
-property_reader("QTouchEvent_TouchPoint", /::velocity\s*\(/, "velocity")
-property_writer("QTouchEvent_TouchPoint", /::setVelocity\s*\(/, "velocity")
# Property header (QHeaderView_Native *)
property_reader("QTreeView", /::header\s*\(/, "header")
property_writer("QTreeView", /::setHeader\s*\(/, "header")
@@ -15049,177 +14049,12 @@ property_writer("QTreeWidgetItem", /::setHidden\s*\(/, "hidden")
# Property selected (bool)
property_reader("QTreeWidgetItem", /::isSelected\s*\(/, "selected")
property_writer("QTreeWidgetItem", /::setSelected\s*\(/, "selected")
-# Property multicastInterface (QNetworkInterface)
-property_reader("QUdpSocket", /::multicastInterface\s*\(/, "multicastInterface")
-property_writer("QUdpSocket", /::setMulticastInterface\s*\(/, "multicastInterface")
-# Property text (string)
-property_reader("QUndoCommand", /::text\s*\(/, "text")
-property_writer("QUndoCommand", /::setText\s*\(/, "text")
-# Property activeStack (QUndoStack_Native *)
-property_reader("QUndoGroup", /::activeStack\s*\(/, "activeStack")
-property_writer("QUndoGroup", /::setActiveStack\s*\(/, "activeStack")
-# Property index (int)
-property_reader("QUndoStack", /::index\s*\(/, "index")
-property_writer("QUndoStack", /::setIndex\s*\(/, "index")
# Property group (QUndoGroup_Native *)
property_reader("QUndoView", /::group\s*\(/, "group")
property_writer("QUndoView", /::setGroup\s*\(/, "group")
# Property stack (QUndoStack_Native *)
property_reader("QUndoView", /::stack\s*\(/, "stack")
property_writer("QUndoView", /::setStack\s*\(/, "stack")
-# Property authority (string)
-property_reader("QUrl", /::authority\s*\(/, "authority")
-property_writer("QUrl", /::setAuthority\s*\(/, "authority")
-# Property fragment (string)
-property_reader("QUrl", /::fragment\s*\(/, "fragment")
-property_writer("QUrl", /::setFragment\s*\(/, "fragment")
-# Property host (string)
-property_reader("QUrl", /::host\s*\(/, "host")
-property_writer("QUrl", /::setHost\s*\(/, "host")
-# Property idnWhitelist (string[])
-property_reader("QUrl", /::idnWhitelist\s*\(/, "idnWhitelist")
-property_writer("QUrl", /::setIdnWhitelist\s*\(/, "idnWhitelist")
-# Property password (string)
-property_reader("QUrl", /::password\s*\(/, "password")
-property_writer("QUrl", /::setPassword\s*\(/, "password")
-# Property path (string)
-property_reader("QUrl", /::path\s*\(/, "path")
-property_writer("QUrl", /::setPath\s*\(/, "path")
-# Property port (int)
-property_reader("QUrl", /::port\s*\(/, "port")
-property_writer("QUrl", /::setPort\s*\(/, "port")
-# Property scheme (string)
-property_reader("QUrl", /::scheme\s*\(/, "scheme")
-property_writer("QUrl", /::setScheme\s*\(/, "scheme")
-# Property url (string)
-property_reader("QUrl", /::url\s*\(/, "url")
-property_writer("QUrl", /::setUrl\s*\(/, "url")
-# Property userInfo (string)
-property_reader("QUrl", /::userInfo\s*\(/, "userInfo")
-property_writer("QUrl", /::setUserInfo\s*\(/, "userInfo")
-# Property userName (string)
-property_reader("QUrl", /::userName\s*\(/, "userName")
-property_writer("QUrl", /::setUserName\s*\(/, "userName")
-# Property query (string)
-property_reader("QUrlQuery", /::query\s*\(/, "query")
-property_writer("QUrlQuery", /::setQuery\s*\(/, "query")
-# Property queryItems (QPair_QString_QString[])
-property_reader("QUrlQuery", /::queryItems\s*\(/, "queryItems")
-property_writer("QUrlQuery", /::setQueryItems\s*\(/, "queryItems")
-# Property locale (QLocale)
-property_reader("QValidator", /::locale\s*\(/, "locale")
-property_writer("QValidator", /::setLocale\s*\(/, "locale")
-# Property keyValues (QPair_double_QVariant[])
-property_reader("QVariantAnimation", /::keyValues\s*\(/, "keyValues")
-property_writer("QVariantAnimation", /::setKeyValues\s*\(/, "keyValues")
-# Property x (float)
-property_reader("QVector2D", /::x\s*\(/, "x")
-property_writer("QVector2D", /::setX\s*\(/, "x")
-# Property y (float)
-property_reader("QVector2D", /::y\s*\(/, "y")
-property_writer("QVector2D", /::setY\s*\(/, "y")
-# Property x (float)
-property_reader("QVector3D", /::x\s*\(/, "x")
-property_writer("QVector3D", /::setX\s*\(/, "x")
-# Property y (float)
-property_reader("QVector3D", /::y\s*\(/, "y")
-property_writer("QVector3D", /::setY\s*\(/, "y")
-# Property z (float)
-property_reader("QVector3D", /::z\s*\(/, "z")
-property_writer("QVector3D", /::setZ\s*\(/, "z")
-# Property w (float)
-property_reader("QVector4D", /::w\s*\(/, "w")
-property_writer("QVector4D", /::setW\s*\(/, "w")
-# Property x (float)
-property_reader("QVector4D", /::x\s*\(/, "x")
-property_writer("QVector4D", /::setX\s*\(/, "x")
-# Property y (float)
-property_reader("QVector4D", /::y\s*\(/, "y")
-property_writer("QVector4D", /::setY\s*\(/, "y")
-# Property z (float)
-property_reader("QVector4D", /::z\s*\(/, "z")
-property_writer("QVector4D", /::setZ\s*\(/, "z")
-# Property selectedDevice (int)
-property_reader("QVideoDeviceSelectorControl", /::selectedDevice\s*\(/, "selectedDevice")
-property_writer("QVideoDeviceSelectorControl", /::setSelectedDevice\s*\(/, "selectedDevice")
-# Property bitRate (int)
-property_reader("QVideoEncoderSettings", /::bitRate\s*\(/, "bitRate")
-property_writer("QVideoEncoderSettings", /::setBitRate\s*\(/, "bitRate")
-# Property codec (string)
-property_reader("QVideoEncoderSettings", /::codec\s*\(/, "codec")
-property_writer("QVideoEncoderSettings", /::setCodec\s*\(/, "codec")
-# Property encodingMode (QMultimedia_EncodingMode)
-property_reader("QVideoEncoderSettings", /::encodingMode\s*\(/, "encodingMode")
-property_writer("QVideoEncoderSettings", /::setEncodingMode\s*\(/, "encodingMode")
-# Property encodingOptions (map)
-property_reader("QVideoEncoderSettings", /::encodingOptions\s*\(/, "encodingOptions")
-property_writer("QVideoEncoderSettings", /::setEncodingOptions\s*\(/, "encodingOptions")
-# Property frameRate (double)
-property_reader("QVideoEncoderSettings", /::frameRate\s*\(/, "frameRate")
-property_writer("QVideoEncoderSettings", /::setFrameRate\s*\(/, "frameRate")
-# Property quality (QMultimedia_EncodingQuality)
-property_reader("QVideoEncoderSettings", /::quality\s*\(/, "quality")
-property_writer("QVideoEncoderSettings", /::setQuality\s*\(/, "quality")
-# Property resolution (QSize)
-property_reader("QVideoEncoderSettings", /::resolution\s*\(/, "resolution")
-property_writer("QVideoEncoderSettings", /::setResolution\s*\(/, "resolution")
-# Property videoSettings (QVideoEncoderSettings)
-property_reader("QVideoEncoderSettingsControl", /::videoSettings\s*\(/, "videoSettings")
-property_writer("QVideoEncoderSettingsControl", /::setVideoSettings\s*\(/, "videoSettings")
-# Property endTime (long long)
-property_reader("QVideoFrame", /::endTime\s*\(/, "endTime")
-property_writer("QVideoFrame", /::setEndTime\s*\(/, "endTime")
-# Property fieldType (QVideoFrame_FieldType)
-property_reader("QVideoFrame", /::fieldType\s*\(/, "fieldType")
-property_writer("QVideoFrame", /::setFieldType\s*\(/, "fieldType")
-# Property startTime (long long)
-property_reader("QVideoFrame", /::startTime\s*\(/, "startTime")
-property_writer("QVideoFrame", /::setStartTime\s*\(/, "startTime")
-# Property surface (QAbstractVideoSurface_Native *)
-property_reader("QVideoRendererControl", /::surface\s*\(/, "surface")
-property_writer("QVideoRendererControl", /::setSurface\s*\(/, "surface")
-# Property frameRate (double)
-property_reader("QVideoSurfaceFormat", /::frameRate\s*\(/, "frameRate")
-property_writer("QVideoSurfaceFormat", /::setFrameRate\s*\(/, "frameRate")
-# Property frameSize (QSize)
-property_reader("QVideoSurfaceFormat", /::frameSize\s*\(/, "frameSize")
-property_writer("QVideoSurfaceFormat", /::setFrameSize\s*\(/, "frameSize")
-# Property pixelAspectRatio (QSize)
-property_reader("QVideoSurfaceFormat", /::pixelAspectRatio\s*\(/, "pixelAspectRatio")
-property_writer("QVideoSurfaceFormat", /::setPixelAspectRatio\s*\(/, "pixelAspectRatio")
-# Property scanLineDirection (QVideoSurfaceFormat_Direction)
-property_reader("QVideoSurfaceFormat", /::scanLineDirection\s*\(/, "scanLineDirection")
-property_writer("QVideoSurfaceFormat", /::setScanLineDirection\s*\(/, "scanLineDirection")
-# Property viewport (QRect)
-property_reader("QVideoSurfaceFormat", /::viewport\s*\(/, "viewport")
-property_writer("QVideoSurfaceFormat", /::setViewport\s*\(/, "viewport")
-# Property yCbCrColorSpace (QVideoSurfaceFormat_YCbCrColorSpace)
-property_reader("QVideoSurfaceFormat", /::yCbCrColorSpace\s*\(/, "yCbCrColorSpace")
-property_writer("QVideoSurfaceFormat", /::setYCbCrColorSpace\s*\(/, "yCbCrColorSpace")
-# Property aspectRatioMode (Qt_AspectRatioMode)
-property_reader("QVideoWindowControl", /::aspectRatioMode\s*\(/, "aspectRatioMode")
-property_writer("QVideoWindowControl", /::setAspectRatioMode\s*\(/, "aspectRatioMode")
-# Property brightness (int)
-property_reader("QVideoWindowControl", /::brightness\s*\(/, "brightness")
-property_writer("QVideoWindowControl", /::setBrightness\s*\(/, "brightness")
-# Property contrast (int)
-property_reader("QVideoWindowControl", /::contrast\s*\(/, "contrast")
-property_writer("QVideoWindowControl", /::setContrast\s*\(/, "contrast")
-# Property displayRect (QRect)
-property_reader("QVideoWindowControl", /::displayRect\s*\(/, "displayRect")
-property_writer("QVideoWindowControl", /::setDisplayRect\s*\(/, "displayRect")
-# Property fullScreen (bool)
-property_reader("QVideoWindowControl", /::isFullScreen\s*\(/, "fullScreen")
-property_writer("QVideoWindowControl", /::setFullScreen\s*\(/, "fullScreen")
-# Property hue (int)
-property_reader("QVideoWindowControl", /::hue\s*\(/, "hue")
-property_writer("QVideoWindowControl", /::setHue\s*\(/, "hue")
-# Property saturation (int)
-property_reader("QVideoWindowControl", /::saturation\s*\(/, "saturation")
-property_writer("QVideoWindowControl", /::setSaturation\s*\(/, "saturation")
-# Property winId (unsigned long long)
-property_reader("QVideoWindowControl", /::winId\s*\(/, "winId")
-property_writer("QVideoWindowControl", /::setWinId\s*\(/, "winId")
# Property backgroundRole (QPalette_ColorRole)
property_reader("QWidget", /::backgroundRole\s*\(/, "backgroundRole")
property_writer("QWidget", /::setBackgroundRole\s*\(/, "backgroundRole")
@@ -15241,6 +14076,9 @@ property_writer("QWidget", /::setHidden\s*\(/, "hidden")
# Property layout (QLayout_Native *)
property_reader("QWidget", /::layout\s*\(/, "layout")
property_writer("QWidget", /::setLayout\s*\(/, "layout")
+# Property screen (QScreen_Native *)
+property_reader("QWidget", /::screen\s*\(/, "screen")
+property_writer("QWidget", /::setScreen\s*\(/, "screen")
# Property style (QStyle_Native *)
property_reader("QWidget", /::style\s*\(/, "style")
property_writer("QWidget", /::setStyle\s*\(/, "style")
@@ -15259,57 +14097,6 @@ property_writer("QWidgetAction", /::setDefaultWidget\s*\(/, "defaultWidget")
# Property geometry (QRect)
property_reader("QWidgetItem", /::geometry\s*\(/, "geometry")
property_writer("QWidgetItem", /::setGeometry\s*\(/, "geometry")
-# Property baseSize (QSize)
-property_reader("QWindow", /::baseSize\s*\(/, "baseSize")
-property_writer("QWindow", /::setBaseSize\s*\(/, "baseSize")
-# Property cursor (QCursor)
-property_reader("QWindow", /::cursor\s*\(/, "cursor")
-property_writer("QWindow", /::setCursor\s*\(/, "cursor")
-# Property filePath (string)
-property_reader("QWindow", /::filePath\s*\(/, "filePath")
-property_writer("QWindow", /::setFilePath\s*\(/, "filePath")
-# Property format (QSurfaceFormat)
-property_reader("QWindow", /::format\s*\(/, "format")
-property_writer("QWindow", /::setFormat\s*\(/, "format")
-# Property framePosition (QPoint)
-property_reader("QWindow", /::framePosition\s*\(/, "framePosition")
-property_writer("QWindow", /::setFramePosition\s*\(/, "framePosition")
-# Property geometry (QRect)
-property_reader("QWindow", /::geometry\s*\(/, "geometry")
-property_writer("QWindow", /::setGeometry\s*\(/, "geometry")
-# Property icon (QIcon)
-property_reader("QWindow", /::icon\s*\(/, "icon")
-property_writer("QWindow", /::setIcon\s*\(/, "icon")
-# Property mask (QRegion)
-property_reader("QWindow", /::mask\s*\(/, "mask")
-property_writer("QWindow", /::setMask\s*\(/, "mask")
-# Property maximumSize (QSize)
-property_reader("QWindow", /::maximumSize\s*\(/, "maximumSize")
-property_writer("QWindow", /::setMaximumSize\s*\(/, "maximumSize")
-# Property minimumSize (QSize)
-property_reader("QWindow", /::minimumSize\s*\(/, "minimumSize")
-property_writer("QWindow", /::setMinimumSize\s*\(/, "minimumSize")
-# Property parent (QWindow_Native *)
-property_reader("QWindow", /::parent\s*\(/, "parent")
-property_writer("QWindow", /::setParent\s*\(/, "parent")
-# Property position (QPoint)
-property_reader("QWindow", /::position\s*\(/, "position")
-property_writer("QWindow", /::setPosition\s*\(/, "position")
-# Property screen (QScreen_Native *)
-property_reader("QWindow", /::screen\s*\(/, "screen")
-property_writer("QWindow", /::setScreen\s*\(/, "screen")
-# Property sizeIncrement (QSize)
-property_reader("QWindow", /::sizeIncrement\s*\(/, "sizeIncrement")
-property_writer("QWindow", /::setSizeIncrement\s*\(/, "sizeIncrement")
-# Property surfaceType (QSurface_SurfaceType)
-property_reader("QWindow", /::surfaceType\s*\(/, "surfaceType")
-property_writer("QWindow", /::setSurfaceType\s*\(/, "surfaceType")
-# Property transientParent (QWindow_Native *)
-property_reader("QWindow", /::transientParent\s*\(/, "transientParent")
-property_writer("QWindow", /::setTransientParent\s*\(/, "transientParent")
-# Property windowState (Qt_WindowState)
-property_reader("QWindow", /::windowState\s*\(/, "windowState")
-property_writer("QWindow", /::setWindowState\s*\(/, "windowState")
# Property sideWidget (QWidget_Native *)
property_reader("QWizard", /::sideWidget\s*\(/, "sideWidget")
property_writer("QWizard", /::setSideWidget\s*\(/, "sideWidget")
@@ -15319,96 +14106,642 @@ property_writer("QWizardPage", /::setCommitPage\s*\(/, "commitPage")
# Property finalPage (bool)
property_reader("QWizardPage", /::isFinalPage\s*\(/, "finalPage")
property_writer("QWizardPage", /::setFinalPage\s*\(/, "finalPage")
-# Property indentationDepth (int)
-property_reader("QXmlFormatter", /::indentationDepth\s*\(/, "indentationDepth")
-property_writer("QXmlFormatter", /::setIndentationDepth\s*\(/, "indentationDepth")
+# Property description (string)
+property_reader("QSvgGenerator", /::description\s*\(/, "description")
+property_writer("QSvgGenerator", /::setDescription\s*\(/, "description")
+# Property fileName (string)
+property_reader("QSvgGenerator", /::fileName\s*\(/, "fileName")
+property_writer("QSvgGenerator", /::setFileName\s*\(/, "fileName")
+# Property outputDevice (QIODevice *)
+property_reader("QSvgGenerator", /::outputDevice\s*\(/, "outputDevice")
+property_writer("QSvgGenerator", /::setOutputDevice\s*\(/, "outputDevice")
+# Property resolution (int)
+property_reader("QSvgGenerator", /::resolution\s*\(/, "resolution")
+property_writer("QSvgGenerator", /::setResolution\s*\(/, "resolution")
+# Property size (QSize)
+property_reader("QSvgGenerator", /::size\s*\(/, "size")
+property_writer("QSvgGenerator", /::setSize\s*\(/, "size")
+# Property title (string)
+property_reader("QSvgGenerator", /::title\s*\(/, "title")
+property_writer("QSvgGenerator", /::setTitle\s*\(/, "title")
+# Property viewBox (QRect)
+property_reader("QSvgGenerator", /::viewBox\s*\(/, "viewBox")
+property_writer("QSvgGenerator", /::setViewBox\s*\(/, "viewBox")
+# Property printRange (QAbstractPrintDialog_PrintRange)
+property_reader("QAbstractPrintDialog", /::printRange\s*\(/, "printRange")
+property_writer("QAbstractPrintDialog", /::setPrintRange\s*\(/, "printRange")
+# Property currentPage (int)
+property_reader("QPrintPreviewWidget", /::currentPage\s*\(/, "currentPage")
+property_writer("QPrintPreviewWidget", /::setCurrentPage\s*\(/, "currentPage")
+# Property orientation (QPageLayout_Orientation)
+property_reader("QPrintPreviewWidget", /::orientation\s*\(/, "orientation")
+property_writer("QPrintPreviewWidget", /::setOrientation\s*\(/, "orientation")
+# Property viewMode (QPrintPreviewWidget_ViewMode)
+property_reader("QPrintPreviewWidget", /::viewMode\s*\(/, "viewMode")
+property_writer("QPrintPreviewWidget", /::setViewMode\s*\(/, "viewMode")
+# Property zoomFactor (double)
+property_reader("QPrintPreviewWidget", /::zoomFactor\s*\(/, "zoomFactor")
+property_writer("QPrintPreviewWidget", /::setZoomFactor\s*\(/, "zoomFactor")
+# Property zoomMode (QPrintPreviewWidget_ZoomMode)
+property_reader("QPrintPreviewWidget", /::zoomMode\s*\(/, "zoomMode")
+property_writer("QPrintPreviewWidget", /::setZoomMode\s*\(/, "zoomMode")
+# Property collateCopies (bool)
+property_reader("QPrinter", /::collateCopies\s*\(/, "collateCopies")
+property_writer("QPrinter", /::setCollateCopies\s*\(/, "collateCopies")
+# Property colorMode (QPrinter_ColorMode)
+property_reader("QPrinter", /::colorMode\s*\(/, "colorMode")
+property_writer("QPrinter", /::setColorMode\s*\(/, "colorMode")
+# Property copyCount (int)
+property_reader("QPrinter", /::copyCount\s*\(/, "copyCount")
+property_writer("QPrinter", /::setCopyCount\s*\(/, "copyCount")
+# Property creator (string)
+property_reader("QPrinter", /::creator\s*\(/, "creator")
+property_writer("QPrinter", /::setCreator\s*\(/, "creator")
+# Property docName (string)
+property_reader("QPrinter", /::docName\s*\(/, "docName")
+property_writer("QPrinter", /::setDocName\s*\(/, "docName")
+# Property duplex (QPrinter_DuplexMode)
+property_reader("QPrinter", /::duplex\s*\(/, "duplex")
+property_writer("QPrinter", /::setDuplex\s*\(/, "duplex")
+# Property fontEmbeddingEnabled (bool)
+property_reader("QPrinter", /::fontEmbeddingEnabled\s*\(/, "fontEmbeddingEnabled")
+property_writer("QPrinter", /::setFontEmbeddingEnabled\s*\(/, "fontEmbeddingEnabled")
+# Property fullPage (bool)
+property_reader("QPrinter", /::fullPage\s*\(/, "fullPage")
+property_writer("QPrinter", /::setFullPage\s*\(/, "fullPage")
+# Property outputFileName (string)
+property_reader("QPrinter", /::outputFileName\s*\(/, "outputFileName")
+property_writer("QPrinter", /::setOutputFileName\s*\(/, "outputFileName")
+# Property outputFormat (QPrinter_OutputFormat)
+property_reader("QPrinter", /::outputFormat\s*\(/, "outputFormat")
+property_writer("QPrinter", /::setOutputFormat\s*\(/, "outputFormat")
+# Property pageOrder (QPrinter_PageOrder)
+property_reader("QPrinter", /::pageOrder\s*\(/, "pageOrder")
+property_writer("QPrinter", /::setPageOrder\s*\(/, "pageOrder")
+# Property paperSource (QPrinter_PaperSource)
+property_reader("QPrinter", /::paperSource\s*\(/, "paperSource")
+property_writer("QPrinter", /::setPaperSource\s*\(/, "paperSource")
+# Property pdfVersion (QPagedPaintDevice_PdfVersion)
+property_reader("QPrinter", /::pdfVersion\s*\(/, "pdfVersion")
+property_writer("QPrinter", /::setPdfVersion\s*\(/, "pdfVersion")
+# Property printProgram (string)
+property_reader("QPrinter", /::printProgram\s*\(/, "printProgram")
+property_writer("QPrinter", /::setPrintProgram\s*\(/, "printProgram")
+# Property printRange (QPrinter_PrintRange)
+property_reader("QPrinter", /::printRange\s*\(/, "printRange")
+property_writer("QPrinter", /::setPrintRange\s*\(/, "printRange")
+# Property printerName (string)
+property_reader("QPrinter", /::printerName\s*\(/, "printerName")
+property_writer("QPrinter", /::setPrinterName\s*\(/, "printerName")
+# Property resolution (int)
+property_reader("QPrinter", /::resolution\s*\(/, "resolution")
+property_writer("QPrinter", /::setResolution\s*\(/, "resolution")
+# Property audioFormat (QAudioFormat)
+property_reader("QAudioDecoder", /::audioFormat\s*\(/, "audioFormat")
+property_writer("QAudioDecoder", /::setAudioFormat\s*\(/, "audioFormat")
+# Property sourceDevice (QIODevice *)
+property_reader("QAudioDecoder", /::sourceDevice\s*\(/, "sourceDevice")
+property_writer("QAudioDecoder", /::setSourceDevice\s*\(/, "sourceDevice")
+# Property channelConfig (QAudioFormat_ChannelConfig)
+property_reader("QAudioFormat", /::channelConfig\s*\(/, "channelConfig")
+property_writer("QAudioFormat", /::setChannelConfig\s*\(/, "channelConfig")
+# Property channelCount (int)
+property_reader("QAudioFormat", /::channelCount\s*\(/, "channelCount")
+property_writer("QAudioFormat", /::setChannelCount\s*\(/, "channelCount")
+# Property sampleFormat (QAudioFormat_SampleFormat)
+property_reader("QAudioFormat", /::sampleFormat\s*\(/, "sampleFormat")
+property_writer("QAudioFormat", /::setSampleFormat\s*\(/, "sampleFormat")
+# Property sampleRate (int)
+property_reader("QAudioFormat", /::sampleRate\s*\(/, "sampleRate")
+property_writer("QAudioFormat", /::setSampleRate\s*\(/, "sampleRate")
+# Property bufferSize (long long)
+property_reader("QAudioSink", /::bufferSize\s*\(/, "bufferSize")
+property_writer("QAudioSink", /::setBufferSize\s*\(/, "bufferSize")
+# Property volume (double)
+property_reader("QAudioSink", /::volume\s*\(/, "volume")
+property_writer("QAudioSink", /::setVolume\s*\(/, "volume")
+# Property bufferSize (long long)
+property_reader("QAudioSource", /::bufferSize\s*\(/, "bufferSize")
+property_writer("QAudioSource", /::setBufferSize\s*\(/, "bufferSize")
+# Property volume (double)
+property_reader("QAudioSource", /::volume\s*\(/, "volume")
+property_writer("QAudioSource", /::setVolume\s*\(/, "volume")
+# Property resolution (QSize)
+property_reader("QImageCapture", /::resolution\s*\(/, "resolution")
+property_writer("QImageCapture", /::setResolution\s*\(/, "resolution")
+# Property videoSink (QVideoSink_Native *)
+property_reader("QMediaCaptureSession", /::videoSink\s*\(/, "videoSink")
+property_writer("QMediaCaptureSession", /::setVideoSink\s*\(/, "videoSink")
+# Property audioCodec (QMediaFormat_AudioCodec)
+property_reader("QMediaFormat", /::audioCodec\s*\(/, "audioCodec")
+property_writer("QMediaFormat", /::setAudioCodec\s*\(/, "audioCodec")
+# Property fileFormat (QMediaFormat_FileFormat)
+property_reader("QMediaFormat", /::fileFormat\s*\(/, "fileFormat")
+property_writer("QMediaFormat", /::setFileFormat\s*\(/, "fileFormat")
+# Property videoCodec (QMediaFormat_VideoCodec)
+property_reader("QMediaFormat", /::videoCodec\s*\(/, "videoCodec")
+property_writer("QMediaFormat", /::setVideoCodec\s*\(/, "videoCodec")
+# Property sourceDevice (QIODevice *)
+property_reader("QMediaPlayer", /::sourceDevice\s*\(/, "sourceDevice")
+property_writer("QMediaPlayer", /::setSourceDevice\s*\(/, "sourceDevice")
+# Property videoSink (QVideoSink_Native *)
+property_reader("QMediaPlayer", /::videoSink\s*\(/, "videoSink")
+property_writer("QMediaPlayer", /::setVideoSink\s*\(/, "videoSink")
+# Property audioBitRate (int)
+property_reader("QMediaRecorder", /::audioBitRate\s*\(/, "audioBitRate")
+property_writer("QMediaRecorder", /::setAudioBitRate\s*\(/, "audioBitRate")
+# Property audioChannelCount (int)
+property_reader("QMediaRecorder", /::audioChannelCount\s*\(/, "audioChannelCount")
+property_writer("QMediaRecorder", /::setAudioChannelCount\s*\(/, "audioChannelCount")
+# Property audioSampleRate (int)
+property_reader("QMediaRecorder", /::audioSampleRate\s*\(/, "audioSampleRate")
+property_writer("QMediaRecorder", /::setAudioSampleRate\s*\(/, "audioSampleRate")
+# Property encodingMode (QMediaRecorder_EncodingMode)
+property_reader("QMediaRecorder", /::encodingMode\s*\(/, "encodingMode")
+property_writer("QMediaRecorder", /::setEncodingMode\s*\(/, "encodingMode")
+# Property videoBitRate (int)
+property_reader("QMediaRecorder", /::videoBitRate\s*\(/, "videoBitRate")
+property_writer("QMediaRecorder", /::setVideoBitRate\s*\(/, "videoBitRate")
+# Property videoFrameRate (double)
+property_reader("QMediaRecorder", /::videoFrameRate\s*\(/, "videoFrameRate")
+property_writer("QMediaRecorder", /::setVideoFrameRate\s*\(/, "videoFrameRate")
+# Property videoResolution (QSize)
+property_reader("QMediaRecorder", /::videoResolution\s*\(/, "videoResolution")
+property_writer("QMediaRecorder", /::setVideoResolution\s*\(/, "videoResolution")
+# Property loopCount (int)
+property_reader("QSoundEffect", /::loopCount\s*\(/, "loopCount")
+property_writer("QSoundEffect", /::setLoopCount\s*\(/, "loopCount")
+# Property endTime (long long)
+property_reader("QVideoFrame", /::endTime\s*\(/, "endTime")
+property_writer("QVideoFrame", /::setEndTime\s*\(/, "endTime")
+# Property startTime (long long)
+property_reader("QVideoFrame", /::startTime\s*\(/, "startTime")
+property_writer("QVideoFrame", /::setStartTime\s*\(/, "startTime")
+# Property subtitleText (string)
+property_reader("QVideoFrame", /::subtitleText\s*\(/, "subtitleText")
+property_writer("QVideoFrame", /::setSubtitleText\s*\(/, "subtitleText")
+# Property frameRate (double)
+property_reader("QVideoFrameFormat", /::frameRate\s*\(/, "frameRate")
+property_writer("QVideoFrameFormat", /::setFrameRate\s*\(/, "frameRate")
+# Property frameSize (QSize)
+property_reader("QVideoFrameFormat", /::frameSize\s*\(/, "frameSize")
+property_writer("QVideoFrameFormat", /::setFrameSize\s*\(/, "frameSize")
+# Property mirrored (bool)
+property_reader("QVideoFrameFormat", /::isMirrored\s*\(/, "mirrored")
+property_writer("QVideoFrameFormat", /::setMirrored\s*\(/, "mirrored")
+# Property scanLineDirection (QVideoFrameFormat_Direction)
+property_reader("QVideoFrameFormat", /::scanLineDirection\s*\(/, "scanLineDirection")
+property_writer("QVideoFrameFormat", /::setScanLineDirection\s*\(/, "scanLineDirection")
+# Property viewport (QRect)
+property_reader("QVideoFrameFormat", /::viewport\s*\(/, "viewport")
+property_writer("QVideoFrameFormat", /::setViewport\s*\(/, "viewport")
+# Property yCbCrColorSpace (QVideoFrameFormat_YCbCrColorSpace)
+property_reader("QVideoFrameFormat", /::yCbCrColorSpace\s*\(/, "yCbCrColorSpace")
+property_writer("QVideoFrameFormat", /::setYCbCrColorSpace\s*\(/, "yCbCrColorSpace")
+# Property subtitleText (string)
+property_reader("QVideoSink", /::subtitleText\s*\(/, "subtitleText")
+property_writer("QVideoSink", /::setSubtitleText\s*\(/, "subtitleText")
+# Property videoFrame (QVideoFrame)
+property_reader("QVideoSink", /::videoFrame\s*\(/, "videoFrame")
+property_writer("QVideoSink", /::setVideoFrame\s*\(/, "videoFrame")
+# Property languageChangeEnabled (bool)
+property_reader("QUiLoader", /::isLanguageChangeEnabled\s*\(/, "languageChangeEnabled")
+property_writer("QUiLoader", /::setLanguageChangeEnabled\s*\(/, "languageChangeEnabled")
+# Property translationEnabled (bool)
+property_reader("QUiLoader", /::isTranslationEnabled\s*\(/, "translationEnabled")
+property_writer("QUiLoader", /::setTranslationEnabled\s*\(/, "translationEnabled")
+# Property workingDirectory (QDir)
+property_reader("QUiLoader", /::workingDirectory\s*\(/, "workingDirectory")
+property_writer("QUiLoader", /::setWorkingDirectory\s*\(/, "workingDirectory")
+# Property connectOptions (string)
+property_reader("QSqlDatabase", /::connectOptions\s*\(/, "connectOptions")
+property_writer("QSqlDatabase", /::setConnectOptions\s*\(/, "connectOptions")
+# Property databaseName (string)
+property_reader("QSqlDatabase", /::databaseName\s*\(/, "databaseName")
+property_writer("QSqlDatabase", /::setDatabaseName\s*\(/, "databaseName")
+# Property hostName (string)
+property_reader("QSqlDatabase", /::hostName\s*\(/, "hostName")
+property_writer("QSqlDatabase", /::setHostName\s*\(/, "hostName")
+# Property numericalPrecisionPolicy (QSql_NumericalPrecisionPolicy)
+property_reader("QSqlDatabase", /::numericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
+property_writer("QSqlDatabase", /::setNumericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
+# Property password (string)
+property_reader("QSqlDatabase", /::password\s*\(/, "password")
+property_writer("QSqlDatabase", /::setPassword\s*\(/, "password")
+# Property port (int)
+property_reader("QSqlDatabase", /::port\s*\(/, "port")
+property_writer("QSqlDatabase", /::setPort\s*\(/, "port")
+# Property userName (string)
+property_reader("QSqlDatabase", /::userName\s*\(/, "userName")
+property_writer("QSqlDatabase", /::setUserName\s*\(/, "userName")
+# Property numericalPrecisionPolicy (QSql_NumericalPrecisionPolicy)
+property_reader("QSqlDriver", /::numericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
+property_writer("QSqlDriver", /::setNumericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
+# Property autoValue (bool)
+property_reader("QSqlField", /::isAutoValue\s*\(/, "autoValue")
+property_writer("QSqlField", /::setAutoValue\s*\(/, "autoValue")
+# Property defaultValue (variant)
+property_reader("QSqlField", /::defaultValue\s*\(/, "defaultValue")
+property_writer("QSqlField", /::setDefaultValue\s*\(/, "defaultValue")
+# Property generated (bool)
+property_reader("QSqlField", /::isGenerated\s*\(/, "generated")
+property_writer("QSqlField", /::setGenerated\s*\(/, "generated")
+# Property length (int)
+property_reader("QSqlField", /::length\s*\(/, "length")
+property_writer("QSqlField", /::setLength\s*\(/, "length")
+# Property metaType (QMetaType)
+property_reader("QSqlField", /::metaType\s*\(/, "metaType")
+property_writer("QSqlField", /::setMetaType\s*\(/, "metaType")
+# Property name (string)
+property_reader("QSqlField", /::name\s*\(/, "name")
+property_writer("QSqlField", /::setName\s*\(/, "name")
+# Property precision (int)
+property_reader("QSqlField", /::precision\s*\(/, "precision")
+property_writer("QSqlField", /::setPrecision\s*\(/, "precision")
+# Property readOnly (bool)
+property_reader("QSqlField", /::isReadOnly\s*\(/, "readOnly")
+property_writer("QSqlField", /::setReadOnly\s*\(/, "readOnly")
+# Property requiredStatus (QSqlField_RequiredStatus)
+property_reader("QSqlField", /::requiredStatus\s*\(/, "requiredStatus")
+property_writer("QSqlField", /::setRequiredStatus\s*\(/, "requiredStatus")
+# Property tableName (string)
+property_reader("QSqlField", /::tableName\s*\(/, "tableName")
+property_writer("QSqlField", /::setTableName\s*\(/, "tableName")
+# Property type (QVariant_Type)
+property_reader("QSqlField", /::type\s*\(/, "type")
+property_writer("QSqlField", /::setType\s*\(/, "type")
+# Property value (variant)
+property_reader("QSqlField", /::value\s*\(/, "value")
+property_writer("QSqlField", /::setValue\s*\(/, "value")
+# Property cursorName (string)
+property_reader("QSqlIndex", /::cursorName\s*\(/, "cursorName")
+property_writer("QSqlIndex", /::setCursorName\s*\(/, "cursorName")
+# Property name (string)
+property_reader("QSqlIndex", /::name\s*\(/, "name")
+property_writer("QSqlIndex", /::setName\s*\(/, "name")
+# Property forwardOnly (bool)
+property_reader("QSqlQuery", /::isForwardOnly\s*\(/, "forwardOnly")
+property_writer("QSqlQuery", /::setForwardOnly\s*\(/, "forwardOnly")
+# Property numericalPrecisionPolicy (QSql_NumericalPrecisionPolicy)
+property_reader("QSqlQuery", /::numericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
+property_writer("QSqlQuery", /::setNumericalPrecisionPolicy\s*\(/, "numericalPrecisionPolicy")
+# Property query (QSqlQuery)
+property_reader("QSqlQueryModel", /::query\s*\(/, "query")
+property_writer("QSqlQueryModel", /::setQuery\s*\(/, "query")
+# Property editStrategy (QSqlTableModel_EditStrategy)
+property_reader("QSqlTableModel", /::editStrategy\s*\(/, "editStrategy")
+property_writer("QSqlTableModel", /::setEditStrategy\s*\(/, "editStrategy")
+# Property filter (string)
+property_reader("QSqlTableModel", /::filter\s*\(/, "filter")
+property_writer("QSqlTableModel", /::setFilter\s*\(/, "filter")
+# Property pauseMode (QAbstractSocket_QFlags_PauseMode)
+property_reader("QAbstractSocket", /::pauseMode\s*\(/, "pauseMode")
+property_writer("QAbstractSocket", /::setPauseMode\s*\(/, "pauseMode")
+# Property protocolTag (string)
+property_reader("QAbstractSocket", /::protocolTag\s*\(/, "protocolTag")
+property_writer("QAbstractSocket", /::setProtocolTag\s*\(/, "protocolTag")
+# Property proxy (QNetworkProxy)
+property_reader("QAbstractSocket", /::proxy\s*\(/, "proxy")
+property_writer("QAbstractSocket", /::setProxy\s*\(/, "proxy")
+# Property readBufferSize (long long)
+property_reader("QAbstractSocket", /::readBufferSize\s*\(/, "readBufferSize")
+property_writer("QAbstractSocket", /::setReadBufferSize\s*\(/, "readBufferSize")
+# Property password (string)
+property_reader("QAuthenticator", /::password\s*\(/, "password")
+property_writer("QAuthenticator", /::setPassword\s*\(/, "password")
+# Property realm (string)
+property_reader("QAuthenticator", /::realm\s*\(/, "realm")
+property_writer("QAuthenticator", /::setRealm\s*\(/, "realm")
+# Property user (string)
+property_reader("QAuthenticator", /::user\s*\(/, "user")
+property_writer("QAuthenticator", /::setUser\s*\(/, "user")
+# Property mtuHint (unsigned short)
+property_reader("QDtls", /::mtuHint\s*\(/, "mtuHint")
+property_writer("QDtls", /::setMtuHint\s*\(/, "mtuHint")
+# Property scopeId (string)
+property_reader("QHostAddress", /::scopeId\s*\(/, "scopeId")
+property_writer("QHostAddress", /::setScopeId\s*\(/, "scopeId")
+# Property addresses (QHostAddress[])
+property_reader("QHostInfo", /::addresses\s*\(/, "addresses")
+property_writer("QHostInfo", /::setAddresses\s*\(/, "addresses")
+# Property error (QHostInfo_HostInfoError)
+property_reader("QHostInfo", /::error\s*\(/, "error")
+property_writer("QHostInfo", /::setError\s*\(/, "error")
+# Property errorString (string)
+property_reader("QHostInfo", /::errorString\s*\(/, "errorString")
+property_writer("QHostInfo", /::setErrorString\s*\(/, "errorString")
+# Property hostName (string)
+property_reader("QHostInfo", /::hostName\s*\(/, "hostName")
+property_writer("QHostInfo", /::setHostName\s*\(/, "hostName")
+# Property lookupId (int)
+property_reader("QHostInfo", /::lookupId\s*\(/, "lookupId")
+property_writer("QHostInfo", /::setLookupId\s*\(/, "lookupId")
+# Property expiry (QDateTime)
+property_reader("QHstsPolicy", /::expiry\s*\(/, "expiry")
+property_writer("QHstsPolicy", /::setExpiry\s*\(/, "expiry")
+# Property host (string)
+property_reader("QHstsPolicy", /::host\s*\(/, "host")
+property_writer("QHstsPolicy", /::setHost\s*\(/, "host")
+# Property includesSubDomains (bool)
+property_reader("QHstsPolicy", /::includesSubDomains\s*\(/, "includesSubDomains")
+property_writer("QHstsPolicy", /::setIncludesSubDomains\s*\(/, "includesSubDomains")
+# Property huffmanCompressionEnabled (bool)
+property_reader("QHttp2Configuration", /::huffmanCompressionEnabled\s*\(/, "huffmanCompressionEnabled")
+property_writer("QHttp2Configuration", /::setHuffmanCompressionEnabled\s*\(/, "huffmanCompressionEnabled")
+# Property serverPushEnabled (bool)
+property_reader("QHttp2Configuration", /::serverPushEnabled\s*\(/, "serverPushEnabled")
+property_writer("QHttp2Configuration", /::setServerPushEnabled\s*\(/, "serverPushEnabled")
+# Property boundary (byte array)
+property_reader("QHttpMultiPart", /::boundary\s*\(/, "boundary")
+property_writer("QHttpMultiPart", /::setBoundary\s*\(/, "boundary")
+# Property maxPendingConnections (int)
+property_reader("QLocalServer", /::maxPendingConnections\s*\(/, "maxPendingConnections")
+property_writer("QLocalServer", /::setMaxPendingConnections\s*\(/, "maxPendingConnections")
+# Property readBufferSize (long long)
+property_reader("QLocalSocket", /::readBufferSize\s*\(/, "readBufferSize")
+property_writer("QLocalSocket", /::setReadBufferSize\s*\(/, "readBufferSize")
+# Property serverName (string)
+property_reader("QLocalSocket", /::serverName\s*\(/, "serverName")
+property_writer("QLocalSocket", /::setServerName\s*\(/, "serverName")
+# Property autoDeleteReplies (bool)
+property_reader("QNetworkAccessManager", /::autoDeleteReplies\s*\(/, "autoDeleteReplies")
+property_writer("QNetworkAccessManager", /::setAutoDeleteReplies\s*\(/, "autoDeleteReplies")
+# Property cache (QAbstractNetworkCache_Native *)
+property_reader("QNetworkAccessManager", /::cache\s*\(/, "cache")
+property_writer("QNetworkAccessManager", /::setCache\s*\(/, "cache")
+# Property cookieJar (QNetworkCookieJar_Native *)
+property_reader("QNetworkAccessManager", /::cookieJar\s*\(/, "cookieJar")
+property_writer("QNetworkAccessManager", /::setCookieJar\s*\(/, "cookieJar")
+# Property proxy (QNetworkProxy)
+property_reader("QNetworkAccessManager", /::proxy\s*\(/, "proxy")
+property_writer("QNetworkAccessManager", /::setProxy\s*\(/, "proxy")
+# Property proxyFactory (QNetworkProxyFactory_Native *)
+property_reader("QNetworkAccessManager", /::proxyFactory\s*\(/, "proxyFactory")
+property_writer("QNetworkAccessManager", /::setProxyFactory\s*\(/, "proxyFactory")
+# Property redirectPolicy (QNetworkRequest_RedirectPolicy)
+property_reader("QNetworkAccessManager", /::redirectPolicy\s*\(/, "redirectPolicy")
+property_writer("QNetworkAccessManager", /::setRedirectPolicy\s*\(/, "redirectPolicy")
+# Property strictTransportSecurityEnabled (bool)
+property_reader("QNetworkAccessManager", /::isStrictTransportSecurityEnabled\s*\(/, "strictTransportSecurityEnabled")
+property_writer("QNetworkAccessManager", /::setStrictTransportSecurityEnabled\s*\(/, "strictTransportSecurityEnabled")
+# Property broadcast (QHostAddress)
+property_reader("QNetworkAddressEntry", /::broadcast\s*\(/, "broadcast")
+property_writer("QNetworkAddressEntry", /::setBroadcast\s*\(/, "broadcast")
+# Property dnsEligibility (QNetworkAddressEntry_DnsEligibilityStatus)
+property_reader("QNetworkAddressEntry", /::dnsEligibility\s*\(/, "dnsEligibility")
+property_writer("QNetworkAddressEntry", /::setDnsEligibility\s*\(/, "dnsEligibility")
+# Property ip (QHostAddress)
+property_reader("QNetworkAddressEntry", /::ip\s*\(/, "ip")
+property_writer("QNetworkAddressEntry", /::setIp\s*\(/, "ip")
+# Property netmask (QHostAddress)
+property_reader("QNetworkAddressEntry", /::netmask\s*\(/, "netmask")
+property_writer("QNetworkAddressEntry", /::setNetmask\s*\(/, "netmask")
+# Property prefixLength (int)
+property_reader("QNetworkAddressEntry", /::prefixLength\s*\(/, "prefixLength")
+property_writer("QNetworkAddressEntry", /::setPrefixLength\s*\(/, "prefixLength")
+# Property expirationDate (QDateTime)
+property_reader("QNetworkCacheMetaData", /::expirationDate\s*\(/, "expirationDate")
+property_writer("QNetworkCacheMetaData", /::setExpirationDate\s*\(/, "expirationDate")
+# Property lastModified (QDateTime)
+property_reader("QNetworkCacheMetaData", /::lastModified\s*\(/, "lastModified")
+property_writer("QNetworkCacheMetaData", /::setLastModified\s*\(/, "lastModified")
+# Property rawHeaders (QPair_QByteArray_QByteArray[])
+property_reader("QNetworkCacheMetaData", /::rawHeaders\s*\(/, "rawHeaders")
+property_writer("QNetworkCacheMetaData", /::setRawHeaders\s*\(/, "rawHeaders")
+# Property saveToDisk (bool)
+property_reader("QNetworkCacheMetaData", /::saveToDisk\s*\(/, "saveToDisk")
+property_writer("QNetworkCacheMetaData", /::setSaveToDisk\s*\(/, "saveToDisk")
+# Property url (QUrl)
+property_reader("QNetworkCacheMetaData", /::url\s*\(/, "url")
+property_writer("QNetworkCacheMetaData", /::setUrl\s*\(/, "url")
+# Property domain (string)
+property_reader("QNetworkCookie", /::domain\s*\(/, "domain")
+property_writer("QNetworkCookie", /::setDomain\s*\(/, "domain")
+# Property expirationDate (QDateTime)
+property_reader("QNetworkCookie", /::expirationDate\s*\(/, "expirationDate")
+property_writer("QNetworkCookie", /::setExpirationDate\s*\(/, "expirationDate")
+# Property httpOnly (bool)
+property_reader("QNetworkCookie", /::isHttpOnly\s*\(/, "httpOnly")
+property_writer("QNetworkCookie", /::setHttpOnly\s*\(/, "httpOnly")
+# Property name (byte array)
+property_reader("QNetworkCookie", /::name\s*\(/, "name")
+property_writer("QNetworkCookie", /::setName\s*\(/, "name")
+# Property path (string)
+property_reader("QNetworkCookie", /::path\s*\(/, "path")
+property_writer("QNetworkCookie", /::setPath\s*\(/, "path")
+# Property sameSitePolicy (QNetworkCookie_SameSite)
+property_reader("QNetworkCookie", /::sameSitePolicy\s*\(/, "sameSitePolicy")
+property_writer("QNetworkCookie", /::setSameSitePolicy\s*\(/, "sameSitePolicy")
+# Property secure (bool)
+property_reader("QNetworkCookie", /::isSecure\s*\(/, "secure")
+property_writer("QNetworkCookie", /::setSecure\s*\(/, "secure")
+# Property value (byte array)
+property_reader("QNetworkCookie", /::value\s*\(/, "value")
+property_writer("QNetworkCookie", /::setValue\s*\(/, "value")
+# Property data (byte array)
+property_reader("QNetworkDatagram", /::data\s*\(/, "data")
+property_writer("QNetworkDatagram", /::setData\s*\(/, "data")
+# Property hopLimit (int)
+property_reader("QNetworkDatagram", /::hopLimit\s*\(/, "hopLimit")
+property_writer("QNetworkDatagram", /::setHopLimit\s*\(/, "hopLimit")
+# Property interfaceIndex (unsigned int)
+property_reader("QNetworkDatagram", /::interfaceIndex\s*\(/, "interfaceIndex")
+property_writer("QNetworkDatagram", /::setInterfaceIndex\s*\(/, "interfaceIndex")
+# Property cacheDirectory (string)
+property_reader("QNetworkDiskCache", /::cacheDirectory\s*\(/, "cacheDirectory")
+property_writer("QNetworkDiskCache", /::setCacheDirectory\s*\(/, "cacheDirectory")
+# Property maximumCacheSize (long long)
+property_reader("QNetworkDiskCache", /::maximumCacheSize\s*\(/, "maximumCacheSize")
+property_writer("QNetworkDiskCache", /::setMaximumCacheSize\s*\(/, "maximumCacheSize")
+# Property applicationProxy (QNetworkProxy)
+property_reader("QNetworkProxy", /::applicationProxy\s*\(/, "applicationProxy")
+property_writer("QNetworkProxy", /::setApplicationProxy\s*\(/, "applicationProxy")
+# Property capabilities (QNetworkProxy_QFlags_Capability)
+property_reader("QNetworkProxy", /::capabilities\s*\(/, "capabilities")
+property_writer("QNetworkProxy", /::setCapabilities\s*\(/, "capabilities")
+# Property hostName (string)
+property_reader("QNetworkProxy", /::hostName\s*\(/, "hostName")
+property_writer("QNetworkProxy", /::setHostName\s*\(/, "hostName")
+# Property password (string)
+property_reader("QNetworkProxy", /::password\s*\(/, "password")
+property_writer("QNetworkProxy", /::setPassword\s*\(/, "password")
+# Property port (unsigned short)
+property_reader("QNetworkProxy", /::port\s*\(/, "port")
+property_writer("QNetworkProxy", /::setPort\s*\(/, "port")
+# Property type (QNetworkProxy_ProxyType)
+property_reader("QNetworkProxy", /::type\s*\(/, "type")
+property_writer("QNetworkProxy", /::setType\s*\(/, "type")
+# Property user (string)
+property_reader("QNetworkProxy", /::user\s*\(/, "user")
+property_writer("QNetworkProxy", /::setUser\s*\(/, "user")
+# Property localPort (int)
+property_reader("QNetworkProxyQuery", /::localPort\s*\(/, "localPort")
+property_writer("QNetworkProxyQuery", /::setLocalPort\s*\(/, "localPort")
+# Property peerHostName (string)
+property_reader("QNetworkProxyQuery", /::peerHostName\s*\(/, "peerHostName")
+property_writer("QNetworkProxyQuery", /::setPeerHostName\s*\(/, "peerHostName")
+# Property peerPort (int)
+property_reader("QNetworkProxyQuery", /::peerPort\s*\(/, "peerPort")
+property_writer("QNetworkProxyQuery", /::setPeerPort\s*\(/, "peerPort")
+# Property protocolTag (string)
+property_reader("QNetworkProxyQuery", /::protocolTag\s*\(/, "protocolTag")
+property_writer("QNetworkProxyQuery", /::setProtocolTag\s*\(/, "protocolTag")
+# Property queryType (QNetworkProxyQuery_QueryType)
+property_reader("QNetworkProxyQuery", /::queryType\s*\(/, "queryType")
+property_writer("QNetworkProxyQuery", /::setQueryType\s*\(/, "queryType")
+# Property url (QUrl)
+property_reader("QNetworkProxyQuery", /::url\s*\(/, "url")
+property_writer("QNetworkProxyQuery", /::setUrl\s*\(/, "url")
+# Property readBufferSize (long long)
+property_reader("QNetworkReply", /::readBufferSize\s*\(/, "readBufferSize")
+property_writer("QNetworkReply", /::setReadBufferSize\s*\(/, "readBufferSize")
+# Property sslConfiguration (QSslConfiguration)
+property_reader("QNetworkReply", /::sslConfiguration\s*\(/, "sslConfiguration")
+property_writer("QNetworkReply", /::setSslConfiguration\s*\(/, "sslConfiguration")
+# Property decompressedSafetyCheckThreshold (long long)
+property_reader("QNetworkRequest", /::decompressedSafetyCheckThreshold\s*\(/, "decompressedSafetyCheckThreshold")
+property_writer("QNetworkRequest", /::setDecompressedSafetyCheckThreshold\s*\(/, "decompressedSafetyCheckThreshold")
+# Property http2Configuration (QHttp2Configuration)
+property_reader("QNetworkRequest", /::http2Configuration\s*\(/, "http2Configuration")
+property_writer("QNetworkRequest", /::setHttp2Configuration\s*\(/, "http2Configuration")
+# Property maximumRedirectsAllowed (int)
+property_reader("QNetworkRequest", /::maximumRedirectsAllowed\s*\(/, "maximumRedirectsAllowed")
+property_writer("QNetworkRequest", /::setMaximumRedirectsAllowed\s*\(/, "maximumRedirectsAllowed")
+# Property originatingObject (QObject_Native *)
+property_reader("QNetworkRequest", /::originatingObject\s*\(/, "originatingObject")
+property_writer("QNetworkRequest", /::setOriginatingObject\s*\(/, "originatingObject")
+# Property peerVerifyName (string)
+property_reader("QNetworkRequest", /::peerVerifyName\s*\(/, "peerVerifyName")
+property_writer("QNetworkRequest", /::setPeerVerifyName\s*\(/, "peerVerifyName")
+# Property priority (QNetworkRequest_Priority)
+property_reader("QNetworkRequest", /::priority\s*\(/, "priority")
+property_writer("QNetworkRequest", /::setPriority\s*\(/, "priority")
+# Property sslConfiguration (QSslConfiguration)
+property_reader("QNetworkRequest", /::sslConfiguration\s*\(/, "sslConfiguration")
+property_writer("QNetworkRequest", /::setSslConfiguration\s*\(/, "sslConfiguration")
+# Property url (QUrl)
+property_reader("QNetworkRequest", /::url\s*\(/, "url")
+property_writer("QNetworkRequest", /::setUrl\s*\(/, "url")
+# Property allowedNextProtocols (byte array[])
+property_reader("QSslConfiguration", /::allowedNextProtocols\s*\(/, "allowedNextProtocols")
+property_writer("QSslConfiguration", /::setAllowedNextProtocols\s*\(/, "allowedNextProtocols")
+# Property backendConfiguration (map)
+property_reader("QSslConfiguration", /::backendConfiguration\s*\(/, "backendConfiguration")
+property_writer("QSslConfiguration", /::setBackendConfiguration\s*\(/, "backendConfiguration")
+# Property caCertificates (QSslCertificate[])
+property_reader("QSslConfiguration", /::caCertificates\s*\(/, "caCertificates")
+property_writer("QSslConfiguration", /::setCaCertificates\s*\(/, "caCertificates")
+# Property ciphers (QSslCipher[])
+property_reader("QSslConfiguration", /::ciphers\s*\(/, "ciphers")
+property_writer("QSslConfiguration", /::setCiphers\s*\(/, "ciphers")
+# Property defaultConfiguration (QSslConfiguration)
+property_reader("QSslConfiguration", /::defaultConfiguration\s*\(/, "defaultConfiguration")
+property_writer("QSslConfiguration", /::setDefaultConfiguration\s*\(/, "defaultConfiguration")
+# Property defaultDtlsConfiguration (QSslConfiguration)
+property_reader("QSslConfiguration", /::defaultDtlsConfiguration\s*\(/, "defaultDtlsConfiguration")
+property_writer("QSslConfiguration", /::setDefaultDtlsConfiguration\s*\(/, "defaultDtlsConfiguration")
+# Property diffieHellmanParameters (QSslDiffieHellmanParameters)
+property_reader("QSslConfiguration", /::diffieHellmanParameters\s*\(/, "diffieHellmanParameters")
+property_writer("QSslConfiguration", /::setDiffieHellmanParameters\s*\(/, "diffieHellmanParameters")
+# Property dtlsCookieVerificationEnabled (bool)
+property_reader("QSslConfiguration", /::dtlsCookieVerificationEnabled\s*\(/, "dtlsCookieVerificationEnabled")
+property_writer("QSslConfiguration", /::setDtlsCookieVerificationEnabled\s*\(/, "dtlsCookieVerificationEnabled")
+# Property ellipticCurves (QSslEllipticCurve[])
+property_reader("QSslConfiguration", /::ellipticCurves\s*\(/, "ellipticCurves")
+property_writer("QSslConfiguration", /::setEllipticCurves\s*\(/, "ellipticCurves")
+# Property handshakeMustInterruptOnError (bool)
+property_reader("QSslConfiguration", /::handshakeMustInterruptOnError\s*\(/, "handshakeMustInterruptOnError")
+property_writer("QSslConfiguration", /::setHandshakeMustInterruptOnError\s*\(/, "handshakeMustInterruptOnError")
+# Property localCertificate (QSslCertificate)
+property_reader("QSslConfiguration", /::localCertificate\s*\(/, "localCertificate")
+property_writer("QSslConfiguration", /::setLocalCertificate\s*\(/, "localCertificate")
+# Property localCertificateChain (QSslCertificate[])
+property_reader("QSslConfiguration", /::localCertificateChain\s*\(/, "localCertificateChain")
+property_writer("QSslConfiguration", /::setLocalCertificateChain\s*\(/, "localCertificateChain")
+# Property missingCertificateIsFatal (bool)
+property_reader("QSslConfiguration", /::missingCertificateIsFatal\s*\(/, "missingCertificateIsFatal")
+property_writer("QSslConfiguration", /::setMissingCertificateIsFatal\s*\(/, "missingCertificateIsFatal")
+# Property ocspStaplingEnabled (bool)
+property_reader("QSslConfiguration", /::ocspStaplingEnabled\s*\(/, "ocspStaplingEnabled")
+property_writer("QSslConfiguration", /::setOcspStaplingEnabled\s*\(/, "ocspStaplingEnabled")
+# Property peerVerifyDepth (int)
+property_reader("QSslConfiguration", /::peerVerifyDepth\s*\(/, "peerVerifyDepth")
+property_writer("QSslConfiguration", /::setPeerVerifyDepth\s*\(/, "peerVerifyDepth")
+# Property peerVerifyMode (QSslSocket_PeerVerifyMode)
+property_reader("QSslConfiguration", /::peerVerifyMode\s*\(/, "peerVerifyMode")
+property_writer("QSslConfiguration", /::setPeerVerifyMode\s*\(/, "peerVerifyMode")
+# Property preSharedKeyIdentityHint (byte array)
+property_reader("QSslConfiguration", /::preSharedKeyIdentityHint\s*\(/, "preSharedKeyIdentityHint")
+property_writer("QSslConfiguration", /::setPreSharedKeyIdentityHint\s*\(/, "preSharedKeyIdentityHint")
+# Property privateKey (QSslKey)
+property_reader("QSslConfiguration", /::privateKey\s*\(/, "privateKey")
+property_writer("QSslConfiguration", /::setPrivateKey\s*\(/, "privateKey")
+# Property protocol (QSsl_SslProtocol)
+property_reader("QSslConfiguration", /::protocol\s*\(/, "protocol")
+property_writer("QSslConfiguration", /::setProtocol\s*\(/, "protocol")
+# Property sessionTicket (byte array)
+property_reader("QSslConfiguration", /::sessionTicket\s*\(/, "sessionTicket")
+property_writer("QSslConfiguration", /::setSessionTicket\s*\(/, "sessionTicket")
+# Property identity (byte array)
+property_reader("QSslPreSharedKeyAuthenticator", /::identity\s*\(/, "identity")
+property_writer("QSslPreSharedKeyAuthenticator", /::setIdentity\s*\(/, "identity")
+# Property preSharedKey (byte array)
+property_reader("QSslPreSharedKeyAuthenticator", /::preSharedKey\s*\(/, "preSharedKey")
+property_writer("QSslPreSharedKeyAuthenticator", /::setPreSharedKey\s*\(/, "preSharedKey")
+# Property localCertificate (QSslCertificate)
+property_reader("QSslSocket", /::localCertificate\s*\(/, "localCertificate")
+property_writer("QSslSocket", /::setLocalCertificate\s*\(/, "localCertificate")
+# Property localCertificateChain (QSslCertificate[])
+property_reader("QSslSocket", /::localCertificateChain\s*\(/, "localCertificateChain")
+property_writer("QSslSocket", /::setLocalCertificateChain\s*\(/, "localCertificateChain")
+# Property peerVerifyDepth (int)
+property_reader("QSslSocket", /::peerVerifyDepth\s*\(/, "peerVerifyDepth")
+property_writer("QSslSocket", /::setPeerVerifyDepth\s*\(/, "peerVerifyDepth")
+# Property peerVerifyMode (QSslSocket_PeerVerifyMode)
+property_reader("QSslSocket", /::peerVerifyMode\s*\(/, "peerVerifyMode")
+property_writer("QSslSocket", /::setPeerVerifyMode\s*\(/, "peerVerifyMode")
+# Property peerVerifyName (string)
+property_reader("QSslSocket", /::peerVerifyName\s*\(/, "peerVerifyName")
+property_writer("QSslSocket", /::setPeerVerifyName\s*\(/, "peerVerifyName")
+# Property privateKey (QSslKey)
+property_reader("QSslSocket", /::privateKey\s*\(/, "privateKey")
+property_writer("QSslSocket", /::setPrivateKey\s*\(/, "privateKey")
+# Property protocol (QSsl_SslProtocol)
+property_reader("QSslSocket", /::protocol\s*\(/, "protocol")
+property_writer("QSslSocket", /::setProtocol\s*\(/, "protocol")
+# Property readBufferSize (long long)
+property_reader("QAbstractSocket", /::readBufferSize\s*\(/, "readBufferSize")
+property_writer("QSslSocket", /::setReadBufferSize\s*\(/, "readBufferSize")
+# Property sslConfiguration (QSslConfiguration)
+property_reader("QSslSocket", /::sslConfiguration\s*\(/, "sslConfiguration")
+property_writer("QSslSocket", /::setSslConfiguration\s*\(/, "sslConfiguration")
+# Property maxPendingConnections (int)
+property_reader("QTcpServer", /::maxPendingConnections\s*\(/, "maxPendingConnections")
+property_writer("QTcpServer", /::setMaxPendingConnections\s*\(/, "maxPendingConnections")
+# Property proxy (QNetworkProxy)
+property_reader("QTcpServer", /::proxy\s*\(/, "proxy")
+property_writer("QTcpServer", /::setProxy\s*\(/, "proxy")
+# Property multicastInterface (QNetworkInterface)
+property_reader("QUdpSocket", /::multicastInterface\s*\(/, "multicastInterface")
+property_writer("QUdpSocket", /::setMulticastInterface\s*\(/, "multicastInterface")
+# Property value (string)
+property_reader("QDomAttr", /::value\s*\(/, "value")
+property_writer("QDomAttr", /::setValue\s*\(/, "value")
# Property data (string)
-property_reader("QXmlInputSource", /::data\s*\(/, "data")
-property_writer("QXmlInputSource", /::setData\s*\(/, "data")
-# Property initialTemplateName (QXmlName)
-property_reader("QXmlQuery", /::initialTemplateName\s*\(/, "initialTemplateName")
-property_writer("QXmlQuery", /::setInitialTemplateName\s*\(/, "initialTemplateName")
-# Property messageHandler (QAbstractMessageHandler_Native *)
-property_reader("QXmlQuery", /::messageHandler\s*\(/, "messageHandler")
-property_writer("QXmlQuery", /::setMessageHandler\s*\(/, "messageHandler")
-# Property networkAccessManager (QNetworkAccessManager_Native *)
-property_reader("QXmlQuery", /::networkAccessManager\s*\(/, "networkAccessManager")
-property_writer("QXmlQuery", /::setNetworkAccessManager\s*\(/, "networkAccessManager")
-# Property uriResolver (QAbstractUriResolver_Native *)
-property_reader("QXmlQuery", /::uriResolver\s*\(/, "uriResolver")
-property_writer("QXmlQuery", /::setUriResolver\s*\(/, "uriResolver")
-# Property contentHandler (QXmlContentHandler_Native *)
-property_reader("QXmlReader", /::contentHandler\s*\(/, "contentHandler")
-property_writer("QXmlReader", /::setContentHandler\s*\(/, "contentHandler")
-# Property declHandler (QXmlDeclHandler_Native *)
-property_reader("QXmlReader", /::declHandler\s*\(/, "declHandler")
-property_writer("QXmlReader", /::setDeclHandler\s*\(/, "declHandler")
-# Property entityResolver (QXmlEntityResolver *)
-property_reader("QXmlReader", /::entityResolver\s*\(/, "entityResolver")
-property_writer("QXmlReader", /::setEntityResolver\s*\(/, "entityResolver")
-# Property errorHandler (QXmlErrorHandler_Native *)
-property_reader("QXmlReader", /::errorHandler\s*\(/, "errorHandler")
-property_writer("QXmlReader", /::setErrorHandler\s*\(/, "errorHandler")
-# Property lexicalHandler (QXmlLexicalHandler_Native *)
-property_reader("QXmlReader", /::lexicalHandler\s*\(/, "lexicalHandler")
-property_writer("QXmlReader", /::setLexicalHandler\s*\(/, "lexicalHandler")
-# Property messageHandler (QAbstractMessageHandler_Native *)
-property_reader("QXmlSchema", /::messageHandler\s*\(/, "messageHandler")
-property_writer("QXmlSchema", /::setMessageHandler\s*\(/, "messageHandler")
-# Property networkAccessManager (QNetworkAccessManager_Native *)
-property_reader("QXmlSchema", /::networkAccessManager\s*\(/, "networkAccessManager")
-property_writer("QXmlSchema", /::setNetworkAccessManager\s*\(/, "networkAccessManager")
-# Property uriResolver (QAbstractUriResolver_Native *)
-property_reader("QXmlSchema", /::uriResolver\s*\(/, "uriResolver")
-property_writer("QXmlSchema", /::setUriResolver\s*\(/, "uriResolver")
-# Property messageHandler (QAbstractMessageHandler_Native *)
-property_reader("QXmlSchemaValidator", /::messageHandler\s*\(/, "messageHandler")
-property_writer("QXmlSchemaValidator", /::setMessageHandler\s*\(/, "messageHandler")
-# Property networkAccessManager (QNetworkAccessManager_Native *)
-property_reader("QXmlSchemaValidator", /::networkAccessManager\s*\(/, "networkAccessManager")
-property_writer("QXmlSchemaValidator", /::setNetworkAccessManager\s*\(/, "networkAccessManager")
-# Property schema (QXmlSchema)
-property_reader("QXmlSchemaValidator", /::schema\s*\(/, "schema")
-property_writer("QXmlSchemaValidator", /::setSchema\s*\(/, "schema")
-# Property uriResolver (QAbstractUriResolver_Native *)
-property_reader("QXmlSchemaValidator", /::uriResolver\s*\(/, "uriResolver")
-property_writer("QXmlSchemaValidator", /::setUriResolver\s*\(/, "uriResolver")
-# Property codec (QTextCodec_Native *)
-property_reader("QXmlSerializer", /::codec\s*\(/, "codec")
-property_writer("QXmlSerializer", /::setCodec\s*\(/, "codec")
-# Property contentHandler (QXmlContentHandler_Native *)
-property_reader("QXmlSimpleReader", /::contentHandler\s*\(/, "contentHandler")
-property_writer("QXmlSimpleReader", /::setContentHandler\s*\(/, "contentHandler")
-# Property declHandler (QXmlDeclHandler_Native *)
-property_reader("QXmlSimpleReader", /::declHandler\s*\(/, "declHandler")
-property_writer("QXmlSimpleReader", /::setDeclHandler\s*\(/, "declHandler")
-# Property entityResolver (QXmlEntityResolver *)
-property_reader("QXmlSimpleReader", /::entityResolver\s*\(/, "entityResolver")
-property_writer("QXmlSimpleReader", /::setEntityResolver\s*\(/, "entityResolver")
-# Property errorHandler (QXmlErrorHandler_Native *)
-property_reader("QXmlSimpleReader", /::errorHandler\s*\(/, "errorHandler")
-property_writer("QXmlSimpleReader", /::setErrorHandler\s*\(/, "errorHandler")
-# Property lexicalHandler (QXmlLexicalHandler_Native *)
-property_reader("QXmlSimpleReader", /::lexicalHandler\s*\(/, "lexicalHandler")
-property_writer("QXmlSimpleReader", /::setLexicalHandler\s*\(/, "lexicalHandler")
-# Property device (QIODevice *)
-property_reader("QXmlStreamReader", /::device\s*\(/, "device")
-property_writer("QXmlStreamReader", /::setDevice\s*\(/, "device")
-# Property entityResolver (QXmlStreamEntityResolver_Native *)
-property_reader("QXmlStreamReader", /::entityResolver\s*\(/, "entityResolver")
-property_writer("QXmlStreamReader", /::setEntityResolver\s*\(/, "entityResolver")
-# Property namespaceProcessing (bool)
-property_reader("QXmlStreamReader", /::namespaceProcessing\s*\(/, "namespaceProcessing")
-property_writer("QXmlStreamReader", /::setNamespaceProcessing\s*\(/, "namespaceProcessing")
-# Property autoFormatting (bool)
-property_reader("QXmlStreamWriter", /::autoFormatting\s*\(/, "autoFormatting")
-property_writer("QXmlStreamWriter", /::setAutoFormatting\s*\(/, "autoFormatting")
-# Property autoFormattingIndent (int)
-property_reader("QXmlStreamWriter", /::autoFormattingIndent\s*\(/, "autoFormattingIndent")
-property_writer("QXmlStreamWriter", /::setAutoFormattingIndent\s*\(/, "autoFormattingIndent")
-# Property codec (QTextCodec_Native *)
-property_reader("QXmlStreamWriter", /::codec\s*\(/, "codec")
-property_writer("QXmlStreamWriter", /::setCodec\s*\(/, "codec")
-# Property device (QIODevice *)
-property_reader("QXmlStreamWriter", /::device\s*\(/, "device")
-property_writer("QXmlStreamWriter", /::setDevice\s*\(/, "device")
+property_reader("QDomCharacterData", /::data\s*\(/, "data")
+property_writer("QDomCharacterData", /::setData\s*\(/, "data")
+# Property tagName (string)
+property_reader("QDomElement", /::tagName\s*\(/, "tagName")
+property_writer("QDomElement", /::setTagName\s*\(/, "tagName")
+# Property invalidDataPolicy (QDomImplementation_InvalidDataPolicy)
+property_reader("QDomImplementation", /::invalidDataPolicy\s*\(/, "invalidDataPolicy")
+property_writer("QDomImplementation", /::setInvalidDataPolicy\s*\(/, "invalidDataPolicy")
+# Property nodeValue (string)
+property_reader("QDomNode", /::nodeValue\s*\(/, "nodeValue")
+property_writer("QDomNode", /::setNodeValue\s*\(/, "nodeValue")
+# Property prefix (string)
+property_reader("QDomNode", /::prefix\s*\(/, "prefix")
+property_writer("QDomNode", /::setPrefix\s*\(/, "prefix")
+# Property data (string)
+property_reader("QDomProcessingInstruction", /::data\s*\(/, "data")
+property_writer("QDomProcessingInstruction", /::setData\s*\(/, "data")
diff --git a/scripts/mkqtdecl_common/c++.treetop b/scripts/mkqtdecl_common/c++.treetop
index 4ad9d591d..bb68f79bd 100644
--- a/scripts/mkqtdecl_common/c++.treetop
+++ b/scripts/mkqtdecl_common/c++.treetop
@@ -259,11 +259,11 @@ grammar CPP
end
rule pointer
- cvspec:( cv:cv s )? "*" itspec:( s it:inner_type )?
+ "*" itspec:( s it:inner_type_with_cv )?
end
rule reference
- cvspec:( cv:cv s )? "&" itspec:( s it:inner_type )?
+ "&" itspec:( s it:inner_type_with_cv )?
end
rule array_spec
@@ -293,35 +293,43 @@ grammar CPP
end
rule member_pointer
- cspec:( qid:qualified_id s "::*" s ) itspec:( it:inner_type )? cvspec:( s cv:cv )? refspec:( s ref:( "&" !"&" / "&&" ) )?
+ cspec:( qid:qualified_id s "::*" s ) itspec:( it:inner_type_with_cv )? refspec:( s ref:( "&" !"&" / "&&" ) )?
end
- rule inner_type_with_cv
- cvspec:cv s it:inner_type
+ rule inner_type_part
+ "(" s inner_type s ")" /
+ pointer /
+ reference /
+ member_pointer /
+ ( "__restrict" ![a-zA-Z0-9_] s / "..." s )* qualified_id
+ end
+
+ rule inner_type_part_with_cv_post
+ it:inner_type_part cvspec:( s cv:cv )?
end
rule inner_type
- it:(
- "(" s inner_type s ")" /
- inner_type_with_cv /
- pointer /
- reference /
- member_pointer /
- ( "__restrict" ![a-zA-Z0-9_] s / "..." s )* qualified_id
- )
+ it:inner_type_part_with_cv_post
+ s
pfx:( s spec:( array_spec / func_spec ) )*
end
+ rule inner_type_with_cv
+ cvspec:( cv:cv s )? it:inner_type
+ end
+
rule init_spec
block_wo_comma / "default" / "delete" / "0"
end
+ rule tn
+ "typename" ![a-zA-Z0-9_] s
+ end
+
rule type
- cvspec:( cv:cv s )?
- a
- ( "typename" ![a-zA-Z0-9_] s )?
- ct:concrete_type
+ a
+ dct:( cvspec:( cv:cv s ) a tn? ct:concrete_type / tn? ct:concrete_type a cvspec:( cv:cv s )? )
a
il:( s t1:inner_type i1:(s "=" s is1:init_spec)? tt:( s "," s t2:inner_type i2:(s "=" s is2:init_spec)? )* )?
# alternative initialization if only a concrete type is given:
@@ -330,21 +338,23 @@ grammar CPP
end
rule type_wo_comma
- cvspec:( cv:cv s )?
+ a
+ dct:( cvspec:( cv:cv s ) a tn? ct:concrete_type / tn? ct:concrete_type a cvspec:( cv:cv s )? )
a
- ( "typename" ![a-zA-Z0-9_] s )?
- ct:concrete_type
il:( s t:inner_type i:(s "=" s is:init_spec)? )?
# alternative initialization if only a concrete type is given:
pi:( s "=" s is:init_spec )?
end
+ rule tnt
+ ( "typename" / "class" ) ![a-zA-Z0-9_] s ( "..." s )?
+ end
+
rule type_for_template
- cvspec:( cv:cv s )?
+ a
+ dct:( cvspec:( cv:cv s ) a tnt? ct:concrete_type / tnt? ct:concrete_type a cvspec:( cv:cv s )? )
a
- ( ( "typename" / "class" ) ![a-zA-Z0-9_] s ( "..." s )? )?
- ct:concrete_type
il:( s t:inner_type )?
end
diff --git a/scripts/mkqtdecl_common/common.conf b/scripts/mkqtdecl_common/common.conf
index 1a07a185b..1e66dd860 100644
--- a/scripts/mkqtdecl_common/common.conf
+++ b/scripts/mkqtdecl_common/common.conf
@@ -116,6 +116,79 @@ DECL
end
+# --------------------------------------------------------------
+# Add native implementations for QImage
+# Constructor from raw packed data without the cleanup functions
+
+def add_native_impl_QImage
+
+ add_native_impl("QImage_Adaptor", <<'CODE', <<'DECL')
+
+ // NOTE: QImage does not take ownership of the data, so
+ // we will provide a buffer to do so. This requires an additional
+ // copy, but as GSI is not guaranteeing the lifetime of the
+ // data, this is required here.
+ class DataHolder
+ {
+ public:
+
+ DataHolder() : mp_data(0) { }
+ DataHolder(unsigned char *data) : mp_data(data) { }
+
+ ~DataHolder()
+ {
+ if (mp_data) {
+ delete[](mp_data);
+ }
+ mp_data = 0;
+ }
+
+ static unsigned char *alloc(const std::string &data)
+ {
+ unsigned char *ptr = new unsigned char[data.size()];
+ memcpy(ptr, data.c_str(), data.size());
+ return ptr;
+ }
+
+ private:
+ unsigned char *mp_data;
+ };
+
+ static QImage_Adaptor *new_qimage_from_data1(const std::string &data, int width, int height, int bytesPerLine, QImage::Format format)
+ {
+ return new QImage_Adaptor(DataHolder::alloc(data), width, height, bytesPerLine, format);
+ }
+
+ static QImage_Adaptor *new_qimage_from_data2(const std::string &data, int width, int height, QImage::Format format)
+ {
+ return new QImage_Adaptor(DataHolder::alloc(data), width, height, format);
+ }
+
+ QImage_Adaptor(unsigned char *data, int width, int height, int bytesPerLine, QImage::Format format)
+ : QImage(data, width, height, bytesPerLine, format), m_holder(data)
+ {
+ }
+
+ QImage_Adaptor(unsigned char *data, int width, int height, QImage::Format format)
+ : QImage (data, width, height, format), m_holder(data)
+ {
+ }
+
+ DataHolder m_holder;
+
+CODE
+ gsi::constructor("new", &QImage_Adaptor::new_qimage_from_data1, gsi::arg ("data"), gsi::arg ("width"), gsi::arg ("height"), gsi::arg ("bytesPerLine"), gsi::arg ("format"),
+ "@brief QImage::QImage(const uchar *data, int width, int height, int bytesPerLine)\n"
+ "The cleanupFunction parameter is available currently."
+ ) +
+ gsi::constructor("new", &QImage_Adaptor::new_qimage_from_data2, gsi::arg ("data"), gsi::arg ("width"), gsi::arg ("height"), gsi::arg ("format"),
+ "@brief QImage::QImage(const uchar *data, int width, int height)\n"
+ "The cleanupFunction parameter is available currently."
+ )
+DECL
+
+end
+
# --------------------------------------------------------------
# Alternative implementation for QFont::Light, QFont::Bold, QFont::Normal, QFont::DemiBold, QFont::Black
diff --git a/scripts/mkqtdecl_common/cpp_classes.rb b/scripts/mkqtdecl_common/cpp_classes.rb
index c3d7f3bdf..dbbb079be 100644
--- a/scripts/mkqtdecl_common/cpp_classes.rb
+++ b/scripts/mkqtdecl_common/cpp_classes.rb
@@ -155,16 +155,15 @@ end
# part.
class CPPMemberPointer < CPPOuterType
- attr_accessor :qid, :inner, :cv
- def_initializer :qid, :inner, :cv
+ attr_accessor :qid, :inner
+ def_initializer :qid, :inner
def to_s
- self.qid.to_s + "::* " + self.inner.to_s + (self.cv ? " " + self.cv.to_s : "")
+ self.qid.to_s + "::* " + self.inner.to_s
end
def dump(i)
i + "CPPMemberPointer\n" + i + " inner:\n" + self.inner.dump(i + " ") +
- i + " cv:\n" + self.cv.dump(i + " ") +
i + " qid: " + self.qid.to_s
end
diff --git a/scripts/mkqtdecl_common/cpp_parser_classes.rb b/scripts/mkqtdecl_common/cpp_parser_classes.rb
index ea283ecd3..be164864c 100644
--- a/scripts/mkqtdecl_common/cpp_parser_classes.rb
+++ b/scripts/mkqtdecl_common/cpp_parser_classes.rb
@@ -211,19 +211,19 @@ end
module PPointer
def cpp
- CPPCV::wrap(cvspec.nonterminal? && cvspec.cv.to_symbol, CPPPointer::new(itspec.nonterminal? ? itspec.it.cpp_reduced : CPPAnonymousId::new))
+ CPPPointer::new(itspec.nonterminal? ? itspec.it.cpp_reduced : CPPAnonymousId::new)
end
end
module PReference
def cpp
- CPPCV::wrap(cvspec.nonterminal? && cvspec.cv.to_symbol, CPPReference::new(itspec.nonterminal? ? itspec.it.cpp_reduced : CPPAnonymousId::new))
+ CPPReference::new(itspec.nonterminal? ? itspec.it.cpp_reduced : CPPAnonymousId::new)
end
end
module PMemberPointer
def cpp
- CPPMemberPointer::new(cspec.qid.cpp, itspec.nonterminal? ? itspec.it.cpp_reduced : CPPAnonymousId::new, cvspec.nonterminal? && cvspec.cv.to_symbol)
+ CPPMemberPointer::new(cspec.qid.cpp, itspec.nonterminal? ? itspec.it.cpp_reduced : CPPAnonymousId::new)
end
end
@@ -247,7 +247,7 @@ end
module PInnerTypeWithCV
def cpp
- CPPCV::wrap(cvspec.to_symbol, it.cpp_reduced)
+ CPPCV::wrap(cvspec.nonterminal? && cvspec.cv.to_symbol, it.cpp_reduced)
end
end
@@ -293,7 +293,7 @@ module PType
def cpp
# This is the class/struct/union/enum declaration if there is one
- d = ct.cpp
+ d = dct.ct.cpp
if d.is_a?(Array)
r = d.select { |i| i.is_a?(CPPStruct) || i.is_a?(CPPEnum) }
elsif d.is_a?(CPPStruct) || d.is_a?(CPPEnum)
@@ -302,7 +302,7 @@ module PType
r = []
end
# Create each declaration
- ot = CPPCV::wrap(cvspec.nonterminal? && cvspec.cv.to_symbol, ct.cpp_reduced)
+ ot = CPPCV::wrap(dct.cvspec.nonterminal? && dct.cvspec.cv.to_symbol, dct.ct.cpp_reduced)
if il.nonterminal?
r << CPPType::new(ot, il.t1.cpp_reduced, il.i1.nonterminal? ? il.i1.is1.text_value : nil)
il.tt.elements.each do |t|
@@ -324,7 +324,7 @@ end
module PTypeWoComma
def cpp
- ot = CPPCV::wrap(cvspec.nonterminal? && cvspec.cv.to_symbol, ct.cpp_reduced)
+ ot = CPPCV::wrap(dct.cvspec.nonterminal? && dct.cvspec.cv.to_symbol, dct.ct.cpp_reduced)
if il.nonterminal?
CPPType::new(ot, il.t.cpp_reduced, il.i.nonterminal? ? il.i.is.text_value : nil)
else
@@ -335,7 +335,7 @@ end
module PTypeForTemplate
def cpp
- ot = CPPCV::wrap(cvspec.nonterminal? && cvspec.cv.to_symbol, ct.cpp_reduced)
+ ot = CPPCV::wrap(dct.cvspec.nonterminal? && dct.cvspec.cv.to_symbol, dct.ct.cpp_reduced)
CPPType::new(ot, il.nonterminal? ? il.t.cpp_reduced : CPPAnonymousId::new, nil)
end
end
diff --git a/scripts/mkqtdecl_common/mkqtdecl_extract_props.rb b/scripts/mkqtdecl_common/mkqtdecl_extract_props.rb
index 4e1815aef..7aa485c7a 100644
--- a/scripts/mkqtdecl_common/mkqtdecl_extract_props.rb
+++ b/scripts/mkqtdecl_common/mkqtdecl_extract_props.rb
@@ -29,7 +29,9 @@ RBA::Class::each_class do |cls|
classes[cls.name] = true
end
-puts "# Properties from Qt meta objects:"
+output = $output ? File.open($output, "w") : stdout
+
+output.puts "# Properties from Qt meta objects:"
setters_sig = {}
getters_sig = {}
@@ -49,18 +51,30 @@ RBA::Class::each_class do |cls|
c = cls.name.sub(/_Native$/, "")
+ signal_names = {}
+ (0..(mo.methodCount-1)).each do |i|
+ mm = mo.method(i)
+ if mm.methodType == RBA::QMetaMethod::Signal
+ signal_names[mm.methodSignature.sub(/\(.*/, "")] = true
+ end
+ end
+
valid_sig = {}
(0..(mo.propertyCount-1)).each do |i|
pr = mo.property(i)
+ if signal_names[pr.name]
+ # ignore properties that clash with signal names (e.g. QCamera::flashReady)
+ next
+ end
ucname = pr.name[0..0].upcase + pr.name[1..-1]
if pr.isReadable
- puts "property_reader(\"#{c}\", /::(#{pr.name}|is#{ucname}|has#{ucname})\\s*\\(/, \"#{pr.name}\")"
+ output.puts "property_reader(\"#{c}\", /::(#{pr.name}|is#{ucname}|has#{ucname})\\s*\\(/, \"#{pr.name}\")"
getters_sig["#{cls.name}##{pr.name}"] = true
getters_sig["#{cls.name}#is#{ucname}"] = true
getters_sig["#{cls.name}#has#{ucname}"] = true
end
if pr.isWritable
- puts "property_writer(\"#{c}\", /::set#{ucname}\\s*\\(/, \"#{pr.name}\")"
+ output.puts "property_writer(\"#{c}\", /::set#{ucname}\\s*\\(/, \"#{pr.name}\")"
setters_sig["#{cls.name}#set#{ucname}"] = true
end
end
@@ -71,8 +85,8 @@ RBA::Class::each_class do |cls|
end
-puts ""
-puts "# Synthetic properties"
+output.puts ""
+output.puts "# Synthetic properties"
# strip const and references from types
def normalize_type(s)
@@ -147,11 +161,11 @@ RBA::Class::each_class do |cls|
getter_type = normalize_type(g[2].ret_type.to_s)
if setter_type == getter_type
- puts "# Property #{pn} (#{setter_type})"
+ output.puts "# Property #{pn} (#{setter_type})"
gc = g[1].name.sub(/_Native$/, "")
sc = s[1].name.sub(/_Native$/, "")
- puts "property_reader(\"#{gc}\", /::#{g[0].name}\\s*\\(/, \"#{pn}\")"
- puts "property_writer(\"#{sc}\", /::#{s[0].name}\\s*\\(/, \"#{pn}\")"
+ output.puts "property_reader(\"#{gc}\", /::#{g[0].name}\\s*\\(/, \"#{pn}\")"
+ output.puts "property_writer(\"#{sc}\", /::#{s[0].name}\\s*\\(/, \"#{pn}\")"
end
end
@@ -161,3 +175,7 @@ RBA::Class::each_class do |cls|
end
+if $output
+ output.close
+end
+
diff --git a/scripts/mkqtdecl_common/mkqtdecl_extract_signals.rb b/scripts/mkqtdecl_common/mkqtdecl_extract_signals.rb
index eaaac0ccc..92bcb93cb 100644
--- a/scripts/mkqtdecl_common/mkqtdecl_extract_signals.rb
+++ b/scripts/mkqtdecl_common/mkqtdecl_extract_signals.rb
@@ -29,6 +29,8 @@ RBA::Class::each_class do |cls|
classes[cls.name] = true
end
+output = $output ? File.open($output, "w") : stdout
+
RBA::Class::each_class do |cls|
if cls.name =~ /^Q/ && (cls.name =~ /_Native$/ || !classes[cls.name + "_Native"])
@@ -160,9 +162,9 @@ RBA::Class::each_class do |cls|
match += ".*int"
end
end
- puts "event(\"#{c}\", /#{match}/, \"#{s}\")"
+ output.puts "event(\"#{c}\", /#{match}/, \"#{s}\")"
if renamed
- puts "rename(\"#{c}\", /#{match}/, \"#{renamed}\")"
+ output.puts "rename(\"#{c}\", /#{match}/, \"#{renamed}\")"
end
end
end
@@ -172,4 +174,6 @@ RBA::Class::each_class do |cls|
end
-
+if $output
+ output.close
+end
diff --git a/scripts/mkqtdecl_update_tables.sh b/scripts/mkqtdecl_update_tables.sh
new file mode 100755
index 000000000..34c8e06d0
--- /dev/null
+++ b/scripts/mkqtdecl_update_tables.sh
@@ -0,0 +1,94 @@
+#!/bin/bash -e
+
+qt=()
+for qm in qmake qmake4 qmake5 qmake6; do
+ if sh -c "$qm -v" 2>/dev/null >/dev/null; then
+ qt_version=$($qm -v | grep 'Qt version' | sed 's/.*Qt version *\([0-9]\)\..*/\1/')
+ if [ "$qt_version" != "" ]; then
+ echo "Found qmake for Qt$qt_version: $qm"
+ qt[$qt_version]=$qm
+ fi
+ fi
+done
+
+qmake=qmake
+
+inst_dir_common=$(pwd)/scripts/mkqtdecl_common
+inst_dir4=$(pwd)/scripts/mkqtdecl4
+inst_dir5=$(pwd)/scripts/mkqtdecl5
+inst_dir6=$(pwd)/scripts/mkqtdecl6
+
+inst_dir=$inst_dir4
+
+work_dir="mkqtdecl.tmp"
+
+while [ "$1" != "" ]; do
+
+ a="$1"
+ shift
+
+ case "$a" in
+ -h)
+ echo "Update event and property tables"
+ echo "Usage:"
+ echo " mkqtdecl_update_tables.sh Update tables for Qt4"
+ echo " mkqtdecl_update_tables.sh -qt5 Update tables for Qt5"
+ echo " mkqtdecl_update_tables.sh -qt6 Update tables for Qt6"
+ echo " mkqtdecl_update_tables.sh -qt Update tables for specific Qt installation"
+ exit 0
+ ;;
+ -qt)
+ qmake="$1"
+ shift
+ ;;
+ -qt5)
+ qmake="${qt[5]}"
+ if [ "$qmake" == "" ]; then
+ echo "*** ERROR: Could not find qmake for Qt5"
+ exit 1
+ fi
+ work_dir="mkqtdecl5.tmp"
+ inst_dir="$inst_dir5"
+ ;;
+ -qt6)
+ qmake="${qt[6]}"
+ if [ "$qmake" == "" ]; then
+ echo "*** ERROR: Could not find qmake for Qt6"
+ exit 1
+ fi
+ work_dir="mkqtdecl6.tmp"
+ inst_dir="$inst_dir6"
+ ;;
+ *)
+ echo "*** ERROR: unknown command option $a"
+ exit 1
+ ;;
+ esac
+
+done
+
+if ! [ -e build.sh ]; then
+ echo "*** ERROR: could not find build script in current directy - did you start this script from top level?"
+ exit 1
+fi
+
+mkdir -p $work_dir
+
+bin=$work_dir/bin-update-tables
+build=$work_dir/build-update-tables
+log=$work_dir/build-update-table.log
+
+echo "Building in $build (log in $log) .."
+
+./build.sh -qmake $qmake -nopython -j8 -release -prefix $(pwd)/$bin -bin $bin -build $build >$log 2>&1
+
+echo "Extracting tables .."
+
+export LD_LIBRARY_PATH=$bin
+echo "[1] for properties .."
+$bin/klayout -b -r $inst_dir_common/mkqtdecl_extract_props.rb -rd output=$inst_dir/mkqtdecl.properties
+echo "[2] for signals .."
+$bin/klayout -b -r $inst_dir_common/mkqtdecl_extract_signals.rb -rd output=$inst_dir/mkqtdecl.events
+
+echo "Done."
+
diff --git a/scripts/rpm-data/klayout.spec b/scripts/rpm-data/klayout.spec
index 1ad64705f..217a53524 100644
--- a/scripts/rpm-data/klayout.spec
+++ b/scripts/rpm-data/klayout.spec
@@ -143,12 +143,16 @@ TARGET="linux-release"
mkdir -p %{buildroot}%{_libdir}/klayout
mkdir -p %{buildroot}%{_libdir}/klayout/db_plugins
mkdir -p %{buildroot}%{_libdir}/klayout/lay_plugins
+mkdir -p %{buildroot}%{_libdir}/klayout/pymod
cp -pd %{_builddir}/bin.$TARGET/lib*.so* %{buildroot}%{_libdir}/klayout
cp -pd %{_builddir}/bin.$TARGET/db_plugins/lib*.so* %{buildroot}%{_libdir}/klayout/db_plugins
cp -pd %{_builddir}/bin.$TARGET/lay_plugins/lib*.so* %{buildroot}%{_libdir}/klayout/lay_plugins
+cp -rpd %{_builddir}/bin.$TARGET/pymod/* %{buildroot}%{_libdir}/klayout/pymod
chmod 644 %{buildroot}%{_libdir}/klayout/*.so*
chmod 644 %{buildroot}%{_libdir}/klayout/db_plugins/*.so*
chmod 644 %{buildroot}%{_libdir}/klayout/lay_plugins/*.so*
+find %{buildroot}%{_libdir}/klayout/pymod -type f -exec chmod 644 {} +
+find %{buildroot}%{_libdir}/klayout/pymod -type d -exec chmod 755 {} +
# create and populate bindir
mkdir -p %{buildroot}%{_bindir}
diff --git a/setup.py b/setup.py
index 744b46547..6d071b9b1 100644
--- a/setup.py
+++ b/setup.py
@@ -944,6 +944,42 @@ lay = Extension(config.root + '.laycore',
extra_compile_args=config.compile_args('laycore'),
sources=list(lay_sources))
+# ------------------------------------------------------------------
+# pya extension library (all inclusive, basis of pya module)
+
+pyacore_path = os.path.join("src", "pymod", "pya")
+pyacore_sources = set(glob.glob(os.path.join(pyacore_path, "*.cc")))
+
+pya = Extension(config.root + '.pyacore',
+ define_macros=config.macros(),
+ include_dirs=[_laybasic_path,
+ _layview_path,
+ _lib_path,
+ _db_path,
+ _rdb_path,
+ _img_path,
+ _ant_path,
+ _edt_path,
+ _lym_path,
+ _tl_path,
+ _gsi_path,
+ _pya_path],
+ extra_objects=[config.path_of('_laybasic', _laybasic_path),
+ config.path_of('_layview', _layview_path),
+ config.path_of('_lib', _lib_path),
+ config.path_of('_db', _db_path),
+ config.path_of('_rdb', _rdb_path),
+ config.path_of('_img', _img_path),
+ config.path_of('_ant', _ant_path),
+ config.path_of('_edt', _edt_path),
+ config.path_of('_lym', _lym_path),
+ config.path_of('_tl', _tl_path),
+ config.path_of('_gsi', _gsi_path),
+ config.path_of('_pya', _pya_path)],
+ extra_link_args=config.link_args('pyacore'),
+ extra_compile_args=config.compile_args('pyacore'),
+ sources=list(pyacore_sources))
+
# ------------------------------------------------------------------
# Core setup function
@@ -980,6 +1016,6 @@ if __name__ == "__main__":
include_package_data=True,
ext_modules=[_tl, _gsi, _pya, _rba, _db, _lib, _rdb, _lym, _laybasic, _layview, _ant, _edt, _img]
+ db_plugins
- + [tl, db, lib, rdb, lay],
+ + [tl, db, lib, rdb, lay, pya],
cmdclass={'build_ext': klayout_build_ext}
)
diff --git a/src/db/db/built-in-pymacros/pcell_declaration_helper.lym b/src/db/db/built-in-pymacros/pcell_declaration_helper.lym
index 81ea44c44..462883154 100644
--- a/src/db/db/built-in-pymacros/pcell_declaration_helper.lym
+++ b/src/db/db/built-in-pymacros/pcell_declaration_helper.lym
@@ -8,6 +8,10 @@
@class [db] PCellDeclarationHelper < PCellDeclaration
@brief A helper class to simplify the declaration of a PCell (Python version)
+NOTE: in the following, "pya" can be replaced by "klayout.db" which is
+the canonical module and the preferred way of addressing the
+external Python library.
+
This class provides adds some convenience to the PCell declaration based
on PCellDeclaration. PCellDeclaration is a C++ object which is less
convenient to use than a Ruby-based approach. In particular this class
@@ -252,317 +256,7 @@ This method must return a \\Trans object. The default implementation returns a u
python
-import pya
-
-class _PCellDeclarationHelperLayerDescriptor(object):
- """
- A descriptor object which translates the PCell parameters into class attributes
- """
-
- def __init__(self, param_index):
- self.param_index = param_index
-
- def __get__(self, obj, type = None):
- return obj._layers[self.param_index]
-
- def __set__(self, obj, value):
- raise AttributeError("can't change layer attribute")
-
-class _PCellDeclarationHelperParameterDescriptor(object):
- """
- A descriptor object which translates the PCell parameters into class attributes
-
- In some cases (i.e. can_convert_from_shape), these placeholders are not
- connected to real parameters (obj._param_values is None). In this case,
- the descriptor acts as a value holder (self.value)
- """
-
- def __init__(self, param_index, param_name):
- self.param_index = param_index
- self.param_name = param_name
- self.value = None
-
- def __get__(self, obj, type = None):
- if obj._param_values:
- return obj._param_values[self.param_index]
- elif obj._param_states:
- return obj._param_states.parameter(self.param_name)
- else:
- return self.value
-
- def __set__(self, obj, value):
- if obj._param_values:
- obj._param_values[self.param_index] = value
- else:
- self.value = value
-
-class _PCellDeclarationHelper(pya.PCellDeclaration):
- """
- A helper class that somewhat simplifies the implementation
- of a PCell
- """
-
- def __init__(self):
- """
- initialize this instance
- """
- # "private" attributes
- self._param_decls = []
- self._param_values = None
- self._param_states = None
- self._layer_param_index = []
- self._layers = []
- # public attributes
- self.layout = None
- self.shape = None
- self.layer = None
- self.cell = None
-
- def param(self, name, value_type, description, hidden = False, readonly = False, unit = None, default = None, choices = None):
- """
- Defines a parameter
- name -> the short name of the parameter
- type -> the type of the parameter
- description -> the description text
- named parameters
- hidden -> (boolean) true, if the parameter is not shown in the dialog
- readonly -> (boolean) true, if the parameter cannot be edited
- unit -> the unit string
- default -> the default value
- choices -> ([ [ d, v ], ...) choice descriptions/value for choice type
- this method defines accessor methods for the parameters
- {name} -> read accessor
- set_{name} -> write accessor ({name}= does not work because the
- Ruby confuses that method with variables)
- {name}_layer -> read accessor for the layer index for TypeLayer parameters
- """
-
- # create accessor methods for the parameters
- param_index = len(self._param_decls)
- setattr(type(self), name, _PCellDeclarationHelperParameterDescriptor(param_index, name))
-
- if value_type == type(self).TypeLayer:
- setattr(type(self), name + "_layer", _PCellDeclarationHelperLayerDescriptor(len(self._layer_param_index)))
- self._layer_param_index.append(param_index)
-
- # store the parameter declarations
- pdecl = pya.PCellParameterDeclaration(name, value_type, description)
- self._param_decls.append(pdecl)
-
- # set additional attributes of the parameters
- pdecl.hidden = hidden
- pdecl.readonly = readonly
- if not (default is None):
- pdecl.default = default
- if not (unit is None):
- pdecl.unit = unit
- if not (choices is None):
- if not isinstance(choices, list) and not isinstance(choices, tuple):
- raise TypeError("choices value must be an list/tuple of two-element arrays (description, value)")
- for c in choices:
- if (not isinstance(choices, list) and not isinstance(choices, tuple)) or len(c) != 2:
- raise TypeError("choices value must be an list/tuple of two-element arrays (description, value)")
- pdecl.add_choice(c[0],c[1])
-
- # return the declaration object for further operations
- return pdecl
-
- def display_text(self, parameters):
- """
- implementation of display_text
- """
- self._param_values = parameters
- try:
- text = self.display_text_impl()
- finally:
- self._param_values = None
- return text
-
- def get_parameters(self):
- """
- gets the parameters
- """
- return self._param_decls
-
- def get_values(self):
- """
- gets the temporary parameter values
- """
- v = self._param_values
- self._param_values = None
- return v
-
- def init_values(self, values = None, layers = None, states = None):
- """
- initializes the temporary parameter values
- "values" are the original values. If "None" is given, the
- default values will be used.
- "layers" are the layer indexes corresponding to the layer
- parameters.
- """
- self._param_values = None
- self._param_states = None
- if states:
- self._param_states = states
- elif not values:
- self._param_values = []
- for pd in self._param_decls:
- self._param_values.append(pd.default)
- else:
- self._param_values = values
- self._layers = layers
-
- def finish(self):
- """
- Needs to be called at the end of an implementation
- """
- self._param_values = None
- self._param_states = None
- self._layers = None
- self._cell = None
- self._layout = None
- self._layer = None
- self._shape = None
-
- def get_layers(self, parameters):
- """
- gets the layer definitions
- """
- layers = []
- for i in self._layer_param_index:
- if parameters[i] is not None:
- layers.append(parameters[i])
- else:
- layers.append(pya.LayerInfo())
- return layers
-
- def callback(self, layout, name, states):
- """
- callback (change state on parameter change)
- """
- self.init_values(states = states)
- self.layout = layout
- try:
- self.callback_impl(name)
- finally:
- self.finish()
-
- def coerce_parameters(self, layout, parameters):
- """
- coerce parameters (make consistent)
- """
- self.init_values(parameters)
- self.layout = layout
- try:
- self.coerce_parameters_impl()
- parameters = self.get_values()
- finally:
- self.finish()
- return parameters
-
- def produce(self, layout, layers, parameters, cell):
- """
- coerce parameters (make consistent)
- """
- self.init_values(parameters, layers)
- self.cell = cell
- self.layout = layout
- try:
- self.produce_impl()
- finally:
- self.finish()
-
- def can_create_from_shape(self, layout, shape, layer):
- """
- produce a helper for can_create_from_shape
- """
- self.layout = layout
- self.shape = shape
- self.layer = layer
- try:
- ret = self.can_create_from_shape_impl()
- finally:
- self.finish()
- return ret
-
- def transformation_from_shape(self, layout, shape, layer):
- """
- produce a helper for parameters_from_shape
- """
- self.layout = layout
- self.shape = shape
- self.layer = layer
- try:
- t = self.transformation_from_shape_impl()
- finally:
- self.finish()
- return t
-
- def parameters_from_shape(self, layout, shape, layer):
- """
- produce a helper for parameters_from_shape
- with this helper, the implementation can use the parameter setters
- """
- self.init_values()
- self.layout = layout
- self.shape = shape
- self.layer = layer
- try:
- self.parameters_from_shape_impl()
- param = self.get_values()
- finally:
- self.finish()
- return param
-
- def display_text_impl(self):
- """
- default implementation
- """
- return ""
-
- def coerce_parameters_impl(self):
- """
- default implementation
- """
- pass
-
- def callback_impl(self, name):
- """
- default implementation
- """
- pass
-
- def produce_impl(self):
- """
- default implementation
- """
- pass
-
- def can_create_from_shape_impl(self):
- """
- default implementation
- """
- return False
-
- def parameters_from_shape_impl(self):
- """
- default implementation
- """
- pass
-
- def transformation_from_shape_impl(self):
- """
- default implementation
- """
- return pya.Trans()
-
-# import the Type... constants from PCellParameterDeclaration
-for k in dir(pya.PCellParameterDeclaration):
- if k.startswith("Type"):
- setattr(_PCellDeclarationHelper, k, getattr(pya.PCellParameterDeclaration, k))
-
-# Inject the PCellDeclarationHelper into pya module for consistency:
-setattr(pya, "PCellDeclarationHelper", _PCellDeclarationHelper)
-
+# No code provided here. This macro is supplied to provide the documentation.
+# The basic code is located in klayout.db.pcell_declaration_helper now.
diff --git a/src/doc/doc/about/rba_notation.xml b/src/doc/doc/about/rba_notation.xml
index 03bd646fc..dc4fbac5c 100644
--- a/src/doc/doc/about/rba_notation.xml
+++ b/src/doc/doc/about/rba_notation.xml
@@ -86,7 +86,7 @@
- [virtual] bool event(QEvent ptr arg1) :
+ [virtual] bool event(QEvent ptr ev) :
A virtual method called "event" returning a boolean value
(Ruby "true" or "false") and expecting one argument (a pointer to a QEvent object).
"ptr" indicates that the argument is a pointer, "arg1" is the argument name.
@@ -108,9 +108,12 @@
An iterator called "each_reference" delivering RdbReference objects.
- [event] void layoutAboutToBeChanged :
- A parameterless event called "layoutAboutToBeChanged".
-
+ [signal] void layoutAboutToBeChanged :
+ A parameterless signal (event) called "layoutAboutToBeChanged" (see for details about events or signals).
+
+
+ [signal] void objectNameChanged(string objectName) :
+ A signal (event) called "objectNameChanged" with one string argument.
diff --git a/src/doc/doc/programming/events.xml b/src/doc/doc/programming/events.xml
index 827102a7c..044ea331b 100644
--- a/src/doc/doc/programming/events.xml
+++ b/src/doc/doc/programming/events.xml
@@ -59,10 +59,12 @@
- Here is the code:
+ Here is the code.
+ This example demonstrates how the "get" method is reimplemented to deliver the actual text.
- module MyMacro
+
+module MyMacro
include RBA
@@ -78,15 +80,32 @@
dialog.home = "int:0"
dialog.exec
-end
+end
+
+
+ The Python version is this:
+
+
+from pya import BrowserSource, BrowserDialog
+
+class MyBrowserSource(BrowserSource):
+ def get(self, url):
+ next_url = "int:" + str(int(url.split(":")[1]) + 1)
+ return f"This is {url}. <a href='{next_url}'>Goto next ({next_url})</a>>"
+
+dialog = BrowserDialog()
+dialog.home = "int:0"
+dialog.source = MyBrowserSource()
+dialog.exec_()
+
- This example demonstrates how the "get" method is reimplemented to deliver the actual text.
Ruby even allows reimplementation of a method without deriving a new class, because it allows
- to define methods per instance:
+ defining methods per instance:
- module MyMacro
+
+module MyMacro
include RBA
@@ -101,7 +120,8 @@ end
dialog.home = "int:0"
dialog.exec
-end
+end
+
Events
@@ -117,7 +137,8 @@ end
clicked, it displays a message box:
- module MyMacro
+
+module MyMacro
include RBA
@@ -129,14 +150,33 @@ end
Application::instance.main_window.menu.insert_item("@toolbar.end", "my_action", action)
-end
+end
+
+
+
+ The Python version is:
+
+
+
+from pya import Action, MessageBox, Application
+
+def on_triggered():
+ MessageBox.info("A message", "The action was triggered", MessageBox.Ok)
+
+action = Action()
+action.on_triggered = on_triggered
+action.title = "My Action"
+
+Application.instance().main_window().menu().insert_item("@toolbar.end", "my_action", action)
+
Specifying a block to an event will make the event only execute that block. A more flexible way of
controlling the code attached to events is available through the += and -= operators:
- module MyMacro
+
+module MyMacro
include RBA
@@ -157,7 +197,12 @@ end
# to clear all event handlers use:
action.on_triggered.clear
-
+
+
+
+ Synonyms for the += operator are add and connect . The latter makes code more familiar for PyQt users.
+ In the same way, synonyms for the -= operator are remove and disconnect .
+
If the Qt binding is available (see ), Qt signals
@@ -166,7 +211,8 @@ end
input field to the label below:
- module MyMacro
+
+module MyMacro
include RBA
@@ -182,13 +228,38 @@ end
dialog.exec
-end
+end
+
+
+
+ The Python version is:
+
+
+
+from pya import QDialog, QVBoxLayout, QLineEdit, QLabel, Application
+
+dialog = QDialog(Application.instance().main_window())
+layout = QVBoxLayout(dialog)
+input = QLineEdit(dialog)
+label = QLabel(dialog)
+layout.addWidget(input)
+layout.addWidget(label)
+
+def text_changed(text):
+ label.text = text
+
+# implement the textChanged signal as event:
+input.textChanged = text_changed
+
+dialog.exec_()
+
Using the += operator on the event, multiple handlers can be added to a signal:
- module MyMacro
+
+module MyMacro
include RBA
@@ -207,7 +278,37 @@ end
dialog.exec
-end
+end
+
+
+
+ with the Python version:
+
+
+
+from pya import QDialog, QVBoxLayout, QLineEdit, QLabel, Application
+
+dialog = QDialog(Application.instance().main_window())
+layout = QVBoxLayout(dialog)
+input = QLineEdit(dialog)
+label1 = QLabel(dialog)
+label2 = QLabel(dialog)
+layout.addWidget(input)
+layout.addWidget(label1)
+layout.addWidget(label2)
+
+def text_changed1(text):
+ label1.text = text
+
+def text_changed2(text):
+ label2.text = text[::-1]
+
+# two signal consumers:
+input.textChanged += text_changed1
+input.textChanged += text_changed2
+
+dialog.exec_()
+
diff --git a/src/gsi/gsi/gsi.cc b/src/gsi/gsi/gsi.cc
index 511bd049d..e68ed17a0 100644
--- a/src/gsi/gsi/gsi.cc
+++ b/src/gsi/gsi/gsi.cc
@@ -44,6 +44,9 @@ initialize ()
// Do a first initialization of the new classes because they might add more classes
for (gsi::ClassBase::class_iterator c = gsi::ClassBase::begin_new_classes (); c != gsi::ClassBase::end_new_classes (); ++c) {
+ if (tl::verbosity () >= 50 && c->begin_methods () != c->end_methods ()) {
+ tl::info << "GSI: initializing class " << c->module () << "::" << c->name ();
+ }
// TODO: get rid of that const cast
(const_cast (&*c))->initialize ();
}
diff --git a/src/gsi/gsi/gsiEnums.h b/src/gsi/gsi/gsiEnums.h
index ca3c6da1b..abe2eb2b5 100644
--- a/src/gsi/gsi/gsiEnums.h
+++ b/src/gsi/gsi/gsiEnums.h
@@ -275,6 +275,7 @@ public:
gsi::method_ext ("to_s", &enum_to_string_ext, "@brief Gets the symbolic string from an enum") +
gsi::method_ext ("inspect", &enum_to_string_inspect_ext, "@brief Converts an enum to a visual string") +
gsi::method_ext ("to_i", &enum_to_int, "@brief Gets the integer value from the enum") +
+ gsi::method_ext ("hash", &enum_to_int, "@brief Gets the hash value from the enum") +
gsi::method_ext ("==", &enum_eq, gsi::arg("other"), "@brief Compares two enums") +
gsi::method_ext ("==", &enum_eq_with_int, gsi::arg("other"), "@brief Compares an enum with an integer value") +
gsi::method_ext ("!=", &enum_ne, gsi::arg("other"), "@brief Compares two enums for inequality") +
diff --git a/src/gsi/gsi/gsiInterpreter.h b/src/gsi/gsi/gsiInterpreter.h
index a88f00814..9cd074dc2 100644
--- a/src/gsi/gsi/gsiInterpreter.h
+++ b/src/gsi/gsi/gsiInterpreter.h
@@ -187,7 +187,7 @@ public:
/**
* @brief Add the given path to the search path ($: in ruby)
*/
- virtual void add_path (const std::string &path) = 0;
+ virtual void add_path (const std::string &path, bool prepend = false) = 0;
/**
* @brief Requires the given module (ruby "require")
diff --git a/src/gsi/gsi/gsiMethods.cc b/src/gsi/gsi/gsiMethods.cc
index 250264dfb..9f6100b22 100644
--- a/src/gsi/gsi/gsiMethods.cc
+++ b/src/gsi/gsi/gsiMethods.cc
@@ -22,6 +22,7 @@
#include "gsiDecl.h"
+#include "tlLog.h"
#include
@@ -231,5 +232,106 @@ MethodBase::primary_name () const
}
}
+// --------------------------------------------------------------------------------
+// Implementation of MethodBase
+
+Methods::Methods ()
+ : m_methods ()
+{
+ // .. nothing yet ..
+}
+
+Methods::Methods (MethodBase *m)
+ : m_methods ()
+{
+ m_methods.push_back (m);
+}
+
+Methods::Methods (const Methods &d)
+{
+ operator= (d);
+}
+
+Methods &
+Methods::operator= (const Methods &d)
+{
+ if (this != &d) {
+ clear ();
+ m_methods.reserve (d.m_methods.size ());
+ for (std::vector::const_iterator m = d.m_methods.begin (); m != d.m_methods.end (); ++m) {
+ m_methods.push_back ((*m)->clone ());
+ }
+ }
+ return *this;
+}
+
+Methods::~Methods ()
+{
+ clear ();
+}
+
+void
+Methods::initialize ()
+{
+ for (std::vector::iterator m = m_methods.begin (); m != m_methods.end (); ++m) {
+ if (tl::verbosity () >= 60) {
+ tl::info << "GSI: initializing method " << (*m)->to_string ();
+ }
+ (*m)->initialize ();
+ }
+}
+
+void
+Methods::clear ()
+{
+ for (std::vector::iterator m = m_methods.begin (); m != m_methods.end (); ++m) {
+ delete *m;
+ }
+ m_methods.clear ();
+}
+
+// HINT: this is not the usual + semantics but this is more effective
+Methods &
+Methods::operator+ (const Methods &m)
+{
+ return operator+= (m);
+}
+
+// HINT: this is not the usual + semantics but this is more effective
+Methods &
+Methods::operator+ (MethodBase *m)
+{
+ return operator+= (m);
+}
+
+Methods &
+Methods::operator+= (const Methods &m)
+{
+ for (std::vector::const_iterator mm = m.m_methods.begin (); mm != m.m_methods.end (); ++mm)
+ {
+ add_method ((*mm)->clone ());
+ }
+ return *this;
+}
+
+Methods &
+Methods::operator+= (MethodBase *m)
+{
+ add_method (m);
+ return *this;
+}
+
+void
+Methods::add_method (MethodBase *method)
+{
+ m_methods.push_back (method);
+}
+
+void
+Methods::swap (Methods &other)
+{
+ m_methods.swap (other.m_methods);
+}
+
}
diff --git a/src/gsi/gsi/gsiMethods.h b/src/gsi/gsi/gsiMethods.h
index cd44ca064..5a2ae8d78 100644
--- a/src/gsi/gsi/gsiMethods.h
+++ b/src/gsi/gsi/gsiMethods.h
@@ -620,81 +620,29 @@ class GSI_PUBLIC Methods
public:
typedef std::vector::const_iterator iterator;
- Methods ()
- : m_methods ()
- {
- // .. nothing yet ..
- }
+ Methods ();
+ explicit Methods (MethodBase *m);
+ Methods (const Methods &d);
- explicit Methods (MethodBase *m)
- : m_methods ()
- {
- m_methods.push_back (m);
- }
+ Methods &operator= (const Methods &d);
- Methods (const Methods &d)
- {
- operator= (d);
- }
+ ~Methods ();
- Methods &operator= (const Methods &d)
- {
- if (this != &d) {
- clear ();
- m_methods.reserve (d.m_methods.size ());
- for (std::vector::const_iterator m = d.m_methods.begin (); m != d.m_methods.end (); ++m) {
- m_methods.push_back ((*m)->clone ());
- }
- }
- return *this;
- }
-
- ~Methods ()
- {
- clear ();
- }
-
- void initialize ()
- {
- for (std::vector::iterator m = m_methods.begin (); m != m_methods.end (); ++m) {
- (*m)->initialize ();
- }
- }
-
- void clear ()
- {
- for (std::vector::iterator m = m_methods.begin (); m != m_methods.end (); ++m) {
- delete *m;
- }
- m_methods.clear ();
- }
+ void initialize ();
+ void clear ();
// HINT: this is not the usual + semantics but this is more effective
- Methods &operator+ (const Methods &m)
- {
- return operator+= (m);
- }
+ Methods &operator+ (const Methods &m);
// HINT: this is not the usual + semantics but this is more effective
- Methods &operator+ (MethodBase *m)
- {
- return operator+= (m);
- }
+ Methods &operator+ (MethodBase *m);
- Methods &operator+= (const Methods &m)
- {
- for (std::vector::const_iterator mm = m.m_methods.begin (); mm != m.m_methods.end (); ++mm)
- {
- add_method ((*mm)->clone ());
- }
- return *this;
- }
+ Methods &operator+= (const Methods &m);
+ Methods &operator+= (MethodBase *m);
- Methods &operator+= (MethodBase *m)
- {
- add_method (m);
- return *this;
- }
+ void add_method (MethodBase *method);
+
+ void swap (Methods &other);
iterator begin () const
{
@@ -706,21 +654,11 @@ public:
return m_methods.end ();
}
- void add_method (MethodBase *method)
- {
- m_methods.push_back (method);
- }
-
size_t size () const
{
return m_methods.size ();
}
- void swap (Methods &other)
- {
- m_methods.swap (other.m_methods);
- }
-
public:
std::vector m_methods;
};
diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc
index 6bcf411ac..4b298b247 100644
--- a/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc
+++ b/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc
@@ -119,6 +119,7 @@ static void _call_f_addSpacerItem_1708 (const qt_gsi::GenericMethod * /*decl*/,
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
QSpacerItem *arg1 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg1);
__SUPPRESS_UNUSED_WARNING(ret);
((QBoxLayout *)cls)->addSpacerItem (arg1);
}
@@ -203,6 +204,7 @@ static void _call_f_addWidget_4616 (const qt_gsi::GenericMethod * /*decl*/, void
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
QWidget *arg1 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg1);
int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap);
QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap);
__SUPPRESS_UNUSED_WARNING(ret);
@@ -309,6 +311,7 @@ static void _call_f_insertLayout_2659 (const qt_gsi::GenericMethod * /*decl*/, v
tl::Heap heap;
int arg1 = gsi::arg_reader() (args, heap);
QLayout *arg2 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg2);
int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap);
__SUPPRESS_UNUSED_WARNING(ret);
((QBoxLayout *)cls)->insertLayout (arg1, arg2, arg3);
@@ -333,6 +336,7 @@ static void _call_f_insertSpacerItem_2367 (const qt_gsi::GenericMethod * /*decl*
tl::Heap heap;
int arg1 = gsi::arg_reader() (args, heap);
QSpacerItem *arg2 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg2);
__SUPPRESS_UNUSED_WARNING(ret);
((QBoxLayout *)cls)->insertSpacerItem (arg1, arg2);
}
@@ -406,6 +410,7 @@ static void _call_f_insertWidget_5275 (const qt_gsi::GenericMethod * /*decl*/, v
tl::Heap heap;
int arg1 = gsi::arg_reader() (args, heap);
QWidget *arg2 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg2);
int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap);
QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap);
__SUPPRESS_UNUSED_WARNING(ret);
@@ -1686,6 +1691,7 @@ static void _call_fp_insertItem_2399 (const qt_gsi::GenericMethod * /*decl*/, vo
tl::Heap heap;
int arg1 = gsi::arg_reader() (args, heap);
QLayoutItem *arg2 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg2);
__SUPPRESS_UNUSED_WARNING(ret);
((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_insertItem_2399 (arg1, arg2);
}
diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc
index c011de144..85619e3c5 100644
--- a/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc
+++ b/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc
@@ -85,6 +85,7 @@ static void _call_f_addItem_7018 (const qt_gsi::GenericMethod * /*decl*/, void *
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
QLayoutItem *arg1 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg1);
int arg2 = gsi::arg_reader() (args, heap);
int arg3 = gsi::arg_reader() (args, heap);
int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap);
@@ -176,6 +177,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
QWidget *arg1 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg1);
__SUPPRESS_UNUSED_WARNING(ret);
((QGridLayout *)cls)->addWidget (arg1);
}
@@ -202,6 +204,7 @@ static void _call_f_addWidget_5275 (const qt_gsi::GenericMethod * /*decl*/, void
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
QWidget *arg1 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg1);
int arg2 = gsi::arg_reader() (args, heap);
int arg3 = gsi::arg_reader() (args, heap);
QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap);
@@ -235,6 +238,7 @@ static void _call_f_addWidget_6593 (const qt_gsi::GenericMethod * /*decl*/, void
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
QWidget *arg1 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg1);
int arg2 = gsi::arg_reader() (args, heap);
int arg3 = gsi::arg_reader() (args, heap);
int arg4 = gsi::arg_reader() (args, heap);
diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQHBoxLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQHBoxLayout.cc
index d6924da43..b0e43c69d 100644
--- a/src/gsiqt/qt4/QtGui/gsiDeclQHBoxLayout.cc
+++ b/src/gsiqt/qt4/QtGui/gsiDeclQHBoxLayout.cc
@@ -1033,6 +1033,7 @@ static void _call_fp_insertItem_2399 (const qt_gsi::GenericMethod * /*decl*/, vo
tl::Heap heap;
int arg1 = gsi::arg_reader() (args, heap);
QLayoutItem *arg2 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg2);
__SUPPRESS_UNUSED_WARNING(ret);
((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_insertItem_2399 (arg1, arg2);
}
diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc b/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc
index 7fa10e70a..28de3679a 100644
--- a/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc
+++ b/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc
@@ -1713,6 +1713,59 @@ class QImage_Adaptor : public QImage, public qt_gsi::QtObjectBase
{
public:
+ // NOTE: QImage does not take ownership of the data, so
+ // we will provide a buffer to do so. This requires an additional
+ // copy, but as GSI is not guaranteeing the lifetime of the
+ // data, this is required here.
+ class DataHolder
+ {
+ public:
+
+ DataHolder() : mp_data(0) { }
+ DataHolder(unsigned char *data) : mp_data(data) { }
+
+ ~DataHolder()
+ {
+ if (mp_data) {
+ delete[](mp_data);
+ }
+ mp_data = 0;
+ }
+
+ static unsigned char *alloc(const std::string &data)
+ {
+ unsigned char *ptr = new unsigned char[data.size()];
+ memcpy(ptr, data.c_str(), data.size());
+ return ptr;
+ }
+
+ private:
+ unsigned char *mp_data;
+ };
+
+ static QImage_Adaptor *new_qimage_from_data1(const std::string &data, int width, int height, int bytesPerLine, QImage::Format format)
+ {
+ return new QImage_Adaptor(DataHolder::alloc(data), width, height, bytesPerLine, format);
+ }
+
+ static QImage_Adaptor *new_qimage_from_data2(const std::string &data, int width, int height, QImage::Format format)
+ {
+ return new QImage_Adaptor(DataHolder::alloc(data), width, height, format);
+ }
+
+ QImage_Adaptor(unsigned char *data, int width, int height, int bytesPerLine, QImage::Format format)
+ : QImage(data, width, height, bytesPerLine, format), m_holder(data)
+ {
+ }
+
+ QImage_Adaptor(unsigned char *data, int width, int height, QImage::Format format)
+ : QImage (data, width, height, format), m_holder(data)
+ {
+ }
+
+ DataHolder m_holder;
+
+
virtual ~QImage_Adaptor();
// [adaptor ctor] QImage::QImage()
@@ -1733,18 +1786,6 @@ public:
qt_gsi::QtObjectBase::init (this);
}
- // [adaptor ctor] QImage::QImage(const unsigned char *data, int width, int height, QImage::Format format)
- QImage_Adaptor(const unsigned char *data, int width, int height, QImage::Format format) : QImage(data, width, height, format)
- {
- qt_gsi::QtObjectBase::init (this);
- }
-
- // [adaptor ctor] QImage::QImage(const unsigned char *data, int width, int height, int bytesPerLine, QImage::Format format)
- QImage_Adaptor(const unsigned char *data, int width, int height, int bytesPerLine, QImage::Format format) : QImage(data, width, height, bytesPerLine, format)
- {
- qt_gsi::QtObjectBase::init (this);
- }
-
// [adaptor ctor] QImage::QImage(const QString &fileName, const char *format)
QImage_Adaptor(const QString &fileName) : QImage(fileName)
{
@@ -1858,63 +1899,6 @@ static void _call_ctor_QImage_Adaptor_3051 (const qt_gsi::GenericStaticMethod *
}
-// Constructor QImage::QImage(const unsigned char *data, int width, int height, QImage::Format format) (adaptor class)
-
-static void _init_ctor_QImage_Adaptor_5679 (qt_gsi::GenericStaticMethod *decl)
-{
- static gsi::ArgSpecBase argspec_0 ("data");
- decl->add_arg (argspec_0);
- static gsi::ArgSpecBase argspec_1 ("width");
- decl->add_arg (argspec_1);
- static gsi::ArgSpecBase argspec_2 ("height");
- decl->add_arg (argspec_2);
- static gsi::ArgSpecBase argspec_3 ("format");
- decl->add_arg::target_type & > (argspec_3);
- decl->set_return_new ();
-}
-
-static void _call_ctor_QImage_Adaptor_5679 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
-{
- __SUPPRESS_UNUSED_WARNING(args);
- tl::Heap heap;
- const unsigned char *arg1 = gsi::arg_reader() (args, heap);
- int arg2 = gsi::arg_reader() (args, heap);
- int arg3 = gsi::arg_reader() (args, heap);
- const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap);
- ret.write (new QImage_Adaptor (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()));
-}
-
-
-// Constructor QImage::QImage(const unsigned char *data, int width, int height, int bytesPerLine, QImage::Format format) (adaptor class)
-
-static void _init_ctor_QImage_Adaptor_6338 (qt_gsi::GenericStaticMethod *decl)
-{
- static gsi::ArgSpecBase argspec_0 ("data");
- decl->add_arg (argspec_0);
- static gsi::ArgSpecBase argspec_1 ("width");
- decl->add_arg (argspec_1);
- static gsi::ArgSpecBase argspec_2 ("height");
- decl->add_arg (argspec_2);
- static gsi::ArgSpecBase argspec_3 ("bytesPerLine");
- decl->add_arg (argspec_3);
- static gsi::ArgSpecBase argspec_4 ("format");
- decl->add_arg::target_type & > (argspec_4);
- decl->set_return_new ();
-}
-
-static void _call_ctor_QImage_Adaptor_6338 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
-{
- __SUPPRESS_UNUSED_WARNING(args);
- tl::Heap heap;
- const unsigned char *arg1 = gsi::arg_reader() (args, heap);
- int arg2 = gsi::arg_reader() (args, heap);
- int arg3 = gsi::arg_reader() (args, heap);
- int arg4 = gsi::arg_reader() (args, heap);
- const qt_gsi::Converter::target_type & arg5 = gsi::arg_reader::target_type & >() (args, heap);
- ret.write (new QImage_Adaptor (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()));
-}
-
-
// Constructor QImage::QImage(const QString &fileName, const char *format) (adaptor class)
static void _init_ctor_QImage_Adaptor_3648 (qt_gsi::GenericStaticMethod *decl)
@@ -2006,8 +1990,6 @@ static gsi::Methods methods_QImage_Adaptor () {
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage()\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_0, &_call_ctor_QImage_Adaptor_0);
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage(const QSize &size, QImage::Format format)\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_3430, &_call_ctor_QImage_Adaptor_3430);
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage(int width, int height, QImage::Format format)\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_3051, &_call_ctor_QImage_Adaptor_3051);
- methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage(const unsigned char *data, int width, int height, QImage::Format format)\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_5679, &_call_ctor_QImage_Adaptor_5679);
- methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage(const unsigned char *data, int width, int height, int bytesPerLine, QImage::Format format)\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_6338, &_call_ctor_QImage_Adaptor_6338);
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage(const QString &fileName, const char *format)\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_3648, &_call_ctor_QImage_Adaptor_3648);
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage(const QImage &)\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_1877, &_call_ctor_QImage_Adaptor_1877);
methods += new qt_gsi::GenericMethod ("*metric", "@brief Virtual method int QImage::metric(QPaintDevice::PaintDeviceMetric metric)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_metric_c3445_0, &_call_cbs_metric_c3445_0);
@@ -2018,6 +2000,15 @@ static gsi::Methods methods_QImage_Adaptor () {
}
gsi::Class decl_QImage_Adaptor (qtdecl_QImage (), "QtGui", "QImage",
+ gsi::constructor("new", &QImage_Adaptor::new_qimage_from_data1, gsi::arg ("data"), gsi::arg ("width"), gsi::arg ("height"), gsi::arg ("bytesPerLine"), gsi::arg ("format"),
+ "@brief QImage::QImage(const uchar *data, int width, int height, int bytesPerLine)\n"
+ "The cleanupFunction parameter is available currently."
+ ) +
+ gsi::constructor("new", &QImage_Adaptor::new_qimage_from_data2, gsi::arg ("data"), gsi::arg ("width"), gsi::arg ("height"), gsi::arg ("format"),
+ "@brief QImage::QImage(const uchar *data, int width, int height)\n"
+ "The cleanupFunction parameter is available currently."
+ )
++
methods_QImage_Adaptor (),
"@qt\n@brief Binding of QImage");
diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc
index 64364e381..3b0fd9394 100644
--- a/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc
+++ b/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc
@@ -110,6 +110,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
QWidget *arg1 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg1);
__SUPPRESS_UNUSED_WARNING(ret);
((QLayout *)cls)->addWidget (arg1);
}
diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc
index ff3222e8c..a02a74672 100644
--- a/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc
+++ b/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc
@@ -95,6 +95,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
QWidget *arg1 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg1);
ret.write ((int)((QStackedLayout *)cls)->addWidget (arg1));
}
@@ -162,6 +163,7 @@ static void _call_f_insertWidget_1974 (const qt_gsi::GenericMethod * /*decl*/, v
tl::Heap heap;
int arg1 = gsi::arg_reader() (args, heap);
QWidget *arg2 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg2);
ret.write ((int)((QStackedLayout *)cls)->insertWidget (arg1, arg2));
}
diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQVBoxLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQVBoxLayout.cc
index a86c6171c..456d0c178 100644
--- a/src/gsiqt/qt4/QtGui/gsiDeclQVBoxLayout.cc
+++ b/src/gsiqt/qt4/QtGui/gsiDeclQVBoxLayout.cc
@@ -1033,6 +1033,7 @@ static void _call_fp_insertItem_2399 (const qt_gsi::GenericMethod * /*decl*/, vo
tl::Heap heap;
int arg1 = gsi::arg_reader() (args, heap);
QLayoutItem *arg2 = gsi::arg_reader() (args, heap);
+ qt_gsi::qt_keep (arg2);
__SUPPRESS_UNUSED_WARNING(ret);
((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_insertItem_2399 (arg1, arg2);
}
diff --git a/src/gsiqt/qt5/QtCore/QtCore.pri b/src/gsiqt/qt5/QtCore/QtCore.pri
index 04b0ffc6b..735630560 100644
--- a/src/gsiqt/qt5/QtCore/QtCore.pri
+++ b/src/gsiqt/qt5/QtCore/QtCore.pri
@@ -35,6 +35,7 @@ SOURCES += \
$$PWD/gsiDeclQDataStream.cc \
$$PWD/gsiDeclQDate.cc \
$$PWD/gsiDeclQDateTime.cc \
+ $$PWD/gsiDeclQDeadlineTimer.cc \
$$PWD/gsiDeclQDebug.cc \
$$PWD/gsiDeclQDebugStateSaver.cc \
$$PWD/gsiDeclQDeferredDeleteEvent.cc \
@@ -100,6 +101,7 @@ SOURCES += \
$$PWD/gsiDeclQMutex.cc \
$$PWD/gsiDeclQNoDebug.cc \
$$PWD/gsiDeclQObject.cc \
+ $$PWD/gsiDeclQOperatingSystemVersion.cc \
$$PWD/gsiDeclQParallelAnimationGroup.cc \
$$PWD/gsiDeclQPauseAnimation.cc \
$$PWD/gsiDeclQPersistentModelIndex.cc \
@@ -109,6 +111,8 @@ SOURCES += \
$$PWD/gsiDeclQProcess.cc \
$$PWD/gsiDeclQProcessEnvironment.cc \
$$PWD/gsiDeclQPropertyAnimation.cc \
+ $$PWD/gsiDeclQRandomGenerator.cc \
+ $$PWD/gsiDeclQRandomGenerator64.cc \
$$PWD/gsiDeclQReadLocker.cc \
$$PWD/gsiDeclQReadWriteLock.cc \
$$PWD/gsiDeclQRect.cc \
@@ -121,6 +125,7 @@ SOURCES += \
$$PWD/gsiDeclQRunnable.cc \
$$PWD/gsiDeclQSaveFile.cc \
$$PWD/gsiDeclQSemaphore.cc \
+ $$PWD/gsiDeclQSemaphoreReleaser.cc \
$$PWD/gsiDeclQSequentialAnimationGroup.cc \
$$PWD/gsiDeclQSequentialIterable.cc \
$$PWD/gsiDeclQSettings.cc \
@@ -164,6 +169,7 @@ SOURCES += \
$$PWD/gsiDeclQUrl.cc \
$$PWD/gsiDeclQUrlQuery.cc \
$$PWD/gsiDeclQVariantAnimation.cc \
+ $$PWD/gsiDeclQVersionNumber.cc \
$$PWD/gsiDeclQWaitCondition.cc \
$$PWD/gsiDeclQWriteLocker.cc \
$$PWD/gsiDeclQXmlStreamAttribute.cc \
diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc
index 4534a05c1..cc84aba82 100644
--- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc
+++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc
@@ -504,18 +504,18 @@ public:
}
}
- // [adaptor impl] bool QAbstractAnimation::eventFilter(QObject *, QEvent *)
- bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2)
+ // [adaptor impl] bool QAbstractAnimation::eventFilter(QObject *watched, QEvent *event)
+ bool cbs_eventFilter_2411_0(QObject *watched, QEvent *event)
{
- return QAbstractAnimation::eventFilter(arg1, arg2);
+ return QAbstractAnimation::eventFilter(watched, event);
}
- virtual bool eventFilter(QObject *arg1, QEvent *arg2)
+ virtual bool eventFilter(QObject *watched, QEvent *event)
{
if (cb_eventFilter_2411_0.can_issue()) {
- return cb_eventFilter_2411_0.issue(&QAbstractAnimation_Adaptor::cbs_eventFilter_2411_0, arg1, arg2);
+ return cb_eventFilter_2411_0.issue(&QAbstractAnimation_Adaptor::cbs_eventFilter_2411_0, watched, event);
} else {
- return QAbstractAnimation::eventFilter(arg1, arg2);
+ return QAbstractAnimation::eventFilter(watched, event);
}
}
@@ -538,33 +538,33 @@ public:
emit QAbstractAnimation::stateChanged(newState, oldState);
}
- // [adaptor impl] void QAbstractAnimation::childEvent(QChildEvent *)
- void cbs_childEvent_1701_0(QChildEvent *arg1)
+ // [adaptor impl] void QAbstractAnimation::childEvent(QChildEvent *event)
+ void cbs_childEvent_1701_0(QChildEvent *event)
{
- QAbstractAnimation::childEvent(arg1);
+ QAbstractAnimation::childEvent(event);
}
- virtual void childEvent(QChildEvent *arg1)
+ virtual void childEvent(QChildEvent *event)
{
if (cb_childEvent_1701_0.can_issue()) {
- cb_childEvent_1701_0.issue(&QAbstractAnimation_Adaptor::cbs_childEvent_1701_0, arg1);
+ cb_childEvent_1701_0.issue(&QAbstractAnimation_Adaptor::cbs_childEvent_1701_0, event);
} else {
- QAbstractAnimation::childEvent(arg1);
+ QAbstractAnimation::childEvent(event);
}
}
- // [adaptor impl] void QAbstractAnimation::customEvent(QEvent *)
- void cbs_customEvent_1217_0(QEvent *arg1)
+ // [adaptor impl] void QAbstractAnimation::customEvent(QEvent *event)
+ void cbs_customEvent_1217_0(QEvent *event)
{
- QAbstractAnimation::customEvent(arg1);
+ QAbstractAnimation::customEvent(event);
}
- virtual void customEvent(QEvent *arg1)
+ virtual void customEvent(QEvent *event)
{
if (cb_customEvent_1217_0.can_issue()) {
- cb_customEvent_1217_0.issue(&QAbstractAnimation_Adaptor::cbs_customEvent_1217_0, arg1);
+ cb_customEvent_1217_0.issue(&QAbstractAnimation_Adaptor::cbs_customEvent_1217_0, event);
} else {
- QAbstractAnimation::customEvent(arg1);
+ QAbstractAnimation::customEvent(event);
}
}
@@ -598,18 +598,18 @@ public:
}
}
- // [adaptor impl] void QAbstractAnimation::timerEvent(QTimerEvent *)
- void cbs_timerEvent_1730_0(QTimerEvent *arg1)
+ // [adaptor impl] void QAbstractAnimation::timerEvent(QTimerEvent *event)
+ void cbs_timerEvent_1730_0(QTimerEvent *event)
{
- QAbstractAnimation::timerEvent(arg1);
+ QAbstractAnimation::timerEvent(event);
}
- virtual void timerEvent(QTimerEvent *arg1)
+ virtual void timerEvent(QTimerEvent *event)
{
if (cb_timerEvent_1730_0.can_issue()) {
- cb_timerEvent_1730_0.issue(&QAbstractAnimation_Adaptor::cbs_timerEvent_1730_0, arg1);
+ cb_timerEvent_1730_0.issue(&QAbstractAnimation_Adaptor::cbs_timerEvent_1730_0, event);
} else {
- QAbstractAnimation::timerEvent(arg1);
+ QAbstractAnimation::timerEvent(event);
}
}
@@ -677,7 +677,7 @@ QAbstractAnimation_Adaptor::~QAbstractAnimation_Adaptor() { }
static void _init_ctor_QAbstractAnimation_Adaptor_1302 (qt_gsi::GenericStaticMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("parent", true, "0");
+ static gsi::ArgSpecBase argspec_0 ("parent", true, "nullptr");
decl->add_arg (argspec_0);
decl->set_return_new ();
}
@@ -686,16 +686,16 @@ static void _call_ctor_QAbstractAnimation_Adaptor_1302 (const qt_gsi::GenericSta
{
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
- QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap);
+ QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap);
ret.write (new QAbstractAnimation_Adaptor (arg1));
}
-// void QAbstractAnimation::childEvent(QChildEvent *)
+// void QAbstractAnimation::childEvent(QChildEvent *event)
static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("event");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -733,11 +733,11 @@ static void _call_emitter_currentLoopChanged_767 (const qt_gsi::GenericMethod *
}
-// void QAbstractAnimation::customEvent(QEvent *)
+// void QAbstractAnimation::customEvent(QEvent *event)
static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("event");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -761,7 +761,7 @@ static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback
static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1", true, "0");
+ static gsi::ArgSpecBase argspec_0 ("arg1", true, "nullptr");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -770,7 +770,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/
{
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
- QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap);
+ QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap);
((QAbstractAnimation_Adaptor *)cls)->emitter_QAbstractAnimation_destroyed_1302 (arg1);
}
@@ -859,13 +859,13 @@ static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb)
}
-// bool QAbstractAnimation::eventFilter(QObject *, QEvent *)
+// bool QAbstractAnimation::eventFilter(QObject *watched, QEvent *event)
static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("watched");
decl->add_arg (argspec_0);
- static gsi::ArgSpecBase argspec_1 ("arg2");
+ static gsi::ArgSpecBase argspec_1 ("event");
decl->add_arg (argspec_1);
decl->set_return ();
}
@@ -1002,11 +1002,11 @@ static void _call_emitter_stateChanged_5680 (const qt_gsi::GenericMethod * /*dec
}
-// void QAbstractAnimation::timerEvent(QTimerEvent *)
+// void QAbstractAnimation::timerEvent(QTimerEvent *event)
static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("event");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -1109,10 +1109,10 @@ gsi::Class &qtdecl_QAbstractAnimation ();
static gsi::Methods methods_QAbstractAnimation_Adaptor () {
gsi::Methods methods;
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QAbstractAnimation::QAbstractAnimation(QObject *parent)\nThis method creates an object of class QAbstractAnimation.", &_init_ctor_QAbstractAnimation_Adaptor_1302, &_call_ctor_QAbstractAnimation_Adaptor_1302);
- methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QAbstractAnimation::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0);
+ methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QAbstractAnimation::childEvent(QChildEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0);
methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0);
methods += new qt_gsi::GenericMethod ("emit_currentLoopChanged", "@brief Emitter for signal void QAbstractAnimation::currentLoopChanged(int currentLoop)\nCall this method to emit this signal.", false, &_init_emitter_currentLoopChanged_767, &_call_emitter_currentLoopChanged_767);
- methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QAbstractAnimation::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0);
+ methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QAbstractAnimation::customEvent(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0);
methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0);
methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QAbstractAnimation::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302);
methods += new qt_gsi::GenericMethod ("emit_directionChanged", "@brief Emitter for signal void QAbstractAnimation::directionChanged(QAbstractAnimation::Direction)\nCall this method to emit this signal.", false, &_init_emitter_directionChanged_3310, &_call_emitter_directionChanged_3310);
@@ -1122,7 +1122,7 @@ static gsi::Methods methods_QAbstractAnimation_Adaptor () {
methods += new qt_gsi::GenericMethod ("duration", "@hide", true, &_init_cbs_duration_c0_0, &_call_cbs_duration_c0_0, &_set_callback_cbs_duration_c0_0);
methods += new qt_gsi::GenericMethod ("*event", "@brief Virtual method bool QAbstractAnimation::event(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0);
methods += new qt_gsi::GenericMethod ("*event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0);
- methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QAbstractAnimation::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0);
+ methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QAbstractAnimation::eventFilter(QObject *watched, QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0);
methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0);
methods += new qt_gsi::GenericMethod ("emit_finished", "@brief Emitter for signal void QAbstractAnimation::finished()\nCall this method to emit this signal.", false, &_init_emitter_finished_0, &_call_emitter_finished_0);
methods += new qt_gsi::GenericMethod ("*isSignalConnected", "@brief Method bool QAbstractAnimation::isSignalConnected(const QMetaMethod &signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_isSignalConnected_c2394, &_call_fp_isSignalConnected_c2394);
@@ -1131,7 +1131,7 @@ static gsi::Methods methods_QAbstractAnimation_Adaptor () {
methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QAbstractAnimation::sender()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_sender_c0, &_call_fp_sender_c0);
methods += new qt_gsi::GenericMethod ("*senderSignalIndex", "@brief Method int QAbstractAnimation::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0);
methods += new qt_gsi::GenericMethod ("emit_stateChanged", "@brief Emitter for signal void QAbstractAnimation::stateChanged(QAbstractAnimation::State newState, QAbstractAnimation::State oldState)\nCall this method to emit this signal.", false, &_init_emitter_stateChanged_5680, &_call_emitter_stateChanged_5680);
- methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QAbstractAnimation::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0);
+ methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QAbstractAnimation::timerEvent(QTimerEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0);
methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0);
methods += new qt_gsi::GenericMethod ("*updateCurrentTime", "@brief Virtual method void QAbstractAnimation::updateCurrentTime(int currentTime)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_updateCurrentTime_767_0, &_call_cbs_updateCurrentTime_767_0);
methods += new qt_gsi::GenericMethod ("*updateCurrentTime", "@hide", false, &_init_cbs_updateCurrentTime_767_0, &_call_cbs_updateCurrentTime_767_0, &_set_callback_cbs_updateCurrentTime_767_0);
diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc
index a41ae50d8..f7dbd3212 100644
--- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc
+++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc
@@ -410,7 +410,7 @@ static void _call_f_wakeUp_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls,
static void _init_f_instance_1303 (qt_gsi::GenericStaticMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("thread", true, "0");
+ static gsi::ArgSpecBase argspec_0 ("thread", true, "nullptr");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -419,7 +419,7 @@ static void _call_f_instance_1303 (const qt_gsi::GenericStaticMethod * /*decl*/,
{
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
- QThread *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap);
+ QThread *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap);
ret.write ((QAbstractEventDispatcher *)QAbstractEventDispatcher::instance (arg1));
}
@@ -594,33 +594,33 @@ public:
emit QAbstractEventDispatcher::destroyed(arg1);
}
- // [adaptor impl] bool QAbstractEventDispatcher::event(QEvent *)
- bool cbs_event_1217_0(QEvent *arg1)
+ // [adaptor impl] bool QAbstractEventDispatcher::event(QEvent *event)
+ bool cbs_event_1217_0(QEvent *_event)
{
- return QAbstractEventDispatcher::event(arg1);
+ return QAbstractEventDispatcher::event(_event);
}
- virtual bool event(QEvent *arg1)
+ virtual bool event(QEvent *_event)
{
if (cb_event_1217_0.can_issue()) {
- return cb_event_1217_0.issue(&QAbstractEventDispatcher_Adaptor::cbs_event_1217_0, arg1);
+ return cb_event_1217_0.issue(&QAbstractEventDispatcher_Adaptor::cbs_event_1217_0, _event);
} else {
- return QAbstractEventDispatcher::event(arg1);
+ return QAbstractEventDispatcher::event(_event);
}
}
- // [adaptor impl] bool QAbstractEventDispatcher::eventFilter(QObject *, QEvent *)
- bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2)
+ // [adaptor impl] bool QAbstractEventDispatcher::eventFilter(QObject *watched, QEvent *event)
+ bool cbs_eventFilter_2411_0(QObject *watched, QEvent *event)
{
- return QAbstractEventDispatcher::eventFilter(arg1, arg2);
+ return QAbstractEventDispatcher::eventFilter(watched, event);
}
- virtual bool eventFilter(QObject *arg1, QEvent *arg2)
+ virtual bool eventFilter(QObject *watched, QEvent *event)
{
if (cb_eventFilter_2411_0.can_issue()) {
- return cb_eventFilter_2411_0.issue(&QAbstractEventDispatcher_Adaptor::cbs_eventFilter_2411_0, arg1, arg2);
+ return cb_eventFilter_2411_0.issue(&QAbstractEventDispatcher_Adaptor::cbs_eventFilter_2411_0, watched, event);
} else {
- return QAbstractEventDispatcher::eventFilter(arg1, arg2);
+ return QAbstractEventDispatcher::eventFilter(watched, event);
}
}
@@ -837,33 +837,33 @@ public:
}
}
- // [adaptor impl] void QAbstractEventDispatcher::childEvent(QChildEvent *)
- void cbs_childEvent_1701_0(QChildEvent *arg1)
+ // [adaptor impl] void QAbstractEventDispatcher::childEvent(QChildEvent *event)
+ void cbs_childEvent_1701_0(QChildEvent *event)
{
- QAbstractEventDispatcher::childEvent(arg1);
+ QAbstractEventDispatcher::childEvent(event);
}
- virtual void childEvent(QChildEvent *arg1)
+ virtual void childEvent(QChildEvent *event)
{
if (cb_childEvent_1701_0.can_issue()) {
- cb_childEvent_1701_0.issue(&QAbstractEventDispatcher_Adaptor::cbs_childEvent_1701_0, arg1);
+ cb_childEvent_1701_0.issue(&QAbstractEventDispatcher_Adaptor::cbs_childEvent_1701_0, event);
} else {
- QAbstractEventDispatcher::childEvent(arg1);
+ QAbstractEventDispatcher::childEvent(event);
}
}
- // [adaptor impl] void QAbstractEventDispatcher::customEvent(QEvent *)
- void cbs_customEvent_1217_0(QEvent *arg1)
+ // [adaptor impl] void QAbstractEventDispatcher::customEvent(QEvent *event)
+ void cbs_customEvent_1217_0(QEvent *event)
{
- QAbstractEventDispatcher::customEvent(arg1);
+ QAbstractEventDispatcher::customEvent(event);
}
- virtual void customEvent(QEvent *arg1)
+ virtual void customEvent(QEvent *event)
{
if (cb_customEvent_1217_0.can_issue()) {
- cb_customEvent_1217_0.issue(&QAbstractEventDispatcher_Adaptor::cbs_customEvent_1217_0, arg1);
+ cb_customEvent_1217_0.issue(&QAbstractEventDispatcher_Adaptor::cbs_customEvent_1217_0, event);
} else {
- QAbstractEventDispatcher::customEvent(arg1);
+ QAbstractEventDispatcher::customEvent(event);
}
}
@@ -882,18 +882,18 @@ public:
}
}
- // [adaptor impl] void QAbstractEventDispatcher::timerEvent(QTimerEvent *)
- void cbs_timerEvent_1730_0(QTimerEvent *arg1)
+ // [adaptor impl] void QAbstractEventDispatcher::timerEvent(QTimerEvent *event)
+ void cbs_timerEvent_1730_0(QTimerEvent *event)
{
- QAbstractEventDispatcher::timerEvent(arg1);
+ QAbstractEventDispatcher::timerEvent(event);
}
- virtual void timerEvent(QTimerEvent *arg1)
+ virtual void timerEvent(QTimerEvent *event)
{
if (cb_timerEvent_1730_0.can_issue()) {
- cb_timerEvent_1730_0.issue(&QAbstractEventDispatcher_Adaptor::cbs_timerEvent_1730_0, arg1);
+ cb_timerEvent_1730_0.issue(&QAbstractEventDispatcher_Adaptor::cbs_timerEvent_1730_0, event);
} else {
- QAbstractEventDispatcher::timerEvent(arg1);
+ QAbstractEventDispatcher::timerEvent(event);
}
}
@@ -925,7 +925,7 @@ QAbstractEventDispatcher_Adaptor::~QAbstractEventDispatcher_Adaptor() { }
static void _init_ctor_QAbstractEventDispatcher_Adaptor_1302 (qt_gsi::GenericStaticMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("parent", true, "0");
+ static gsi::ArgSpecBase argspec_0 ("parent", true, "nullptr");
decl->add_arg (argspec_0);
decl->set_return_new ();
}
@@ -934,7 +934,7 @@ static void _call_ctor_QAbstractEventDispatcher_Adaptor_1302 (const qt_gsi::Gene
{
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
- QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap);
+ QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap);
ret.write (new QAbstractEventDispatcher_Adaptor (arg1));
}
@@ -967,11 +967,11 @@ static void _call_emitter_awake_0 (const qt_gsi::GenericMethod * /*decl*/, void
}
-// void QAbstractEventDispatcher::childEvent(QChildEvent *)
+// void QAbstractEventDispatcher::childEvent(QChildEvent *event)
static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("event");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -1011,11 +1011,11 @@ static void _set_callback_cbs_closingDown_0_0 (void *cls, const gsi::Callback &c
}
-// void QAbstractEventDispatcher::customEvent(QEvent *)
+// void QAbstractEventDispatcher::customEvent(QEvent *event)
static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("event");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -1039,7 +1039,7 @@ static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback
static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1", true, "0");
+ static gsi::ArgSpecBase argspec_0 ("arg1", true, "nullptr");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -1048,7 +1048,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/
{
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
- QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap);
+ QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap);
((QAbstractEventDispatcher_Adaptor *)cls)->emitter_QAbstractEventDispatcher_destroyed_1302 (arg1);
}
@@ -1077,11 +1077,11 @@ static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Cal
}
-// bool QAbstractEventDispatcher::event(QEvent *)
+// bool QAbstractEventDispatcher::event(QEvent *event)
static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("event");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -1100,13 +1100,13 @@ static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb)
}
-// bool QAbstractEventDispatcher::eventFilter(QObject *, QEvent *)
+// bool QAbstractEventDispatcher::eventFilter(QObject *watched, QEvent *event)
static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("watched");
decl->add_arg (argspec_0);
- static gsi::ArgSpecBase argspec_1 ("arg2");
+ static gsi::ArgSpecBase argspec_1 ("event");
decl->add_arg (argspec_1);
decl->set_return ();
}
@@ -1413,11 +1413,11 @@ static void _set_callback_cbs_startingUp_0_0 (void *cls, const gsi::Callback &cb
}
-// void QAbstractEventDispatcher::timerEvent(QTimerEvent *)
+// void QAbstractEventDispatcher::timerEvent(QTimerEvent *event)
static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("event");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -1537,18 +1537,18 @@ static gsi::Methods methods_QAbstractEventDispatcher_Adaptor () {
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QAbstractEventDispatcher::QAbstractEventDispatcher(QObject *parent)\nThis method creates an object of class QAbstractEventDispatcher.", &_init_ctor_QAbstractEventDispatcher_Adaptor_1302, &_call_ctor_QAbstractEventDispatcher_Adaptor_1302);
methods += new qt_gsi::GenericMethod ("emit_aboutToBlock", "@brief Emitter for signal void QAbstractEventDispatcher::aboutToBlock()\nCall this method to emit this signal.", false, &_init_emitter_aboutToBlock_0, &_call_emitter_aboutToBlock_0);
methods += new qt_gsi::GenericMethod ("emit_awake", "@brief Emitter for signal void QAbstractEventDispatcher::awake()\nCall this method to emit this signal.", false, &_init_emitter_awake_0, &_call_emitter_awake_0);
- methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QAbstractEventDispatcher::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0);
+ methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QAbstractEventDispatcher::childEvent(QChildEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0);
methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0);
methods += new qt_gsi::GenericMethod ("closingDown", "@brief Virtual method void QAbstractEventDispatcher::closingDown()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_closingDown_0_0, &_call_cbs_closingDown_0_0);
methods += new qt_gsi::GenericMethod ("closingDown", "@hide", false, &_init_cbs_closingDown_0_0, &_call_cbs_closingDown_0_0, &_set_callback_cbs_closingDown_0_0);
- methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QAbstractEventDispatcher::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0);
+ methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QAbstractEventDispatcher::customEvent(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0);
methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0);
methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QAbstractEventDispatcher::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302);
methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QAbstractEventDispatcher::disconnectNotify(const QMetaMethod &signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0);
methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@hide", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0, &_set_callback_cbs_disconnectNotify_2394_0);
- methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QAbstractEventDispatcher::event(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0);
+ methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QAbstractEventDispatcher::event(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0);
methods += new qt_gsi::GenericMethod ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0);
- methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QAbstractEventDispatcher::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0);
+ methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QAbstractEventDispatcher::eventFilter(QObject *watched, QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0);
methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0);
methods += new qt_gsi::GenericMethod ("flush", "@brief Virtual method void QAbstractEventDispatcher::flush()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_flush_0_0, &_call_cbs_flush_0_0);
methods += new qt_gsi::GenericMethod ("flush", "@hide", false, &_init_cbs_flush_0_0, &_call_cbs_flush_0_0, &_set_callback_cbs_flush_0_0);
@@ -1573,7 +1573,7 @@ static gsi::Methods methods_QAbstractEventDispatcher_Adaptor () {
methods += new qt_gsi::GenericMethod ("*senderSignalIndex", "@brief Method int QAbstractEventDispatcher::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0);
methods += new qt_gsi::GenericMethod ("startingUp", "@brief Virtual method void QAbstractEventDispatcher::startingUp()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_startingUp_0_0, &_call_cbs_startingUp_0_0);
methods += new qt_gsi::GenericMethod ("startingUp", "@hide", false, &_init_cbs_startingUp_0_0, &_call_cbs_startingUp_0_0, &_set_callback_cbs_startingUp_0_0);
- methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QAbstractEventDispatcher::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0);
+ methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QAbstractEventDispatcher::timerEvent(QTimerEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0);
methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0);
methods += new qt_gsi::GenericMethod ("unregisterSocketNotifier", "@brief Virtual method void QAbstractEventDispatcher::unregisterSocketNotifier(QSocketNotifier *notifier)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_unregisterSocketNotifier_2152_0, &_call_cbs_unregisterSocketNotifier_2152_0);
methods += new qt_gsi::GenericMethod ("unregisterSocketNotifier", "@hide", false, &_init_cbs_unregisterSocketNotifier_2152_0, &_call_cbs_unregisterSocketNotifier_2152_0, &_set_callback_cbs_unregisterSocketNotifier_2152_0);
diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc
index 03019a8e1..4633766e5 100644
--- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc
+++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc
@@ -128,6 +128,28 @@ static void _call_f_canFetchMore_c2395 (const qt_gsi::GenericMethod * /*decl*/,
}
+// bool QAbstractItemModel::checkIndex(const QModelIndex &index, QFlags options)
+
+
+static void _init_f_checkIndex_c6947 (qt_gsi::GenericMethod *decl)
+{
+ static gsi::ArgSpecBase argspec_0 ("index");
+ decl->add_arg (argspec_0);
+ static gsi::ArgSpecBase argspec_1 ("options", true, "QAbstractItemModel::CheckIndexOption::NoOption");
+ decl->add_arg > (argspec_1);
+ decl->set_return ();
+}
+
+static void _call_f_checkIndex_c6947 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
+{
+ __SUPPRESS_UNUSED_WARNING(args);
+ tl::Heap heap;
+ const QModelIndex &arg1 = gsi::arg_reader() (args, heap);
+ QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QAbstractItemModel::CheckIndexOption::NoOption, heap);
+ ret.write ((bool)((QAbstractItemModel *)cls)->checkIndex (arg1, arg2));
+}
+
+
// int QAbstractItemModel::columnCount(const QModelIndex &parent)
@@ -1053,6 +1075,7 @@ static gsi::Methods methods_QAbstractItemModel () {
methods += new qt_gsi::GenericMethod ("buddy", "@brief Method QModelIndex QAbstractItemModel::buddy(const QModelIndex &index)\n", true, &_init_f_buddy_c2395, &_call_f_buddy_c2395);
methods += new qt_gsi::GenericMethod ("canDropMimeData", "@brief Method bool QAbstractItemModel::canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\n", true, &_init_f_canDropMimeData_c7425, &_call_f_canDropMimeData_c7425);
methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method bool QAbstractItemModel::canFetchMore(const QModelIndex &parent)\n", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395);
+ methods += new qt_gsi::GenericMethod ("checkIndex", "@brief Method bool QAbstractItemModel::checkIndex(const QModelIndex &index, QFlags options)\n", true, &_init_f_checkIndex_c6947, &_call_f_checkIndex_c6947);
methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QAbstractItemModel::columnCount(const QModelIndex &parent)\n", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395);
methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QAbstractItemModel::data(const QModelIndex &index, int role)\n", true, &_init_f_data_c3054, &_call_f_data_c3054);
methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QAbstractItemModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\n", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425);
@@ -1439,33 +1462,33 @@ public:
}
}
- // [adaptor impl] bool QAbstractItemModel::event(QEvent *)
- bool cbs_event_1217_0(QEvent *arg1)
+ // [adaptor impl] bool QAbstractItemModel::event(QEvent *event)
+ bool cbs_event_1217_0(QEvent *_event)
{
- return QAbstractItemModel::event(arg1);
+ return QAbstractItemModel::event(_event);
}
- virtual bool event(QEvent *arg1)
+ virtual bool event(QEvent *_event)
{
if (cb_event_1217_0.can_issue()) {
- return cb_event_1217_0.issue(&QAbstractItemModel_Adaptor::cbs_event_1217_0, arg1);
+ return cb_event_1217_0.issue(&QAbstractItemModel_Adaptor::cbs_event_1217_0, _event);
} else {
- return QAbstractItemModel::event(arg1);
+ return QAbstractItemModel::event(_event);
}
}
- // [adaptor impl] bool QAbstractItemModel::eventFilter(QObject *, QEvent *)
- bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2)
+ // [adaptor impl] bool QAbstractItemModel::eventFilter(QObject *watched, QEvent *event)
+ bool cbs_eventFilter_2411_0(QObject *watched, QEvent *event)
{
- return QAbstractItemModel::eventFilter(arg1, arg2);
+ return QAbstractItemModel::eventFilter(watched, event);
}
- virtual bool eventFilter(QObject *arg1, QEvent *arg2)
+ virtual bool eventFilter(QObject *watched, QEvent *event)
{
if (cb_eventFilter_2411_0.can_issue()) {
- return cb_eventFilter_2411_0.issue(&QAbstractItemModel_Adaptor::cbs_eventFilter_2411_0, arg1, arg2);
+ return cb_eventFilter_2411_0.issue(&QAbstractItemModel_Adaptor::cbs_eventFilter_2411_0, watched, event);
} else {
- return QAbstractItemModel::eventFilter(arg1, arg2);
+ return QAbstractItemModel::eventFilter(watched, event);
}
}
@@ -1989,33 +2012,33 @@ public:
}
}
- // [adaptor impl] void QAbstractItemModel::childEvent(QChildEvent *)
- void cbs_childEvent_1701_0(QChildEvent *arg1)
+ // [adaptor impl] void QAbstractItemModel::childEvent(QChildEvent *event)
+ void cbs_childEvent_1701_0(QChildEvent *event)
{
- QAbstractItemModel::childEvent(arg1);
+ QAbstractItemModel::childEvent(event);
}
- virtual void childEvent(QChildEvent *arg1)
+ virtual void childEvent(QChildEvent *event)
{
if (cb_childEvent_1701_0.can_issue()) {
- cb_childEvent_1701_0.issue(&QAbstractItemModel_Adaptor::cbs_childEvent_1701_0, arg1);
+ cb_childEvent_1701_0.issue(&QAbstractItemModel_Adaptor::cbs_childEvent_1701_0, event);
} else {
- QAbstractItemModel::childEvent(arg1);
+ QAbstractItemModel::childEvent(event);
}
}
- // [adaptor impl] void QAbstractItemModel::customEvent(QEvent *)
- void cbs_customEvent_1217_0(QEvent *arg1)
+ // [adaptor impl] void QAbstractItemModel::customEvent(QEvent *event)
+ void cbs_customEvent_1217_0(QEvent *event)
{
- QAbstractItemModel::customEvent(arg1);
+ QAbstractItemModel::customEvent(event);
}
- virtual void customEvent(QEvent *arg1)
+ virtual void customEvent(QEvent *event)
{
if (cb_customEvent_1217_0.can_issue()) {
- cb_customEvent_1217_0.issue(&QAbstractItemModel_Adaptor::cbs_customEvent_1217_0, arg1);
+ cb_customEvent_1217_0.issue(&QAbstractItemModel_Adaptor::cbs_customEvent_1217_0, event);
} else {
- QAbstractItemModel::customEvent(arg1);
+ QAbstractItemModel::customEvent(event);
}
}
@@ -2034,18 +2057,18 @@ public:
}
}
- // [adaptor impl] void QAbstractItemModel::timerEvent(QTimerEvent *)
- void cbs_timerEvent_1730_0(QTimerEvent *arg1)
+ // [adaptor impl] void QAbstractItemModel::timerEvent(QTimerEvent *event)
+ void cbs_timerEvent_1730_0(QTimerEvent *event)
{
- QAbstractItemModel::timerEvent(arg1);
+ QAbstractItemModel::timerEvent(event);
}
- virtual void timerEvent(QTimerEvent *arg1)
+ virtual void timerEvent(QTimerEvent *event)
{
if (cb_timerEvent_1730_0.can_issue()) {
- cb_timerEvent_1730_0.issue(&QAbstractItemModel_Adaptor::cbs_timerEvent_1730_0, arg1);
+ cb_timerEvent_1730_0.issue(&QAbstractItemModel_Adaptor::cbs_timerEvent_1730_0, event);
} else {
- QAbstractItemModel::timerEvent(arg1);
+ QAbstractItemModel::timerEvent(event);
}
}
@@ -2097,7 +2120,7 @@ QAbstractItemModel_Adaptor::~QAbstractItemModel_Adaptor() { }
static void _init_ctor_QAbstractItemModel_Adaptor_1302 (qt_gsi::GenericStaticMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("parent", true, "0");
+ static gsi::ArgSpecBase argspec_0 ("parent", true, "nullptr");
decl->add_arg (argspec_0);
decl->set_return_new ();
}
@@ -2106,7 +2129,7 @@ static void _call_ctor_QAbstractItemModel_Adaptor_1302 (const qt_gsi::GenericSta
{
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
- QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap);
+ QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap);
ret.write (new QAbstractItemModel_Adaptor (arg1));
}
@@ -2411,11 +2434,11 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod
}
-// void QAbstractItemModel::childEvent(QChildEvent *)
+// void QAbstractItemModel::childEvent(QChildEvent *event)
static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("event");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -2622,7 +2645,7 @@ static void _init_fp_createIndex_c2374 (qt_gsi::GenericMethod *decl)
decl->add_arg (argspec_0);
static gsi::ArgSpecBase argspec_1 ("column");
decl->add_arg (argspec_1);
- static gsi::ArgSpecBase argspec_2 ("data", true, "0");
+ static gsi::ArgSpecBase argspec_2 ("data", true, "nullptr");
decl->add_arg (argspec_2);
decl->set_return ();
}
@@ -2633,7 +2656,7 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/,
tl::Heap heap;
int arg1 = gsi::arg_reader() (args, heap);
int arg2 = gsi::arg_reader() (args, heap);
- void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap);
+ void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap);
ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_createIndex_c2374 (arg1, arg2, arg3));
}
@@ -2662,11 +2685,11 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/,
}
-// void QAbstractItemModel::customEvent(QEvent *)
+// void QAbstractItemModel::customEvent(QEvent *event)
static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("event");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -2767,7 +2790,7 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo
static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1", true, "0");
+ static gsi::ArgSpecBase argspec_0 ("arg1", true, "nullptr");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -2776,7 +2799,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/
{
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
- QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap);
+ QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap);
((QAbstractItemModel_Adaptor *)cls)->emitter_QAbstractItemModel_destroyed_1302 (arg1);
}
@@ -2967,11 +2990,11 @@ static void _call_fp_endResetModel_0 (const qt_gsi::GenericMethod * /*decl*/, vo
}
-// bool QAbstractItemModel::event(QEvent *)
+// bool QAbstractItemModel::event(QEvent *event)
static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("event");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -2990,13 +3013,13 @@ static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb)
}
-// bool QAbstractItemModel::eventFilter(QObject *, QEvent *)
+// bool QAbstractItemModel::eventFilter(QObject *watched, QEvent *event)
static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("watched");
decl->add_arg (argspec_0);
- static gsi::ArgSpecBase argspec_1 ("arg2");
+ static gsi::ArgSpecBase argspec_1 ("event");
decl->add_arg (argspec_1);
decl->set_return ();
}
@@ -4099,11 +4122,11 @@ static void _set_callback_cbs_supportedDropActions_c0_0 (void *cls, const gsi::C
}
-// void QAbstractItemModel::timerEvent(QTimerEvent *)
+// void QAbstractItemModel::timerEvent(QTimerEvent *event)
static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("event");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -4146,7 +4169,7 @@ static gsi::Methods methods_QAbstractItemModel_Adaptor () {
methods += new qt_gsi::GenericMethod ("canFetchMore", "@hide", true, &_init_cbs_canFetchMore_c2395_0, &_call_cbs_canFetchMore_c2395_0, &_set_callback_cbs_canFetchMore_c2395_0);
methods += new qt_gsi::GenericMethod ("*changePersistentIndex", "@brief Method void QAbstractItemModel::changePersistentIndex(const QModelIndex &from, const QModelIndex &to)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_changePersistentIndex_4682, &_call_fp_changePersistentIndex_4682);
methods += new qt_gsi::GenericMethod ("*changePersistentIndexList", "@brief Method void QAbstractItemModel::changePersistentIndexList(const QList &from, const QList &to)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_changePersistentIndexList_5912, &_call_fp_changePersistentIndexList_5912);
- methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QAbstractItemModel::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0);
+ methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QAbstractItemModel::childEvent(QChildEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0);
methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0);
methods += new qt_gsi::GenericMethod ("columnCount", "@brief Virtual method int QAbstractItemModel::columnCount(const QModelIndex &parent)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_columnCount_c2395_1, &_call_cbs_columnCount_c2395_1);
methods += new qt_gsi::GenericMethod ("columnCount", "@hide", true, &_init_cbs_columnCount_c2395_1, &_call_cbs_columnCount_c2395_1, &_set_callback_cbs_columnCount_c2395_1);
@@ -4158,7 +4181,7 @@ static gsi::Methods methods_QAbstractItemModel_Adaptor () {
methods += new qt_gsi::GenericMethod ("emit_columnsRemoved", "@brief Emitter for signal void QAbstractItemModel::columnsRemoved(const QModelIndex &parent, int first, int last)\nCall this method to emit this signal.", false, &_init_emitter_columnsRemoved_7372, &_call_emitter_columnsRemoved_7372);
methods += new qt_gsi::GenericMethod ("*createIndex", "@brief Method QModelIndex QAbstractItemModel::createIndex(int row, int column, void *data)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_createIndex_c2374, &_call_fp_createIndex_c2374);
methods += new qt_gsi::GenericMethod ("*createIndex", "@brief Method QModelIndex QAbstractItemModel::createIndex(int row, int column, quintptr id)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_createIndex_c2657, &_call_fp_createIndex_c2657);
- methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QAbstractItemModel::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0);
+ methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QAbstractItemModel::customEvent(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0);
methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0);
methods += new qt_gsi::GenericMethod ("data", "@brief Virtual method QVariant QAbstractItemModel::data(const QModelIndex &index, int role)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_data_c3054_1, &_call_cbs_data_c3054_1);
methods += new qt_gsi::GenericMethod ("data", "@hide", true, &_init_cbs_data_c3054_1, &_call_cbs_data_c3054_1, &_set_callback_cbs_data_c3054_1);
@@ -4177,9 +4200,9 @@ static gsi::Methods methods_QAbstractItemModel_Adaptor () {
methods += new qt_gsi::GenericMethod ("*endRemoveColumns", "@brief Method void QAbstractItemModel::endRemoveColumns()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_endRemoveColumns_0, &_call_fp_endRemoveColumns_0);
methods += new qt_gsi::GenericMethod ("*endRemoveRows", "@brief Method void QAbstractItemModel::endRemoveRows()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_endRemoveRows_0, &_call_fp_endRemoveRows_0);
methods += new qt_gsi::GenericMethod ("*endResetModel", "@brief Method void QAbstractItemModel::endResetModel()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_endResetModel_0, &_call_fp_endResetModel_0);
- methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QAbstractItemModel::event(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0);
+ methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QAbstractItemModel::event(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0);
methods += new qt_gsi::GenericMethod ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0);
- methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QAbstractItemModel::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0);
+ methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QAbstractItemModel::eventFilter(QObject *watched, QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0);
methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0);
methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Virtual method void QAbstractItemModel::fetchMore(const QModelIndex &parent)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_fetchMore_2395_0, &_call_cbs_fetchMore_2395_0);
methods += new qt_gsi::GenericMethod ("fetchMore", "@hide", false, &_init_cbs_fetchMore_2395_0, &_call_cbs_fetchMore_2395_0, &_set_callback_cbs_fetchMore_2395_0);
@@ -4255,7 +4278,7 @@ static gsi::Methods methods_QAbstractItemModel_Adaptor () {
methods += new qt_gsi::GenericMethod ("supportedDragActions", "@hide", true, &_init_cbs_supportedDragActions_c0_0, &_call_cbs_supportedDragActions_c0_0, &_set_callback_cbs_supportedDragActions_c0_0);
methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Virtual method QFlags QAbstractItemModel::supportedDropActions()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_supportedDropActions_c0_0, &_call_cbs_supportedDropActions_c0_0);
methods += new qt_gsi::GenericMethod ("supportedDropActions", "@hide", true, &_init_cbs_supportedDropActions_c0_0, &_call_cbs_supportedDropActions_c0_0, &_set_callback_cbs_supportedDropActions_c0_0);
- methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QAbstractItemModel::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0);
+ methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QAbstractItemModel::timerEvent(QTimerEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0);
methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0);
return methods;
}
@@ -4267,6 +4290,26 @@ gsi::Class decl_QAbstractItemModel_Adaptor (qtdecl_Q
}
+// Implementation of the enum wrapper class for QAbstractItemModel::CheckIndexOption
+namespace qt_gsi
+{
+
+static gsi::Enum decl_QAbstractItemModel_CheckIndexOption_Enum ("QtCore", "QAbstractItemModel_CheckIndexOption",
+ gsi::enum_const ("NoOption", QAbstractItemModel::CheckIndexOption::NoOption, "@brief Enum constant QAbstractItemModel::CheckIndexOption::NoOption") +
+ gsi::enum_const ("IndexIsValid", QAbstractItemModel::CheckIndexOption::IndexIsValid, "@brief Enum constant QAbstractItemModel::CheckIndexOption::IndexIsValid") +
+ gsi::enum_const ("DoNotUseParent", QAbstractItemModel::CheckIndexOption::DoNotUseParent, "@brief Enum constant QAbstractItemModel::CheckIndexOption::DoNotUseParent") +
+ gsi::enum_const ("ParentIsInvalid", QAbstractItemModel::CheckIndexOption::ParentIsInvalid, "@brief Enum constant QAbstractItemModel::CheckIndexOption::ParentIsInvalid"),
+ "@qt\n@brief This class represents the QAbstractItemModel::CheckIndexOption enum");
+
+static gsi::QFlagsClass decl_QAbstractItemModel_CheckIndexOption_Enums ("QtCore", "QAbstractItemModel_QFlags_CheckIndexOption",
+ "@qt\n@brief This class represents the QFlags flag set");
+
+static gsi::ClassExt decl_QAbstractItemModel_CheckIndexOption_Enum_as_child (decl_QAbstractItemModel_CheckIndexOption_Enum, "CheckIndexOption");
+static gsi::ClassExt decl_QAbstractItemModel_CheckIndexOption_Enums_as_child (decl_QAbstractItemModel_CheckIndexOption_Enums, "QFlags_CheckIndexOption");
+
+}
+
+
// Implementation of the enum wrapper class for QAbstractItemModel::LayoutChangeHint
namespace qt_gsi
{
diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc
index 8ee0f0925..29992e272 100644
--- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc
+++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc
@@ -566,33 +566,33 @@ public:
}
}
- // [adaptor impl] bool QAbstractListModel::event(QEvent *)
- bool cbs_event_1217_0(QEvent *arg1)
+ // [adaptor impl] bool QAbstractListModel::event(QEvent *event)
+ bool cbs_event_1217_0(QEvent *_event)
{
- return QAbstractListModel::event(arg1);
+ return QAbstractListModel::event(_event);
}
- virtual bool event(QEvent *arg1)
+ virtual bool event(QEvent *_event)
{
if (cb_event_1217_0.can_issue()) {
- return cb_event_1217_0.issue(&QAbstractListModel_Adaptor::cbs_event_1217_0, arg1);
+ return cb_event_1217_0.issue(&QAbstractListModel_Adaptor::cbs_event_1217_0, _event);
} else {
- return QAbstractListModel::event(arg1);
+ return QAbstractListModel::event(_event);
}
}
- // [adaptor impl] bool QAbstractListModel::eventFilter(QObject *, QEvent *)
- bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2)
+ // [adaptor impl] bool QAbstractListModel::eventFilter(QObject *watched, QEvent *event)
+ bool cbs_eventFilter_2411_0(QObject *watched, QEvent *event)
{
- return QAbstractListModel::eventFilter(arg1, arg2);
+ return QAbstractListModel::eventFilter(watched, event);
}
- virtual bool eventFilter(QObject *arg1, QEvent *arg2)
+ virtual bool eventFilter(QObject *watched, QEvent *event)
{
if (cb_eventFilter_2411_0.can_issue()) {
- return cb_eventFilter_2411_0.issue(&QAbstractListModel_Adaptor::cbs_eventFilter_2411_0, arg1, arg2);
+ return cb_eventFilter_2411_0.issue(&QAbstractListModel_Adaptor::cbs_eventFilter_2411_0, watched, event);
} else {
- return QAbstractListModel::eventFilter(arg1, arg2);
+ return QAbstractListModel::eventFilter(watched, event);
}
}
@@ -1082,33 +1082,33 @@ public:
}
}
- // [adaptor impl] void QAbstractListModel::childEvent(QChildEvent *)
- void cbs_childEvent_1701_0(QChildEvent *arg1)
+ // [adaptor impl] void QAbstractListModel::childEvent(QChildEvent *event)
+ void cbs_childEvent_1701_0(QChildEvent *event)
{
- QAbstractListModel::childEvent(arg1);
+ QAbstractListModel::childEvent(event);
}
- virtual void childEvent(QChildEvent *arg1)
+ virtual void childEvent(QChildEvent *event)
{
if (cb_childEvent_1701_0.can_issue()) {
- cb_childEvent_1701_0.issue(&QAbstractListModel_Adaptor::cbs_childEvent_1701_0, arg1);
+ cb_childEvent_1701_0.issue(&QAbstractListModel_Adaptor::cbs_childEvent_1701_0, event);
} else {
- QAbstractListModel::childEvent(arg1);
+ QAbstractListModel::childEvent(event);
}
}
- // [adaptor impl] void QAbstractListModel::customEvent(QEvent *)
- void cbs_customEvent_1217_0(QEvent *arg1)
+ // [adaptor impl] void QAbstractListModel::customEvent(QEvent *event)
+ void cbs_customEvent_1217_0(QEvent *event)
{
- QAbstractListModel::customEvent(arg1);
+ QAbstractListModel::customEvent(event);
}
- virtual void customEvent(QEvent *arg1)
+ virtual void customEvent(QEvent *event)
{
if (cb_customEvent_1217_0.can_issue()) {
- cb_customEvent_1217_0.issue(&QAbstractListModel_Adaptor::cbs_customEvent_1217_0, arg1);
+ cb_customEvent_1217_0.issue(&QAbstractListModel_Adaptor::cbs_customEvent_1217_0, event);
} else {
- QAbstractListModel::customEvent(arg1);
+ QAbstractListModel::customEvent(event);
}
}
@@ -1127,18 +1127,18 @@ public:
}
}
- // [adaptor impl] void QAbstractListModel::timerEvent(QTimerEvent *)
- void cbs_timerEvent_1730_0(QTimerEvent *arg1)
+ // [adaptor impl] void QAbstractListModel::timerEvent(QTimerEvent *event)
+ void cbs_timerEvent_1730_0(QTimerEvent *event)
{
- QAbstractListModel::timerEvent(arg1);
+ QAbstractListModel::timerEvent(event);
}
- virtual void timerEvent(QTimerEvent *arg1)
+ virtual void timerEvent(QTimerEvent *event)
{
if (cb_timerEvent_1730_0.can_issue()) {
- cb_timerEvent_1730_0.issue(&QAbstractListModel_Adaptor::cbs_timerEvent_1730_0, arg1);
+ cb_timerEvent_1730_0.issue(&QAbstractListModel_Adaptor::cbs_timerEvent_1730_0, event);
} else {
- QAbstractListModel::timerEvent(arg1);
+ QAbstractListModel::timerEvent(event);
}
}
@@ -1187,7 +1187,7 @@ QAbstractListModel_Adaptor::~QAbstractListModel_Adaptor() { }
static void _init_ctor_QAbstractListModel_Adaptor_1302 (qt_gsi::GenericStaticMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("parent", true, "0");
+ static gsi::ArgSpecBase argspec_0 ("parent", true, "nullptr");
decl->add_arg (argspec_0);
decl->set_return_new ();
}
@@ -1196,7 +1196,7 @@ static void _call_ctor_QAbstractListModel_Adaptor_1302 (const qt_gsi::GenericSta
{
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
- QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap);
+ QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap);
ret.write (new QAbstractListModel_Adaptor (arg1));
}
@@ -1501,11 +1501,11 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod
}
-// void QAbstractListModel::childEvent(QChildEvent *)
+// void QAbstractListModel::childEvent(QChildEvent *event)
static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("event");
decl->add_arg (argspec_0);
decl->set_return ();
}
@@ -1689,7 +1689,7 @@ static void _init_fp_createIndex_c2374 (qt_gsi::GenericMethod *decl)
decl->add_arg (argspec_0);
static gsi::ArgSpecBase argspec_1 ("column");
decl->add_arg (argspec_1);
- static gsi::ArgSpecBase argspec_2 ("data", true, "0");
+ static gsi::ArgSpecBase argspec_2 ("data", true, "nullptr");
decl->add_arg (argspec_2);
decl->set_return ();
}
@@ -1700,7 +1700,7 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/,
tl::Heap heap;
int arg1 = gsi::arg_reader() (args, heap);
int arg2 = gsi::arg_reader() (args, heap);
- void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap);
+ void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap);
ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_createIndex_c2374 (arg1, arg2, arg3));
}
@@ -1729,11 +1729,11 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/,
}
-// void QAbstractListModel::customEvent(QEvent *)
+// void QAbstractListModel::customEvent(QEvent *event)
static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl)
{
- static gsi::ArgSpecBase argspec_0 ("arg1");
+ static gsi::ArgSpecBase argspec_0 ("event");
decl->add_arg