diff --git a/Qt_EQL/quickwidget/README.txt b/Qt_EQL/quickwidget/README.txt
deleted file mode 100644
index 892dc81..0000000
--- a/Qt_EQL/quickwidget/README.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-QQuickWidget for running QML code
-=================================
-
-Example of how to create a QQuickWidget in C++, since it can't be done in an
-EQL5 module (threading problem).
-
-
-RUN
-===
-
-If you experience a seg.fault on startup using the "-qtpl" command line option,
-load the lisp file manually, after starting EQL.
diff --git a/Qt_EQL/quickwidget/cpp/lib.cpp b/Qt_EQL/quickwidget/cpp/lib.cpp
deleted file mode 100644
index f3fbd62..0000000
--- a/Qt_EQL/quickwidget/cpp/lib.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-#include "lib.h"
-#include
(So the choice is left to you: depending on the situation, either option may be more convenient than the other.)
The currently available Qt5 Modules (see qrequire) are:
- :help :multimedia :network :sql :svg :webkit
+ :help :multimedia :network :quick :sql :svg :webkit
(module :opengl is obsolete, see QOpenGLWidget etc.)
If you want to use CLOS together with qt-object instances (which are of type struct), see examples X-extras/CLOS-encapsulation.lisp and 5-colliding-mice.lisp.
So there's a simple way to use either defclass or defstruct to encapsulate a qt-object.
handle, which is the retu
quiet argument is not NIL, no error message will be shown on failure.:help :multimedia :network :sql :svg :webkit
+Loads an EQL module, corresponding to a Qt module.quiet argument is not NIL, no error message will be shown on failure.:help :multimedia :network :quick :sql :svg :webkit
(qrequire :network)
diff --git a/examples/9-simple-lisp-editor/editor.lisp b/examples/9-simple-lisp-editor/editor.lisp
index 13df775..049f513 100644
--- a/examples/9-simple-lisp-editor/editor.lisp
+++ b/examples/9-simple-lisp-editor/editor.lisp
@@ -20,7 +20,7 @@
(require :settings (probe-file "settings.lisp"))
;; load all available modules for code completions
-(dolist (module (list :help :multimedia :network :sql :svg :webkit))
+(dolist (module (list :help :multimedia :network :quick :sql :svg :webkit))
(eql:qrequire module :quiet))
(defpackage :editor
diff --git a/Qt_EQL/quickwidget/qml/example-1.qml b/examples/M-modules/quick/quickwidget/qml/example-1.qml
similarity index 100%
rename from Qt_EQL/quickwidget/qml/example-1.qml
rename to examples/M-modules/quick/quickwidget/qml/example-1.qml
diff --git a/Qt_EQL/quickwidget/qml/example-2.qml b/examples/M-modules/quick/quickwidget/qml/example-2.qml
similarity index 75%
rename from Qt_EQL/quickwidget/qml/example-2.qml
rename to examples/M-modules/quick/quickwidget/qml/example-2.qml
index 483a243..a69b121 100644
--- a/Qt_EQL/quickwidget/qml/example-2.qml
+++ b/examples/M-modules/quick/quickwidget/qml/example-2.qml
@@ -10,7 +10,7 @@ Rectangle {
height: d
anchors.centerIn: parent
color: "cornflowerblue"
- NumberAnimation on rotation { from: 180; to: -180; duration: 4000; loops: Animation.Infinite; }
+ NumberAnimation on rotation { from: 0; to: -360; duration: 4000; loops: Animation.Infinite; }
}
Text {
diff --git a/examples/M-modules/quick/quickwidget/quickwidget.lisp b/examples/M-modules/quick/quickwidget/quickwidget.lisp
new file mode 100644
index 0000000..fcf8415
--- /dev/null
+++ b/examples/M-modules/quick/quickwidget/quickwidget.lisp
@@ -0,0 +1,24 @@
+;;; QQuickWidget: a QML container behaving like a QWidget; for rendering limitations, see Qt Assistant
+;;;
+;;; (for a native QML container, use QQuickView)
+
+#-qt-wrapper-functions ; see README-OPTIONAL.txt
+(load (in-home "src/lisp/all-wrappers"))
+
+(qrequire :quick)
+
+(defun example-url (name)
+ (|fromLocalFile.QUrl| (in-home (x:cc "examples/M-modules/quick/quickwidget/qml/" name))))
+
+(defvar *mdi-area* (qnew "QMdiArea"))
+(defvar *quick-widget-1* (qnew "QQuickWidget(QUrl)" (example-url "example-1.qml")))
+(defvar *quick-widget-2* (qnew "QQuickWidget(QUrl)" (example-url "example-2.qml")))
+
+(defun run ()
+ (dolist (widget (list *quick-widget-1* *quick-widget-2*))
+ (|setResizeMode| widget |QQuickWidget.SizeRootObjectToView|)
+ (|setMinimumSize| widget '(300 300))
+ (|addSubWindow| *mdi-area* widget))
+ (|show| *mdi-area*))
+
+(run)
diff --git a/examples/X-extras/cpp-move-blocks/lib.cpp b/examples/X-extras/move-blocks/cpp/lib.cpp
similarity index 100%
rename from examples/X-extras/cpp-move-blocks/lib.cpp
rename to examples/X-extras/move-blocks/cpp/lib.cpp
diff --git a/examples/X-extras/cpp-move-blocks/lib.h b/examples/X-extras/move-blocks/cpp/lib.h
similarity index 100%
rename from examples/X-extras/cpp-move-blocks/lib.h
rename to examples/X-extras/move-blocks/cpp/lib.h
diff --git a/examples/X-extras/cpp-move-blocks/lib.pro b/examples/X-extras/move-blocks/cpp/lib.pro
similarity index 62%
rename from examples/X-extras/cpp-move-blocks/lib.pro
rename to examples/X-extras/move-blocks/cpp/lib.pro
index b72a00c..8a1c958 100644
--- a/examples/X-extras/cpp-move-blocks/lib.pro
+++ b/examples/X-extras/move-blocks/cpp/lib.pro
@@ -1,13 +1,13 @@
TEMPLATE = lib
CONFIG += plugin release
-INCLUDEPATH += ../../../src
-LIBS += -L../../.. -leql5
+INCLUDEPATH += ../../../../src
+LIBS += -L../../../.. -leql5
DESTDIR = ./
TARGET = easing_curve
OBJECTS_DIR = ./tmp/
MOC_DIR = ./tmp/
-include(../../../src/windows.pri)
+include(../../../../src/windows.pri)
HEADERS += lib.h
SOURCES += lib.cpp
diff --git a/examples/X-extras/move-blocks.lisp b/examples/X-extras/move-blocks/move-blocks.lisp
similarity index 99%
rename from examples/X-extras/move-blocks.lisp
rename to examples/X-extras/move-blocks/move-blocks.lisp
index 2ed3f37..35c74cf 100644
--- a/examples/X-extras/move-blocks.lisp
+++ b/examples/X-extras/move-blocks/move-blocks.lisp
@@ -16,7 +16,7 @@
;;; cpp plugin
;;;
-(defvar *c++* (qload-c++ (in-home "examples/X-extras/cpp-move-blocks/easing_curve")))
+(defvar *c++* (qload-c++ (in-home "examples/X-extras/move-blocks/cpp/easing_curve")))
(defvar *custom-easing-curve* (! "easingCurve" (:qt *c++*)))
(let ((sub 0)
@@ -50,7 +50,7 @@
;;; user interface
;;;
-(defvar *main* (qload-ui (in-home "examples/data/move-blocks.ui")))
+(defvar *main* (qload-ui (in-home "examples/X-extras/move-blocks/move-blocks.ui")))
(defvar-ui *main*
*custom*
diff --git a/examples/data/move-blocks.ui b/examples/X-extras/move-blocks/move-blocks.ui
similarity index 100%
rename from examples/data/move-blocks.ui
rename to examples/X-extras/move-blocks/move-blocks.ui
diff --git a/examples/X-extras/cpp-qimage/lib.cpp b/examples/X-extras/qimage/cpp/lib.cpp
similarity index 100%
rename from examples/X-extras/cpp-qimage/lib.cpp
rename to examples/X-extras/qimage/cpp/lib.cpp
diff --git a/examples/X-extras/cpp-qimage/lib.h b/examples/X-extras/qimage/cpp/lib.h
similarity index 100%
rename from examples/X-extras/cpp-qimage/lib.h
rename to examples/X-extras/qimage/cpp/lib.h
diff --git a/examples/X-extras/cpp-qimage/lib.pro b/examples/X-extras/qimage/cpp/lib.pro
similarity index 61%
rename from examples/X-extras/cpp-qimage/lib.pro
rename to examples/X-extras/qimage/cpp/lib.pro
index 9a89f82..6a97ff5 100644
--- a/examples/X-extras/cpp-qimage/lib.pro
+++ b/examples/X-extras/qimage/cpp/lib.pro
@@ -1,13 +1,13 @@
TEMPLATE = lib
CONFIG += plugin release
-INCLUDEPATH += ../../../src
-LIBS += -L../../.. -leql5
+INCLUDEPATH += ../../../../src
+LIBS += -L../../../.. -leql5
DESTDIR = ./
TARGET = qimage
OBJECTS_DIR = ./tmp/
MOC_DIR = ./tmp/
-include(../../../src/windows.pri)
+include(../../../../src/windows.pri)
HEADERS += lib.h
SOURCES += lib.cpp
diff --git a/examples/X-extras/qimage.lisp b/examples/X-extras/qimage/qimage.lisp
similarity index 96%
rename from examples/X-extras/qimage.lisp
rename to examples/X-extras/qimage/qimage.lisp
index 3ac1472..13f8d05 100644
--- a/examples/X-extras/qimage.lisp
+++ b/examples/X-extras/qimage/qimage.lisp
@@ -19,7 +19,7 @@
(in-package :image-manipulation)
-(defvar *main* (qload-ui (in-home "examples/data/image-manipulation.ui")))
+(defvar *main* (qload-ui (in-home "examples/X-extras/qimage/qimage.ui")))
(defvar-ui *main*
*display*
@@ -38,13 +38,13 @@
*scale*)
;; C++ plugin
-(defvar *c++* (qload-c++ (in-home "examples/X-extras/cpp-qimage/qimage")))
+(defvar *c++* (qload-c++ (in-home "examples/X-extras/qimage/cpp/qimage")))
(define-qt-wrappers *c++*)
(defvar *file* (x:if-it (third (remove-if (lambda (arg) (x:starts-with "-" arg))
(|arguments.QCoreApplication|)))
x:it
- (in-home "examples/data/vernazza.jpg")))
+ (in-home "examples/X-extras/qimage/vernazza.jpg")))
(defvar *image* (qnew "QImage(QString)" *file*))
(defvar *color-image* *image*)
diff --git a/examples/data/image-manipulation.ui b/examples/X-extras/qimage/qimage.ui
similarity index 100%
rename from examples/data/image-manipulation.ui
rename to examples/X-extras/qimage/qimage.ui
diff --git a/examples/data/vernazza.jpg b/examples/X-extras/qimage/vernazza.jpg
similarity index 100%
rename from examples/data/vernazza.jpg
rename to examples/X-extras/qimage/vernazza.jpg
diff --git a/examples/data/camera.png b/examples/X-extras/screenshot/camera.png
similarity index 100%
rename from examples/data/camera.png
rename to examples/X-extras/screenshot/camera.png
diff --git a/examples/X-extras/screenshot.lisp b/examples/X-extras/screenshot/screenshot.lisp
similarity index 90%
rename from examples/X-extras/screenshot.lisp
rename to examples/X-extras/screenshot/screenshot.lisp
index 84e3f8e..22e6227 100644
--- a/examples/X-extras/screenshot.lisp
+++ b/examples/X-extras/screenshot/screenshot.lisp
@@ -5,7 +5,7 @@
(in-package :eql-user)
-(defvar *pixmap* (qnew "QPixmap(QString)" (in-home "examples/data/camera.png")))
+(defvar *pixmap* (qnew "QPixmap(QString)" (in-home "examples/X-extras/screenshot/camera.png")))
(defvar *splash* (qnew "QSplashScreen(QPixmap,Qt::WindowFlags)" *pixmap* |Qt.WindowStaysOnTopHint|
"font" (x:let-it (|font.QApplication|)
diff --git a/helper/generate.lisp b/helper/generate.lisp
index 50c4bd3..32c571d 100644
--- a/helper/generate.lisp
+++ b/helper/generate.lisp
@@ -803,6 +803,7 @@
~%int LObjects::T_QHostInfo = -1;~
~%int LObjects::T_QHttpPart = -1;~
~%int LObjects::T_QImageEncoderSettings = -1;~
+ ~%int LObjects::T_QJSValue = -1;~
~%int LObjects::T_QMediaContent = -1;~
~%int LObjects::T_QList_QMediaContent = -1;~
~%int LObjects::T_QNetworkAddressEntry = -1;~
@@ -817,6 +818,10 @@
~%int LObjects::T_QNetworkProxy = -1;~
~%int LObjects::T_QList_QNetworkProxy = -1;~
~%int LObjects::T_QNetworkRequest = -1;~
+ ~%int LObjects::T_QList_QQmlError = -1;~
+ ~%int LObjects::T_QQmlProperty = -1;~
+ ~%int LObjects::T_QQmlScriptString = -1;~
+ ~%int LObjects::T_QList_QQuickItem = -1;~
~%int LObjects::T_QSqlDatabase = -1;~
~%int LObjects::T_QSqlError = -1;~
~%int LObjects::T_QSqlField = -1;~
@@ -863,7 +868,7 @@
(format s "~%DeleteNObject LObjects::deleteNObject_~(~A~) = 0;" module))
(dolist (module *modules*)
(format s "~%Override LObjects::override_~(~A~) = 0;" module))
- (dolist (module (list :help :multimedia :network :sql :webkit))
+ (dolist (module (list :help :multimedia :network :quick :sql :webkit))
(format s "~%ToMetaArg LObjects::toMetaArg_~(~A~) = 0;~
~%To_lisp_arg LObjects::to_lisp_arg_~(~A~) = 0;"
module module))
@@ -1169,6 +1174,8 @@
"QList"
"QList"
"QList"
+ "QList"
+ "QList"
"QList"
"QList"
"QList"
diff --git a/helper/missing-types.txt b/helper/missing-types.txt
index 5fdb8c8..442ac7b 100644
--- a/helper/missing-types.txt
+++ b/helper/missing-types.txt
@@ -7,6 +7,7 @@ QFunctionPointer
QGlyphRun
QImageReader
QItemSelection
+QJSValueList
QJsonArray
QJsonDocument
QJsonObject
@@ -23,6 +24,7 @@ QList
QList
QList
QList
+QList
QList
QList
QList
@@ -36,7 +38,6 @@ QList
QList
QList
QList
-QMediaControl
QMediaResourceList
QMultiMap
QOpenGLContextGroup
@@ -48,6 +49,8 @@ QPlatformScreen
QRadioData
QRegularExpressionMatch
QRegularExpressionMatchIterator
+QSGRootNode
+QSharedPointer
QStaticText
QStringRef
QStyleHintReturn
diff --git a/helper/modules.lisp b/helper/modules.lisp
index e0c622d..0d80e80 100644
--- a/helper/modules.lisp
+++ b/helper/modules.lisp
@@ -1 +1 @@
-(defparameter *modules* (list :help :multimedia :network :sql :svg :webkit))
+(defparameter *modules* (list :help :multimedia :network :quick :sql :svg :webkit))
diff --git a/helper/my-class-lists/multimedia/q-names.lisp b/helper/my-class-lists/multimedia/q-names.lisp
index bb48914..d9e2732 100644
--- a/helper/my-class-lists/multimedia/q-names.lisp
+++ b/helper/my-class-lists/multimedia/q-names.lisp
@@ -12,6 +12,7 @@
"//QCameraImageProcessing"
"QCameraViewfinder"
"QGraphicsVideoItem"
+ "QMediaControl"
"QMediaObject"
"QMediaPlayer"
"QMediaPlaylist"
diff --git a/helper/my-class-lists/quick/n-names.lisp b/helper/my-class-lists/quick/n-names.lisp
new file mode 100644
index 0000000..825cb9c
--- /dev/null
+++ b/helper/my-class-lists/quick/n-names.lisp
@@ -0,0 +1,35 @@
+;;; To avoid creation of instances, prepend "//" to the object name
+;;; "Q//QPaintDevice"
+
+(defparameter *quick-n-names*
+ (list "QJSValue"
+ "QJSValueIterator"
+ "QQmlAbstractUrlInterceptor"
+ "QQmlError"
+ "QQmlImageProviderBase"
+ "QQmlIncubationController"
+ "QQmlIncubator"
+ "QQmlNetworkAccessManagerFactory"
+ "QQmlParserStatus"
+ "QQmlProperty"
+ "QQmlPropertyValueSource"
+ "QQmlScriptString"
+ "QQuickAsyncImageProvider"
+ "QQuickImageProvider"
+ "QSGBasicGeometryNode"
+ "QSGClipNode"
+ "QSGFlatColorMaterial"
+ "QSGGeometry"
+ "QSGGeometryNode"
+ "QSGMaterial"
+ "//QSGMaterialShader"
+ "QSGMaterialType"
+ "QSGNode"
+ "QSGOpacityNode"
+ "QSGOpaqueTextureMaterial"
+ "QSGSimpleRectNode"
+ "QSGSimpleTextureNode"
+ "QSGTextureMaterial"
+ "QSGTransformNode"
+ "QSGVertexColorMaterial"
+ ))
diff --git a/helper/my-class-lists/quick/q-names.lisp b/helper/my-class-lists/quick/q-names.lisp
new file mode 100644
index 0000000..79dc38f
--- /dev/null
+++ b/helper/my-class-lists/quick/q-names.lisp
@@ -0,0 +1,31 @@
+;;; To avoid creation of instances, prepend "//" to the object name
+;;; "//QClipboard"
+
+(defparameter *quick-q-names*
+ (list "QJSEngine"
+ "QQmlApplicationEngine"
+ "QQmlComponent"
+ "QQmlContext"
+ "QQmlEngine"
+ "QQmlExpression"
+ "QQmlExtensionPlugin"
+ "QQmlFileSelector"
+ "QQmlPropertyMap"
+ "//QQuickFramebufferObject"
+ "QQuickImageResponse"
+ "QQuickItem"
+ "QQuickItemGrabResult"
+ "QQuickPaintedItem"
+ "QQuickRenderControl"
+ "QQuickTextDocument"
+ "QQuickTextureFactory"
+ "QQuickView"
+ "QQuickWidget"
+ "QQuickWindow"
+ "QSGAbstractRenderer"
+ "QSGDynamicTexture"
+ "QSGEngine"
+ "QSGTexture"
+ "QSGTextureProvider"
+ ))
+
diff --git a/helper/no-static-meta-object.lisp b/helper/no-static-meta-object.lisp
index 4dd2200..a62d298 100644
--- a/helper/no-static-meta-object.lisp
+++ b/helper/no-static-meta-object.lisp
@@ -74,6 +74,8 @@
"QItemEditorFactory"
"QItemSelection"
"QItemSelectionRange"
+ "QJSValue"
+ "QJSValueIterator"
"QKeySequence"
"QLayoutItem"
"QLibraryInfo"
@@ -114,6 +116,16 @@
"QPrinter"
"QPrinterInfo"
"QProcessEnvironment"
+ "QQmlAbstractUrlInterceptor"
+ "QQmlError"
+ "QQmlImageProviderBase"
+ "QQmlIncubator"
+ "QQmlIncubationController"
+ "QQmlNetworkAccessManagerFactory"
+ "QQmlParserStatus"
+ "QQmlProperty"
+ "QQmlPropertyValueSource"
+ "QQmlScriptString"
"QQuaternion"
"QReadLocker"
"QReadWriteLock"
@@ -122,6 +134,24 @@
"QRegularExpression"
"QRunnable"
"QSemaphore"
+ "QSGVertexColorMaterial"
+ "QSGTransformNode"
+ "QSGTextureMaterial"
+ "QSGSimpleTextureNode"
+ "QSGSimpleRectNode"
+ "QSGOpaqueTextureMaterial"
+ "QSGOpacityNode"
+ "QSGNode"
+ "QSGMaterialType"
+ "QSGMaterialShader"
+ "QSGMaterial"
+ "QSGGeometryNode"
+ "QSGGeometry"
+ "QSGFlatColorMaterial"
+ "QSGClipNode"
+ "QSGBasicGeometryNode"
+ "QQuickImageProvider"
+ "QQuickAsyncImageProvider"
"QSpacerItem"
"QSqlDatabase"
"QSqlError"
diff --git a/helper/parse.lisp b/helper/parse.lisp
index 38e5669..3c89d32 100644
--- a/helper/parse.lisp
+++ b/helper/parse.lisp
@@ -8,7 +8,9 @@
(list "(preliminary)"
"(deprecated)"
"(obsolete)"
+ "(volatile "
"connect("
+ "const * const *"
""
""
""
@@ -136,6 +138,18 @@
"swap(QHttp"
"swap(QNetwork"
"swap(QStorage"
+ "::Attribute"
+ "::AttributeSet"
+ "::ColoredPoint2D"
+ "::Point2D"
+ "::Renderer"
+ "::TexturePoint2D"
+ "Attribute *"
+ "AttributeSet "
+ "ColoredPoint2D *"
+ "Point2D *"
+ "Renderer *"
+ "TexturePoint2D *"
))
(defparameter *check* nil)
@@ -193,12 +207,16 @@
(progn
(incf *not-found*)
(x:d :not-found path)))))
- (defun words-of (name)
- (x:when-it (search* name text)
- (let ((line (subseq text (+ x:it (length name)) (position #\Newline text :start x:it))))
- (simplify line nil))))
+ (defun super-names (class &optional (word "Inherits:"))
+ (x:when-it (search* word text)
+ (let* ((line (subseq text (+ x:it (length word)) (position #\Newline text :start x:it)))
+ (names (simplify line nil)))
+ (unless names
+ (fresh-line)
+ (error "No super class found for: ~S" class))
+ names)))
(defun super-class (class)
- (let ((super (remove "and" (words-of "Inherits:") :test 'string=)))
+ (let ((super (remove "and" (super-names class) :test 'string=)))
(when (and (second super)
(not (find #\< (first super)))) ; template
(format *check* "~A: ~A and ~A~%"
diff --git a/helper/parsed/n-methods.lisp b/helper/parsed/n-methods.lisp
index 5155326..c68da2d 100644
--- a/helper/parsed/n-methods.lisp
+++ b/helper/parsed/n-methods.lisp
@@ -1672,6 +1672,57 @@
"int top () const"
"const QPersistentModelIndex & topLeft () const"
"int width () const")
+ (("QJSValue" . NIL)
+ "new QJSValue ( SpecialValue = UndefinedValue )"
+ "new QJSValue ( const QJSValue & )"
+ "new QJSValue ( bool )"
+ "new QJSValue ( int )"
+ "new QJSValue ( uint )"
+ "new QJSValue ( double )"
+ "new QJSValue ( const QString & )"
+ "new QJSValue ( const QLatin1String & )"
+ "new QJSValue ( const char * )"
+ "QJSValue call ( const QJSValueList & = QJSValueList() )"
+ "QJSValue callAsConstructor ( const QJSValueList & = QJSValueList() )"
+ "QJSValue callWithInstance ( const QJSValue & , const QJSValueList & = QJSValueList() )"
+ "bool deleteProperty ( const QString & )"
+ "bool equals ( const QJSValue & ) const"
+ "bool hasOwnProperty ( const QString & ) const"
+ "bool hasProperty ( const QString & ) const"
+ "bool isArray () const"
+ "bool isBool () const"
+ "bool isCallable () const"
+ "bool isDate () const"
+ "bool isError () const"
+ "bool isNull () const"
+ "bool isNumber () const"
+ "bool isObject () const"
+ "bool isQObject () const"
+ "bool isRegExp () const"
+ "bool isString () const"
+ "bool isUndefined () const"
+ "bool isVariant () const"
+ "QJSValue property ( const QString & ) const"
+ "QJSValue property ( quint32 ) const"
+ "QJSValue prototype () const"
+ "void setProperty ( const QString & , const QJSValue & )"
+ "void setProperty ( quint32 , const QJSValue & )"
+ "void setPrototype ( const QJSValue & )"
+ "bool strictlyEquals ( const QJSValue & ) const"
+ "bool toBool () const"
+ "QDateTime toDateTime () const"
+ "qint32 toInt () const"
+ "double toNumber () const"
+ "QObject * toQObject () const"
+ "QString toString () const"
+ "quint32 toUInt () const"
+ "QVariant toVariant () const")
+ (("QJSValueIterator" . NIL)
+ "new QJSValueIterator ( const QJSValue & )"
+ "bool hasNext () const"
+ "QString name () const"
+ "bool next ()"
+ "QJSValue value () const")
(("QKeyEvent" . "QInputEvent")
"new QKeyEvent ( Type , int , Qt::KeyboardModifiers , const QString & = QString() , bool = false , ushort = 1 )"
"new QKeyEvent ( Type , int , Qt::KeyboardModifiers , quint32 , quint32 , quint32 , const QString & = QString() , bool = false , ushort = 1 )"
@@ -2967,6 +3018,91 @@
"QStringList toStringList () const"
"QString value ( const QString & , const QString & = QString() ) const"
"static QProcessEnvironment systemEnvironment ()")
+ (("QQmlAbstractUrlInterceptor" . NIL)
+ "new QQmlAbstractUrlInterceptor ()"
+ "virtual QUrl intercept ( const QUrl & , DataType ) = 0")
+ (("QQmlError" . NIL)
+ "new QQmlError ()"
+ "new QQmlError ( const QQmlError & )"
+ "int column () const"
+ "QString description () const"
+ "bool isValid () const"
+ "int line () const"
+ "QObject * object () const"
+ "void setColumn ( int )"
+ "void setDescription ( const QString & )"
+ "void setLine ( int )"
+ "void setObject ( QObject * )"
+ "void setUrl ( const QUrl & )"
+ "QString toString () const"
+ "QUrl url () const")
+ (("QQmlImageProviderBase" . NIL)
+ "virtual Flags flags () const = 0"
+ "virtual ImageType imageType () const = 0")
+ (("QQmlIncubationController" . NIL)
+ "new QQmlIncubationController ()"
+ "void incubateFor ( int )"
+ "int incubatingObjectCount () const")
+ (("QQmlIncubator" . NIL)
+ "new QQmlIncubator ( IncubationMode = Asynchronous )"
+ "void clear ()"
+ "QList errors () const"
+ "void forceCompletion ()"
+ "IncubationMode incubationMode () const"
+ "bool isError () const"
+ "bool isLoading () const"
+ "bool isNull () const"
+ "bool isReady () const"
+ "QObject * object () const"
+ "Status status () const")
+ (("QQmlNetworkAccessManagerFactory" . NIL)
+ "virtual QNetworkAccessManager * create ( QObject * ) = 0")
+ (("QQmlParserStatus" . NIL)
+ "virtual void classBegin () = 0"
+ "virtual void componentComplete () = 0")
+ (("QQmlProperty" . NIL)
+ "new QQmlProperty ()"
+ "new QQmlProperty ( QObject * )"
+ "new QQmlProperty ( QObject * , QQmlContext * )"
+ "new QQmlProperty ( QObject * , const QString & )"
+ "new QQmlProperty ( QObject * , const QString & , QQmlContext * )"
+ "new QQmlProperty ( const QQmlProperty & )"
+ "bool connectNotifySignal ( QObject * , const char * ) const"
+ "bool connectNotifySignal ( QObject * , int ) const"
+ "bool hasNotifySignal () const"
+ "int index () const"
+ "bool isDesignable () const"
+ "bool isProperty () const"
+ "bool isResettable () const"
+ "bool isSignalProperty () const"
+ "bool isValid () const"
+ "bool isWritable () const"
+ "QString name () const"
+ "bool needsNotifySignal () const"
+ "QObject * object () const"
+ "int propertyType () const"
+ "PropertyTypeCategory propertyTypeCategory () const"
+ "const char * propertyTypeName () const"
+ "QVariant read () const"
+ "bool reset () const"
+ "Type type () const"
+ "bool write ( const QVariant & ) const"
+ "static QVariant read ( const QObject * , const QString & )"
+ "static QVariant read ( const QObject * , const QString & , QQmlContext * )"
+ "static bool write ( QObject * , const QString & , const QVariant & )"
+ "static bool write ( QObject * , const QString & , const QVariant & , QQmlContext * )")
+ (("QQmlPropertyValueSource" . NIL)
+ "new QQmlPropertyValueSource ()"
+ "virtual void setTarget ( const QQmlProperty & ) = 0")
+ (("QQmlScriptString" . NIL)
+ "new QQmlScriptString ()"
+ "new QQmlScriptString ( const QQmlScriptString & )"
+ "bool booleanLiteral ( bool * ) const"
+ "bool isEmpty () const"
+ "bool isNullLiteral () const"
+ "bool isUndefinedLiteral () const"
+ "qreal numberLiteral ( bool * ) const"
+ "QString stringLiteral () const")
(("QQuaternion" . NIL)
"new QQuaternion ()"
"new QQuaternion ( float , float , float , float )"
@@ -3004,6 +3140,16 @@
"static QQuaternion nlerp ( const QQuaternion & , const QQuaternion & , float )"
"static QQuaternion rotationTo ( const QVector3D & , const QVector3D & )"
"static QQuaternion slerp ( const QQuaternion & , const QQuaternion & , float )")
+ (("QQuickAsyncImageProvider" . "QQuickImageProvider")
+ "new QQuickAsyncImageProvider ()"
+ "virtual QQuickImageResponse * requestImageResponse ( const QString & , const QSize & ) = 0")
+ (("QQuickImageProvider" . "QQmlImageProviderBase")
+ "new QQuickImageProvider ( ImageType , Flags = 0 )"
+ "Flags flags () const"
+ "ImageType imageType () const"
+ "virtual QImage requestImage ( const QString & , QSize * , const QSize & )"
+ "virtual QPixmap requestPixmap ( const QString & , QSize * , const QSize & )"
+ "virtual QQuickTextureFactory * requestTexture ( const QString & , QSize * , const QSize & )")
(("QRadialGradient" . "QGradient")
"new QRadialGradient ()"
"new QRadialGradient ( const QPointF & , qreal , const QPointF & )"
@@ -3106,6 +3252,131 @@
"bool autoDelete () const"
"virtual void run () = 0"
"void setAutoDelete ( bool )")
+ (("QSGBasicGeometryNode" . "QSGNode")
+ "const QSGGeometry * geometry () const"
+ "QSGGeometry * geometry ()"
+ "void setGeometry ( QSGGeometry * )")
+ (("QSGClipNode" . "QSGBasicGeometryNode")
+ "new QSGClipNode ()"
+ "QRectF clipRect () const"
+ "bool isRectangular () const"
+ "void setClipRect ( const QRectF & )"
+ "void setIsRectangular ( bool )")
+ (("QSGFlatColorMaterial" . "QSGMaterial")
+ "new QSGFlatColorMaterial ()"
+ "const QColor & color () const"
+ "void setColor ( const QColor & )")
+ (("QSGGeometry" . NIL)
+ "void allocate ( int , int = 0 )"
+ "int attributeCount () const"
+ "GLenum drawingMode () const"
+ "int indexCount () const"
+ "quint16 * indexDataAsUShort ()"
+ "const quint16 * indexDataAsUShort () const"
+ "DataPattern indexDataPattern () const"
+ "int indexType () const"
+ "float lineWidth () const"
+ "void markIndexDataDirty ()"
+ "void markVertexDataDirty ()"
+ "void setDrawingMode ( GLenum )"
+ "void setIndexDataPattern ( DataPattern )"
+ "void setLineWidth ( float )"
+ "void setVertexDataPattern ( DataPattern )"
+ "int sizeOfIndex () const"
+ "int sizeOfVertex () const"
+ "int vertexCount () const"
+ "DataPattern vertexDataPattern () const"
+ "static void updateRectGeometry ( QSGGeometry * , const QRectF & )"
+ "static void updateTexturedRectGeometry ( QSGGeometry * , const QRectF & , const QRectF & )")
+ (("QSGGeometryNode" . "QSGBasicGeometryNode")
+ "new QSGGeometryNode ()"
+ "QSGMaterial * material () const"
+ "QSGMaterial * opaqueMaterial () const"
+ "void setMaterial ( QSGMaterial * )"
+ "void setOpaqueMaterial ( QSGMaterial * )")
+ (("QSGMaterial" . NIL)
+ "virtual int compare ( const QSGMaterial * ) const"
+ "virtual QSGMaterialShader * createShader () const = 0"
+ "QSGMaterial::Flags flags () const"
+ "void setFlag ( Flags , bool = true )"
+ "virtual QSGMaterialType * type () const = 0")
+ (("QSGMaterialShader" . NIL)
+ "virtual void activate ()"
+ "virtual void deactivate ()"
+ "QOpenGLShaderProgram * program ()"
+ "virtual void updateState ( const RenderState & , QSGMaterial * , QSGMaterial * )"
+ "protected void setShaderSourceFile ( QOpenGLShader::ShaderType , const QString & )"
+ "protected void setShaderSourceFiles ( QOpenGLShader::ShaderType , const QStringList & )")
+ (("QSGMaterialType" . NIL))
+ (("QSGNode" . NIL)
+ "new QSGNode ()"
+ "void appendChildNode ( QSGNode * )"
+ "QSGNode * childAtIndex ( int ) const"
+ "int childCount () const"
+ "QSGNode * firstChild () const"
+ "Flags flags () const"
+ "void insertChildNodeAfter ( QSGNode * , QSGNode * )"
+ "void insertChildNodeBefore ( QSGNode * , QSGNode * )"
+ "virtual bool isSubtreeBlocked () const"
+ "QSGNode * lastChild () const"
+ "void markDirty ( DirtyState )"
+ "QSGNode * nextSibling () const"
+ "QSGNode * parent () const"
+ "void prependChildNode ( QSGNode * )"
+ "virtual void preprocess ()"
+ "QSGNode * previousSibling () const"
+ "void removeAllChildNodes ()"
+ "void removeChildNode ( QSGNode * )"
+ "void setFlag ( Flag , bool = true )"
+ "void setFlags ( Flags , bool = true )"
+ "NodeType type () const")
+ (("QSGOpacityNode" . "QSGNode")
+ "new QSGOpacityNode ()"
+ "qreal opacity () const"
+ "void setOpacity ( qreal )")
+ (("QSGOpaqueTextureMaterial" . "QSGMaterial")
+ "new QSGOpaqueTextureMaterial ()"
+ "QSGTexture::Filtering filtering () const"
+ "QSGTexture::WrapMode horizontalWrapMode () const"
+ "QSGTexture::Filtering mipmapFiltering () const"
+ "void setFiltering ( QSGTexture::Filtering )"
+ "void setHorizontalWrapMode ( QSGTexture::WrapMode )"
+ "void setMipmapFiltering ( QSGTexture::Filtering )"
+ "void setTexture ( QSGTexture * )"
+ "void setVerticalWrapMode ( QSGTexture::WrapMode )"
+ "QSGTexture * texture () const"
+ "QSGTexture::WrapMode verticalWrapMode () const")
+ (("QSGSimpleRectNode" . "QSGGeometryNode")
+ "new QSGSimpleRectNode ( const QRectF & , const QColor & )"
+ "new QSGSimpleRectNode ()"
+ "QColor color () const"
+ "QRectF rect () const"
+ "void setColor ( const QColor & )"
+ "void setRect ( const QRectF & )"
+ "void setRect ( qreal , qreal , qreal , qreal )")
+ (("QSGSimpleTextureNode" . "QSGGeometryNode")
+ "new QSGSimpleTextureNode ()"
+ "QSGTexture::Filtering filtering () const"
+ "bool ownsTexture () const"
+ "QRectF rect () const"
+ "void setFiltering ( QSGTexture::Filtering )"
+ "void setOwnsTexture ( bool )"
+ "void setRect ( const QRectF & )"
+ "void setRect ( qreal , qreal , qreal , qreal )"
+ "void setSourceRect ( const QRectF & )"
+ "void setSourceRect ( qreal , qreal , qreal , qreal )"
+ "void setTexture ( QSGTexture * )"
+ "void setTextureCoordinatesTransform ( TextureCoordinatesTransformMode )"
+ "QRectF sourceRect () const"
+ "QSGTexture * texture () const"
+ "TextureCoordinatesTransformMode textureCoordinatesTransform () const")
+ (("QSGTextureMaterial" . "QSGOpaqueTextureMaterial"))
+ (("QSGTransformNode" . "QSGNode")
+ "new QSGTransformNode ()"
+ "const QMatrix4x4 & matrix () const"
+ "void setMatrix ( const QMatrix4x4 & )")
+ (("QSGVertexColorMaterial" . "QSGMaterial")
+ "new QSGVertexColorMaterial ()")
(("QScrollEvent" . "QEvent")
"new QScrollEvent ( const QPointF & , const QPointF & , ScrollState )"
"QPointF contentPos () const"
diff --git a/helper/parsed/n-override.lisp b/helper/parsed/n-override.lisp
index ef0b74c..9520027 100644
--- a/helper/parsed/n-override.lisp
+++ b/helper/parsed/n-override.lisp
@@ -279,6 +279,8 @@
"virtual QWidget * createEditor ( int , QWidget * ) const"
"virtual QByteArray valuePropertyName ( int ) const")
(("QItemSelectionRange" . NIL))
+ (("QJSValue" . NIL))
+ (("QJSValueIterator" . NIL))
(("QKeyEvent" . "QInputEvent"))
(("QKeySequence" . NIL))
(("QLayoutItem" . NIL)
@@ -354,7 +356,33 @@
"virtual bool newPage ()")
(("QPrinterInfo" . NIL))
(("QProcessEnvironment" . NIL))
+ (("QQmlAbstractUrlInterceptor" . NIL)
+ "virtual QUrl intercept ( const QUrl & , DataType ) = 0")
+ (("QQmlError" . NIL))
+ (("QQmlImageProviderBase" . NIL)
+ "virtual Flags flags () const = 0"
+ "virtual ImageType imageType () const = 0")
+ (("QQmlIncubationController" . NIL)
+ "virtual void incubatingObjectCountChanged ( int )")
+ (("QQmlIncubator" . NIL)
+ "virtual void setInitialState ( QObject * )"
+ "virtual void statusChanged ( Status )")
+ (("QQmlNetworkAccessManagerFactory" . NIL)
+ "virtual QNetworkAccessManager * create ( QObject * ) = 0")
+ (("QQmlParserStatus" . NIL)
+ "virtual void classBegin () = 0"
+ "virtual void componentComplete () = 0")
+ (("QQmlProperty" . NIL))
+ (("QQmlPropertyValueSource" . NIL)
+ "virtual void setTarget ( const QQmlProperty & ) = 0")
+ (("QQmlScriptString" . NIL))
(("QQuaternion" . NIL))
+ (("QQuickAsyncImageProvider" . "QQuickImageProvider")
+ "virtual QQuickImageResponse * requestImageResponse ( const QString & , const QSize & ) = 0")
+ (("QQuickImageProvider" . "QQmlImageProviderBase")
+ "virtual QImage requestImage ( const QString & , QSize * , const QSize & )"
+ "virtual QPixmap requestPixmap ( const QString & , QSize * , const QSize & )"
+ "virtual QQuickTextureFactory * requestTexture ( const QString & , QSize * , const QSize & )")
(("QRadialGradient" . "QGradient"))
(("QRegExp" . NIL))
(("QRegion" . NIL))
@@ -362,6 +390,34 @@
(("QResizeEvent" . "QEvent"))
(("QRunnable" . NIL)
"virtual void run () = 0")
+ (("QSGBasicGeometryNode" . "QSGNode"))
+ (("QSGClipNode" . "QSGBasicGeometryNode"))
+ (("QSGFlatColorMaterial" . "QSGMaterial"))
+ (("QSGGeometry" . NIL))
+ (("QSGGeometryNode" . "QSGBasicGeometryNode"))
+ (("QSGMaterial" . NIL)
+ "virtual int compare ( const QSGMaterial * ) const"
+ "virtual QSGMaterialShader * createShader () const = 0"
+ "virtual QSGMaterialType * type () const = 0")
+ (("QSGMaterialShader" . NIL)
+ "virtual void activate ()"
+ "virtual void deactivate ()"
+ "virtual void updateState ( const RenderState & , QSGMaterial * , QSGMaterial * )"
+ "virtual void compile ()"
+ "virtual const char * fragmentShader () const"
+ "virtual void initialize ()"
+ "virtual const char * vertexShader () const")
+ (("QSGMaterialType" . NIL))
+ (("QSGNode" . NIL)
+ "virtual bool isSubtreeBlocked () const"
+ "virtual void preprocess ()")
+ (("QSGOpacityNode" . "QSGNode"))
+ (("QSGOpaqueTextureMaterial" . "QSGMaterial"))
+ (("QSGSimpleRectNode" . "QSGGeometryNode"))
+ (("QSGSimpleTextureNode" . "QSGGeometryNode"))
+ (("QSGTextureMaterial" . "QSGOpaqueTextureMaterial"))
+ (("QSGTransformNode" . "QSGNode"))
+ (("QSGVertexColorMaterial" . "QSGMaterial"))
(("QScrollEvent" . "QEvent"))
(("QScrollPrepareEvent" . "QEvent"))
(("QSemaphore" . NIL))
diff --git a/helper/parsed/q-methods.lisp b/helper/parsed/q-methods.lisp
index 59cabb0..229bf69 100644
--- a/helper/parsed/q-methods.lisp
+++ b/helper/parsed/q-methods.lisp
@@ -1635,10 +1635,8 @@
"new QGraphicsSvgItem ( const QString & , QGraphicsItem * = 0 )"
"QString elementId () const"
"QSize maximumCacheSize () const"
- "QSvgRenderer * renderer () const"
"void setElementId ( const QString & )"
"void setMaximumCacheSize ( const QSize & )"
- "void setSharedRenderer ( QSvgRenderer * )"
"virtual QRectF boundingRect () const"
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )"
"virtual int type () const")
@@ -2254,6 +2252,14 @@
"const QItemSelection selection () const"
"void setModel ( QAbstractItemModel * )"
"protected void emitSelectionChanged ( const QItemSelection & , const QItemSelection & )")
+ (("QJSEngine" . "QObject")
+ "void collectGarbage ()"
+ "QJSValue evaluate ( const QString & , const QString & = QString() , int = 1 )"
+ "QJSValue globalObject () const"
+ "void installTranslatorFunctions ( const QJSValue & = QJSValue() )"
+ "QJSValue newArray ( uint = 0 )"
+ "QJSValue newObject ()"
+ "QJSValue newQObject ( QObject * )")
(("QKeyEventTransition" . "QEventTransition")
"new QKeyEventTransition ( QState * = 0 )"
"new QKeyEventTransition ( QObject * , QEvent::Type , int , QState * = 0 )"
@@ -2635,6 +2641,7 @@
"QWidget * widget () const"
"virtual QSize minimumSizeHint () const"
"virtual QSize sizeHint () const")
+ (("QMediaControl" . "QObject"))
(("QMediaObject" . "QObject")
"virtual QMultimedia::AvailabilityStatus availability () const"
"QStringList availableMetaData () const"
@@ -2958,7 +2965,6 @@
"virtual bool remove ( const QUrl & )"
"virtual void updateMetaData ( const QNetworkCacheMetaData & )")
(("QNetworkReply" . "QIODevice")
- "QVariant attribute ( QNetworkRequest::Attribute ) const"
"NetworkError error () const"
"bool hasRawHeader ( const QByteArray & ) const"
"QVariant header ( QNetworkRequest::KnownHeaders ) const"
@@ -2975,7 +2981,6 @@
"void setSslConfiguration ( const QSslConfiguration & )"
"QSslConfiguration sslConfiguration () const"
"QUrl url () const"
- "protected void setAttribute ( QNetworkRequest::Attribute , const QVariant & )"
"protected void setError ( NetworkError , const QString & )"
"protected void setFinished ( bool )"
"protected void setHeader ( QNetworkRequest::KnownHeaders , const QVariant & )"
@@ -3486,6 +3491,338 @@
"protected void initStyleOption ( QStyleOptionButton * ) const"
"virtual QSize minimumSizeHint () const"
"virtual QSize sizeHint () const")
+ (("QQmlApplicationEngine" . "QQmlEngine")
+ "QList rootObjects ()")
+ (("QQmlComponent" . "QObject")
+ "virtual QObject * beginCreate ( QQmlContext * )"
+ "virtual void completeCreate ()"
+ "virtual QObject * create ( QQmlContext * = 0 )"
+ "void create ( QQmlIncubator & , QQmlContext * = 0 , QQmlContext * = 0 )"
+ "QQmlContext * creationContext () const"
+ "QList errors () const"
+ "bool isError () const"
+ "bool isLoading () const"
+ "bool isNull () const"
+ "bool isReady () const"
+ "qreal progress () const"
+ "Status status () const"
+ "QUrl url () const")
+ (("QQmlContext" . "QObject")
+ "new QQmlContext ( QQmlContext * , QObject * = 0 )"
+ "QUrl baseUrl () const"
+ "QObject * contextObject () const"
+ "QVariant contextProperty ( const QString & ) const"
+ "bool isValid () const"
+ "QString nameForObject ( QObject * ) const"
+ "QQmlContext * parentContext () const"
+ "QUrl resolvedUrl ( const QUrl & )"
+ "void setBaseUrl ( const QUrl & )"
+ "void setContextObject ( QObject * )"
+ "void setContextProperty ( const QString & , QObject * )"
+ "void setContextProperty ( const QString & , const QVariant & )")
+ (("QQmlEngine" . "QJSEngine")
+ "void addImageProvider ( const QString & , QQmlImageProviderBase * )"
+ "void addImportPath ( const QString & )"
+ "void addPluginPath ( const QString & )"
+ "QUrl baseUrl () const"
+ "void clearComponentCache ()"
+ "QQmlImageProviderBase * imageProvider ( const QString & ) const"
+ "QStringList importPathList () const"
+ "bool importPlugin ( const QString & , const QString & , QList * )"
+ "QQmlIncubationController * incubationController () const"
+ "QNetworkAccessManager * networkAccessManager () const"
+ "QQmlNetworkAccessManagerFactory * networkAccessManagerFactory () const"
+ "QString offlineStoragePath () const"
+ "bool outputWarningsToStandardError () const"
+ "QStringList pluginPathList () const"
+ "void removeImageProvider ( const QString & )"
+ "QQmlContext * rootContext () const"
+ "void setBaseUrl ( const QUrl & )"
+ "void setImportPathList ( const QStringList & )"
+ "void setIncubationController ( QQmlIncubationController * )"
+ "void setNetworkAccessManagerFactory ( QQmlNetworkAccessManagerFactory * )"
+ "void setOfflineStoragePath ( const QString & )"
+ "void setOutputWarningsToStandardError ( bool )"
+ "void setPluginPathList ( const QStringList & )"
+ "void trimComponentCache ()"
+ "static QQmlContext * contextForObject ( const QObject * )"
+ "static ObjectOwnership objectOwnership ( QObject * )"
+ "static void setContextForObject ( QObject * , QQmlContext * )"
+ "static void setObjectOwnership ( QObject * , ObjectOwnership )")
+ (("QQmlExpression" . "QObject")
+ "new QQmlExpression ()"
+ "new QQmlExpression ( QQmlContext * , QObject * , const QString & , QObject * = 0 )"
+ "new QQmlExpression ( const QQmlScriptString & , QQmlContext * = 0 , QObject * = 0 , QObject * = 0 )"
+ "void clearError ()"
+ "int columnNumber () const"
+ "QQmlContext * context () const"
+ "QQmlError error () const"
+ "QVariant evaluate ( bool * = 0 )"
+ "QString expression () const"
+ "bool hasError () const"
+ "int lineNumber () const"
+ "bool notifyOnValueChanged () const"
+ "QObject * scopeObject () const"
+ "void setExpression ( const QString & )"
+ "void setNotifyOnValueChanged ( bool )"
+ "void setSourceLocation ( const QString & , int , int = 0 )"
+ "QString sourceFile () const")
+ (("QQmlExtensionPlugin" . "QObject")
+ "new QQmlExtensionPlugin ( QObject * = 0 )"
+ "QUrl baseUrl () const"
+ "virtual void registerTypes ( const char * ) = 0")
+ (("QQmlFileSelector" . "QObject")
+ "void setExtraSelectors ( QStringList & )"
+ "void setExtraSelectors ( const QStringList & )"
+ "void setSelector ( QFileSelector * )")
+ (("QQmlPropertyMap" . "QObject")
+ "new QQmlPropertyMap ( QObject * = 0 )"
+ "void clear ( const QString & )"
+ "bool contains ( const QString & ) const"
+ "int count () const"
+ "void insert ( const QString & , const QVariant & )"
+ "bool isEmpty () const"
+ "QStringList keys () const"
+ "int size () const"
+ "QVariant value ( const QString & ) const")
+ (("QQuickFramebufferObject" . "QQuickItem")
+ "void setTextureFollowsItemSize ( bool )"
+ "bool textureFollowsItemSize () const"
+ "virtual bool isTextureProvider () const"
+ "virtual void releaseResources ()"
+ "virtual QSGTextureProvider * textureProvider () const")
+ (("QQuickImageResponse" . "QObject")
+ "new QQuickImageResponse ()"
+ "virtual QString errorString () const"
+ "virtual QQuickTextureFactory * textureFactory () const = 0")
+ (("QQuickItem" . "QObject")
+ "new QQuickItem ( QQuickItem * = 0 )"
+ "bool acceptHoverEvents () const"
+ "Qt::MouseButtons acceptedMouseButtons () const"
+ "bool activeFocusOnTab () const"
+ "bool antialiasing () const"
+ "qreal baselineOffset () const"
+ "QQuickItem * childAt ( qreal , qreal ) const"
+ "QList childItems () const"
+ "QRectF childrenRect ()"
+ "bool clip () const"
+ "virtual bool contains ( const QPointF & ) const"
+ "QCursor cursor () const"
+ "bool filtersChildMouseEvents () const"
+ "Flags flags () const"
+ "void forceActiveFocus ()"
+ "void forceActiveFocus ( Qt::FocusReason )"
+ "void grabMouse ()"
+ "QSharedPointer grabToImage ( const QSize & = QSize() )"
+ "void grabTouchPoints ( const QVector & )"
+ "bool hasActiveFocus () const"
+ "bool hasFocus () const"
+ "qreal height () const"
+ "qreal implicitHeight () const"
+ "qreal implicitWidth () const"
+ "virtual QVariant inputMethodQuery ( Qt::InputMethodQuery ) const"
+ "bool isEnabled () const"
+ "bool isFocusScope () const"
+ "virtual bool isTextureProvider () const"
+ "bool isVisible () const"
+ "bool keepMouseGrab () const"
+ "bool keepTouchGrab () const"
+ "QPointF mapFromItem ( const QQuickItem * , const QPointF & ) const"
+ "QPointF mapFromScene ( const QPointF & ) const"
+ "QRectF mapRectFromItem ( const QQuickItem * , const QRectF & ) const"
+ "QRectF mapRectFromScene ( const QRectF & ) const"
+ "QRectF mapRectToItem ( const QQuickItem * , const QRectF & ) const"
+ "QRectF mapRectToScene ( const QRectF & ) const"
+ "QPointF mapToItem ( const QQuickItem * , const QPointF & ) const"
+ "QPointF mapToScene ( const QPointF & ) const"
+ "QQuickItem * nextItemInFocusChain ( bool = true )"
+ "qreal opacity () const"
+ "QQuickItem * parentItem () const"
+ "void polish ()"
+ "void resetAntialiasing ()"
+ "void resetHeight ()"
+ "void resetWidth ()"
+ "qreal rotation () const"
+ "qreal scale () const"
+ "QQuickItem * scopedFocusItem () const"
+ "void setAcceptHoverEvents ( bool )"
+ "void setAcceptedMouseButtons ( Qt::MouseButtons )"
+ "void setActiveFocusOnTab ( bool )"
+ "void setAntialiasing ( bool )"
+ "void setBaselineOffset ( qreal )"
+ "void setClip ( bool )"
+ "void setCursor ( const QCursor & )"
+ "void setEnabled ( bool )"
+ "void setFiltersChildMouseEvents ( bool )"
+ "void setFlag ( Flag , bool = true )"
+ "void setFlags ( Flags )"
+ "void setFocus ( bool )"
+ "void setFocus ( bool , Qt::FocusReason )"
+ "void setHeight ( qreal )"
+ "void setImplicitHeight ( qreal )"
+ "void setImplicitWidth ( qreal )"
+ "void setKeepMouseGrab ( bool )"
+ "void setKeepTouchGrab ( bool )"
+ "void setOpacity ( qreal )"
+ "void setParentItem ( QQuickItem * )"
+ "void setRotation ( qreal )"
+ "void setScale ( qreal )"
+ "void setSmooth ( bool )"
+ "void setState ( const QString & )"
+ "void setTransformOrigin ( TransformOrigin )"
+ "void setVisible ( bool )"
+ "void setWidth ( qreal )"
+ "void setX ( qreal )"
+ "void setY ( qreal )"
+ "void setZ ( qreal )"
+ "bool smooth () const"
+ "void stackAfter ( const QQuickItem * )"
+ "void stackBefore ( const QQuickItem * )"
+ "QString state () const"
+ "virtual QSGTextureProvider * textureProvider () const"
+ "TransformOrigin transformOrigin () const"
+ "void ungrabMouse ()"
+ "void ungrabTouchPoints ()"
+ "void unsetCursor ()"
+ "qreal width () const"
+ "QQuickWindow * window () const"
+ "qreal x () const"
+ "qreal y () const"
+ "qreal z () const"
+ "protected void classBegin ()"
+ "protected void componentComplete ()"
+ "protected bool event ( QEvent * )"
+ "protected bool heightValid () const"
+ "protected bool isComponentComplete () const"
+ "protected void updateInputMethod ( Qt::InputMethodQueries = Qt::ImQueryInput )"
+ "protected bool widthValid () const")
+ (("QQuickItemGrabResult" . "QObject")
+ "QImage image () const"
+ "bool saveToFile ( const QString & )"
+ "QUrl url () const")
+ (("QQuickPaintedItem" . "QQuickItem")
+ "new QQuickPaintedItem ( QQuickItem * = 0 )"
+ "bool antialiasing () const"
+ "QRectF contentsBoundingRect () const"
+ "qreal contentsScale () const"
+ "QSize contentsSize () const"
+ "QColor fillColor () const"
+ "bool mipmap () const"
+ "bool opaquePainting () const"
+ "virtual void paint ( QPainter * ) = 0"
+ "PerformanceHints performanceHints () const"
+ "RenderTarget renderTarget () const"
+ "void resetContentsSize ()"
+ "void setAntialiasing ( bool )"
+ "void setContentsScale ( qreal )"
+ "void setContentsSize ( const QSize & )"
+ "void setFillColor ( const QColor & )"
+ "void setMipmap ( bool )"
+ "void setOpaquePainting ( bool )"
+ "void setPerformanceHint ( PerformanceHint , bool = true )"
+ "void setPerformanceHints ( PerformanceHints )"
+ "void setRenderTarget ( RenderTarget )"
+ "void update ( const QRect & = QRect() )"
+ "virtual bool isTextureProvider () const"
+ "virtual QSGTextureProvider * textureProvider () const")
+ (("QQuickRenderControl" . "QObject")
+ "new QQuickRenderControl ( QObject * = 0 )"
+ "QImage grab ()"
+ "void initialize ( QOpenGLContext * )"
+ "void invalidate ()"
+ "void polishItems ()"
+ "void prepareThread ( QThread * )"
+ "void render ()"
+ "bool sync ()")
+ (("QQuickTextDocument" . "QObject")
+ "new QQuickTextDocument ( QQuickItem * )"
+ "QTextDocument * textDocument () const")
+ (("QQuickTextureFactory" . "QObject")
+ "new QQuickTextureFactory ()"
+ "virtual QSGTexture * createTexture ( QQuickWindow * ) const = 0"
+ "virtual QImage image () const"
+ "virtual int textureByteCount () const = 0"
+ "virtual QSize textureSize () const = 0"
+ "static QQuickTextureFactory * textureFactoryForImage ( const QImage & )")
+ (("QQuickView" . "QQuickWindow")
+ "new QQuickView ( QWindow * = 0 )"
+ "new QQuickView ( const QUrl & , QWindow * = 0 )"
+ "QList errors () const"
+ "QSize initialSize () const"
+ "ResizeMode resizeMode () const"
+ "QQmlContext * rootContext () const"
+ "QQuickItem * rootObject () const"
+ "void setResizeMode ( ResizeMode )"
+ "QUrl source () const"
+ "Status status () const"
+ "protected void keyPressEvent ( QKeyEvent * )"
+ "protected void keyReleaseEvent ( QKeyEvent * )"
+ "protected void mouseMoveEvent ( QMouseEvent * )"
+ "protected void mousePressEvent ( QMouseEvent * )"
+ "protected void mouseReleaseEvent ( QMouseEvent * )")
+ (("QQuickWidget" . "QWidget")
+ "new QQuickWidget ( QWidget * = 0 )"
+ "new QQuickWidget ( const QUrl & , QWidget * = 0 )"
+ "QList errors () const"
+ "QSurfaceFormat format () const"
+ "QImage grabFramebuffer () const"
+ "QSize initialSize () const"
+ "QQuickWindow * quickWindow () const"
+ "ResizeMode resizeMode () const"
+ "QQmlContext * rootContext () const"
+ "QQuickItem * rootObject () const"
+ "void setClearColor ( const QColor & )"
+ "void setFormat ( const QSurfaceFormat & )"
+ "void setResizeMode ( ResizeMode )"
+ "QUrl source () const"
+ "Status status () const"
+ "protected bool event ( QEvent * )")
+ (("QQuickWindow" . "QWindow")
+ "new QQuickWindow ( QWindow * = 0 )"
+ "QAccessibleInterface * accessibleRoot () const"
+ "QQuickItem * activeFocusItem () const"
+ "bool clearBeforeRendering () const"
+ "QColor color () const"
+ "QQuickItem * contentItem () const"
+ "QSGTexture * createTextureFromId ( uint , const QSize & , CreateTextureOptions = 0 ) const"
+ "QSGTexture * createTextureFromImage ( const QImage & , CreateTextureOptions ) const"
+ "QSGTexture * createTextureFromImage ( const QImage & ) const"
+ "qreal effectiveDevicePixelRatio () const"
+ "QImage grabWindow ()"
+ "QQmlIncubationController * incubationController () const"
+ "bool isPersistentOpenGLContext () const"
+ "bool isPersistentSceneGraph () const"
+ "bool isSceneGraphInitialized () const"
+ "QQuickItem * mouseGrabberItem () const"
+ "QOpenGLContext * openglContext () const"
+ "QOpenGLFramebufferObject * renderTarget () const"
+ "uint renderTargetId () const"
+ "QSize renderTargetSize () const"
+ "void resetOpenGLState ()"
+ "void scheduleRenderJob ( QRunnable * , RenderStage )"
+ "bool sendEvent ( QQuickItem * , QEvent * )"
+ "void setClearBeforeRendering ( bool )"
+ "void setColor ( const QColor & )"
+ "void setPersistentOpenGLContext ( bool )"
+ "void setPersistentSceneGraph ( bool )"
+ "void setRenderTarget ( QOpenGLFramebufferObject * )"
+ "void setRenderTarget ( uint , const QSize & )"
+ "protected bool event ( QEvent * )"
+ "protected void exposeEvent ( QExposeEvent * )"
+ "protected void focusInEvent ( QFocusEvent * )"
+ "protected void focusOutEvent ( QFocusEvent * )"
+ "protected void hideEvent ( QHideEvent * )"
+ "protected void keyPressEvent ( QKeyEvent * )"
+ "protected void keyReleaseEvent ( QKeyEvent * )"
+ "protected void mouseDoubleClickEvent ( QMouseEvent * )"
+ "protected void mouseMoveEvent ( QMouseEvent * )"
+ "protected void mousePressEvent ( QMouseEvent * )"
+ "protected void mouseReleaseEvent ( QMouseEvent * )"
+ "protected void resizeEvent ( QResizeEvent * )"
+ "protected void showEvent ( QShowEvent * )"
+ "protected void wheelEvent ( QWheelEvent * )"
+ "static bool hasDefaultAlphaBuffer ()"
+ "static void setDefaultAlphaBuffer ( bool )")
(("QRadioButton" . "QAbstractButton")
"new QRadioButton ( QWidget * = 0 )"
"new QRadioButton ( const QString & , QWidget * = 0 )"
@@ -3527,6 +3864,52 @@
"void setGeometry ( int , int , int , int )"
"Shape shape () const"
"protected void initStyleOption ( QStyleOptionRubberBand * ) const")
+ (("QSGAbstractRenderer" . "QObject")
+ "QColor clearColor () const"
+ "ClearMode clearMode () const"
+ "QRect deviceRect () const"
+ "QMatrix4x4 projectionMatrix () const"
+ "virtual void renderScene ( GLuint = 0 ) = 0"
+ "QSGRootNode * rootNode () const"
+ "void setClearColor ( const QColor & )"
+ "void setClearMode ( ClearMode )"
+ "void setDeviceRect ( const QRect & )"
+ "void setDeviceRect ( const QSize & )"
+ "void setProjectionMatrix ( const QMatrix4x4 & )"
+ "void setProjectionMatrixToRect ( const QRectF & )"
+ "void setRootNode ( QSGRootNode * )"
+ "void setViewportRect ( const QRect & )"
+ "void setViewportRect ( const QSize & )"
+ "QRect viewportRect () const")
+ (("QSGDynamicTexture" . "QSGTexture")
+ "virtual bool updateTexture () = 0")
+ (("QSGEngine" . "QObject")
+ "QSGTexture * createTextureFromId ( uint , const QSize & , CreateTextureOptions = 0 ) const"
+ "QSGTexture * createTextureFromImage ( const QImage & , CreateTextureOptions = 0 ) const"
+ "void initialize ( QOpenGLContext * )"
+ "void invalidate ()")
+ (("QSGTexture" . "QObject")
+ "new QSGTexture ()"
+ "virtual void bind () = 0"
+ "QRectF convertToNormalizedSourceRect ( const QRectF & ) const"
+ "QSGTexture::Filtering filtering () const"
+ "virtual bool hasAlphaChannel () const = 0"
+ "virtual bool hasMipmaps () const = 0"
+ "QSGTexture::WrapMode horizontalWrapMode () const"
+ "virtual bool isAtlasTexture () const"
+ "QSGTexture::Filtering mipmapFiltering () const"
+ "virtual QRectF normalizedTextureSubRect () const"
+ "virtual QSGTexture * removedFromAtlas () const"
+ "void setFiltering ( Filtering )"
+ "void setHorizontalWrapMode ( WrapMode )"
+ "void setMipmapFiltering ( Filtering )"
+ "void setVerticalWrapMode ( WrapMode )"
+ "virtual int textureId () const = 0"
+ "virtual QSize textureSize () const = 0"
+ "void updateBindOptions ( bool = false )"
+ "QSGTexture::WrapMode verticalWrapMode () const")
+ (("QSGTextureProvider" . "QObject")
+ "virtual QSGTexture * texture () const = 0")
(("QScreen" . "QObject")
"int angleBetween ( Qt::ScreenOrientation , Qt::ScreenOrientation ) const"
"QRect availableGeometry () const"
@@ -4119,7 +4502,6 @@
(("QSvgWidget" . "QWidget")
"new QSvgWidget ( QWidget * = 0 )"
"new QSvgWidget ( const QString & , QWidget * = 0 )"
- "QSvgRenderer * renderer () const"
"virtual QSize sizeHint () const")
(("QSwipeGesture" . "QGesture")
"SwipeDirection horizontalDirection () const"
@@ -4870,7 +5252,7 @@
"QMediaObject * mediaObject () const"
"int saturation () const"
"virtual QSize sizeHint () const")
- (("QVideoWidgetControl" . NIL)
+ (("QVideoWidgetControl" . "QMediaControl")
"virtual Qt::AspectRatioMode aspectRatioMode () const = 0"
"virtual int brightness () const = 0"
"virtual int contrast () const = 0"
diff --git a/helper/parsed/q-override.lisp b/helper/parsed/q-override.lisp
index be4e599..ddbfb83 100644
--- a/helper/parsed/q-override.lisp
+++ b/helper/parsed/q-override.lisp
@@ -861,6 +861,7 @@
"virtual bool editorEvent ( QEvent * , QAbstractItemModel * , const QStyleOptionViewItem & , const QModelIndex & )"
"virtual bool eventFilter ( QObject * , QEvent * )")
(("QItemSelectionModel" . "QObject"))
+ (("QJSEngine" . "QObject"))
(("QKeyEventTransition" . "QEventTransition")
"virtual bool eventTest ( QEvent * )"
"virtual void onTransition ( QEvent * )")
@@ -1009,6 +1010,7 @@
"virtual void resizeEvent ( QResizeEvent * )"
"virtual void showEvent ( QShowEvent * )"
"virtual void timerEvent ( QTimerEvent * )")
+ (("QMediaControl" . "QObject"))
(("QMediaObject" . "QObject")
"virtual QMultimedia::AvailabilityStatus availability () const"
"virtual bool bind ( QObject * )"
@@ -1248,6 +1250,90 @@
"virtual bool hitButton ( const QPoint & ) const"
"virtual void keyPressEvent ( QKeyEvent * )"
"virtual void paintEvent ( QPaintEvent * )")
+ (("QQmlApplicationEngine" . "QQmlEngine"))
+ (("QQmlComponent" . "QObject")
+ "virtual QObject * beginCreate ( QQmlContext * )"
+ "virtual void completeCreate ()"
+ "virtual QObject * create ( QQmlContext * = 0 )")
+ (("QQmlContext" . "QObject"))
+ (("QQmlEngine" . "QJSEngine")
+ "virtual bool event ( QEvent * )")
+ (("QQmlExpression" . "QObject"))
+ (("QQmlExtensionPlugin" . "QObject")
+ "virtual void registerTypes ( const char * ) = 0")
+ (("QQmlFileSelector" . "QObject"))
+ (("QQmlPropertyMap" . "QObject")
+ "virtual QVariant updateValue ( const QString & , const QVariant & )")
+ (("QQuickFramebufferObject" . "QQuickItem")
+ "virtual bool isTextureProvider () const"
+ "virtual void releaseResources ()"
+ "virtual QSGTextureProvider * textureProvider () const")
+ (("QQuickImageResponse" . "QObject")
+ "virtual QString errorString () const"
+ "virtual QQuickTextureFactory * textureFactory () const = 0")
+ (("QQuickItem" . "QObject")
+ "virtual bool contains ( const QPointF & ) const"
+ "virtual QVariant inputMethodQuery ( Qt::InputMethodQuery ) const"
+ "virtual bool isTextureProvider () const"
+ "virtual QSGTextureProvider * textureProvider () const"
+ "virtual bool childMouseEventFilter ( QQuickItem * , QEvent * )"
+ "virtual void dragEnterEvent ( QDragEnterEvent * )"
+ "virtual void dragLeaveEvent ( QDragLeaveEvent * )"
+ "virtual void dragMoveEvent ( QDragMoveEvent * )"
+ "virtual void dropEvent ( QDropEvent * )"
+ "virtual void focusInEvent ( QFocusEvent * )"
+ "virtual void focusOutEvent ( QFocusEvent * )"
+ "virtual void geometryChanged ( const QRectF & , const QRectF & )"
+ "virtual void hoverEnterEvent ( QHoverEvent * )"
+ "virtual void hoverLeaveEvent ( QHoverEvent * )"
+ "virtual void hoverMoveEvent ( QHoverEvent * )"
+ "virtual void inputMethodEvent ( QInputMethodEvent * )"
+ "virtual void itemChange ( ItemChange , const ItemChangeData & )"
+ "virtual void keyPressEvent ( QKeyEvent * )"
+ "virtual void keyReleaseEvent ( QKeyEvent * )"
+ "virtual void mouseDoubleClickEvent ( QMouseEvent * )"
+ "virtual void mouseMoveEvent ( QMouseEvent * )"
+ "virtual void mousePressEvent ( QMouseEvent * )"
+ "virtual void mouseReleaseEvent ( QMouseEvent * )"
+ "virtual void mouseUngrabEvent ()"
+ "virtual void releaseResources ()"
+ "virtual void touchEvent ( QTouchEvent * )"
+ "virtual void touchUngrabEvent ()"
+ "virtual QSGNode * updatePaintNode ( QSGNode * , UpdatePaintNodeData * )"
+ "virtual void updatePolish ()"
+ "virtual void wheelEvent ( QWheelEvent * )")
+ (("QQuickItemGrabResult" . "QObject"))
+ (("QQuickPaintedItem" . "QQuickItem")
+ "virtual void paint ( QPainter * ) = 0"
+ "virtual bool isTextureProvider () const"
+ "virtual QSGTextureProvider * textureProvider () const"
+ "virtual void releaseResources ()"
+ "virtual QSGNode * updatePaintNode ( QSGNode * , UpdatePaintNodeData * )")
+ (("QQuickRenderControl" . "QObject"))
+ (("QQuickTextDocument" . "QObject"))
+ (("QQuickTextureFactory" . "QObject")
+ "virtual QSGTexture * createTexture ( QQuickWindow * ) const = 0"
+ "virtual QImage image () const"
+ "virtual int textureByteCount () const = 0"
+ "virtual QSize textureSize () const = 0")
+ (("QQuickView" . "QQuickWindow"))
+ (("QQuickWidget" . "QWidget")
+ "virtual void dragEnterEvent ( QDragEnterEvent * )"
+ "virtual void dragLeaveEvent ( QDragLeaveEvent * )"
+ "virtual void dragMoveEvent ( QDragMoveEvent * )"
+ "virtual void dropEvent ( QDropEvent * )"
+ "virtual void focusInEvent ( QFocusEvent * )"
+ "virtual void focusOutEvent ( QFocusEvent * )"
+ "virtual void hideEvent ( QHideEvent * )"
+ "virtual void keyPressEvent ( QKeyEvent * )"
+ "virtual void keyReleaseEvent ( QKeyEvent * )"
+ "virtual void mouseDoubleClickEvent ( QMouseEvent * )"
+ "virtual void mouseMoveEvent ( QMouseEvent * )"
+ "virtual void mousePressEvent ( QMouseEvent * )"
+ "virtual void mouseReleaseEvent ( QMouseEvent * )"
+ "virtual void showEvent ( QShowEvent * )"
+ "virtual void wheelEvent ( QWheelEvent * )")
+ (("QQuickWindow" . "QWindow"))
(("QRadioButton" . "QAbstractButton")
"virtual QSize minimumSizeHint () const"
"virtual QSize sizeHint () const"
@@ -1266,6 +1352,22 @@
"virtual void paintEvent ( QPaintEvent * )"
"virtual void resizeEvent ( QResizeEvent * )"
"virtual void showEvent ( QShowEvent * )")
+ (("QSGAbstractRenderer" . "QObject")
+ "virtual void renderScene ( GLuint = 0 ) = 0")
+ (("QSGDynamicTexture" . "QSGTexture")
+ "virtual bool updateTexture () = 0")
+ (("QSGEngine" . "QObject"))
+ (("QSGTexture" . "QObject")
+ "virtual void bind () = 0"
+ "virtual bool hasAlphaChannel () const = 0"
+ "virtual bool hasMipmaps () const = 0"
+ "virtual bool isAtlasTexture () const"
+ "virtual QRectF normalizedTextureSubRect () const"
+ "virtual QSGTexture * removedFromAtlas () const"
+ "virtual int textureId () const = 0"
+ "virtual QSize textureSize () const = 0")
+ (("QSGTextureProvider" . "QObject")
+ "virtual QSGTexture * texture () const = 0")
(("QScreen" . "QObject"))
(("QScrollArea" . "QAbstractScrollArea")
"virtual bool focusNextPrevChild ( bool )"
@@ -1773,7 +1875,7 @@
"virtual void paintEvent ( QPaintEvent * )"
"virtual void resizeEvent ( QResizeEvent * )"
"virtual void showEvent ( QShowEvent * )")
- (("QVideoWidgetControl" . NIL)
+ (("QVideoWidgetControl" . "QMediaControl")
"virtual Qt::AspectRatioMode aspectRatioMode () const = 0"
"virtual int brightness () const = 0"
"virtual int contrast () const = 0"
diff --git a/src/ecl_fun.cpp b/src/ecl_fun.cpp
index 9d171be..fea3b06 100644
--- a/src/ecl_fun.cpp
+++ b/src/ecl_fun.cpp
@@ -2345,7 +2345,7 @@ cl_object qclear_event_filters() {
cl_object qrequire2(cl_object l_name, cl_object l_quiet) { /// qrequire
/// args: (module &optional quiet)
- /// Loads an EQL module, corresponding to a Qt module.
Returns the module name if both loading and initializing have been successful.
If the quiet argument is not NIL, no error message will be shown on failure.
Currently available modules: :help :multimedia :network :sql :svg :webkit
+ /// Loads an EQL module, corresponding to a Qt module.
Returns the module name if both loading and initializing have been successful.
If the quiet argument is not NIL, no error message will be shown on failure.
Currently available modules: :help :multimedia :network :quick :sql :svg :webkit
/// (qrequire :network)
ecl_process_env()->nvalues = 1;
QString name = symbolName(l_name);
@@ -2395,6 +2395,13 @@ cl_object qrequire2(cl_object l_name, cl_object l_quiet) { /// qrequire
LObjects::toMetaArg_network = metaArg;
LObjects::to_lisp_arg_network = lispArg;
return l_name; }
+ else if("quick" == name) {
+ LObjects::staticMetaObject_quick = meta;
+ LObjects::deleteNObject_quick = del;
+ LObjects::override_quick = over;
+ LObjects::toMetaArg_quick = metaArg;
+ LObjects::to_lisp_arg_quick = lispArg;
+ return l_name; }
else if("sql" == name) {
LObjects::staticMetaObject_sql = meta;
LObjects::deleteNObject_sql = del;
diff --git a/src/ecl_fun.h b/src/ecl_fun.h
index 3643972..efebc05 100644
--- a/src/ecl_fun.h
+++ b/src/ecl_fun.h
@@ -104,6 +104,15 @@ static cl_object from_##name(const cap_name& x) { \
l_ret = qt_object_from_name(#cap_name, (void*)&x); } \
return l_ret; }
+#define FROM_QT_TYPE_ONLY(cap_name, name) \
+static cl_object from_##name(const cap_name& x) { \
+ cl_object l_ret = Cnil; \
+ if(EQL::return_value_p) { \
+ l_ret = qt_object_from_name(#cap_name, new cap_name(x), 0, true); } \
+ else { \
+ l_ret = qt_object_from_name(#cap_name, (void*)&x); } \
+ return l_ret; }
+
#define TO_QT_TYPE_PTR2(cap_name, name) \
TO_QT_TYPE_PTR(cap_name, name) \
static cap_name to##cap_name(cl_object l_x) { \
diff --git a/src/eql.cpp b/src/eql.cpp
index 4d516cb..7185a76 100644
--- a/src/eql.cpp
+++ b/src/eql.cpp
@@ -7,7 +7,7 @@
#include
#include
-const char EQL::version[] = "17.1.1"; // Jan 2017
+const char EQL::version[] = "17.1.2"; // Jan 2017
extern "C" void ini_EQL(cl_object);
diff --git a/src/gen/_lobjects.cpp b/src/gen/_lobjects.cpp
index 10b8c29..2d8fd1c 100644
--- a/src/gen/_lobjects.cpp
+++ b/src/gen/_lobjects.cpp
@@ -22,6 +22,7 @@ int LObjects::T_QHostAddress = -1;
int LObjects::T_QHostInfo = -1;
int LObjects::T_QHttpPart = -1;
int LObjects::T_QImageEncoderSettings = -1;
+int LObjects::T_QJSValue = -1;
int LObjects::T_QMediaContent = -1;
int LObjects::T_QList_QMediaContent = -1;
int LObjects::T_QNetworkAddressEntry = -1;
@@ -36,6 +37,10 @@ int LObjects::T_QList_QNetworkInterface = -1;
int LObjects::T_QNetworkProxy = -1;
int LObjects::T_QList_QNetworkProxy = -1;
int LObjects::T_QNetworkRequest = -1;
+int LObjects::T_QList_QQmlError = -1;
+int LObjects::T_QQmlProperty = -1;
+int LObjects::T_QQmlScriptString = -1;
+int LObjects::T_QList_QQuickItem = -1;
int LObjects::T_QSqlDatabase = -1;
int LObjects::T_QSqlError = -1;
int LObjects::T_QSqlField = -1;
@@ -73,18 +78,21 @@ QHash LObjects::override_lisp_functions;
StaticMetaObject LObjects::staticMetaObject_help = 0;
StaticMetaObject LObjects::staticMetaObject_multimedia = 0;
StaticMetaObject LObjects::staticMetaObject_network = 0;
+StaticMetaObject LObjects::staticMetaObject_quick = 0;
StaticMetaObject LObjects::staticMetaObject_sql = 0;
StaticMetaObject LObjects::staticMetaObject_svg = 0;
StaticMetaObject LObjects::staticMetaObject_webkit = 0;
DeleteNObject LObjects::deleteNObject_help = 0;
DeleteNObject LObjects::deleteNObject_multimedia = 0;
DeleteNObject LObjects::deleteNObject_network = 0;
+DeleteNObject LObjects::deleteNObject_quick = 0;
DeleteNObject LObjects::deleteNObject_sql = 0;
DeleteNObject LObjects::deleteNObject_svg = 0;
DeleteNObject LObjects::deleteNObject_webkit = 0;
Override LObjects::override_help = 0;
Override LObjects::override_multimedia = 0;
Override LObjects::override_network = 0;
+Override LObjects::override_quick = 0;
Override LObjects::override_sql = 0;
Override LObjects::override_svg = 0;
Override LObjects::override_webkit = 0;
@@ -94,6 +102,8 @@ ToMetaArg LObjects::toMetaArg_multimedia = 0;
To_lisp_arg LObjects::to_lisp_arg_multimedia = 0;
ToMetaArg LObjects::toMetaArg_network = 0;
To_lisp_arg LObjects::to_lisp_arg_network = 0;
+ToMetaArg LObjects::toMetaArg_quick = 0;
+To_lisp_arg LObjects::to_lisp_arg_quick = 0;
ToMetaArg LObjects::toMetaArg_sql = 0;
To_lisp_arg LObjects::to_lisp_arg_sql = 0;
ToMetaArg LObjects::toMetaArg_webkit = 0;
@@ -235,9 +245,9 @@ NumList LSignalMapper::overrideIds = NumList();
NumList LSignalTransition::overrideIds = NumList() << 158 << 159;
NumList LSizeGrip::overrideIds = NumList() << 108 << 25 << 5 << 35 << 17 << 18 << 19 << 39 << 20 << 41;
NumList LSlider::overrideIds = NumList() << 24 << 25 << 17 << 18 << 19 << 20;
-NumList LSortFilterProxyModel::overrideIds = NumList() << 322 << 323 << 324 << 55 << 57 << 58 << 59 << 60 << 61 << 62 << 63 << 64 << 65 << 66 << 67 << 109 << 110 << 111 << 112 << 68 << 69 << 70 << 73 << 74 << 75 << 76 << 77 << 78 << 113 << 79 << 80 << 81 << 83;
-NumList LSpinBox::overrideIds = NumList() << 325 << 221 << 142 << 144;
-NumList LSplashScreen::overrideIds = NumList() << 326 << 18;
+NumList LSortFilterProxyModel::overrideIds = NumList() << 357 << 358 << 359 << 55 << 57 << 58 << 59 << 60 << 61 << 62 << 63 << 64 << 65 << 66 << 67 << 109 << 110 << 111 << 112 << 68 << 69 << 70 << 73 << 74 << 75 << 76 << 77 << 78 << 113 << 79 << 80 << 81 << 83;
+NumList LSpinBox::overrideIds = NumList() << 360 << 221 << 142 << 144;
+NumList LSplashScreen::overrideIds = NumList() << 361 << 18;
NumList LSplitter::overrideIds = NumList() << 24 << 25 << 12 << 6 << 40;
NumList LSplitterHandle::overrideIds = NumList() << 25 << 17 << 18 << 19 << 20 << 40;
NumList LStackedLayout::overrideIds = NumList() << 162 << 163 << 21 << 22 << 166 << 169 << 170 << 25 << 171;
@@ -248,33 +258,33 @@ NumList LStateMachine::overrideIds = NumList() << 5 << 146 << 147;
NumList LStatusBar::overrideIds = NumList() << 20 << 40 << 41;
NumList LStringListModel::overrideIds = NumList() << 59 << 62 << 67 << 75 << 76 << 77 << 79 << 80 << 83;
NumList LStyleHints::overrideIds = NumList();
-NumList LStyledItemDelegate::overrideIds = NumList() << 364 << 365 << 46 << 50 << 51 << 52 << 53 << 54 << 48 << 5;
+NumList LStyledItemDelegate::overrideIds = NumList() << 399 << 400 << 46 << 50 << 51 << 52 << 53 << 54 << 48 << 5;
NumList LSwipeGesture::overrideIds = NumList();
-NumList LSyntaxHighlighter::overrideIds = NumList() << 366;
+NumList LSyntaxHighlighter::overrideIds = NumList() << 401;
NumList LSystemTrayIcon::overrideIds = NumList();
-NumList LTabBar::overrideIds = NumList() << 367 << 368 << 369 << 370 << 371 << 24 << 25 << 12 << 35 << 15 << 17 << 18 << 19 << 20 << 40 << 41 << 8 << 43;
-NumList LTabWidget::overrideIds = NumList() << 368 << 370 << 21 << 22 << 24 << 25 << 12 << 15 << 20 << 40 << 41;
+NumList LTabBar::overrideIds = NumList() << 402 << 403 << 404 << 405 << 406 << 24 << 25 << 12 << 35 << 15 << 17 << 18 << 19 << 20 << 40 << 41 << 8 << 43;
+NumList LTabWidget::overrideIds = NumList() << 403 << 405 << 21 << 22 << 24 << 25 << 12 << 15 << 20 << 40 << 41;
NumList LTableView::overrideIds = NumList() << 84 << 87 << 187 << 88 << 188 << 93 << 94 << 95 << 20 << 96 << 276 << 98 << 89 << 90 << 8 << 277 << 100 << 101 << 104;
-NumList LTableWidget::overrideIds = NumList() << 372 << 373 << 70 << 83 << 32;
+NumList LTableWidget::overrideIds = NumList() << 407 << 408 << 70 << 83 << 32;
NumList LTapAndHoldGesture::overrideIds = NumList();
NumList LTapGesture::overrideIds = NumList();
-NumList LTextBlockGroup::overrideIds = NumList() << 374 << 375 << 376;
+NumList LTextBlockGroup::overrideIds = NumList() << 409 << 410 << 411;
NumList LTextBrowser::overrideIds = NumList() << 314 << 34 << 14 << 15 << 17 << 18 << 19 << 20;
-NumList LTextDocument::overrideIds = NumList() << 219 << 377 << 314;
+NumList LTextDocument::overrideIds = NumList() << 219 << 412 << 314;
NumList LTextEdit::overrideIds = NumList() << 314 << 315 << 316 << 317 << 23 << 12 << 28 << 29 << 30 << 31 << 32 << 13 << 34 << 14 << 36 << 15 << 16 << 38 << 17 << 18 << 19 << 20 << 40 << 106 << 41 << 43;
NumList LTextFrame::overrideIds = NumList();
NumList LTextList::overrideIds = NumList();
NumList LTextObject::overrideIds = NumList();
NumList LTextTable::overrideIds = NumList();
NumList LTimeEdit::overrideIds = NumList();
-NumList LTimeLine::overrideIds = NumList() << 378 << 8;
+NumList LTimeLine::overrideIds = NumList() << 413 << 8;
NumList LTimer::overrideIds = NumList() << 8;
NumList LToolBar::overrideIds = NumList() << 26 << 12 << 20;
-NumList LToolBox::overrideIds = NumList() << 379 << 380 << 12 << 41;
+NumList LToolBox::overrideIds = NumList() << 414 << 415 << 12 << 41;
NumList LToolButton::overrideIds = NumList() << 24 << 25 << 26 << 12 << 33 << 10 << 37 << 18 << 19 << 11 << 20 << 8;
-NumList LTranslator::overrideIds = NumList() << 175 << 381;
+NumList LTranslator::overrideIds = NumList() << 175 << 416;
NumList LTreeView::overrideIds = NumList() << 272 << 273 << 274 << 84 << 85 << 139 << 86 << 186 << 87 << 187 << 88 << 91 << 188 << 31 << 93 << 94 << 15 << 38 << 17 << 18 << 19 << 95 << 20 << 275 << 189 << 106 << 96 << 276 << 98 << 89 << 8 << 277 << 100 << 103 << 104 << 102;
-NumList LTreeWidget::overrideIds = NumList() << 382 << 383 << 70 << 83 << 88 << 32;
+NumList LTreeWidget::overrideIds = NumList() << 417 << 418 << 70 << 83 << 88 << 32;
NumList LUndoGroup::overrideIds = NumList();
NumList LUndoStack::overrideIds = NumList();
NumList LUndoView::overrideIds = NumList();
@@ -282,25 +292,25 @@ NumList LVBoxLayout::overrideIds = NumList();
NumList LValidator::overrideIds = NumList() << 142 << 144;
NumList LVariantAnimation::overrideIds = NumList() << 321 << 320 << 1 << 2 << 4;
NumList LWidget::overrideIds = NumList() << 21 << 22 << 23 << 24 << 25 << 26 << 12 << 27 << 28 << 29 << 30 << 31 << 32 << 33 << 13 << 34 << 14 << 35 << 36 << 15 << 16 << 37 << 38 << 17 << 18 << 19 << 39 << 20 << 40 << 41 << 42 << 43 << 44 << 45;
-NumList LWidgetAction::overrideIds = NumList() << 416 << 417 << 5;
+NumList LWidgetAction::overrideIds = NumList() << 451 << 452 << 5;
NumList LWindow::overrideIds = NumList() << 308 << 309 << 13 << 14 << 35 << 15 << 16 << 38 << 17 << 18 << 19 << 39 << 40 << 41 << 42 << 310 << 43 << 311 << 141 << 312;
-NumList LWizard::overrideIds = NumList() << 418 << 419 << 420 << 421 << 108 << 25 << 184 << 20 << 40;
-NumList LWizardPage::overrideIds = NumList() << 422 << 423 << 424 << 418 << 425;
+NumList LWizard::overrideIds = NumList() << 453 << 454 << 455 << 456 << 108 << 25 << 184 << 20 << 40;
+NumList LWizardPage::overrideIds = NumList() << 457 << 458 << 459 << 453 << 460;
NumList LAbstractGraphicsShapeItem::overrideIds = NumList() << 268 << 269;
NumList LAccessible::overrideIds = NumList();
-NumList LAccessibleEditableTextInterface::overrideIds = NumList() << 430 << 431 << 432;
-NumList LAccessibleEvent::overrideIds = NumList() << 433;
-NumList LAccessibleInterface::overrideIds = NumList() << 434 << 435 << 436 << 437 << 438 << 439 << 440 << 441 << 442 << 443 << 444 << 445 << 446 << 447 << 448;
+NumList LAccessibleEditableTextInterface::overrideIds = NumList() << 465 << 466 << 467;
+NumList LAccessibleEvent::overrideIds = NumList() << 468;
+NumList LAccessibleInterface::overrideIds = NumList() << 469 << 470 << 471 << 472 << 473 << 474 << 475 << 476 << 477 << 478 << 479 << 480 << 481 << 482 << 483;
NumList LAccessibleStateChangeEvent::overrideIds = NumList();
NumList LAccessibleTextCursorEvent::overrideIds = NumList();
NumList LAccessibleTextInsertEvent::overrideIds = NumList();
-NumList LAccessibleTextInterface::overrideIds = NumList() << 449 << 450 << 451 << 452 << 453 << 454 << 455 << 456 << 457 << 458 << 459;
+NumList LAccessibleTextInterface::overrideIds = NumList() << 484 << 485 << 486 << 487 << 488 << 489 << 490 << 491 << 492 << 493 << 494;
NumList LAccessibleTextRemoveEvent::overrideIds = NumList();
NumList LAccessibleTextSelectionEvent::overrideIds = NumList();
NumList LAccessibleTextUpdateEvent::overrideIds = NumList();
NumList LAccessibleValueChangeEvent::overrideIds = NumList();
-NumList LAccessibleValueInterface::overrideIds = NumList() << 460 << 461 << 462 << 463 << 464;
-NumList LAccessibleWidget::overrideIds = NumList() << 465 << 434 << 435 << 437 << 466 << 438 << 439 << 440 << 441 << 467 << 443 << 444 << 445 << 447 << 448;
+NumList LAccessibleValueInterface::overrideIds = NumList() << 495 << 496 << 497 << 498 << 499;
+NumList LAccessibleWidget::overrideIds = NumList() << 500 << 469 << 470 << 472 << 501 << 473 << 474 << 475 << 476 << 502 << 478 << 479 << 480 << 482 << 483;
NumList LActionEvent::overrideIds = NumList();
NumList LBackingStore::overrideIds = NumList();
NumList LBasicTimer::overrideIds = NumList();
@@ -329,7 +339,7 @@ NumList LEnterEvent::overrideIds = NumList();
NumList LEvent::overrideIds = NumList();
NumList LEventLoopLocker::overrideIds = NumList();
NumList LExposeEvent::overrideIds = NumList();
-NumList LFileIconProvider::overrideIds = NumList() << 468 << 469 << 470;
+NumList LFileIconProvider::overrideIds = NumList() << 503 << 504 << 505;
NumList LFileInfo::overrideIds = NumList();
NumList LFileOpenEvent::overrideIds = NumList();
NumList LFocusEvent::overrideIds = NumList();
@@ -340,15 +350,15 @@ NumList LFontMetrics::overrideIds = NumList();
NumList LFontMetricsF::overrideIds = NumList();
NumList LGestureEvent::overrideIds = NumList();
NumList LGradient::overrideIds = NumList();
-NumList LGraphicsAnchorLayout::overrideIds = NumList() << 163 << 165 << 166 << 471 << 232 << 249;
+NumList LGraphicsAnchorLayout::overrideIds = NumList() << 163 << 165 << 166 << 506 << 232 << 249;
NumList LGraphicsEllipseItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233;
-NumList LGraphicsGridLayout::overrideIds = NumList() << 163 << 165 << 166 << 471 << 232 << 249;
-NumList LGraphicsItem::overrideIds = NumList() << 426 << 260 << 427 << 428 << 267 << 268 << 269 << 231 << 261 << 233 << 234 << 235 << 236 << 237 << 238 << 13 << 14 << 240 << 241 << 242 << 36 << 23 << 243 << 15 << 16 << 244 << 245 << 246 << 247 << 262 << 429 << 251;
+NumList LGraphicsGridLayout::overrideIds = NumList() << 163 << 165 << 166 << 506 << 232 << 249;
+NumList LGraphicsItem::overrideIds = NumList() << 461 << 260 << 462 << 463 << 267 << 268 << 269 << 231 << 261 << 233 << 234 << 235 << 236 << 237 << 238 << 13 << 14 << 240 << 241 << 242 << 36 << 23 << 243 << 15 << 16 << 244 << 245 << 246 << 247 << 262 << 464 << 251;
NumList LGraphicsItemGroup::overrideIds = NumList() << 260 << 268 << 269 << 231 << 233;
-NumList LGraphicsLayout::overrideIds = NumList() << 163 << 165 << 166 << 471 << 472 << 263;
+NumList LGraphicsLayout::overrideIds = NumList() << 163 << 165 << 166 << 506 << 507 << 263;
NumList LGraphicsLayoutItem::overrideIds = NumList() << 232 << 263 << 249;
NumList LGraphicsLineItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233;
-NumList LGraphicsLinearLayout::overrideIds = NumList() << 163 << 165 << 166 << 471 << 232 << 249;
+NumList LGraphicsLinearLayout::overrideIds = NumList() << 163 << 165 << 166 << 506 << 232 << 249;
NumList LGraphicsPathItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233;
NumList LGraphicsPixmapItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233;
NumList LGraphicsPolygonItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233;
@@ -372,15 +382,15 @@ NumList LImage::overrideIds = NumList();
NumList LInputEvent::overrideIds = NumList();
NumList LInputMethodEvent::overrideIds = NumList();
NumList LInputMethodQueryEvent::overrideIds = NumList();
-NumList LItemEditorCreatorBase::overrideIds = NumList() << 416 << 473;
-NumList LItemEditorFactory::overrideIds = NumList() << 474 << 475;
+NumList LItemEditorCreatorBase::overrideIds = NumList() << 451 << 508;
+NumList LItemEditorFactory::overrideIds = NumList() << 509 << 510;
NumList LItemSelectionRange::overrideIds = NumList();
NumList LKeyEvent::overrideIds = NumList();
NumList LKeySequence::overrideIds = NumList();
-NumList LLayoutItem::overrideIds = NumList() << 173 << 164 << 174 << 21 << 22 << 165 << 175 << 176 << 167 << 168 << 169 << 170 << 25 << 476 << 477;
+NumList LLayoutItem::overrideIds = NumList() << 173 << 164 << 174 << 21 << 22 << 165 << 175 << 176 << 167 << 168 << 169 << 170 << 25 << 511 << 512;
NumList LLibraryInfo::overrideIds = NumList();
NumList LLinearGradient::overrideIds = NumList();
-NumList LListWidgetItem::overrideIds = NumList() << 478 << 479 << 480;
+NumList LListWidgetItem::overrideIds = NumList() << 513 << 514 << 515;
NumList LLocale::overrideIds = NumList();
NumList LMargins::overrideIds = NumList();
NumList LMarginsF::overrideIds = NumList();
@@ -393,7 +403,7 @@ NumList LMouseEvent::overrideIds = NumList();
NumList LMoveEvent::overrideIds = NumList();
NumList LOpenGLFramebufferObject::overrideIds = NumList();
NumList LOpenGLFramebufferObjectFormat::overrideIds = NumList();
-NumList LOpenGLPaintDevice::overrideIds = NumList() << 482 << 483;
+NumList LOpenGLPaintDevice::overrideIds = NumList() << 517 << 518;
NumList LOpenGLTexture::overrideIds = NumList();
NumList LPageLayout::overrideIds = NumList();
NumList LPageSize::overrideIds = NumList();
@@ -404,7 +414,7 @@ NumList LPainterPathStroker::overrideIds = NumList();
NumList LPalette::overrideIds = NumList();
NumList LPen::overrideIds = NumList();
NumList LPersistentModelIndex::overrideIds = NumList();
-NumList LPicture::overrideIds = NumList() << 484;
+NumList LPicture::overrideIds = NumList() << 519;
NumList LPixmap::overrideIds = NumList();
NumList LPixmapCache::overrideIds = NumList();
NumList LPrinter::overrideIds = NumList() << 313;
@@ -416,22 +426,22 @@ NumList LRegExp::overrideIds = NumList();
NumList LRegion::overrideIds = NumList();
NumList LRegularExpression::overrideIds = NumList();
NumList LResizeEvent::overrideIds = NumList();
-NumList LRunnable::overrideIds = NumList() << 487;
+NumList LRunnable::overrideIds = NumList() << 536;
NumList LScrollEvent::overrideIds = NumList();
NumList LScrollPrepareEvent::overrideIds = NumList();
NumList LSemaphore::overrideIds = NumList();
NumList LShortcutEvent::overrideIds = NumList();
NumList LShowEvent::overrideIds = NumList();
NumList LSizePolicy::overrideIds = NumList();
-NumList LSpacerItem::overrideIds = NumList() << 164 << 174 << 175 << 167 << 169 << 170 << 25 << 476;
-NumList LStandardItem::overrideIds = NumList() << 478 << 479 << 507 << 233;
+NumList LSpacerItem::overrideIds = NumList() << 164 << 174 << 175 << 167 << 169 << 170 << 25 << 511;
+NumList LStandardItem::overrideIds = NumList() << 513 << 514 << 560 << 233;
NumList LStatusTipEvent::overrideIds = NumList();
NumList LStorageInfo::overrideIds = NumList();
NumList LStyleOption::overrideIds = NumList();
NumList LStyleOptionGraphicsItem::overrideIds = NumList();
NumList LSurfaceFormat::overrideIds = NumList();
NumList LSystemSemaphore::overrideIds = NumList();
-NumList LTableWidgetItem::overrideIds = NumList() << 478 << 479 << 480;
+NumList LTableWidgetItem::overrideIds = NumList() << 513 << 514 << 515;
NumList LTableWidgetSelectionRange::overrideIds = NumList();
NumList LTabletEvent::overrideIds = NumList();
NumList LTextBlock::overrideIds = NumList();
@@ -439,7 +449,7 @@ NumList LTextBlockFormat::overrideIds = NumList();
NumList LTextBlockUserData::overrideIds = NumList();
NumList LTextBoundaryFinder::overrideIds = NumList();
NumList LTextCharFormat::overrideIds = NumList();
-NumList LTextCodec::overrideIds = NumList() << 508 << 509 << 510 << 511 << 512;
+NumList LTextCodec::overrideIds = NumList() << 561 << 562 << 563 << 564 << 565;
NumList LTextCursor::overrideIds = NumList();
NumList LTextDecoder::overrideIds = NumList();
NumList LTextDocumentFragment::overrideIds = NumList();
@@ -464,8 +474,8 @@ NumList LToolTip::overrideIds = NumList();
NumList LTouchDevice::overrideIds = NumList();
NumList LTouchEvent::overrideIds = NumList();
NumList LTransform::overrideIds = NumList();
-NumList LTreeWidgetItem::overrideIds = NumList() << 478 << 513 << 514;
-NumList LUndoCommand::overrideIds = NumList() << 515 << 516 << 517 << 518;
+NumList LTreeWidgetItem::overrideIds = NumList() << 513 << 566 << 567;
+NumList LUndoCommand::overrideIds = NumList() << 568 << 569 << 570 << 571;
NumList LUrl::overrideIds = NumList();
NumList LUuid::overrideIds = NumList();
NumList LVariant::overrideIds = NumList();
@@ -475,7 +485,7 @@ NumList LVector4D::overrideIds = NumList();
NumList LWhatsThis::overrideIds = NumList();
NumList LWhatsThisClickedEvent::overrideIds = NumList();
NumList LWheelEvent::overrideIds = NumList();
-NumList LWidgetItem::overrideIds = NumList() << 173 << 164 << 174 << 21 << 22 << 175 << 167 << 169 << 170 << 25 << 477;
+NumList LWidgetItem::overrideIds = NumList() << 173 << 164 << 174 << 21 << 22 << 175 << 167 << 169 << 170 << 25 << 512;
NumList LWindowStateChangeEvent::overrideIds = NumList();
void LObjects::ini(EQL* e) {
@@ -484,8 +494,8 @@ void LObjects::ini(EQL* e) {
ok = true;
eql = e;
dynObject = new DynObject;
- Q = new QObject* [250]; for(int i = 0; i < 250; ++i) { Q[i] = 0; }
- N = new QObject* [246]; for(int i = 0; i < 246; ++i) { N[i] = 0; }
+ Q = new QObject* [276]; for(int i = 0; i < 276; ++i) { Q[i] = 0; }
+ N = new QObject* [276]; for(int i = 0; i < 276; ++i) { N[i] = 0; }
Q[0] = new Q1;
Q[1] = new Q2;
Q[2] = new Q3;
@@ -574,7 +584,6 @@ void LObjects::ini(EQL* e) {
Q[108] = new Q109;
Q[109] = new Q110;
Q[110] = new Q111;
- Q[111] = new Q112;
Q[112] = new Q113;
Q[113] = new Q114;
Q[114] = new Q115;
@@ -582,17 +591,16 @@ void LObjects::ini(EQL* e) {
Q[116] = new Q117;
Q[117] = new Q118;
Q[118] = new Q119;
- Q[121] = new Q122;
+ Q[119] = new Q120;
Q[122] = new Q123;
Q[123] = new Q124;
- Q[129] = new Q130;
- Q[130] = new Q131;
+ Q[124] = new Q125;
Q[131] = new Q132;
Q[132] = new Q133;
Q[133] = new Q134;
Q[134] = new Q135;
- Q[139] = new Q140;
- Q[140] = new Q141;
+ Q[135] = new Q136;
+ Q[136] = new Q137;
Q[141] = new Q142;
Q[142] = new Q143;
Q[143] = new Q144;
@@ -618,34 +626,17 @@ void LObjects::ini(EQL* e) {
Q[163] = new Q164;
Q[164] = new Q165;
Q[165] = new Q166;
- Q[167] = new Q168;
- Q[168] = new Q169;
- Q[169] = new Q170;
- Q[170] = new Q171;
- Q[171] = new Q172;
- Q[172] = new Q173;
- Q[173] = new Q174;
- Q[174] = new Q175;
- Q[175] = new Q176;
- Q[176] = new Q177;
- Q[177] = new Q178;
- Q[178] = new Q179;
- Q[179] = new Q180;
- Q[180] = new Q181;
- Q[181] = new Q182;
- Q[182] = new Q183;
- Q[183] = new Q184;
- Q[184] = new Q185;
- Q[190] = new Q191;
- Q[191] = new Q192;
- Q[192] = new Q193;
- Q[193] = new Q194;
- Q[194] = new Q195;
+ Q[166] = new Q167;
+ Q[186] = new Q187;
+ Q[188] = new Q189;
+ Q[189] = new Q190;
Q[195] = new Q196;
Q[196] = new Q197;
Q[197] = new Q198;
Q[198] = new Q199;
Q[199] = new Q200;
+ Q[200] = new Q201;
+ Q[201] = new Q202;
Q[202] = new Q203;
Q[203] = new Q204;
Q[204] = new Q205;
@@ -655,9 +646,6 @@ void LObjects::ini(EQL* e) {
Q[208] = new Q209;
Q[209] = new Q210;
Q[210] = new Q211;
- Q[213] = new Q214;
- Q[214] = new Q215;
- Q[215] = new Q216;
Q[216] = new Q217;
Q[217] = new Q218;
Q[218] = new Q219;
@@ -668,21 +656,43 @@ void LObjects::ini(EQL* e) {
Q[223] = new Q224;
Q[224] = new Q225;
Q[225] = new Q226;
- Q[226] = new Q227;
- Q[227] = new Q228;
Q[228] = new Q229;
Q[229] = new Q230;
+ Q[230] = new Q231;
Q[231] = new Q232;
Q[232] = new Q233;
Q[233] = new Q234;
Q[234] = new Q235;
Q[235] = new Q236;
Q[236] = new Q237;
+ Q[239] = new Q240;
+ Q[240] = new Q241;
+ Q[241] = new Q242;
+ Q[242] = new Q243;
+ Q[243] = new Q244;
+ Q[244] = new Q245;
Q[245] = new Q246;
Q[246] = new Q247;
Q[247] = new Q248;
Q[248] = new Q249;
Q[249] = new Q250;
+ Q[250] = new Q251;
+ Q[251] = new Q252;
+ Q[252] = new Q253;
+ Q[253] = new Q254;
+ Q[254] = new Q255;
+ Q[255] = new Q256;
+ Q[257] = new Q258;
+ Q[258] = new Q259;
+ Q[259] = new Q260;
+ Q[260] = new Q261;
+ Q[261] = new Q262;
+ Q[262] = new Q263;
+ Q[271] = new Q272;
+ Q[272] = new Q273;
+ Q[273] = new Q274;
+ Q[274] = new Q275;
+ Q[275] = new Q276;
N[0] = new N1;
N[1] = new N2;
N[2] = new N3;
@@ -774,8 +784,6 @@ void LObjects::ini(EQL* e) {
N[100] = new N101;
N[101] = new N102;
N[102] = new N103;
- N[103] = new N104;
- N[104] = new N105;
N[105] = new N106;
N[106] = new N107;
N[107] = new N108;
@@ -785,13 +793,13 @@ void LObjects::ini(EQL* e) {
N[111] = new N112;
N[112] = new N113;
N[113] = new N114;
- N[116] = new N117;
- N[117] = new N118;
+ N[114] = new N115;
+ N[115] = new N116;
N[118] = new N119;
N[119] = new N120;
N[120] = new N121;
- N[130] = new N131;
- N[131] = new N132;
+ N[121] = new N122;
+ N[122] = new N123;
N[132] = new N133;
N[133] = new N134;
N[134] = new N135;
@@ -813,27 +821,13 @@ void LObjects::ini(EQL* e) {
N[150] = new N151;
N[151] = new N152;
N[152] = new N153;
- N[153] = new N154;
- N[154] = new N155;
- N[155] = new N156;
- N[156] = new N157;
- N[157] = new N158;
- N[158] = new N159;
- N[159] = new N160;
- N[160] = new N161;
- N[161] = new N162;
- N[162] = new N163;
N[163] = new N164;
- N[164] = new N165;
- N[178] = new N179;
- N[179] = new N180;
- N[180] = new N181;
- N[181] = new N182;
- N[182] = new N183;
- N[183] = new N184;
- N[184] = new N185;
- N[185] = new N186;
- N[187] = new N188;
+ N[166] = new N167;
+ N[167] = new N168;
+ N[168] = new N169;
+ N[169] = new N170;
+ N[170] = new N171;
+ N[171] = new N172;
N[188] = new N189;
N[189] = new N190;
N[190] = new N191;
@@ -841,19 +835,6 @@ void LObjects::ini(EQL* e) {
N[192] = new N193;
N[193] = new N194;
N[194] = new N195;
- N[195] = new N196;
- N[196] = new N197;
- N[197] = new N198;
- N[198] = new N199;
- N[199] = new N200;
- N[200] = new N201;
- N[201] = new N202;
- N[202] = new N203;
- N[203] = new N204;
- N[204] = new N205;
- N[205] = new N206;
- N[206] = new N207;
- N[207] = new N208;
N[208] = new N209;
N[209] = new N210;
N[210] = new N211;
@@ -862,7 +843,6 @@ void LObjects::ini(EQL* e) {
N[213] = new N214;
N[214] = new N215;
N[215] = new N216;
- N[216] = new N217;
N[217] = new N218;
N[218] = new N219;
N[219] = new N220;
@@ -876,11 +856,41 @@ void LObjects::ini(EQL* e) {
N[227] = new N228;
N[228] = new N229;
N[229] = new N230;
+ N[230] = new N231;
+ N[231] = new N232;
+ N[232] = new N233;
+ N[233] = new N234;
+ N[234] = new N235;
+ N[235] = new N236;
+ N[236] = new N237;
+ N[237] = new N238;
+ N[238] = new N239;
+ N[239] = new N240;
+ N[240] = new N241;
N[241] = new N242;
N[242] = new N243;
N[243] = new N244;
N[244] = new N245;
N[245] = new N246;
+ N[246] = new N247;
+ N[247] = new N248;
+ N[248] = new N249;
+ N[249] = new N250;
+ N[250] = new N251;
+ N[251] = new N252;
+ N[252] = new N253;
+ N[253] = new N254;
+ N[254] = new N255;
+ N[255] = new N256;
+ N[256] = new N257;
+ N[257] = new N258;
+ N[258] = new N259;
+ N[259] = new N260;
+ N[271] = new N272;
+ N[272] = new N273;
+ N[273] = new N274;
+ N[274] = new N275;
+ N[275] = new N276;
q_names["QAbstractAnimation"] = 1;
q_names["QAbstractButton"] = 2;
q_names["QAbstractItemDelegate"] = 3;
@@ -992,145 +1002,171 @@ void LObjects::ini(EQL* e) {
q_names["QIntValidator"] = 109;
q_names["QItemDelegate"] = 110;
q_names["QItemSelectionModel"] = 111;
- q_names["QKeyEventTransition"] = 112;
- q_names["QLCDNumber"] = 113;
- q_names["QLabel"] = 114;
- q_names["QLayout"] = 115;
- q_names["QLibrary"] = 116;
- q_names["QLineEdit"] = 117;
- q_names["QListView"] = 118;
- q_names["QListWidget"] = 119;
- q_names["QLocalServer"] = 120;
- q_names["QLocalSocket"] = 121;
- q_names["QMainWindow"] = 122;
- q_names["QMdiArea"] = 123;
- q_names["QMdiSubWindow"] = 124;
- q_names["QMediaObject"] = 125;
- q_names["QMediaPlayer"] = 126;
- q_names["QMediaPlaylist"] = 127;
- q_names["QMediaRecorder"] = 128;
- q_names["QMediaService"] = 129;
- q_names["QMenu"] = 130;
- q_names["QMenuBar"] = 131;
- q_names["QMessageBox"] = 132;
- q_names["QMimeData"] = 133;
- q_names["QMouseEventTransition"] = 134;
- q_names["QMovie"] = 135;
- q_names["QNetworkAccessManager"] = 136;
- q_names["QNetworkCookieJar"] = 137;
- q_names["QNetworkDiskCache"] = 138;
- q_names["QNetworkReply"] = 139;
- q_names["QObject"] = 140;
- q_names["QObjectCleanupHandler"] = 141;
- q_names["QOpenGLContext"] = 142;
- q_names["QOpenGLShader"] = 143;
- q_names["QOpenGLShaderProgram"] = 144;
- q_names["QOpenGLWidget"] = 145;
- q_names["QOpenGLWindow"] = 146;
- q_names["QPageSetupDialog"] = 147;
- q_names["QPaintDeviceWindow"] = 148;
- q_names["QPanGesture"] = 149;
- q_names["QParallelAnimationGroup"] = 150;
- q_names["QPauseAnimation"] = 151;
- q_names["QPdfWriter"] = 152;
- q_names["QPinchGesture"] = 153;
- q_names["QPlainTextDocumentLayout"] = 154;
- q_names["QPlainTextEdit"] = 155;
- q_names["QPluginLoader"] = 156;
- q_names["QPrintDialog"] = 157;
- q_names["QPrintPreviewDialog"] = 158;
- q_names["QPrintPreviewWidget"] = 159;
- q_names["QProcess"] = 160;
- q_names["QProgressBar"] = 161;
- q_names["QProgressDialog"] = 162;
- q_names["QPropertyAnimation"] = 163;
- q_names["QProxyStyle"] = 164;
- q_names["QPushButton"] = 165;
- q_names["QRadioButton"] = 166;
- q_names["QRadioTuner"] = 167;
- q_names["QRegExpValidator"] = 168;
- q_names["QRubberBand"] = 169;
- q_names["QScreen"] = 170;
- q_names["QScrollArea"] = 171;
- q_names["QScrollBar"] = 172;
- q_names["QSequentialAnimationGroup"] = 173;
- q_names["QSessionManager"] = 174;
- q_names["QSettings"] = 175;
- q_names["QShortcut"] = 176;
- q_names["QSignalMapper"] = 177;
- q_names["QSignalTransition"] = 178;
- q_names["QSizeGrip"] = 179;
- q_names["QSlider"] = 180;
- q_names["QSortFilterProxyModel"] = 181;
- q_names["QSpinBox"] = 182;
- q_names["QSplashScreen"] = 183;
- q_names["QSplitter"] = 184;
- q_names["QSplitterHandle"] = 185;
- q_names["QSqlDriver"] = 186;
- q_names["QSqlQueryModel"] = 187;
- q_names["QSqlRelationalDelegate"] = 188;
- q_names["QSqlRelationalTableModel"] = 189;
- q_names["QSqlTableModel"] = 190;
- q_names["QStackedLayout"] = 191;
- q_names["QStackedWidget"] = 192;
- q_names["QStandardItemModel"] = 193;
- q_names["QState"] = 194;
- q_names["QStateMachine"] = 195;
- q_names["QStatusBar"] = 196;
- q_names["QStringListModel"] = 197;
- q_names["QStyle"] = 198;
- q_names["QStyleHints"] = 199;
- q_names["QStyledItemDelegate"] = 200;
- q_names["QSvgRenderer"] = 201;
- q_names["QSvgWidget"] = 202;
- q_names["QSwipeGesture"] = 203;
- q_names["QSyntaxHighlighter"] = 204;
- q_names["QSystemTrayIcon"] = 205;
- q_names["QTabBar"] = 206;
- q_names["QTabWidget"] = 207;
- q_names["QTableView"] = 208;
- q_names["QTableWidget"] = 209;
- q_names["QTapAndHoldGesture"] = 210;
- q_names["QTapGesture"] = 211;
- q_names["QTcpServer"] = 212;
- q_names["QTcpSocket"] = 213;
- q_names["QTextBlockGroup"] = 214;
- q_names["QTextBrowser"] = 215;
- q_names["QTextDocument"] = 216;
- q_names["QTextEdit"] = 217;
- q_names["QTextFrame"] = 218;
- q_names["QTextList"] = 219;
- q_names["QTextObject"] = 220;
- q_names["QTextTable"] = 221;
- q_names["QTimeEdit"] = 222;
- q_names["QTimeLine"] = 223;
- q_names["QTimer"] = 224;
- q_names["QToolBar"] = 225;
- q_names["QToolBox"] = 226;
- q_names["QToolButton"] = 227;
- q_names["QTranslator"] = 228;
- q_names["QTreeView"] = 229;
- q_names["QTreeWidget"] = 230;
- q_names["QUdpSocket"] = 231;
- q_names["QUndoGroup"] = 232;
- q_names["QUndoStack"] = 233;
- q_names["QUndoView"] = 234;
- q_names["QVBoxLayout"] = 235;
- q_names["QValidator"] = 236;
- q_names["QVariantAnimation"] = 237;
- q_names["QVideoWidget"] = 238;
- q_names["QVideoWidgetControl"] = 239;
- q_names["QWebFrame"] = 240;
- q_names["QWebHistoryInterface"] = 241;
- q_names["QWebInspector"] = 242;
- q_names["QWebPage"] = 243;
- q_names["QWebPluginFactory"] = 244;
- q_names["QWebView"] = 245;
- q_names["QWidget"] = 246;
- q_names["QWidgetAction"] = 247;
- q_names["QWindow"] = 248;
- q_names["QWizard"] = 249;
- q_names["QWizardPage"] = 250;
+ q_names["QJSEngine"] = 112;
+ q_names["QKeyEventTransition"] = 113;
+ q_names["QLCDNumber"] = 114;
+ q_names["QLabel"] = 115;
+ q_names["QLayout"] = 116;
+ q_names["QLibrary"] = 117;
+ q_names["QLineEdit"] = 118;
+ q_names["QListView"] = 119;
+ q_names["QListWidget"] = 120;
+ q_names["QLocalServer"] = 121;
+ q_names["QLocalSocket"] = 122;
+ q_names["QMainWindow"] = 123;
+ q_names["QMdiArea"] = 124;
+ q_names["QMdiSubWindow"] = 125;
+ q_names["QMediaControl"] = 126;
+ q_names["QMediaObject"] = 127;
+ q_names["QMediaPlayer"] = 128;
+ q_names["QMediaPlaylist"] = 129;
+ q_names["QMediaRecorder"] = 130;
+ q_names["QMediaService"] = 131;
+ q_names["QMenu"] = 132;
+ q_names["QMenuBar"] = 133;
+ q_names["QMessageBox"] = 134;
+ q_names["QMimeData"] = 135;
+ q_names["QMouseEventTransition"] = 136;
+ q_names["QMovie"] = 137;
+ q_names["QNetworkAccessManager"] = 138;
+ q_names["QNetworkCookieJar"] = 139;
+ q_names["QNetworkDiskCache"] = 140;
+ q_names["QNetworkReply"] = 141;
+ q_names["QObject"] = 142;
+ q_names["QObjectCleanupHandler"] = 143;
+ q_names["QOpenGLContext"] = 144;
+ q_names["QOpenGLShader"] = 145;
+ q_names["QOpenGLShaderProgram"] = 146;
+ q_names["QOpenGLWidget"] = 147;
+ q_names["QOpenGLWindow"] = 148;
+ q_names["QPageSetupDialog"] = 149;
+ q_names["QPaintDeviceWindow"] = 150;
+ q_names["QPanGesture"] = 151;
+ q_names["QParallelAnimationGroup"] = 152;
+ q_names["QPauseAnimation"] = 153;
+ q_names["QPdfWriter"] = 154;
+ q_names["QPinchGesture"] = 155;
+ q_names["QPlainTextDocumentLayout"] = 156;
+ q_names["QPlainTextEdit"] = 157;
+ q_names["QPluginLoader"] = 158;
+ q_names["QPrintDialog"] = 159;
+ q_names["QPrintPreviewDialog"] = 160;
+ q_names["QPrintPreviewWidget"] = 161;
+ q_names["QProcess"] = 162;
+ q_names["QProgressBar"] = 163;
+ q_names["QProgressDialog"] = 164;
+ q_names["QPropertyAnimation"] = 165;
+ q_names["QProxyStyle"] = 166;
+ q_names["QPushButton"] = 167;
+ q_names["QQmlApplicationEngine"] = 168;
+ q_names["QQmlComponent"] = 169;
+ q_names["QQmlContext"] = 170;
+ q_names["QQmlEngine"] = 171;
+ q_names["QQmlExpression"] = 172;
+ q_names["QQmlExtensionPlugin"] = 173;
+ q_names["QQmlFileSelector"] = 174;
+ q_names["QQmlPropertyMap"] = 175;
+ q_names["QQuickFramebufferObject"] = 176;
+ q_names["QQuickImageResponse"] = 177;
+ q_names["QQuickItem"] = 178;
+ q_names["QQuickItemGrabResult"] = 179;
+ q_names["QQuickPaintedItem"] = 180;
+ q_names["QQuickRenderControl"] = 181;
+ q_names["QQuickTextDocument"] = 182;
+ q_names["QQuickTextureFactory"] = 183;
+ q_names["QQuickView"] = 184;
+ q_names["QQuickWidget"] = 185;
+ q_names["QQuickWindow"] = 186;
+ q_names["QRadioButton"] = 187;
+ q_names["QRadioTuner"] = 188;
+ q_names["QRegExpValidator"] = 189;
+ q_names["QRubberBand"] = 190;
+ q_names["QSGAbstractRenderer"] = 191;
+ q_names["QSGDynamicTexture"] = 192;
+ q_names["QSGEngine"] = 193;
+ q_names["QSGTexture"] = 194;
+ q_names["QSGTextureProvider"] = 195;
+ q_names["QScreen"] = 196;
+ q_names["QScrollArea"] = 197;
+ q_names["QScrollBar"] = 198;
+ q_names["QSequentialAnimationGroup"] = 199;
+ q_names["QSessionManager"] = 200;
+ q_names["QSettings"] = 201;
+ q_names["QShortcut"] = 202;
+ q_names["QSignalMapper"] = 203;
+ q_names["QSignalTransition"] = 204;
+ q_names["QSizeGrip"] = 205;
+ q_names["QSlider"] = 206;
+ q_names["QSortFilterProxyModel"] = 207;
+ q_names["QSpinBox"] = 208;
+ q_names["QSplashScreen"] = 209;
+ q_names["QSplitter"] = 210;
+ q_names["QSplitterHandle"] = 211;
+ q_names["QSqlDriver"] = 212;
+ q_names["QSqlQueryModel"] = 213;
+ q_names["QSqlRelationalDelegate"] = 214;
+ q_names["QSqlRelationalTableModel"] = 215;
+ q_names["QSqlTableModel"] = 216;
+ q_names["QStackedLayout"] = 217;
+ q_names["QStackedWidget"] = 218;
+ q_names["QStandardItemModel"] = 219;
+ q_names["QState"] = 220;
+ q_names["QStateMachine"] = 221;
+ q_names["QStatusBar"] = 222;
+ q_names["QStringListModel"] = 223;
+ q_names["QStyle"] = 224;
+ q_names["QStyleHints"] = 225;
+ q_names["QStyledItemDelegate"] = 226;
+ q_names["QSvgRenderer"] = 227;
+ q_names["QSvgWidget"] = 228;
+ q_names["QSwipeGesture"] = 229;
+ q_names["QSyntaxHighlighter"] = 230;
+ q_names["QSystemTrayIcon"] = 231;
+ q_names["QTabBar"] = 232;
+ q_names["QTabWidget"] = 233;
+ q_names["QTableView"] = 234;
+ q_names["QTableWidget"] = 235;
+ q_names["QTapAndHoldGesture"] = 236;
+ q_names["QTapGesture"] = 237;
+ q_names["QTcpServer"] = 238;
+ q_names["QTcpSocket"] = 239;
+ q_names["QTextBlockGroup"] = 240;
+ q_names["QTextBrowser"] = 241;
+ q_names["QTextDocument"] = 242;
+ q_names["QTextEdit"] = 243;
+ q_names["QTextFrame"] = 244;
+ q_names["QTextList"] = 245;
+ q_names["QTextObject"] = 246;
+ q_names["QTextTable"] = 247;
+ q_names["QTimeEdit"] = 248;
+ q_names["QTimeLine"] = 249;
+ q_names["QTimer"] = 250;
+ q_names["QToolBar"] = 251;
+ q_names["QToolBox"] = 252;
+ q_names["QToolButton"] = 253;
+ q_names["QTranslator"] = 254;
+ q_names["QTreeView"] = 255;
+ q_names["QTreeWidget"] = 256;
+ q_names["QUdpSocket"] = 257;
+ q_names["QUndoGroup"] = 258;
+ q_names["QUndoStack"] = 259;
+ q_names["QUndoView"] = 260;
+ q_names["QVBoxLayout"] = 261;
+ q_names["QValidator"] = 262;
+ q_names["QVariantAnimation"] = 263;
+ q_names["QVideoWidget"] = 264;
+ q_names["QVideoWidgetControl"] = 265;
+ q_names["QWebFrame"] = 266;
+ q_names["QWebHistoryInterface"] = 267;
+ q_names["QWebInspector"] = 268;
+ q_names["QWebPage"] = 269;
+ q_names["QWebPluginFactory"] = 270;
+ q_names["QWebView"] = 271;
+ q_names["QWidget"] = 272;
+ q_names["QWidgetAction"] = 273;
+ q_names["QWindow"] = 274;
+ q_names["QWizard"] = 275;
+ q_names["QWizardPage"] = 276;
n_names["QAbstractGraphicsShapeItem"] = 1;
n_names["QAccessible"] = 2;
n_names["QAccessibleEditableTextInterface"] = 3;
@@ -1234,149 +1270,179 @@ void LObjects::ini(EQL* e) {
n_names["QItemEditorCreatorBase"] = 101;
n_names["QItemEditorFactory"] = 102;
n_names["QItemSelectionRange"] = 103;
- n_names["QKeyEvent"] = 104;
- n_names["QKeySequence"] = 105;
- n_names["QLayoutItem"] = 106;
- n_names["QLibraryInfo"] = 107;
- n_names["QLinearGradient"] = 108;
- n_names["QListWidgetItem"] = 109;
- n_names["QLocale"] = 110;
- n_names["QMargins"] = 111;
- n_names["QMarginsF"] = 112;
- n_names["QMatrix"] = 113;
- n_names["QMatrix4x4"] = 114;
- n_names["QMediaContent"] = 115;
- n_names["QMediaResource"] = 116;
- n_names["QMessageAuthenticationCode"] = 117;
- n_names["QMetaObject"] = 118;
- n_names["QModelIndex"] = 119;
- n_names["QMouseEvent"] = 120;
- n_names["QMoveEvent"] = 121;
- n_names["QNetworkAddressEntry"] = 122;
- n_names["QNetworkCacheMetaData"] = 123;
- n_names["QNetworkConfiguration"] = 124;
- n_names["QNetworkCookie"] = 125;
- n_names["QNetworkInterface"] = 126;
- n_names["QNetworkProxy"] = 127;
- n_names["QNetworkProxyFactory"] = 128;
- n_names["QNetworkProxyQuery"] = 129;
- n_names["QNetworkRequest"] = 130;
- n_names["QOpenGLFramebufferObject"] = 131;
- n_names["QOpenGLFramebufferObjectFormat"] = 132;
- n_names["QOpenGLPaintDevice"] = 133;
- n_names["QOpenGLTexture"] = 134;
- n_names["QPageLayout"] = 135;
- n_names["QPageSize"] = 136;
- n_names["QPagedPaintDevice"] = 137;
- n_names["QPaintDevice"] = 138;
- n_names["QPaintEvent"] = 139;
- n_names["QPainter"] = 140;
- n_names["QPainterPath"] = 141;
- n_names["QPainterPathStroker"] = 142;
- n_names["QPalette"] = 143;
- n_names["QPen"] = 144;
- n_names["QPersistentModelIndex"] = 145;
- n_names["QPicture"] = 146;
- n_names["QPixmap"] = 147;
- n_names["QPixmapCache"] = 148;
- n_names["QPrinter"] = 149;
- n_names["QPrinterInfo"] = 150;
- n_names["QProcessEnvironment"] = 151;
- n_names["QQuaternion"] = 152;
- n_names["QRadialGradient"] = 153;
- n_names["QRegExp"] = 154;
- n_names["QRegion"] = 155;
- n_names["QRegularExpression"] = 156;
- n_names["QResizeEvent"] = 157;
- n_names["QRunnable"] = 158;
- n_names["QScrollEvent"] = 159;
- n_names["QScrollPrepareEvent"] = 160;
- n_names["QSemaphore"] = 161;
- n_names["QShortcutEvent"] = 162;
- n_names["QShowEvent"] = 163;
- n_names["QSizePolicy"] = 164;
- n_names["QSpacerItem"] = 165;
- n_names["QSqlDatabase"] = 166;
- n_names["QSqlError"] = 167;
- n_names["QSqlField"] = 168;
- n_names["QSqlIndex"] = 169;
- n_names["QSqlQuery"] = 170;
- n_names["QSqlRecord"] = 171;
- n_names["QSqlRelation"] = 172;
- n_names["QSqlResult"] = 173;
- n_names["QSslCertificate"] = 174;
- n_names["QSslCipher"] = 175;
- n_names["QSslConfiguration"] = 176;
- n_names["QSslError"] = 177;
- n_names["QSslKey"] = 178;
- n_names["QStandardItem"] = 179;
- n_names["QStandardPaths"] = 180;
- n_names["QStatusTipEvent"] = 181;
- n_names["QStorageInfo"] = 182;
- n_names["QStyleOption"] = 183;
- n_names["QStyleOptionGraphicsItem"] = 184;
- n_names["QSurface"] = 185;
- n_names["QSurfaceFormat"] = 186;
- n_names["QSvgGenerator"] = 187;
- n_names["QSysInfo"] = 188;
- n_names["QSystemSemaphore"] = 189;
- n_names["QTableWidgetItem"] = 190;
- n_names["QTableWidgetSelectionRange"] = 191;
- n_names["QTabletEvent"] = 192;
- n_names["QTextBlock"] = 193;
- n_names["QTextBlockFormat"] = 194;
- n_names["QTextBlockUserData"] = 195;
- n_names["QTextBoundaryFinder"] = 196;
- n_names["QTextCharFormat"] = 197;
- n_names["QTextCodec"] = 198;
- n_names["QTextCursor"] = 199;
- n_names["QTextDecoder"] = 200;
- n_names["QTextDocumentFragment"] = 201;
- n_names["QTextDocumentWriter"] = 202;
- n_names["QTextEncoder"] = 203;
- n_names["QTextFormat"] = 204;
- n_names["QTextFragment"] = 205;
- n_names["QTextFrameFormat"] = 206;
- n_names["QTextImageFormat"] = 207;
- n_names["QTextLayout"] = 208;
- n_names["QTextLength"] = 209;
- n_names["QTextLine"] = 210;
- n_names["QTextListFormat"] = 211;
- n_names["QTextOption"] = 212;
- n_names["QTextTableCell"] = 213;
- n_names["QTextTableCellFormat"] = 214;
- n_names["QTextTableFormat"] = 215;
- n_names["QTime"] = 216;
- n_names["QTimeZone"] = 217;
- n_names["QTimerEvent"] = 218;
- n_names["QToolTip"] = 219;
- n_names["QTouchDevice"] = 220;
- n_names["QTouchEvent"] = 221;
- n_names["QTransform"] = 222;
- n_names["QTreeWidgetItem"] = 223;
- n_names["QUndoCommand"] = 224;
- n_names["QUrl"] = 225;
- n_names["QUuid"] = 226;
- n_names["QVariant"] = 227;
- n_names["QVector2D"] = 228;
- n_names["QVector3D"] = 229;
- n_names["QVector4D"] = 230;
- n_names["QVideoEncoderSettings"] = 231;
- n_names["QVideoFrame"] = 232;
- n_names["QVideoSurfaceFormat"] = 233;
- n_names["QWebDatabase"] = 234;
- n_names["QWebElement"] = 235;
- n_names["QWebElementCollection"] = 236;
- n_names["QWebHistory"] = 237;
- n_names["QWebHistoryItem"] = 238;
- n_names["QWebHitTestResult"] = 239;
- n_names["QWebSecurityOrigin"] = 240;
- n_names["QWebSettings"] = 241;
- n_names["QWhatsThis"] = 242;
- n_names["QWhatsThisClickedEvent"] = 243;
- n_names["QWheelEvent"] = 244;
- n_names["QWidgetItem"] = 245;
- n_names["QWindowStateChangeEvent"] = 246;
+ n_names["QJSValue"] = 104;
+ n_names["QJSValueIterator"] = 105;
+ n_names["QKeyEvent"] = 106;
+ n_names["QKeySequence"] = 107;
+ n_names["QLayoutItem"] = 108;
+ n_names["QLibraryInfo"] = 109;
+ n_names["QLinearGradient"] = 110;
+ n_names["QListWidgetItem"] = 111;
+ n_names["QLocale"] = 112;
+ n_names["QMargins"] = 113;
+ n_names["QMarginsF"] = 114;
+ n_names["QMatrix"] = 115;
+ n_names["QMatrix4x4"] = 116;
+ n_names["QMediaContent"] = 117;
+ n_names["QMediaResource"] = 118;
+ n_names["QMessageAuthenticationCode"] = 119;
+ n_names["QMetaObject"] = 120;
+ n_names["QModelIndex"] = 121;
+ n_names["QMouseEvent"] = 122;
+ n_names["QMoveEvent"] = 123;
+ n_names["QNetworkAddressEntry"] = 124;
+ n_names["QNetworkCacheMetaData"] = 125;
+ n_names["QNetworkConfiguration"] = 126;
+ n_names["QNetworkCookie"] = 127;
+ n_names["QNetworkInterface"] = 128;
+ n_names["QNetworkProxy"] = 129;
+ n_names["QNetworkProxyFactory"] = 130;
+ n_names["QNetworkProxyQuery"] = 131;
+ n_names["QNetworkRequest"] = 132;
+ n_names["QOpenGLFramebufferObject"] = 133;
+ n_names["QOpenGLFramebufferObjectFormat"] = 134;
+ n_names["QOpenGLPaintDevice"] = 135;
+ n_names["QOpenGLTexture"] = 136;
+ n_names["QPageLayout"] = 137;
+ n_names["QPageSize"] = 138;
+ n_names["QPagedPaintDevice"] = 139;
+ n_names["QPaintDevice"] = 140;
+ n_names["QPaintEvent"] = 141;
+ n_names["QPainter"] = 142;
+ n_names["QPainterPath"] = 143;
+ n_names["QPainterPathStroker"] = 144;
+ n_names["QPalette"] = 145;
+ n_names["QPen"] = 146;
+ n_names["QPersistentModelIndex"] = 147;
+ n_names["QPicture"] = 148;
+ n_names["QPixmap"] = 149;
+ n_names["QPixmapCache"] = 150;
+ n_names["QPrinter"] = 151;
+ n_names["QPrinterInfo"] = 152;
+ n_names["QProcessEnvironment"] = 153;
+ n_names["QQmlAbstractUrlInterceptor"] = 154;
+ n_names["QQmlError"] = 155;
+ n_names["QQmlImageProviderBase"] = 156;
+ n_names["QQmlIncubationController"] = 157;
+ n_names["QQmlIncubator"] = 158;
+ n_names["QQmlNetworkAccessManagerFactory"] = 159;
+ n_names["QQmlParserStatus"] = 160;
+ n_names["QQmlProperty"] = 161;
+ n_names["QQmlPropertyValueSource"] = 162;
+ n_names["QQmlScriptString"] = 163;
+ n_names["QQuaternion"] = 164;
+ n_names["QQuickAsyncImageProvider"] = 165;
+ n_names["QQuickImageProvider"] = 166;
+ n_names["QRadialGradient"] = 167;
+ n_names["QRegExp"] = 168;
+ n_names["QRegion"] = 169;
+ n_names["QRegularExpression"] = 170;
+ n_names["QResizeEvent"] = 171;
+ n_names["QRunnable"] = 172;
+ n_names["QSGBasicGeometryNode"] = 173;
+ n_names["QSGClipNode"] = 174;
+ n_names["QSGFlatColorMaterial"] = 175;
+ n_names["QSGGeometry"] = 176;
+ n_names["QSGGeometryNode"] = 177;
+ n_names["QSGMaterial"] = 178;
+ n_names["QSGMaterialShader"] = 179;
+ n_names["QSGMaterialType"] = 180;
+ n_names["QSGNode"] = 181;
+ n_names["QSGOpacityNode"] = 182;
+ n_names["QSGOpaqueTextureMaterial"] = 183;
+ n_names["QSGSimpleRectNode"] = 184;
+ n_names["QSGSimpleTextureNode"] = 185;
+ n_names["QSGTextureMaterial"] = 186;
+ n_names["QSGTransformNode"] = 187;
+ n_names["QSGVertexColorMaterial"] = 188;
+ n_names["QScrollEvent"] = 189;
+ n_names["QScrollPrepareEvent"] = 190;
+ n_names["QSemaphore"] = 191;
+ n_names["QShortcutEvent"] = 192;
+ n_names["QShowEvent"] = 193;
+ n_names["QSizePolicy"] = 194;
+ n_names["QSpacerItem"] = 195;
+ n_names["QSqlDatabase"] = 196;
+ n_names["QSqlError"] = 197;
+ n_names["QSqlField"] = 198;
+ n_names["QSqlIndex"] = 199;
+ n_names["QSqlQuery"] = 200;
+ n_names["QSqlRecord"] = 201;
+ n_names["QSqlRelation"] = 202;
+ n_names["QSqlResult"] = 203;
+ n_names["QSslCertificate"] = 204;
+ n_names["QSslCipher"] = 205;
+ n_names["QSslConfiguration"] = 206;
+ n_names["QSslError"] = 207;
+ n_names["QSslKey"] = 208;
+ n_names["QStandardItem"] = 209;
+ n_names["QStandardPaths"] = 210;
+ n_names["QStatusTipEvent"] = 211;
+ n_names["QStorageInfo"] = 212;
+ n_names["QStyleOption"] = 213;
+ n_names["QStyleOptionGraphicsItem"] = 214;
+ n_names["QSurface"] = 215;
+ n_names["QSurfaceFormat"] = 216;
+ n_names["QSvgGenerator"] = 217;
+ n_names["QSysInfo"] = 218;
+ n_names["QSystemSemaphore"] = 219;
+ n_names["QTableWidgetItem"] = 220;
+ n_names["QTableWidgetSelectionRange"] = 221;
+ n_names["QTabletEvent"] = 222;
+ n_names["QTextBlock"] = 223;
+ n_names["QTextBlockFormat"] = 224;
+ n_names["QTextBlockUserData"] = 225;
+ n_names["QTextBoundaryFinder"] = 226;
+ n_names["QTextCharFormat"] = 227;
+ n_names["QTextCodec"] = 228;
+ n_names["QTextCursor"] = 229;
+ n_names["QTextDecoder"] = 230;
+ n_names["QTextDocumentFragment"] = 231;
+ n_names["QTextDocumentWriter"] = 232;
+ n_names["QTextEncoder"] = 233;
+ n_names["QTextFormat"] = 234;
+ n_names["QTextFragment"] = 235;
+ n_names["QTextFrameFormat"] = 236;
+ n_names["QTextImageFormat"] = 237;
+ n_names["QTextLayout"] = 238;
+ n_names["QTextLength"] = 239;
+ n_names["QTextLine"] = 240;
+ n_names["QTextListFormat"] = 241;
+ n_names["QTextOption"] = 242;
+ n_names["QTextTableCell"] = 243;
+ n_names["QTextTableCellFormat"] = 244;
+ n_names["QTextTableFormat"] = 245;
+ n_names["QTime"] = 246;
+ n_names["QTimeZone"] = 247;
+ n_names["QTimerEvent"] = 248;
+ n_names["QToolTip"] = 249;
+ n_names["QTouchDevice"] = 250;
+ n_names["QTouchEvent"] = 251;
+ n_names["QTransform"] = 252;
+ n_names["QTreeWidgetItem"] = 253;
+ n_names["QUndoCommand"] = 254;
+ n_names["QUrl"] = 255;
+ n_names["QUuid"] = 256;
+ n_names["QVariant"] = 257;
+ n_names["QVector2D"] = 258;
+ n_names["QVector3D"] = 259;
+ n_names["QVector4D"] = 260;
+ n_names["QVideoEncoderSettings"] = 261;
+ n_names["QVideoFrame"] = 262;
+ n_names["QVideoSurfaceFormat"] = 263;
+ n_names["QWebDatabase"] = 264;
+ n_names["QWebElement"] = 265;
+ n_names["QWebElementCollection"] = 266;
+ n_names["QWebHistory"] = 267;
+ n_names["QWebHistoryItem"] = 268;
+ n_names["QWebHitTestResult"] = 269;
+ n_names["QWebSecurityOrigin"] = 270;
+ n_names["QWebSettings"] = 271;
+ n_names["QWhatsThis"] = 272;
+ n_names["QWhatsThisClickedEvent"] = 273;
+ n_names["QWheelEvent"] = 274;
+ n_names["QWidgetItem"] = 275;
+ n_names["QWindowStateChangeEvent"] = 276;
override_function_ids["duration()"] = 1;
override_function_ids["updateCurrentTime(int)"] = 2;
override_function_ids["updateDirection(QAbstractAnimation::Direction)"] = 3;
@@ -1698,204 +1764,257 @@ void LObjects::ini(EQL* e) {
override_function_ids["text()"] = 319;
override_function_ids["updateCurrentValue(QVariant)"] = 320;
override_function_ids["interpolated(QVariant,QVariant,qreal)"] = 321;
- override_function_ids["filterAcceptsColumn(int,QModelIndex)"] = 322;
- override_function_ids["filterAcceptsRow(int,QModelIndex)"] = 323;
- override_function_ids["lessThan(QModelIndex,QModelIndex)"] = 324;
- override_function_ids["textFromValue(int)"] = 325;
- override_function_ids["drawContents(QPainter*)"] = 326;
- override_function_ids["beginTransaction()"] = 327;
- override_function_ids["commitTransaction()"] = 328;
- override_function_ids["createResult()"] = 329;
- override_function_ids["escapeIdentifier(QString,IdentifierType)"] = 330;
- override_function_ids["formatValue(QSqlField,bool)"] = 331;
- override_function_ids["handle()"] = 332;
- override_function_ids["hasFeature(DriverFeature)"] = 333;
- override_function_ids["isIdentifierEscaped(QString,IdentifierType)"] = 334;
- override_function_ids["isOpen()"] = 335;
- override_function_ids["open(QString,QString,QString,QString,int,QString)"] = 336;
- override_function_ids["primaryIndex(QString)"] = 337;
- override_function_ids["record(QString)"] = 338;
- override_function_ids["rollbackTransaction()"] = 339;
- override_function_ids["sqlStatement(StatementType,QString,QSqlRecord,bool)"] = 340;
- override_function_ids["stripDelimiters(QString,IdentifierType)"] = 341;
- override_function_ids["subscribeToNotification(QString)"] = 342;
- override_function_ids["subscribedToNotifications()"] = 343;
- override_function_ids["tables(QSql::TableType)"] = 344;
- override_function_ids["unsubscribeFromNotification(QString)"] = 345;
- override_function_ids["setLastError(QSqlError)"] = 346;
- override_function_ids["setOpen(bool)"] = 347;
- override_function_ids["setOpenError(bool)"] = 348;
- override_function_ids["indexInQuery(QModelIndex)"] = 349;
- override_function_ids["queryChange()"] = 350;
- override_function_ids["relationModel(int)"] = 351;
- override_function_ids["setRelation(int,QSqlRelation)"] = 352;
- override_function_ids["select()"] = 353;
- override_function_ids["setTable(QString)"] = 354;
- override_function_ids["insertRowIntoTable(QSqlRecord)"] = 355;
- override_function_ids["orderByClause()"] = 356;
- override_function_ids["selectStatement()"] = 357;
- override_function_ids["updateRowInTable(int,QSqlRecord)"] = 358;
- override_function_ids["revertRow(int)"] = 359;
- override_function_ids["setEditStrategy(EditStrategy)"] = 360;
- override_function_ids["setFilter(QString)"] = 361;
- override_function_ids["setSort(int,Qt::SortOrder)"] = 362;
- override_function_ids["deleteRowFromTable(int)"] = 363;
- override_function_ids["displayText(QVariant,QLocale)"] = 364;
- override_function_ids["initStyleOption(QStyleOptionViewItem*,QModelIndex)"] = 365;
- override_function_ids["highlightBlock(QString)"] = 366;
- override_function_ids["minimumTabSizeHint(int)"] = 367;
- override_function_ids["tabInserted(int)"] = 368;
- override_function_ids["tabLayoutChange()"] = 369;
- override_function_ids["tabRemoved(int)"] = 370;
- override_function_ids["tabSizeHint(int)"] = 371;
- override_function_ids["dropMimeData(int,int,QMimeData*,Qt::DropAction)"] = 372;
- override_function_ids["mimeData(QList)"] = 373;
- override_function_ids["blockFormatChanged(QTextBlock)"] = 374;
- override_function_ids["blockInserted(QTextBlock)"] = 375;
- override_function_ids["blockRemoved(QTextBlock)"] = 376;
- override_function_ids["createObject(QTextFormat)"] = 377;
- override_function_ids["valueForTime(int)"] = 378;
- override_function_ids["itemInserted(int)"] = 379;
- override_function_ids["itemRemoved(int)"] = 380;
- override_function_ids["translate(const char*,const char*,const char*,int)"] = 381;
- override_function_ids["dropMimeData(QTreeWidgetItem*,int,QMimeData*,Qt::DropAction)"] = 382;
- override_function_ids["mimeData(QList)"] = 383;
- override_function_ids["aspectRatioMode()"] = 384;
- override_function_ids["brightness()"] = 385;
- override_function_ids["contrast()"] = 386;
- override_function_ids["hue()"] = 387;
- override_function_ids["isFullScreen()"] = 388;
- override_function_ids["saturation()"] = 389;
- override_function_ids["setAspectRatioMode(Qt::AspectRatioMode)"] = 390;
- override_function_ids["setBrightness(int)"] = 391;
- override_function_ids["setContrast(int)"] = 392;
- override_function_ids["setFullScreen(bool)"] = 393;
- override_function_ids["setHue(int)"] = 394;
- override_function_ids["setSaturation(int)"] = 395;
- override_function_ids["videoWidget()"] = 396;
- override_function_ids["addHistoryEntry(QString)"] = 397;
- override_function_ids["historyContains(QString)"] = 398;
- override_function_ids["extension(Extension,ExtensionOption*,ExtensionReturn*)"] = 399;
- override_function_ids["shouldInterruptJavaScript()"] = 400;
- override_function_ids["supportsExtension(Extension)"] = 401;
- override_function_ids["triggerAction(WebAction,bool)"] = 402;
- override_function_ids["acceptNavigationRequest(QWebFrame*,QNetworkRequest,NavigationType)"] = 403;
- override_function_ids["chooseFile(QWebFrame*,QString)"] = 404;
- override_function_ids["createPlugin(QString,QUrl,QStringList,QStringList)"] = 405;
- override_function_ids["createWindow(WebWindowType)"] = 406;
- override_function_ids["javaScriptAlert(QWebFrame*,QString)"] = 407;
- override_function_ids["javaScriptConfirm(QWebFrame*,QString)"] = 408;
- override_function_ids["javaScriptConsoleMessage(QString,int,QString)"] = 409;
- override_function_ids["javaScriptPrompt(QWebFrame*,QString,QString,QString*)"] = 410;
- override_function_ids["userAgentForUrl(QUrl)"] = 411;
- override_function_ids["create(QString,QUrl,QStringList,QStringList)"] = 412;
- override_function_ids["plugins()"] = 413;
- override_function_ids["refreshPlugins()"] = 414;
- override_function_ids["createWindow(QWebPage::WebWindowType)"] = 415;
- override_function_ids["createWidget(QWidget*)"] = 416;
- override_function_ids["deleteWidget(QWidget*)"] = 417;
- override_function_ids["nextId()"] = 418;
- override_function_ids["validateCurrentPage()"] = 419;
- override_function_ids["cleanupPage(int)"] = 420;
- override_function_ids["initializePage(int)"] = 421;
- override_function_ids["cleanupPage()"] = 422;
- override_function_ids["initializePage()"] = 423;
- override_function_ids["isComplete()"] = 424;
- override_function_ids["validatePage()"] = 425;
- override_function_ids["advance(int)"] = 426;
- override_function_ids["collidesWithItem(QGraphicsItem*,Qt::ItemSelectionMode)"] = 427;
- override_function_ids["collidesWithPath(QPainterPath,Qt::ItemSelectionMode)"] = 428;
- override_function_ids["sceneEventFilter(QGraphicsItem*,QEvent*)"] = 429;
- override_function_ids["deleteText(int,int)"] = 430;
- override_function_ids["insertText(int,QString)"] = 431;
- override_function_ids["replaceText(int,int,QString)"] = 432;
- override_function_ids["accessibleInterface()"] = 433;
- override_function_ids["backgroundColor()"] = 434;
- override_function_ids["child(int)"] = 435;
- override_function_ids["childAt(int,int)"] = 436;
- override_function_ids["childCount()"] = 437;
- override_function_ids["focusChild()"] = 438;
- override_function_ids["foregroundColor()"] = 439;
- override_function_ids["indexOfChild(QAccessibleInterface*)"] = 440;
- override_function_ids["isValid()"] = 441;
- override_function_ids["object()"] = 442;
- override_function_ids["parent()"] = 443;
- override_function_ids["rect()"] = 444;
- override_function_ids["role()"] = 445;
- override_function_ids["setText(QAccessible::Text,QString)"] = 446;
- override_function_ids["text(QAccessible::Text)"] = 447;
- override_function_ids["window()"] = 448;
- override_function_ids["addSelection(int,int)"] = 449;
- override_function_ids["characterCount()"] = 450;
- override_function_ids["characterRect(int)"] = 451;
- override_function_ids["cursorPosition()"] = 452;
- override_function_ids["offsetAtPoint(QPoint)"] = 453;
- override_function_ids["removeSelection(int)"] = 454;
- override_function_ids["scrollToSubstring(int,int)"] = 455;
- override_function_ids["selectionCount()"] = 456;
- override_function_ids["setCursorPosition(int)"] = 457;
- override_function_ids["setSelection(int,int,int)"] = 458;
- override_function_ids["text(int,int)"] = 459;
- override_function_ids["currentValue()"] = 460;
- override_function_ids["maximumValue()"] = 461;
- override_function_ids["minimumStepSize()"] = 462;
- override_function_ids["minimumValue()"] = 463;
- override_function_ids["setCurrentValue(QVariant)"] = 464;
- override_function_ids["actionNames()"] = 465;
- override_function_ids["doAction(QString)"] = 466;
- override_function_ids["keyBindingsForAction(QString)"] = 467;
- override_function_ids["icon(IconType)"] = 468;
- override_function_ids["icon(QFileInfo)"] = 469;
- override_function_ids["type(QFileInfo)"] = 470;
- override_function_ids["removeAt(int)"] = 471;
- override_function_ids["widgetEvent(QEvent*)"] = 472;
- override_function_ids["valuePropertyName()"] = 473;
- override_function_ids["createEditor(int,QWidget*)"] = 474;
- override_function_ids["valuePropertyName(int)"] = 475;
- override_function_ids["spacerItem()"] = 476;
- override_function_ids["widget()"] = 477;
- override_function_ids["clone()"] = 478;
- override_function_ids["data(int)"] = 479;
- override_function_ids["setData(int,QVariant)"] = 480;
- override_function_ids["queryProxy(QNetworkProxyQuery)"] = 481;
- override_function_ids["ensureActiveTarget()"] = 482;
- override_function_ids["metric(QPaintDevice::PaintDeviceMetric)"] = 483;
- override_function_ids["setData(const char*,uint)"] = 484;
- override_function_ids["setPageSize(PageSize)"] = 485;
- override_function_ids["setPageSizeMM(QSizeF)"] = 486;
- override_function_ids["run()"] = 487;
- override_function_ids["bindValue(int,QVariant,QSql::ParamType)"] = 488;
- override_function_ids["bindValue(QString,QVariant,QSql::ParamType)"] = 489;
- override_function_ids["fetch(int)"] = 490;
- override_function_ids["fetchFirst()"] = 491;
- override_function_ids["fetchLast()"] = 492;
- override_function_ids["fetchNext()"] = 493;
- override_function_ids["fetchPrevious()"] = 494;
- override_function_ids["isNull(int)"] = 495;
- override_function_ids["lastInsertId()"] = 496;
- override_function_ids["numRowsAffected()"] = 497;
- override_function_ids["prepare(QString)"] = 498;
- override_function_ids["record()"] = 499;
- override_function_ids["reset(QString)"] = 500;
- override_function_ids["savePrepare(QString)"] = 501;
- override_function_ids["setActive(bool)"] = 502;
- override_function_ids["setAt(int)"] = 503;
- override_function_ids["setForwardOnly(bool)"] = 504;
- override_function_ids["setQuery(QString)"] = 505;
- override_function_ids["setSelect(bool)"] = 506;
- override_function_ids["setData(QVariant,int)"] = 507;
- override_function_ids["aliases()"] = 508;
- override_function_ids["mibEnum()"] = 509;
- override_function_ids["name()"] = 510;
- override_function_ids["convertFromUnicode(QChar*,int,ConverterState*)"] = 511;
- override_function_ids["convertToUnicode(const char*,int,ConverterState*)"] = 512;
- override_function_ids["data(int,int)"] = 513;
- override_function_ids["setData(int,int,QVariant)"] = 514;
- override_function_ids["id()"] = 515;
- override_function_ids["mergeWith(QUndoCommand*)"] = 516;
- override_function_ids["redo()"] = 517;
- override_function_ids["undo()"] = 518;
- override_arg_types = new const char** [518];
+ override_function_ids["beginCreate(QQmlContext*)"] = 322;
+ override_function_ids["completeCreate()"] = 323;
+ override_function_ids["create(QQmlContext*)"] = 324;
+ override_function_ids["registerTypes(const char*)"] = 325;
+ override_function_ids["updateValue(QString,QVariant)"] = 326;
+ override_function_ids["errorString()"] = 327;
+ override_function_ids["textureFactory()"] = 328;
+ override_function_ids["isTextureProvider()"] = 329;
+ override_function_ids["textureProvider()"] = 330;
+ override_function_ids["childMouseEventFilter(QQuickItem*,QEvent*)"] = 331;
+ override_function_ids["geometryChanged(QRectF,QRectF)"] = 332;
+ override_function_ids["hoverEnterEvent(QHoverEvent*)"] = 333;
+ override_function_ids["hoverLeaveEvent(QHoverEvent*)"] = 334;
+ override_function_ids["hoverMoveEvent(QHoverEvent*)"] = 335;
+ override_function_ids["itemChange(ItemChange,ItemChangeData)"] = 336;
+ override_function_ids["mouseUngrabEvent()"] = 337;
+ override_function_ids["releaseResources()"] = 338;
+ override_function_ids["touchUngrabEvent()"] = 339;
+ override_function_ids["updatePaintNode(QSGNode*,UpdatePaintNodeData*)"] = 340;
+ override_function_ids["updatePolish()"] = 341;
+ override_function_ids["paint(QPainter*)"] = 342;
+ override_function_ids["createTexture(QQuickWindow*)"] = 343;
+ override_function_ids["image()"] = 344;
+ override_function_ids["textureByteCount()"] = 345;
+ override_function_ids["textureSize()"] = 346;
+ override_function_ids["renderScene(GLuint)"] = 347;
+ override_function_ids["updateTexture()"] = 348;
+ override_function_ids["bind()"] = 349;
+ override_function_ids["hasAlphaChannel()"] = 350;
+ override_function_ids["hasMipmaps()"] = 351;
+ override_function_ids["isAtlasTexture()"] = 352;
+ override_function_ids["normalizedTextureSubRect()"] = 353;
+ override_function_ids["removedFromAtlas()"] = 354;
+ override_function_ids["textureId()"] = 355;
+ override_function_ids["texture()"] = 356;
+ override_function_ids["filterAcceptsColumn(int,QModelIndex)"] = 357;
+ override_function_ids["filterAcceptsRow(int,QModelIndex)"] = 358;
+ override_function_ids["lessThan(QModelIndex,QModelIndex)"] = 359;
+ override_function_ids["textFromValue(int)"] = 360;
+ override_function_ids["drawContents(QPainter*)"] = 361;
+ override_function_ids["beginTransaction()"] = 362;
+ override_function_ids["commitTransaction()"] = 363;
+ override_function_ids["createResult()"] = 364;
+ override_function_ids["escapeIdentifier(QString,IdentifierType)"] = 365;
+ override_function_ids["formatValue(QSqlField,bool)"] = 366;
+ override_function_ids["handle()"] = 367;
+ override_function_ids["hasFeature(DriverFeature)"] = 368;
+ override_function_ids["isIdentifierEscaped(QString,IdentifierType)"] = 369;
+ override_function_ids["isOpen()"] = 370;
+ override_function_ids["open(QString,QString,QString,QString,int,QString)"] = 371;
+ override_function_ids["primaryIndex(QString)"] = 372;
+ override_function_ids["record(QString)"] = 373;
+ override_function_ids["rollbackTransaction()"] = 374;
+ override_function_ids["sqlStatement(StatementType,QString,QSqlRecord,bool)"] = 375;
+ override_function_ids["stripDelimiters(QString,IdentifierType)"] = 376;
+ override_function_ids["subscribeToNotification(QString)"] = 377;
+ override_function_ids["subscribedToNotifications()"] = 378;
+ override_function_ids["tables(QSql::TableType)"] = 379;
+ override_function_ids["unsubscribeFromNotification(QString)"] = 380;
+ override_function_ids["setLastError(QSqlError)"] = 381;
+ override_function_ids["setOpen(bool)"] = 382;
+ override_function_ids["setOpenError(bool)"] = 383;
+ override_function_ids["indexInQuery(QModelIndex)"] = 384;
+ override_function_ids["queryChange()"] = 385;
+ override_function_ids["relationModel(int)"] = 386;
+ override_function_ids["setRelation(int,QSqlRelation)"] = 387;
+ override_function_ids["select()"] = 388;
+ override_function_ids["setTable(QString)"] = 389;
+ override_function_ids["insertRowIntoTable(QSqlRecord)"] = 390;
+ override_function_ids["orderByClause()"] = 391;
+ override_function_ids["selectStatement()"] = 392;
+ override_function_ids["updateRowInTable(int,QSqlRecord)"] = 393;
+ override_function_ids["revertRow(int)"] = 394;
+ override_function_ids["setEditStrategy(EditStrategy)"] = 395;
+ override_function_ids["setFilter(QString)"] = 396;
+ override_function_ids["setSort(int,Qt::SortOrder)"] = 397;
+ override_function_ids["deleteRowFromTable(int)"] = 398;
+ override_function_ids["displayText(QVariant,QLocale)"] = 399;
+ override_function_ids["initStyleOption(QStyleOptionViewItem*,QModelIndex)"] = 400;
+ override_function_ids["highlightBlock(QString)"] = 401;
+ override_function_ids["minimumTabSizeHint(int)"] = 402;
+ override_function_ids["tabInserted(int)"] = 403;
+ override_function_ids["tabLayoutChange()"] = 404;
+ override_function_ids["tabRemoved(int)"] = 405;
+ override_function_ids["tabSizeHint(int)"] = 406;
+ override_function_ids["dropMimeData(int,int,QMimeData*,Qt::DropAction)"] = 407;
+ override_function_ids["mimeData(QList)"] = 408;
+ override_function_ids["blockFormatChanged(QTextBlock)"] = 409;
+ override_function_ids["blockInserted(QTextBlock)"] = 410;
+ override_function_ids["blockRemoved(QTextBlock)"] = 411;
+ override_function_ids["createObject(QTextFormat)"] = 412;
+ override_function_ids["valueForTime(int)"] = 413;
+ override_function_ids["itemInserted(int)"] = 414;
+ override_function_ids["itemRemoved(int)"] = 415;
+ override_function_ids["translate(const char*,const char*,const char*,int)"] = 416;
+ override_function_ids["dropMimeData(QTreeWidgetItem*,int,QMimeData*,Qt::DropAction)"] = 417;
+ override_function_ids["mimeData(QList)"] = 418;
+ override_function_ids["aspectRatioMode()"] = 419;
+ override_function_ids["brightness()"] = 420;
+ override_function_ids["contrast()"] = 421;
+ override_function_ids["hue()"] = 422;
+ override_function_ids["isFullScreen()"] = 423;
+ override_function_ids["saturation()"] = 424;
+ override_function_ids["setAspectRatioMode(Qt::AspectRatioMode)"] = 425;
+ override_function_ids["setBrightness(int)"] = 426;
+ override_function_ids["setContrast(int)"] = 427;
+ override_function_ids["setFullScreen(bool)"] = 428;
+ override_function_ids["setHue(int)"] = 429;
+ override_function_ids["setSaturation(int)"] = 430;
+ override_function_ids["videoWidget()"] = 431;
+ override_function_ids["addHistoryEntry(QString)"] = 432;
+ override_function_ids["historyContains(QString)"] = 433;
+ override_function_ids["extension(Extension,ExtensionOption*,ExtensionReturn*)"] = 434;
+ override_function_ids["shouldInterruptJavaScript()"] = 435;
+ override_function_ids["supportsExtension(Extension)"] = 436;
+ override_function_ids["triggerAction(WebAction,bool)"] = 437;
+ override_function_ids["acceptNavigationRequest(QWebFrame*,QNetworkRequest,NavigationType)"] = 438;
+ override_function_ids["chooseFile(QWebFrame*,QString)"] = 439;
+ override_function_ids["createPlugin(QString,QUrl,QStringList,QStringList)"] = 440;
+ override_function_ids["createWindow(WebWindowType)"] = 441;
+ override_function_ids["javaScriptAlert(QWebFrame*,QString)"] = 442;
+ override_function_ids["javaScriptConfirm(QWebFrame*,QString)"] = 443;
+ override_function_ids["javaScriptConsoleMessage(QString,int,QString)"] = 444;
+ override_function_ids["javaScriptPrompt(QWebFrame*,QString,QString,QString*)"] = 445;
+ override_function_ids["userAgentForUrl(QUrl)"] = 446;
+ override_function_ids["create(QString,QUrl,QStringList,QStringList)"] = 447;
+ override_function_ids["plugins()"] = 448;
+ override_function_ids["refreshPlugins()"] = 449;
+ override_function_ids["createWindow(QWebPage::WebWindowType)"] = 450;
+ override_function_ids["createWidget(QWidget*)"] = 451;
+ override_function_ids["deleteWidget(QWidget*)"] = 452;
+ override_function_ids["nextId()"] = 453;
+ override_function_ids["validateCurrentPage()"] = 454;
+ override_function_ids["cleanupPage(int)"] = 455;
+ override_function_ids["initializePage(int)"] = 456;
+ override_function_ids["cleanupPage()"] = 457;
+ override_function_ids["initializePage()"] = 458;
+ override_function_ids["isComplete()"] = 459;
+ override_function_ids["validatePage()"] = 460;
+ override_function_ids["advance(int)"] = 461;
+ override_function_ids["collidesWithItem(QGraphicsItem*,Qt::ItemSelectionMode)"] = 462;
+ override_function_ids["collidesWithPath(QPainterPath,Qt::ItemSelectionMode)"] = 463;
+ override_function_ids["sceneEventFilter(QGraphicsItem*,QEvent*)"] = 464;
+ override_function_ids["deleteText(int,int)"] = 465;
+ override_function_ids["insertText(int,QString)"] = 466;
+ override_function_ids["replaceText(int,int,QString)"] = 467;
+ override_function_ids["accessibleInterface()"] = 468;
+ override_function_ids["backgroundColor()"] = 469;
+ override_function_ids["child(int)"] = 470;
+ override_function_ids["childAt(int,int)"] = 471;
+ override_function_ids["childCount()"] = 472;
+ override_function_ids["focusChild()"] = 473;
+ override_function_ids["foregroundColor()"] = 474;
+ override_function_ids["indexOfChild(QAccessibleInterface*)"] = 475;
+ override_function_ids["isValid()"] = 476;
+ override_function_ids["object()"] = 477;
+ override_function_ids["parent()"] = 478;
+ override_function_ids["rect()"] = 479;
+ override_function_ids["role()"] = 480;
+ override_function_ids["setText(QAccessible::Text,QString)"] = 481;
+ override_function_ids["text(QAccessible::Text)"] = 482;
+ override_function_ids["window()"] = 483;
+ override_function_ids["addSelection(int,int)"] = 484;
+ override_function_ids["characterCount()"] = 485;
+ override_function_ids["characterRect(int)"] = 486;
+ override_function_ids["cursorPosition()"] = 487;
+ override_function_ids["offsetAtPoint(QPoint)"] = 488;
+ override_function_ids["removeSelection(int)"] = 489;
+ override_function_ids["scrollToSubstring(int,int)"] = 490;
+ override_function_ids["selectionCount()"] = 491;
+ override_function_ids["setCursorPosition(int)"] = 492;
+ override_function_ids["setSelection(int,int,int)"] = 493;
+ override_function_ids["text(int,int)"] = 494;
+ override_function_ids["currentValue()"] = 495;
+ override_function_ids["maximumValue()"] = 496;
+ override_function_ids["minimumStepSize()"] = 497;
+ override_function_ids["minimumValue()"] = 498;
+ override_function_ids["setCurrentValue(QVariant)"] = 499;
+ override_function_ids["actionNames()"] = 500;
+ override_function_ids["doAction(QString)"] = 501;
+ override_function_ids["keyBindingsForAction(QString)"] = 502;
+ override_function_ids["icon(IconType)"] = 503;
+ override_function_ids["icon(QFileInfo)"] = 504;
+ override_function_ids["type(QFileInfo)"] = 505;
+ override_function_ids["removeAt(int)"] = 506;
+ override_function_ids["widgetEvent(QEvent*)"] = 507;
+ override_function_ids["valuePropertyName()"] = 508;
+ override_function_ids["createEditor(int,QWidget*)"] = 509;
+ override_function_ids["valuePropertyName(int)"] = 510;
+ override_function_ids["spacerItem()"] = 511;
+ override_function_ids["widget()"] = 512;
+ override_function_ids["clone()"] = 513;
+ override_function_ids["data(int)"] = 514;
+ override_function_ids["setData(int,QVariant)"] = 515;
+ override_function_ids["queryProxy(QNetworkProxyQuery)"] = 516;
+ override_function_ids["ensureActiveTarget()"] = 517;
+ override_function_ids["metric(QPaintDevice::PaintDeviceMetric)"] = 518;
+ override_function_ids["setData(const char*,uint)"] = 519;
+ override_function_ids["setPageSize(PageSize)"] = 520;
+ override_function_ids["setPageSizeMM(QSizeF)"] = 521;
+ override_function_ids["intercept(QUrl,DataType)"] = 522;
+ override_function_ids["flags()"] = 523;
+ override_function_ids["imageType()"] = 524;
+ override_function_ids["incubatingObjectCountChanged(int)"] = 525;
+ override_function_ids["setInitialState(QObject*)"] = 526;
+ override_function_ids["statusChanged(Status)"] = 527;
+ override_function_ids["create(QObject*)"] = 528;
+ override_function_ids["classBegin()"] = 529;
+ override_function_ids["componentComplete()"] = 530;
+ override_function_ids["setTarget(QQmlProperty)"] = 531;
+ override_function_ids["requestImageResponse(QString,QSize)"] = 532;
+ override_function_ids["requestImage(QString,QSize*,QSize)"] = 533;
+ override_function_ids["requestPixmap(QString,QSize*,QSize)"] = 534;
+ override_function_ids["requestTexture(QString,QSize*,QSize)"] = 535;
+ override_function_ids["run()"] = 536;
+ override_function_ids["isSubtreeBlocked()"] = 537;
+ override_function_ids["preprocess()"] = 538;
+ override_function_ids["compare(QSGMaterial*)"] = 539;
+ override_function_ids["createShader()"] = 540;
+ override_function_ids["bindValue(int,QVariant,QSql::ParamType)"] = 541;
+ override_function_ids["bindValue(QString,QVariant,QSql::ParamType)"] = 542;
+ override_function_ids["fetch(int)"] = 543;
+ override_function_ids["fetchFirst()"] = 544;
+ override_function_ids["fetchLast()"] = 545;
+ override_function_ids["fetchNext()"] = 546;
+ override_function_ids["fetchPrevious()"] = 547;
+ override_function_ids["isNull(int)"] = 548;
+ override_function_ids["lastInsertId()"] = 549;
+ override_function_ids["numRowsAffected()"] = 550;
+ override_function_ids["prepare(QString)"] = 551;
+ override_function_ids["record()"] = 552;
+ override_function_ids["reset(QString)"] = 553;
+ override_function_ids["savePrepare(QString)"] = 554;
+ override_function_ids["setActive(bool)"] = 555;
+ override_function_ids["setAt(int)"] = 556;
+ override_function_ids["setForwardOnly(bool)"] = 557;
+ override_function_ids["setQuery(QString)"] = 558;
+ override_function_ids["setSelect(bool)"] = 559;
+ override_function_ids["setData(QVariant,int)"] = 560;
+ override_function_ids["aliases()"] = 561;
+ override_function_ids["mibEnum()"] = 562;
+ override_function_ids["name()"] = 563;
+ override_function_ids["convertFromUnicode(QChar*,int,ConverterState*)"] = 564;
+ override_function_ids["convertToUnicode(const char*,int,ConverterState*)"] = 565;
+ override_function_ids["data(int,int)"] = 566;
+ override_function_ids["setData(int,int,QVariant)"] = 567;
+ override_function_ids["id()"] = 568;
+ override_function_ids["mergeWith(QUndoCommand*)"] = 569;
+ override_function_ids["redo()"] = 570;
+ override_function_ids["undo()"] = 571;
+ override_arg_types = new const char** [571];
{ static const char* s[] = { "int", 0 }; override_arg_types[0] = s; }
{ static const char* s[] = { 0, "int", 0 }; override_arg_types[1] = s; }
{ static const char* s[] = { 0, "QAbstractAnimation::Direction", 0 }; override_arg_types[2] = s; }
@@ -2217,208 +2336,261 @@ void LObjects::ini(EQL* e) {
{ static const char* s[] = { "QString", 0 }; override_arg_types[318] = s; }
{ static const char* s[] = { 0, "QVariant", 0 }; override_arg_types[319] = s; }
{ static const char* s[] = { "QVariant", "QVariant", "QVariant", "qreal", 0 }; override_arg_types[320] = s; }
- { static const char* s[] = { "bool", "int", "QModelIndex", 0 }; override_arg_types[321] = s; }
- { static const char* s[] = { "bool", "int", "QModelIndex", 0 }; override_arg_types[322] = s; }
- { static const char* s[] = { "bool", "QModelIndex", "QModelIndex", 0 }; override_arg_types[323] = s; }
- { static const char* s[] = { "QString", "int", 0 }; override_arg_types[324] = s; }
- { static const char* s[] = { 0, "QPainter*", 0 }; override_arg_types[325] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[326] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[327] = s; }
- { static const char* s[] = { "QSqlResult*", 0 }; override_arg_types[328] = s; }
- { static const char* s[] = { "QString", "QString", "IdentifierType", 0 }; override_arg_types[329] = s; }
- { static const char* s[] = { "QString", "QSqlField", "bool", 0 }; override_arg_types[330] = s; }
- { static const char* s[] = { "QVariant", 0 }; override_arg_types[331] = s; }
- { static const char* s[] = { "bool", "DriverFeature", 0 }; override_arg_types[332] = s; }
- { static const char* s[] = { "bool", "QString", "IdentifierType", 0 }; override_arg_types[333] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[334] = s; }
- { static const char* s[] = { "bool", "QString", "QString", "QString", "QString", "int", "QString", 0 }; override_arg_types[335] = s; }
- { static const char* s[] = { "QSqlIndex", "QString", 0 }; override_arg_types[336] = s; }
- { static const char* s[] = { "QSqlRecord", "QString", 0 }; override_arg_types[337] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[338] = s; }
- { static const char* s[] = { "QString", "StatementType", "QString", "QSqlRecord", "bool", 0 }; override_arg_types[339] = s; }
- { static const char* s[] = { "QString", "QString", "IdentifierType", 0 }; override_arg_types[340] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[341] = s; }
- { static const char* s[] = { "QStringList", 0 }; override_arg_types[342] = s; }
- { static const char* s[] = { "QStringList", "QSql::TableType", 0 }; override_arg_types[343] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[344] = s; }
- { static const char* s[] = { 0, "QSqlError", 0 }; override_arg_types[345] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[346] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[347] = s; }
- { static const char* s[] = { "QModelIndex", "QModelIndex", 0 }; override_arg_types[348] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[349] = s; }
- { static const char* s[] = { "QSqlTableModel*", "int", 0 }; override_arg_types[350] = s; }
- { static const char* s[] = { 0, "int", "QSqlRelation", 0 }; override_arg_types[351] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[352] = s; }
- { static const char* s[] = { 0, "QString", 0 }; override_arg_types[353] = s; }
- { static const char* s[] = { "bool", "QSqlRecord", 0 }; override_arg_types[354] = s; }
- { static const char* s[] = { "QString", 0 }; override_arg_types[355] = s; }
- { static const char* s[] = { "QString", 0 }; override_arg_types[356] = s; }
- { static const char* s[] = { "bool", "int", "QSqlRecord", 0 }; override_arg_types[357] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[358] = s; }
- { static const char* s[] = { 0, "EditStrategy", 0 }; override_arg_types[359] = s; }
- { static const char* s[] = { 0, "QString", 0 }; override_arg_types[360] = s; }
- { static const char* s[] = { 0, "int", "Qt::SortOrder", 0 }; override_arg_types[361] = s; }
- { static const char* s[] = { "bool", "int", 0 }; override_arg_types[362] = s; }
- { static const char* s[] = { "QString", "QVariant", "QLocale", 0 }; override_arg_types[363] = s; }
- { static const char* s[] = { 0, "QStyleOptionViewItem*", "QModelIndex", 0 }; override_arg_types[364] = s; }
- { static const char* s[] = { 0, "QString", 0 }; override_arg_types[365] = s; }
- { static const char* s[] = { "QSize", "int", 0 }; override_arg_types[366] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[367] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[368] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[369] = s; }
- { static const char* s[] = { "QSize", "int", 0 }; override_arg_types[370] = s; }
- { static const char* s[] = { "bool", "int", "int", "QMimeData*", "Qt::DropAction", 0 }; override_arg_types[371] = s; }
- { static const char* s[] = { "QMimeData*", "QList", 0 }; override_arg_types[372] = s; }
- { static const char* s[] = { 0, "QTextBlock", 0 }; override_arg_types[373] = s; }
- { static const char* s[] = { 0, "QTextBlock", 0 }; override_arg_types[374] = s; }
- { static const char* s[] = { 0, "QTextBlock", 0 }; override_arg_types[375] = s; }
- { static const char* s[] = { "QTextObject*", "QTextFormat", 0 }; override_arg_types[376] = s; }
- { static const char* s[] = { "qreal", "int", 0 }; override_arg_types[377] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[378] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[379] = s; }
- { static const char* s[] = { "QString", "const char*", "const char*", "const char*", "int", 0 }; override_arg_types[380] = s; }
- { static const char* s[] = { "bool", "QTreeWidgetItem*", "int", "QMimeData*", "Qt::DropAction", 0 }; override_arg_types[381] = s; }
- { static const char* s[] = { "QMimeData*", "QList", 0 }; override_arg_types[382] = s; }
- { static const char* s[] = { "Qt::AspectRatioMode", 0 }; override_arg_types[383] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[384] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[385] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[386] = s; }
+ { static const char* s[] = { "QObject*", "QQmlContext*", 0 }; override_arg_types[321] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[322] = s; }
+ { static const char* s[] = { "QObject*", "QQmlContext*", 0 }; override_arg_types[323] = s; }
+ { static const char* s[] = { 0, "const char*", 0 }; override_arg_types[324] = s; }
+ { static const char* s[] = { "QVariant", "QString", "QVariant", 0 }; override_arg_types[325] = s; }
+ { static const char* s[] = { "QString", 0 }; override_arg_types[326] = s; }
+ { static const char* s[] = { "QQuickTextureFactory*", 0 }; override_arg_types[327] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[328] = s; }
+ { static const char* s[] = { "QSGTextureProvider*", 0 }; override_arg_types[329] = s; }
+ { static const char* s[] = { "bool", "QQuickItem*", "QEvent*", 0 }; override_arg_types[330] = s; }
+ { static const char* s[] = { 0, "QRectF", "QRectF", 0 }; override_arg_types[331] = s; }
+ { static const char* s[] = { 0, "QHoverEvent*", 0 }; override_arg_types[332] = s; }
+ { static const char* s[] = { 0, "QHoverEvent*", 0 }; override_arg_types[333] = s; }
+ { static const char* s[] = { 0, "QHoverEvent*", 0 }; override_arg_types[334] = s; }
+ { static const char* s[] = { 0, "ItemChange", "ItemChangeData", 0 }; override_arg_types[335] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[336] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[337] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[338] = s; }
+ { static const char* s[] = { "QSGNode*", "QSGNode*", "UpdatePaintNodeData*", 0 }; override_arg_types[339] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[340] = s; }
+ { static const char* s[] = { 0, "QPainter*", 0 }; override_arg_types[341] = s; }
+ { static const char* s[] = { "QSGTexture*", "QQuickWindow*", 0 }; override_arg_types[342] = s; }
+ { static const char* s[] = { "QImage", 0 }; override_arg_types[343] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[344] = s; }
+ { static const char* s[] = { "QSize", 0 }; override_arg_types[345] = s; }
+ { static const char* s[] = { 0, "GLuint", 0 }; override_arg_types[346] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[347] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[348] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[349] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[350] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[351] = s; }
+ { static const char* s[] = { "QRectF", 0 }; override_arg_types[352] = s; }
+ { static const char* s[] = { "QSGTexture*", 0 }; override_arg_types[353] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[354] = s; }
+ { static const char* s[] = { "QSGTexture*", 0 }; override_arg_types[355] = s; }
+ { static const char* s[] = { "bool", "int", "QModelIndex", 0 }; override_arg_types[356] = s; }
+ { static const char* s[] = { "bool", "int", "QModelIndex", 0 }; override_arg_types[357] = s; }
+ { static const char* s[] = { "bool", "QModelIndex", "QModelIndex", 0 }; override_arg_types[358] = s; }
+ { static const char* s[] = { "QString", "int", 0 }; override_arg_types[359] = s; }
+ { static const char* s[] = { 0, "QPainter*", 0 }; override_arg_types[360] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[361] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[362] = s; }
+ { static const char* s[] = { "QSqlResult*", 0 }; override_arg_types[363] = s; }
+ { static const char* s[] = { "QString", "QString", "IdentifierType", 0 }; override_arg_types[364] = s; }
+ { static const char* s[] = { "QString", "QSqlField", "bool", 0 }; override_arg_types[365] = s; }
+ { static const char* s[] = { "QVariant", 0 }; override_arg_types[366] = s; }
+ { static const char* s[] = { "bool", "DriverFeature", 0 }; override_arg_types[367] = s; }
+ { static const char* s[] = { "bool", "QString", "IdentifierType", 0 }; override_arg_types[368] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[369] = s; }
+ { static const char* s[] = { "bool", "QString", "QString", "QString", "QString", "int", "QString", 0 }; override_arg_types[370] = s; }
+ { static const char* s[] = { "QSqlIndex", "QString", 0 }; override_arg_types[371] = s; }
+ { static const char* s[] = { "QSqlRecord", "QString", 0 }; override_arg_types[372] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[373] = s; }
+ { static const char* s[] = { "QString", "StatementType", "QString", "QSqlRecord", "bool", 0 }; override_arg_types[374] = s; }
+ { static const char* s[] = { "QString", "QString", "IdentifierType", 0 }; override_arg_types[375] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[376] = s; }
+ { static const char* s[] = { "QStringList", 0 }; override_arg_types[377] = s; }
+ { static const char* s[] = { "QStringList", "QSql::TableType", 0 }; override_arg_types[378] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[379] = s; }
+ { static const char* s[] = { 0, "QSqlError", 0 }; override_arg_types[380] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[381] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[382] = s; }
+ { static const char* s[] = { "QModelIndex", "QModelIndex", 0 }; override_arg_types[383] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[384] = s; }
+ { static const char* s[] = { "QSqlTableModel*", "int", 0 }; override_arg_types[385] = s; }
+ { static const char* s[] = { 0, "int", "QSqlRelation", 0 }; override_arg_types[386] = s; }
{ static const char* s[] = { "bool", 0 }; override_arg_types[387] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[388] = s; }
- { static const char* s[] = { 0, "Qt::AspectRatioMode", 0 }; override_arg_types[389] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[390] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[391] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[392] = s; }
+ { static const char* s[] = { 0, "QString", 0 }; override_arg_types[388] = s; }
+ { static const char* s[] = { "bool", "QSqlRecord", 0 }; override_arg_types[389] = s; }
+ { static const char* s[] = { "QString", 0 }; override_arg_types[390] = s; }
+ { static const char* s[] = { "QString", 0 }; override_arg_types[391] = s; }
+ { static const char* s[] = { "bool", "int", "QSqlRecord", 0 }; override_arg_types[392] = s; }
{ static const char* s[] = { 0, "int", 0 }; override_arg_types[393] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[394] = s; }
- { static const char* s[] = { "QWidget*", 0 }; override_arg_types[395] = s; }
- { static const char* s[] = { 0, "QString", 0 }; override_arg_types[396] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[397] = s; }
- { static const char* s[] = { "bool", "Extension", "ExtensionOption*", "ExtensionReturn*", 0 }; override_arg_types[398] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[399] = s; }
- { static const char* s[] = { "bool", "Extension", 0 }; override_arg_types[400] = s; }
- { static const char* s[] = { 0, "WebAction", "bool", 0 }; override_arg_types[401] = s; }
- { static const char* s[] = { "bool", "QWebFrame*", "QNetworkRequest", "NavigationType", 0 }; override_arg_types[402] = s; }
- { static const char* s[] = { "QString", "QWebFrame*", "QString", 0 }; override_arg_types[403] = s; }
- { static const char* s[] = { "QObject*", "QString", "QUrl", "QStringList", "QStringList", 0 }; override_arg_types[404] = s; }
- { static const char* s[] = { "QWebPage*", "WebWindowType", 0 }; override_arg_types[405] = s; }
- { static const char* s[] = { 0, "QWebFrame*", "QString", 0 }; override_arg_types[406] = s; }
- { static const char* s[] = { "bool", "QWebFrame*", "QString", 0 }; override_arg_types[407] = s; }
- { static const char* s[] = { 0, "QString", "int", "QString", 0 }; override_arg_types[408] = s; }
- { static const char* s[] = { "bool", "QWebFrame*", "QString", "QString", "QString*", 0 }; override_arg_types[409] = s; }
- { static const char* s[] = { "QString", "QUrl", 0 }; override_arg_types[410] = s; }
- { static const char* s[] = { "QObject*", "QString", "QUrl", "QStringList", "QStringList", 0 }; override_arg_types[411] = s; }
- { static const char* s[] = { "QList", 0 }; override_arg_types[412] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[413] = s; }
- { static const char* s[] = { "QWebView*", "QWebPage::WebWindowType", 0 }; override_arg_types[414] = s; }
- { static const char* s[] = { "QWidget*", "QWidget*", 0 }; override_arg_types[415] = s; }
- { static const char* s[] = { 0, "QWidget*", 0 }; override_arg_types[416] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[417] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[418] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[419] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[420] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[421] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[422] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[423] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[424] = s; }
+ { static const char* s[] = { 0, "EditStrategy", 0 }; override_arg_types[394] = s; }
+ { static const char* s[] = { 0, "QString", 0 }; override_arg_types[395] = s; }
+ { static const char* s[] = { 0, "int", "Qt::SortOrder", 0 }; override_arg_types[396] = s; }
+ { static const char* s[] = { "bool", "int", 0 }; override_arg_types[397] = s; }
+ { static const char* s[] = { "QString", "QVariant", "QLocale", 0 }; override_arg_types[398] = s; }
+ { static const char* s[] = { 0, "QStyleOptionViewItem*", "QModelIndex", 0 }; override_arg_types[399] = s; }
+ { static const char* s[] = { 0, "QString", 0 }; override_arg_types[400] = s; }
+ { static const char* s[] = { "QSize", "int", 0 }; override_arg_types[401] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[402] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[403] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[404] = s; }
+ { static const char* s[] = { "QSize", "int", 0 }; override_arg_types[405] = s; }
+ { static const char* s[] = { "bool", "int", "int", "QMimeData*", "Qt::DropAction", 0 }; override_arg_types[406] = s; }
+ { static const char* s[] = { "QMimeData*", "QList", 0 }; override_arg_types[407] = s; }
+ { static const char* s[] = { 0, "QTextBlock", 0 }; override_arg_types[408] = s; }
+ { static const char* s[] = { 0, "QTextBlock", 0 }; override_arg_types[409] = s; }
+ { static const char* s[] = { 0, "QTextBlock", 0 }; override_arg_types[410] = s; }
+ { static const char* s[] = { "QTextObject*", "QTextFormat", 0 }; override_arg_types[411] = s; }
+ { static const char* s[] = { "qreal", "int", 0 }; override_arg_types[412] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[413] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[414] = s; }
+ { static const char* s[] = { "QString", "const char*", "const char*", "const char*", "int", 0 }; override_arg_types[415] = s; }
+ { static const char* s[] = { "bool", "QTreeWidgetItem*", "int", "QMimeData*", "Qt::DropAction", 0 }; override_arg_types[416] = s; }
+ { static const char* s[] = { "QMimeData*", "QList", 0 }; override_arg_types[417] = s; }
+ { static const char* s[] = { "Qt::AspectRatioMode", 0 }; override_arg_types[418] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[419] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[420] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[421] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[422] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[423] = s; }
+ { static const char* s[] = { 0, "Qt::AspectRatioMode", 0 }; override_arg_types[424] = s; }
{ static const char* s[] = { 0, "int", 0 }; override_arg_types[425] = s; }
- { static const char* s[] = { "bool", "QGraphicsItem*", "Qt::ItemSelectionMode", 0 }; override_arg_types[426] = s; }
- { static const char* s[] = { "bool", "QPainterPath", "Qt::ItemSelectionMode", 0 }; override_arg_types[427] = s; }
- { static const char* s[] = { "bool", "QGraphicsItem*", "QEvent*", 0 }; override_arg_types[428] = s; }
- { static const char* s[] = { 0, "int", "int", 0 }; override_arg_types[429] = s; }
- { static const char* s[] = { 0, "int", "QString", 0 }; override_arg_types[430] = s; }
- { static const char* s[] = { 0, "int", "int", "QString", 0 }; override_arg_types[431] = s; }
- { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[432] = s; }
- { static const char* s[] = { "QColor", 0 }; override_arg_types[433] = s; }
- { static const char* s[] = { "QAccessibleInterface*", "int", 0 }; override_arg_types[434] = s; }
- { static const char* s[] = { "QAccessibleInterface*", "int", "int", 0 }; override_arg_types[435] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[436] = s; }
- { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[437] = s; }
- { static const char* s[] = { "QColor", 0 }; override_arg_types[438] = s; }
- { static const char* s[] = { "int", "QAccessibleInterface*", 0 }; override_arg_types[439] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[440] = s; }
- { static const char* s[] = { "QObject*", 0 }; override_arg_types[441] = s; }
- { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[442] = s; }
- { static const char* s[] = { "QRect", 0 }; override_arg_types[443] = s; }
- { static const char* s[] = { "QAccessible::Role", 0 }; override_arg_types[444] = s; }
- { static const char* s[] = { 0, "QAccessible::Text", "QString", 0 }; override_arg_types[445] = s; }
- { static const char* s[] = { "QString", "QAccessible::Text", 0 }; override_arg_types[446] = s; }
- { static const char* s[] = { "QWindow*", 0 }; override_arg_types[447] = s; }
- { static const char* s[] = { 0, "int", "int", 0 }; override_arg_types[448] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[449] = s; }
- { static const char* s[] = { "QRect", "int", 0 }; override_arg_types[450] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[451] = s; }
- { static const char* s[] = { "int", "QPoint", 0 }; override_arg_types[452] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[453] = s; }
- { static const char* s[] = { 0, "int", "int", 0 }; override_arg_types[454] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[455] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[456] = s; }
- { static const char* s[] = { 0, "int", "int", "int", 0 }; override_arg_types[457] = s; }
- { static const char* s[] = { "QString", "int", "int", 0 }; override_arg_types[458] = s; }
- { static const char* s[] = { "QVariant", 0 }; override_arg_types[459] = s; }
- { static const char* s[] = { "QVariant", 0 }; override_arg_types[460] = s; }
- { static const char* s[] = { "QVariant", 0 }; override_arg_types[461] = s; }
- { static const char* s[] = { "QVariant", 0 }; override_arg_types[462] = s; }
- { static const char* s[] = { 0, "QVariant", 0 }; override_arg_types[463] = s; }
- { static const char* s[] = { "QStringList", 0 }; override_arg_types[464] = s; }
- { static const char* s[] = { 0, "QString", 0 }; override_arg_types[465] = s; }
- { static const char* s[] = { "QStringList", "QString", 0 }; override_arg_types[466] = s; }
- { static const char* s[] = { "QIcon", "IconType", 0 }; override_arg_types[467] = s; }
- { static const char* s[] = { "QIcon", "QFileInfo", 0 }; override_arg_types[468] = s; }
- { static const char* s[] = { "QString", "QFileInfo", 0 }; override_arg_types[469] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[470] = s; }
- { static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[471] = s; }
- { static const char* s[] = { "QByteArray", 0 }; override_arg_types[472] = s; }
- { static const char* s[] = { "QWidget*", "int", "QWidget*", 0 }; override_arg_types[473] = s; }
- { static const char* s[] = { "QByteArray", "int", 0 }; override_arg_types[474] = s; }
- { static const char* s[] = { "QSpacerItem*", 0 }; override_arg_types[475] = s; }
- { static const char* s[] = { "QWidget*", 0 }; override_arg_types[476] = s; }
- { static const char* s[] = { "QListWidgetItem*", 0 }; override_arg_types[477] = s; }
- { static const char* s[] = { "QVariant", "int", 0 }; override_arg_types[478] = s; }
- { static const char* s[] = { 0, "int", "QVariant", 0 }; override_arg_types[479] = s; }
- { static const char* s[] = { "QList", "QNetworkProxyQuery", 0 }; override_arg_types[480] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[481] = s; }
- { static const char* s[] = { "int", "QPaintDevice::PaintDeviceMetric", 0 }; override_arg_types[482] = s; }
- { static const char* s[] = { 0, "const char*", "uint", 0 }; override_arg_types[483] = s; }
- { static const char* s[] = { 0, "PageSize", 0 }; override_arg_types[484] = s; }
- { static const char* s[] = { 0, "QSizeF", 0 }; override_arg_types[485] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[486] = s; }
- { static const char* s[] = { 0, "int", "QVariant", "QSql::ParamType", 0 }; override_arg_types[487] = s; }
- { static const char* s[] = { 0, "QString", "QVariant", "QSql::ParamType", 0 }; override_arg_types[488] = s; }
- { static const char* s[] = { "bool", "int", 0 }; override_arg_types[489] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[490] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[491] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[492] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[493] = s; }
- { static const char* s[] = { "bool", "int", 0 }; override_arg_types[494] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[426] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[427] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[428] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[429] = s; }
+ { static const char* s[] = { "QWidget*", 0 }; override_arg_types[430] = s; }
+ { static const char* s[] = { 0, "QString", 0 }; override_arg_types[431] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[432] = s; }
+ { static const char* s[] = { "bool", "Extension", "ExtensionOption*", "ExtensionReturn*", 0 }; override_arg_types[433] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[434] = s; }
+ { static const char* s[] = { "bool", "Extension", 0 }; override_arg_types[435] = s; }
+ { static const char* s[] = { 0, "WebAction", "bool", 0 }; override_arg_types[436] = s; }
+ { static const char* s[] = { "bool", "QWebFrame*", "QNetworkRequest", "NavigationType", 0 }; override_arg_types[437] = s; }
+ { static const char* s[] = { "QString", "QWebFrame*", "QString", 0 }; override_arg_types[438] = s; }
+ { static const char* s[] = { "QObject*", "QString", "QUrl", "QStringList", "QStringList", 0 }; override_arg_types[439] = s; }
+ { static const char* s[] = { "QWebPage*", "WebWindowType", 0 }; override_arg_types[440] = s; }
+ { static const char* s[] = { 0, "QWebFrame*", "QString", 0 }; override_arg_types[441] = s; }
+ { static const char* s[] = { "bool", "QWebFrame*", "QString", 0 }; override_arg_types[442] = s; }
+ { static const char* s[] = { 0, "QString", "int", "QString", 0 }; override_arg_types[443] = s; }
+ { static const char* s[] = { "bool", "QWebFrame*", "QString", "QString", "QString*", 0 }; override_arg_types[444] = s; }
+ { static const char* s[] = { "QString", "QUrl", 0 }; override_arg_types[445] = s; }
+ { static const char* s[] = { "QObject*", "QString", "QUrl", "QStringList", "QStringList", 0 }; override_arg_types[446] = s; }
+ { static const char* s[] = { "QList", 0 }; override_arg_types[447] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[448] = s; }
+ { static const char* s[] = { "QWebView*", "QWebPage::WebWindowType", 0 }; override_arg_types[449] = s; }
+ { static const char* s[] = { "QWidget*", "QWidget*", 0 }; override_arg_types[450] = s; }
+ { static const char* s[] = { 0, "QWidget*", 0 }; override_arg_types[451] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[452] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[453] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[454] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[455] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[456] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[457] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[458] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[459] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[460] = s; }
+ { static const char* s[] = { "bool", "QGraphicsItem*", "Qt::ItemSelectionMode", 0 }; override_arg_types[461] = s; }
+ { static const char* s[] = { "bool", "QPainterPath", "Qt::ItemSelectionMode", 0 }; override_arg_types[462] = s; }
+ { static const char* s[] = { "bool", "QGraphicsItem*", "QEvent*", 0 }; override_arg_types[463] = s; }
+ { static const char* s[] = { 0, "int", "int", 0 }; override_arg_types[464] = s; }
+ { static const char* s[] = { 0, "int", "QString", 0 }; override_arg_types[465] = s; }
+ { static const char* s[] = { 0, "int", "int", "QString", 0 }; override_arg_types[466] = s; }
+ { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[467] = s; }
+ { static const char* s[] = { "QColor", 0 }; override_arg_types[468] = s; }
+ { static const char* s[] = { "QAccessibleInterface*", "int", 0 }; override_arg_types[469] = s; }
+ { static const char* s[] = { "QAccessibleInterface*", "int", "int", 0 }; override_arg_types[470] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[471] = s; }
+ { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[472] = s; }
+ { static const char* s[] = { "QColor", 0 }; override_arg_types[473] = s; }
+ { static const char* s[] = { "int", "QAccessibleInterface*", 0 }; override_arg_types[474] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[475] = s; }
+ { static const char* s[] = { "QObject*", 0 }; override_arg_types[476] = s; }
+ { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[477] = s; }
+ { static const char* s[] = { "QRect", 0 }; override_arg_types[478] = s; }
+ { static const char* s[] = { "QAccessible::Role", 0 }; override_arg_types[479] = s; }
+ { static const char* s[] = { 0, "QAccessible::Text", "QString", 0 }; override_arg_types[480] = s; }
+ { static const char* s[] = { "QString", "QAccessible::Text", 0 }; override_arg_types[481] = s; }
+ { static const char* s[] = { "QWindow*", 0 }; override_arg_types[482] = s; }
+ { static const char* s[] = { 0, "int", "int", 0 }; override_arg_types[483] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[484] = s; }
+ { static const char* s[] = { "QRect", "int", 0 }; override_arg_types[485] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[486] = s; }
+ { static const char* s[] = { "int", "QPoint", 0 }; override_arg_types[487] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[488] = s; }
+ { static const char* s[] = { 0, "int", "int", 0 }; override_arg_types[489] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[490] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[491] = s; }
+ { static const char* s[] = { 0, "int", "int", "int", 0 }; override_arg_types[492] = s; }
+ { static const char* s[] = { "QString", "int", "int", 0 }; override_arg_types[493] = s; }
+ { static const char* s[] = { "QVariant", 0 }; override_arg_types[494] = s; }
{ static const char* s[] = { "QVariant", 0 }; override_arg_types[495] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[496] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[497] = s; }
- { static const char* s[] = { "QSqlRecord", 0 }; override_arg_types[498] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[499] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[500] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[501] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[502] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[503] = s; }
- { static const char* s[] = { 0, "QString", 0 }; override_arg_types[504] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[505] = s; }
- { static const char* s[] = { 0, "QVariant", "int", 0 }; override_arg_types[506] = s; }
- { static const char* s[] = { "QList", 0 }; override_arg_types[507] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[508] = s; }
- { static const char* s[] = { "QByteArray", 0 }; override_arg_types[509] = s; }
- { static const char* s[] = { "QByteArray", "QChar*", "int", "ConverterState*", 0 }; override_arg_types[510] = s; }
- { static const char* s[] = { "QString", "const char*", "int", "ConverterState*", 0 }; override_arg_types[511] = s; }
- { static const char* s[] = { "QVariant", "int", "int", 0 }; override_arg_types[512] = s; }
- { static const char* s[] = { 0, "int", "int", "QVariant", 0 }; override_arg_types[513] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[514] = s; }
- { static const char* s[] = { "bool", "QUndoCommand*", 0 }; override_arg_types[515] = s; }
+ { static const char* s[] = { "QVariant", 0 }; override_arg_types[496] = s; }
+ { static const char* s[] = { "QVariant", 0 }; override_arg_types[497] = s; }
+ { static const char* s[] = { 0, "QVariant", 0 }; override_arg_types[498] = s; }
+ { static const char* s[] = { "QStringList", 0 }; override_arg_types[499] = s; }
+ { static const char* s[] = { 0, "QString", 0 }; override_arg_types[500] = s; }
+ { static const char* s[] = { "QStringList", "QString", 0 }; override_arg_types[501] = s; }
+ { static const char* s[] = { "QIcon", "IconType", 0 }; override_arg_types[502] = s; }
+ { static const char* s[] = { "QIcon", "QFileInfo", 0 }; override_arg_types[503] = s; }
+ { static const char* s[] = { "QString", "QFileInfo", 0 }; override_arg_types[504] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[505] = s; }
+ { static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[506] = s; }
+ { static const char* s[] = { "QByteArray", 0 }; override_arg_types[507] = s; }
+ { static const char* s[] = { "QWidget*", "int", "QWidget*", 0 }; override_arg_types[508] = s; }
+ { static const char* s[] = { "QByteArray", "int", 0 }; override_arg_types[509] = s; }
+ { static const char* s[] = { "QSpacerItem*", 0 }; override_arg_types[510] = s; }
+ { static const char* s[] = { "QWidget*", 0 }; override_arg_types[511] = s; }
+ { static const char* s[] = { "QListWidgetItem*", 0 }; override_arg_types[512] = s; }
+ { static const char* s[] = { "QVariant", "int", 0 }; override_arg_types[513] = s; }
+ { static const char* s[] = { 0, "int", "QVariant", 0 }; override_arg_types[514] = s; }
+ { static const char* s[] = { "QList", "QNetworkProxyQuery", 0 }; override_arg_types[515] = s; }
{ static const char* s[] = { 0, 0 }; override_arg_types[516] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[517] = s; }
+ { static const char* s[] = { "int", "QPaintDevice::PaintDeviceMetric", 0 }; override_arg_types[517] = s; }
+ { static const char* s[] = { 0, "const char*", "uint", 0 }; override_arg_types[518] = s; }
+ { static const char* s[] = { 0, "PageSize", 0 }; override_arg_types[519] = s; }
+ { static const char* s[] = { 0, "QSizeF", 0 }; override_arg_types[520] = s; }
+ { static const char* s[] = { "QUrl", "QUrl", "DataType", 0 }; override_arg_types[521] = s; }
+ { static const char* s[] = { "Flags", 0 }; override_arg_types[522] = s; }
+ { static const char* s[] = { "ImageType", 0 }; override_arg_types[523] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[524] = s; }
+ { static const char* s[] = { 0, "QObject*", 0 }; override_arg_types[525] = s; }
+ { static const char* s[] = { 0, "Status", 0 }; override_arg_types[526] = s; }
+ { static const char* s[] = { "QNetworkAccessManager*", "QObject*", 0 }; override_arg_types[527] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[528] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[529] = s; }
+ { static const char* s[] = { 0, "QQmlProperty", 0 }; override_arg_types[530] = s; }
+ { static const char* s[] = { "QQuickImageResponse*", "QString", "QSize", 0 }; override_arg_types[531] = s; }
+ { static const char* s[] = { "QImage", "QString", "QSize*", "QSize", 0 }; override_arg_types[532] = s; }
+ { static const char* s[] = { "QPixmap", "QString", "QSize*", "QSize", 0 }; override_arg_types[533] = s; }
+ { static const char* s[] = { "QQuickTextureFactory*", "QString", "QSize*", "QSize", 0 }; override_arg_types[534] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[535] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[536] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[537] = s; }
+ { static const char* s[] = { "int", "QSGMaterial*", 0 }; override_arg_types[538] = s; }
+ { static const char* s[] = { "QSGMaterialShader*", 0 }; override_arg_types[539] = s; }
+ { static const char* s[] = { 0, "int", "QVariant", "QSql::ParamType", 0 }; override_arg_types[540] = s; }
+ { static const char* s[] = { 0, "QString", "QVariant", "QSql::ParamType", 0 }; override_arg_types[541] = s; }
+ { static const char* s[] = { "bool", "int", 0 }; override_arg_types[542] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[543] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[544] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[545] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[546] = s; }
+ { static const char* s[] = { "bool", "int", 0 }; override_arg_types[547] = s; }
+ { static const char* s[] = { "QVariant", 0 }; override_arg_types[548] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[549] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[550] = s; }
+ { static const char* s[] = { "QSqlRecord", 0 }; override_arg_types[551] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[552] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[553] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[554] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[555] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[556] = s; }
+ { static const char* s[] = { 0, "QString", 0 }; override_arg_types[557] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[558] = s; }
+ { static const char* s[] = { 0, "QVariant", "int", 0 }; override_arg_types[559] = s; }
+ { static const char* s[] = { "QList", 0 }; override_arg_types[560] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[561] = s; }
+ { static const char* s[] = { "QByteArray", 0 }; override_arg_types[562] = s; }
+ { static const char* s[] = { "QByteArray", "QChar*", "int", "ConverterState*", 0 }; override_arg_types[563] = s; }
+ { static const char* s[] = { "QString", "const char*", "int", "ConverterState*", 0 }; override_arg_types[564] = s; }
+ { static const char* s[] = { "QVariant", "int", "int", 0 }; override_arg_types[565] = s; }
+ { static const char* s[] = { 0, "int", "int", "QVariant", 0 }; override_arg_types[566] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[567] = s; }
+ { static const char* s[] = { "bool", "QUndoCommand*", 0 }; override_arg_types[568] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[569] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[570] = s; }
qNames = q_names.keys();
nNames = n_names.keys(); }}
quint64 LObjects::override_id(uint unique, int id) {
- return (245 * (quint64)unique + id); }
+ return (275 * (quint64)unique + id); }
void* LObjects::overrideFun(quint64 id) {
return override_lisp_functions.value(id, 0); }
@@ -2433,37 +2605,37 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) {
n = -LObjects::n_names.value(name, 0); }}
const QMetaObject* m = 0;
switch(n) {
- case -246: m = &QWindowStateChangeEvent::staticMetaObject; break;
- case -244: m = &QWheelEvent::staticMetaObject; break;
- case -243: m = &QWhatsThisClickedEvent::staticMetaObject; break;
- case -221: m = &QTouchEvent::staticMetaObject; break;
- case -220: m = &QTouchDevice::staticMetaObject; break;
- case -218: m = &QTimerEvent::staticMetaObject; break;
- case -215: m = &QTextTableFormat::staticMetaObject; break;
- case -214: m = &QTextTableCellFormat::staticMetaObject; break;
- case -211: m = &QTextListFormat::staticMetaObject; break;
- case -207: m = &QTextImageFormat::staticMetaObject; break;
- case -206: m = &QTextFrameFormat::staticMetaObject; break;
- case -204: m = &QTextFormat::staticMetaObject; break;
- case -197: m = &QTextCharFormat::staticMetaObject; break;
- case -194: m = &QTextBlockFormat::staticMetaObject; break;
- case -192: m = &QTabletEvent::staticMetaObject; break;
- case -181: m = &QStatusTipEvent::staticMetaObject; break;
- case -164: m = &QSizePolicy::staticMetaObject; break;
- case -163: m = &QShowEvent::staticMetaObject; break;
- case -162: m = &QShortcutEvent::staticMetaObject; break;
- case -160: m = &QScrollPrepareEvent::staticMetaObject; break;
- case -159: m = &QScrollEvent::staticMetaObject; break;
- case -157: m = &QResizeEvent::staticMetaObject; break;
- case -153: m = &QRadialGradient::staticMetaObject; break;
- case -143: m = &QPalette::staticMetaObject; break;
- case -140: m = &QPainter::staticMetaObject; break;
- case -139: m = &QPaintEvent::staticMetaObject; break;
- case -121: m = &QMoveEvent::staticMetaObject; break;
- case -120: m = &QMouseEvent::staticMetaObject; break;
- case -110: m = &QLocale::staticMetaObject; break;
- case -108: m = &QLinearGradient::staticMetaObject; break;
- case -104: m = &QKeyEvent::staticMetaObject; break;
+ case -276: m = &QWindowStateChangeEvent::staticMetaObject; break;
+ case -274: m = &QWheelEvent::staticMetaObject; break;
+ case -273: m = &QWhatsThisClickedEvent::staticMetaObject; break;
+ case -251: m = &QTouchEvent::staticMetaObject; break;
+ case -250: m = &QTouchDevice::staticMetaObject; break;
+ case -248: m = &QTimerEvent::staticMetaObject; break;
+ case -245: m = &QTextTableFormat::staticMetaObject; break;
+ case -244: m = &QTextTableCellFormat::staticMetaObject; break;
+ case -241: m = &QTextListFormat::staticMetaObject; break;
+ case -237: m = &QTextImageFormat::staticMetaObject; break;
+ case -236: m = &QTextFrameFormat::staticMetaObject; break;
+ case -234: m = &QTextFormat::staticMetaObject; break;
+ case -227: m = &QTextCharFormat::staticMetaObject; break;
+ case -224: m = &QTextBlockFormat::staticMetaObject; break;
+ case -222: m = &QTabletEvent::staticMetaObject; break;
+ case -211: m = &QStatusTipEvent::staticMetaObject; break;
+ case -194: m = &QSizePolicy::staticMetaObject; break;
+ case -193: m = &QShowEvent::staticMetaObject; break;
+ case -192: m = &QShortcutEvent::staticMetaObject; break;
+ case -190: m = &QScrollPrepareEvent::staticMetaObject; break;
+ case -189: m = &QScrollEvent::staticMetaObject; break;
+ case -171: m = &QResizeEvent::staticMetaObject; break;
+ case -167: m = &QRadialGradient::staticMetaObject; break;
+ case -145: m = &QPalette::staticMetaObject; break;
+ case -142: m = &QPainter::staticMetaObject; break;
+ case -141: m = &QPaintEvent::staticMetaObject; break;
+ case -123: m = &QMoveEvent::staticMetaObject; break;
+ case -122: m = &QMouseEvent::staticMetaObject; break;
+ case -112: m = &QLocale::staticMetaObject; break;
+ case -110: m = &QLinearGradient::staticMetaObject; break;
+ case -106: m = &QKeyEvent::staticMetaObject; break;
case -100: m = &QInputMethodQueryEvent::staticMetaObject; break;
case -99: m = &QInputMethodEvent::staticMetaObject; break;
case -98: m = &QInputEvent::staticMetaObject; break;
@@ -2588,115 +2760,115 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) {
case 109: m = &QIntValidator::staticMetaObject; break;
case 110: m = &QItemDelegate::staticMetaObject; break;
case 111: m = &QItemSelectionModel::staticMetaObject; break;
- case 112: m = &QKeyEventTransition::staticMetaObject; break;
- case 113: m = &QLCDNumber::staticMetaObject; break;
- case 114: m = &QLabel::staticMetaObject; break;
- case 115: m = &QLayout::staticMetaObject; break;
- case 116: m = &QLibrary::staticMetaObject; break;
- case 117: m = &QLineEdit::staticMetaObject; break;
- case 118: m = &QListView::staticMetaObject; break;
- case 119: m = &QListWidget::staticMetaObject; break;
- case 122: m = &QMainWindow::staticMetaObject; break;
- case 123: m = &QMdiArea::staticMetaObject; break;
- case 124: m = &QMdiSubWindow::staticMetaObject; break;
- case 130: m = &QMenu::staticMetaObject; break;
- case 131: m = &QMenuBar::staticMetaObject; break;
- case 132: m = &QMessageBox::staticMetaObject; break;
- case 133: m = &QMimeData::staticMetaObject; break;
- case 134: m = &QMouseEventTransition::staticMetaObject; break;
- case 135: m = &QMovie::staticMetaObject; break;
- case 140: m = &QObject::staticMetaObject; break;
- case 141: m = &QObjectCleanupHandler::staticMetaObject; break;
- case 142: m = &QOpenGLContext::staticMetaObject; break;
- case 143: m = &QOpenGLShader::staticMetaObject; break;
- case 144: m = &QOpenGLShaderProgram::staticMetaObject; break;
- case 145: m = &QOpenGLWidget::staticMetaObject; break;
- case 146: m = &QOpenGLWindow::staticMetaObject; break;
- case 147: m = &QPageSetupDialog::staticMetaObject; break;
- case 148: m = &QPaintDeviceWindow::staticMetaObject; break;
- case 149: m = &QPanGesture::staticMetaObject; break;
- case 150: m = &QParallelAnimationGroup::staticMetaObject; break;
- case 151: m = &QPauseAnimation::staticMetaObject; break;
- case 152: m = &QPdfWriter::staticMetaObject; break;
- case 153: m = &QPinchGesture::staticMetaObject; break;
- case 154: m = &QPlainTextDocumentLayout::staticMetaObject; break;
- case 155: m = &QPlainTextEdit::staticMetaObject; break;
- case 156: m = &QPluginLoader::staticMetaObject; break;
- case 157: m = &QPrintDialog::staticMetaObject; break;
- case 158: m = &QPrintPreviewDialog::staticMetaObject; break;
- case 159: m = &QPrintPreviewWidget::staticMetaObject; break;
- case 160: m = &QProcess::staticMetaObject; break;
- case 161: m = &QProgressBar::staticMetaObject; break;
- case 162: m = &QProgressDialog::staticMetaObject; break;
- case 163: m = &QPropertyAnimation::staticMetaObject; break;
- case 164: m = &QProxyStyle::staticMetaObject; break;
- case 165: m = &QPushButton::staticMetaObject; break;
- case 166: m = &QRadioButton::staticMetaObject; break;
- case 168: m = &QRegExpValidator::staticMetaObject; break;
- case 169: m = &QRubberBand::staticMetaObject; break;
- case 170: m = &QScreen::staticMetaObject; break;
- case 171: m = &QScrollArea::staticMetaObject; break;
- case 172: m = &QScrollBar::staticMetaObject; break;
- case 173: m = &QSequentialAnimationGroup::staticMetaObject; break;
- case 174: m = &QSessionManager::staticMetaObject; break;
- case 175: m = &QSettings::staticMetaObject; break;
- case 176: m = &QShortcut::staticMetaObject; break;
- case 177: m = &QSignalMapper::staticMetaObject; break;
- case 178: m = &QSignalTransition::staticMetaObject; break;
- case 179: m = &QSizeGrip::staticMetaObject; break;
- case 180: m = &QSlider::staticMetaObject; break;
- case 181: m = &QSortFilterProxyModel::staticMetaObject; break;
- case 182: m = &QSpinBox::staticMetaObject; break;
- case 183: m = &QSplashScreen::staticMetaObject; break;
- case 184: m = &QSplitter::staticMetaObject; break;
- case 185: m = &QSplitterHandle::staticMetaObject; break;
- case 191: m = &QStackedLayout::staticMetaObject; break;
- case 192: m = &QStackedWidget::staticMetaObject; break;
- case 193: m = &QStandardItemModel::staticMetaObject; break;
- case 194: m = &QState::staticMetaObject; break;
- case 195: m = &QStateMachine::staticMetaObject; break;
- case 196: m = &QStatusBar::staticMetaObject; break;
- case 197: m = &QStringListModel::staticMetaObject; break;
- case 198: m = &QStyle::staticMetaObject; break;
- case 199: m = &QStyleHints::staticMetaObject; break;
- case 200: m = &QStyledItemDelegate::staticMetaObject; break;
- case 203: m = &QSwipeGesture::staticMetaObject; break;
- case 204: m = &QSyntaxHighlighter::staticMetaObject; break;
- case 205: m = &QSystemTrayIcon::staticMetaObject; break;
- case 206: m = &QTabBar::staticMetaObject; break;
- case 207: m = &QTabWidget::staticMetaObject; break;
- case 208: m = &QTableView::staticMetaObject; break;
- case 209: m = &QTableWidget::staticMetaObject; break;
- case 210: m = &QTapAndHoldGesture::staticMetaObject; break;
- case 211: m = &QTapGesture::staticMetaObject; break;
- case 214: m = &QTextBlockGroup::staticMetaObject; break;
- case 215: m = &QTextBrowser::staticMetaObject; break;
- case 216: m = &QTextDocument::staticMetaObject; break;
- case 217: m = &QTextEdit::staticMetaObject; break;
- case 218: m = &QTextFrame::staticMetaObject; break;
- case 219: m = &QTextList::staticMetaObject; break;
- case 220: m = &QTextObject::staticMetaObject; break;
- case 221: m = &QTextTable::staticMetaObject; break;
- case 222: m = &QTimeEdit::staticMetaObject; break;
- case 223: m = &QTimeLine::staticMetaObject; break;
- case 224: m = &QTimer::staticMetaObject; break;
- case 225: m = &QToolBar::staticMetaObject; break;
- case 226: m = &QToolBox::staticMetaObject; break;
- case 227: m = &QToolButton::staticMetaObject; break;
- case 228: m = &QTranslator::staticMetaObject; break;
- case 229: m = &QTreeView::staticMetaObject; break;
- case 230: m = &QTreeWidget::staticMetaObject; break;
- case 232: m = &QUndoGroup::staticMetaObject; break;
- case 233: m = &QUndoStack::staticMetaObject; break;
- case 234: m = &QUndoView::staticMetaObject; break;
- case 235: m = &QVBoxLayout::staticMetaObject; break;
- case 236: m = &QValidator::staticMetaObject; break;
- case 237: m = &QVariantAnimation::staticMetaObject; break;
- case 246: m = &QWidget::staticMetaObject; break;
- case 247: m = &QWidgetAction::staticMetaObject; break;
- case 248: m = &QWindow::staticMetaObject; break;
- case 249: m = &QWizard::staticMetaObject; break;
- case 250: m = &QWizardPage::staticMetaObject; break;
+ case 113: m = &QKeyEventTransition::staticMetaObject; break;
+ case 114: m = &QLCDNumber::staticMetaObject; break;
+ case 115: m = &QLabel::staticMetaObject; break;
+ case 116: m = &QLayout::staticMetaObject; break;
+ case 117: m = &QLibrary::staticMetaObject; break;
+ case 118: m = &QLineEdit::staticMetaObject; break;
+ case 119: m = &QListView::staticMetaObject; break;
+ case 120: m = &QListWidget::staticMetaObject; break;
+ case 123: m = &QMainWindow::staticMetaObject; break;
+ case 124: m = &QMdiArea::staticMetaObject; break;
+ case 125: m = &QMdiSubWindow::staticMetaObject; break;
+ case 132: m = &QMenu::staticMetaObject; break;
+ case 133: m = &QMenuBar::staticMetaObject; break;
+ case 134: m = &QMessageBox::staticMetaObject; break;
+ case 135: m = &QMimeData::staticMetaObject; break;
+ case 136: m = &QMouseEventTransition::staticMetaObject; break;
+ case 137: m = &QMovie::staticMetaObject; break;
+ case 142: m = &QObject::staticMetaObject; break;
+ case 143: m = &QObjectCleanupHandler::staticMetaObject; break;
+ case 144: m = &QOpenGLContext::staticMetaObject; break;
+ case 145: m = &QOpenGLShader::staticMetaObject; break;
+ case 146: m = &QOpenGLShaderProgram::staticMetaObject; break;
+ case 147: m = &QOpenGLWidget::staticMetaObject; break;
+ case 148: m = &QOpenGLWindow::staticMetaObject; break;
+ case 149: m = &QPageSetupDialog::staticMetaObject; break;
+ case 150: m = &QPaintDeviceWindow::staticMetaObject; break;
+ case 151: m = &QPanGesture::staticMetaObject; break;
+ case 152: m = &QParallelAnimationGroup::staticMetaObject; break;
+ case 153: m = &QPauseAnimation::staticMetaObject; break;
+ case 154: m = &QPdfWriter::staticMetaObject; break;
+ case 155: m = &QPinchGesture::staticMetaObject; break;
+ case 156: m = &QPlainTextDocumentLayout::staticMetaObject; break;
+ case 157: m = &QPlainTextEdit::staticMetaObject; break;
+ case 158: m = &QPluginLoader::staticMetaObject; break;
+ case 159: m = &QPrintDialog::staticMetaObject; break;
+ case 160: m = &QPrintPreviewDialog::staticMetaObject; break;
+ case 161: m = &QPrintPreviewWidget::staticMetaObject; break;
+ case 162: m = &QProcess::staticMetaObject; break;
+ case 163: m = &QProgressBar::staticMetaObject; break;
+ case 164: m = &QProgressDialog::staticMetaObject; break;
+ case 165: m = &QPropertyAnimation::staticMetaObject; break;
+ case 166: m = &QProxyStyle::staticMetaObject; break;
+ case 167: m = &QPushButton::staticMetaObject; break;
+ case 187: m = &QRadioButton::staticMetaObject; break;
+ case 189: m = &QRegExpValidator::staticMetaObject; break;
+ case 190: m = &QRubberBand::staticMetaObject; break;
+ case 196: m = &QScreen::staticMetaObject; break;
+ case 197: m = &QScrollArea::staticMetaObject; break;
+ case 198: m = &QScrollBar::staticMetaObject; break;
+ case 199: m = &QSequentialAnimationGroup::staticMetaObject; break;
+ case 200: m = &QSessionManager::staticMetaObject; break;
+ case 201: m = &QSettings::staticMetaObject; break;
+ case 202: m = &QShortcut::staticMetaObject; break;
+ case 203: m = &QSignalMapper::staticMetaObject; break;
+ case 204: m = &QSignalTransition::staticMetaObject; break;
+ case 205: m = &QSizeGrip::staticMetaObject; break;
+ case 206: m = &QSlider::staticMetaObject; break;
+ case 207: m = &QSortFilterProxyModel::staticMetaObject; break;
+ case 208: m = &QSpinBox::staticMetaObject; break;
+ case 209: m = &QSplashScreen::staticMetaObject; break;
+ case 210: m = &QSplitter::staticMetaObject; break;
+ case 211: m = &QSplitterHandle::staticMetaObject; break;
+ case 217: m = &QStackedLayout::staticMetaObject; break;
+ case 218: m = &QStackedWidget::staticMetaObject; break;
+ case 219: m = &QStandardItemModel::staticMetaObject; break;
+ case 220: m = &QState::staticMetaObject; break;
+ case 221: m = &QStateMachine::staticMetaObject; break;
+ case 222: m = &QStatusBar::staticMetaObject; break;
+ case 223: m = &QStringListModel::staticMetaObject; break;
+ case 224: m = &QStyle::staticMetaObject; break;
+ case 225: m = &QStyleHints::staticMetaObject; break;
+ case 226: m = &QStyledItemDelegate::staticMetaObject; break;
+ case 229: m = &QSwipeGesture::staticMetaObject; break;
+ case 230: m = &QSyntaxHighlighter::staticMetaObject; break;
+ case 231: m = &QSystemTrayIcon::staticMetaObject; break;
+ case 232: m = &QTabBar::staticMetaObject; break;
+ case 233: m = &QTabWidget::staticMetaObject; break;
+ case 234: m = &QTableView::staticMetaObject; break;
+ case 235: m = &QTableWidget::staticMetaObject; break;
+ case 236: m = &QTapAndHoldGesture::staticMetaObject; break;
+ case 237: m = &QTapGesture::staticMetaObject; break;
+ case 240: m = &QTextBlockGroup::staticMetaObject; break;
+ case 241: m = &QTextBrowser::staticMetaObject; break;
+ case 242: m = &QTextDocument::staticMetaObject; break;
+ case 243: m = &QTextEdit::staticMetaObject; break;
+ case 244: m = &QTextFrame::staticMetaObject; break;
+ case 245: m = &QTextList::staticMetaObject; break;
+ case 246: m = &QTextObject::staticMetaObject; break;
+ case 247: m = &QTextTable::staticMetaObject; break;
+ case 248: m = &QTimeEdit::staticMetaObject; break;
+ case 249: m = &QTimeLine::staticMetaObject; break;
+ case 250: m = &QTimer::staticMetaObject; break;
+ case 251: m = &QToolBar::staticMetaObject; break;
+ case 252: m = &QToolBox::staticMetaObject; break;
+ case 253: m = &QToolButton::staticMetaObject; break;
+ case 254: m = &QTranslator::staticMetaObject; break;
+ case 255: m = &QTreeView::staticMetaObject; break;
+ case 256: m = &QTreeWidget::staticMetaObject; break;
+ case 258: m = &QUndoGroup::staticMetaObject; break;
+ case 259: m = &QUndoStack::staticMetaObject; break;
+ case 260: m = &QUndoView::staticMetaObject; break;
+ case 261: m = &QVBoxLayout::staticMetaObject; break;
+ case 262: m = &QValidator::staticMetaObject; break;
+ case 263: m = &QVariantAnimation::staticMetaObject; break;
+ case 272: m = &QWidget::staticMetaObject; break;
+ case 273: m = &QWidgetAction::staticMetaObject; break;
+ case 274: m = &QWindow::staticMetaObject; break;
+ case 275: m = &QWizard::staticMetaObject; break;
+ case 276: m = &QWizardPage::staticMetaObject; break;
case 95:
case 96:
case 97:
@@ -2718,53 +2890,82 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) {
case 33:
case 34:
case 86:
- case 125:
case 126:
case 127:
case 128:
case 129:
- case 167:
- case 238:
- case 239:
+ case 130:
+ case 131:
+ case 188:
+ case 264:
+ case 265:
if(staticMetaObject_multimedia) {
m = staticMetaObject_multimedia(n); }
break;
case 7:
case 12:
case 104:
- case 120:
case 121:
- case 136:
- case 137:
+ case 122:
case 138:
case 139:
- case 212:
- case 213:
- case 231:
+ case 140:
+ case 141:
+ case 238:
+ case 239:
+ case 257:
if(staticMetaObject_network) {
m = staticMetaObject_network(n); }
break;
+ case 112:
+ case 168:
+ case 169:
+ case 170:
+ case 171:
+ case 172:
+ case 173:
+ case 174:
+ case 175:
+ case 176:
+ case 177:
+ case 178:
+ case 179:
+ case 180:
+ case 181:
+ case 182:
+ case 183:
+ case 184:
+ case 185:
case 186:
- case 187:
- case 188:
- case 189:
- case 190:
+ case 191:
+ case 192:
+ case 193:
+ case 194:
+ case 195:
+ if(staticMetaObject_quick) {
+ m = staticMetaObject_quick(n); }
+ break;
+ case 212:
+ case 213:
+ case 214:
+ case 215:
+ case 216:
if(staticMetaObject_sql) {
m = staticMetaObject_sql(n); }
break;
case 83:
- case 201:
- case 202:
+ case 227:
+ case 228:
if(staticMetaObject_svg) {
m = staticMetaObject_svg(n); }
break;
case 88:
- case 240:
- case 241:
- case 242:
- case 243:
- case 244:
- case 245:
+ case 266:
+ case 267:
+ case 268:
+ case 269:
+ case 270:
+ case 271:
if(staticMetaObject_webkit) {
m = staticMetaObject_webkit(n); }
break; }
@@ -2861,108 +3062,108 @@ void LObjects::deleteNObject(int n, void* p, int gc) {
case 101: if(gc) delete (QItemEditorCreatorBase*)p; else delete (LItemEditorCreatorBase*)p; break;
case 102: if(gc) delete (QItemEditorFactory*)p; else delete (LItemEditorFactory*)p; break;
case 103: if(gc) delete (QItemSelectionRange*)p; else delete (LItemSelectionRange*)p; break;
- case 104: if(gc) delete (QKeyEvent*)p; else delete (LKeyEvent*)p; break;
- case 105: if(gc) delete (QKeySequence*)p; else delete (LKeySequence*)p; break;
- case 106: if(gc) delete (QLayoutItem*)p; else delete (LLayoutItem*)p; break;
- case 107: if(gc) delete (QLibraryInfo*)p; else delete (LLibraryInfo*)p; break;
- case 108: if(gc) delete (QLinearGradient*)p; else delete (LLinearGradient*)p; break;
- case 109: if(gc) delete (QListWidgetItem*)p; else delete (LListWidgetItem*)p; break;
- case 110: if(gc) delete (QLocale*)p; else delete (LLocale*)p; break;
- case 111: if(gc) delete (QMargins*)p; else delete (LMargins*)p; break;
- case 112: if(gc) delete (QMarginsF*)p; else delete (LMarginsF*)p; break;
- case 113: if(gc) delete (QMatrix*)p; else delete (LMatrix*)p; break;
- case 114: if(gc) delete (QMatrix4x4*)p; else delete (LMatrix4x4*)p; break;
- case 117: if(gc) delete (QMessageAuthenticationCode*)p; else delete (LMessageAuthenticationCode*)p; break;
- case 118: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break;
- case 119: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break;
- case 120: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break;
- case 121: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break;
- case 131: if(gc) delete (QOpenGLFramebufferObject*)p; else delete (LOpenGLFramebufferObject*)p; break;
- case 132: if(gc) delete (QOpenGLFramebufferObjectFormat*)p; else delete (LOpenGLFramebufferObjectFormat*)p; break;
- case 133: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break;
- case 134: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break;
- case 135: if(gc) delete (QPageLayout*)p; else delete (LPageLayout*)p; break;
- case 136: if(gc) delete (QPageSize*)p; else delete (LPageSize*)p; break;
- case 139: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break;
- case 140: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break;
- case 141: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break;
- case 142: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break;
- case 143: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break;
- case 144: if(gc) delete (QPen*)p; else delete (LPen*)p; break;
- case 145: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break;
- case 146: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break;
- case 147: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break;
- case 148: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break;
- case 149: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break;
- case 150: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break;
- case 151: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break;
- case 152: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break;
- case 153: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break;
- case 154: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break;
- case 155: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break;
- case 156: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break;
- case 157: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break;
- case 158: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break;
- case 159: if(gc) delete (QScrollEvent*)p; else delete (LScrollEvent*)p; break;
- case 160: if(gc) delete (QScrollPrepareEvent*)p; else delete (LScrollPrepareEvent*)p; break;
- case 161: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break;
- case 162: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break;
- case 163: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break;
- case 164: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break;
- case 165: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break;
- case 179: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break;
- case 181: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break;
- case 182: if(gc) delete (QStorageInfo*)p; else delete (LStorageInfo*)p; break;
- case 183: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break;
- case 184: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break;
- case 186: if(gc) delete (QSurfaceFormat*)p; else delete (LSurfaceFormat*)p; break;
- case 189: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break;
- case 190: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break;
- case 191: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break;
- case 192: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break;
- case 193: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break;
- case 194: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break;
- case 195: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break;
- case 196: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break;
- case 197: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break;
- case 198: if(gc) /* nothing */; else delete (LTextCodec*)p; break;
- case 199: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break;
- case 200: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break;
- case 201: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break;
- case 202: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break;
- case 203: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break;
- case 204: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break;
- case 205: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break;
- case 206: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break;
- case 207: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break;
- case 208: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break;
- case 209: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break;
- case 210: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break;
- case 211: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break;
- case 212: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break;
- case 213: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break;
- case 214: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break;
- case 215: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break;
- case 216: if(gc) delete (QTime*)p; else delete (LTime*)p; break;
- case 217: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break;
- case 218: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break;
- case 219: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break;
- case 220: if(gc) delete (QTouchDevice*)p; else delete (LTouchDevice*)p; break;
- case 221: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break;
- case 222: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break;
- case 223: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break;
- case 224: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break;
- case 225: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break;
- case 226: if(gc) delete (QUuid*)p; else delete (LUuid*)p; break;
- case 227: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break;
- case 228: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break;
- case 229: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break;
- case 230: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break;
- case 242: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break;
- case 243: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break;
- case 244: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break;
- case 245: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break;
- case 246: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break;
+ case 106: if(gc) delete (QKeyEvent*)p; else delete (LKeyEvent*)p; break;
+ case 107: if(gc) delete (QKeySequence*)p; else delete (LKeySequence*)p; break;
+ case 108: if(gc) delete (QLayoutItem*)p; else delete (LLayoutItem*)p; break;
+ case 109: if(gc) delete (QLibraryInfo*)p; else delete (LLibraryInfo*)p; break;
+ case 110: if(gc) delete (QLinearGradient*)p; else delete (LLinearGradient*)p; break;
+ case 111: if(gc) delete (QListWidgetItem*)p; else delete (LListWidgetItem*)p; break;
+ case 112: if(gc) delete (QLocale*)p; else delete (LLocale*)p; break;
+ case 113: if(gc) delete (QMargins*)p; else delete (LMargins*)p; break;
+ case 114: if(gc) delete (QMarginsF*)p; else delete (LMarginsF*)p; break;
+ case 115: if(gc) delete (QMatrix*)p; else delete (LMatrix*)p; break;
+ case 116: if(gc) delete (QMatrix4x4*)p; else delete (LMatrix4x4*)p; break;
+ case 119: if(gc) delete (QMessageAuthenticationCode*)p; else delete (LMessageAuthenticationCode*)p; break;
+ case 120: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break;
+ case 121: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break;
+ case 122: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break;
+ case 123: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break;
+ case 133: if(gc) delete (QOpenGLFramebufferObject*)p; else delete (LOpenGLFramebufferObject*)p; break;
+ case 134: if(gc) delete (QOpenGLFramebufferObjectFormat*)p; else delete (LOpenGLFramebufferObjectFormat*)p; break;
+ case 135: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break;
+ case 136: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break;
+ case 137: if(gc) delete (QPageLayout*)p; else delete (LPageLayout*)p; break;
+ case 138: if(gc) delete (QPageSize*)p; else delete (LPageSize*)p; break;
+ case 141: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break;
+ case 142: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break;
+ case 143: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break;
+ case 144: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break;
+ case 145: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break;
+ case 146: if(gc) delete (QPen*)p; else delete (LPen*)p; break;
+ case 147: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break;
+ case 148: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break;
+ case 149: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break;
+ case 150: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break;
+ case 151: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break;
+ case 152: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break;
+ case 153: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break;
+ case 164: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break;
+ case 167: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break;
+ case 168: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break;
+ case 169: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break;
+ case 170: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break;
+ case 171: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break;
+ case 172: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break;
+ case 189: if(gc) delete (QScrollEvent*)p; else delete (LScrollEvent*)p; break;
+ case 190: if(gc) delete (QScrollPrepareEvent*)p; else delete (LScrollPrepareEvent*)p; break;
+ case 191: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break;
+ case 192: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break;
+ case 193: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break;
+ case 194: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break;
+ case 195: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break;
+ case 209: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break;
+ case 211: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break;
+ case 212: if(gc) delete (QStorageInfo*)p; else delete (LStorageInfo*)p; break;
+ case 213: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break;
+ case 214: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break;
+ case 216: if(gc) delete (QSurfaceFormat*)p; else delete (LSurfaceFormat*)p; break;
+ case 219: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break;
+ case 220: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break;
+ case 221: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break;
+ case 222: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break;
+ case 223: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break;
+ case 224: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break;
+ case 225: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break;
+ case 226: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break;
+ case 227: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break;
+ case 228: if(gc) /* nothing */; else delete (LTextCodec*)p; break;
+ case 229: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break;
+ case 230: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break;
+ case 231: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break;
+ case 232: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break;
+ case 233: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break;
+ case 234: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break;
+ case 235: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break;
+ case 236: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break;
+ case 237: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break;
+ case 238: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break;
+ case 239: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break;
+ case 240: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break;
+ case 241: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break;
+ case 242: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break;
+ case 243: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break;
+ case 244: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break;
+ case 245: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break;
+ case 246: if(gc) delete (QTime*)p; else delete (LTime*)p; break;
+ case 247: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break;
+ case 248: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break;
+ case 249: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break;
+ case 250: if(gc) delete (QTouchDevice*)p; else delete (LTouchDevice*)p; break;
+ case 251: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break;
+ case 252: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break;
+ case 253: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break;
+ case 254: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break;
+ case 255: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break;
+ case 256: if(gc) delete (QUuid*)p; else delete (LUuid*)p; break;
+ case 257: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break;
+ case 258: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break;
+ case 259: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break;
+ case 260: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break;
+ case 272: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break;
+ case 273: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break;
+ case 274: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break;
+ case 275: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break;
+ case 276: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break;
case 86:
case 88:
if(deleteNObject_help) {
@@ -2974,11 +3175,11 @@ void LObjects::deleteNObject(int n, void* p, int gc) {
case 27:
case 28:
case 97:
- case 115:
- case 116:
- case 231:
- case 232:
- case 233:
+ case 117:
+ case 118:
+ case 261:
+ case 262:
+ case 263:
if(deleteNObject_multimedia) {
deleteNObject_multimedia(n, p, gc); }
break;
@@ -2986,8 +3187,6 @@ void LObjects::deleteNObject(int n, void* p, int gc) {
case 90:
case 91:
case 93:
- case 122:
- case 123:
case 124:
case 125:
case 126:
@@ -2995,37 +3194,72 @@ void LObjects::deleteNObject(int n, void* p, int gc) {
case 128:
case 129:
case 130:
+ case 131:
+ case 132:
+ case 204:
+ case 205:
+ case 206:
+ case 207:
+ case 208:
+ if(deleteNObject_network) {
+ deleteNObject_network(n, p, gc); }
+ break;
+ case 104:
+ case 105:
+ case 154:
+ case 155:
+ case 156:
+ case 157:
+ case 158:
+ case 159:
+ case 160:
+ case 161:
+ case 162:
+ case 163:
+ case 165:
+ case 166:
+ case 173:
case 174:
case 175:
case 176:
case 177:
case 178:
- if(deleteNObject_network) {
- deleteNObject_network(n, p, gc); }
+ case 179:
+ case 180:
+ case 181:
+ case 182:
+ case 183:
+ case 184:
+ case 185:
+ case 186:
+ case 187:
+ case 188:
+ if(deleteNObject_quick) {
+ deleteNObject_quick(n, p, gc); }
break;
- case 166:
- case 167:
- case 168:
- case 169:
- case 170:
- case 171:
- case 172:
- case 173:
+ case 196:
+ case 197:
+ case 198:
+ case 199:
+ case 200:
+ case 201:
+ case 202:
+ case 203:
if(deleteNObject_sql) {
deleteNObject_sql(n, p, gc); }
break;
- case 187:
+ case 217:
if(deleteNObject_svg) {
deleteNObject_svg(n, p, gc); }
break;
- case 234:
- case 235:
- case 236:
- case 237:
- case 238:
- case 239:
- case 240:
- case 241:
+ case 264:
+ case 265:
+ case 266:
+ case 267:
+ case 268:
+ case 269:
+ case 270:
+ case 271:
if(deleteNObject_webkit) {
deleteNObject_webkit(n, p, gc); }
break; }}
@@ -3088,41 +3322,54 @@ const char* LObjects::nObjectSuperClass(const QByteArray& name) {
case 98: s = "QEvent"; break;
case 99: s = "QEvent"; break;
case 100: s = "QEvent"; break;
- case 104: s = "QInputEvent"; break;
- case 108: s = "QGradient"; break;
- case 120: s = "QInputEvent"; break;
- case 121: s = "QEvent"; break;
- case 133: s = "QPaintDevice"; break;
- case 137: s = "QPaintDevice"; break;
- case 139: s = "QEvent"; break;
- case 146: s = "QPaintDevice"; break;
- case 147: s = "QPaintDevice"; break;
- case 149: s = "QPagedPaintDevice"; break;
- case 153: s = "QGradient"; break;
- case 157: s = "QEvent"; break;
- case 159: s = "QEvent"; break;
- case 160: s = "QEvent"; break;
- case 162: s = "QEvent"; break;
- case 163: s = "QEvent"; break;
- case 165: s = "QLayoutItem"; break;
- case 169: s = "QSqlRecord"; break;
- case 181: s = "QEvent"; break;
- case 184: s = "QStyleOption"; break;
- case 187: s = "QPaintDevice"; break;
- case 192: s = "QInputEvent"; break;
- case 194: s = "QTextFormat"; break;
- case 197: s = "QTextFormat"; break;
- case 206: s = "QTextFormat"; break;
- case 207: s = "QTextCharFormat"; break;
- case 211: s = "QTextFormat"; break;
- case 214: s = "QTextCharFormat"; break;
- case 215: s = "QTextFrameFormat"; break;
- case 218: s = "QEvent"; break;
- case 221: s = "QInputEvent"; break;
- case 243: s = "QEvent"; break;
- case 244: s = "QInputEvent"; break;
- case 245: s = "QLayoutItem"; break;
- case 246: s = "QEvent"; break; }
+ case 106: s = "QInputEvent"; break;
+ case 110: s = "QGradient"; break;
+ case 122: s = "QInputEvent"; break;
+ case 123: s = "QEvent"; break;
+ case 135: s = "QPaintDevice"; break;
+ case 139: s = "QPaintDevice"; break;
+ case 141: s = "QEvent"; break;
+ case 148: s = "QPaintDevice"; break;
+ case 149: s = "QPaintDevice"; break;
+ case 151: s = "QPagedPaintDevice"; break;
+ case 165: s = "QQuickImageProvider"; break;
+ case 166: s = "QQmlImageProviderBase"; break;
+ case 167: s = "QGradient"; break;
+ case 171: s = "QEvent"; break;
+ case 173: s = "QSGNode"; break;
+ case 174: s = "QSGBasicGeometryNode"; break;
+ case 175: s = "QSGMaterial"; break;
+ case 177: s = "QSGBasicGeometryNode"; break;
+ case 182: s = "QSGNode"; break;
+ case 183: s = "QSGMaterial"; break;
+ case 184: s = "QSGGeometryNode"; break;
+ case 185: s = "QSGGeometryNode"; break;
+ case 186: s = "QSGOpaqueTextureMaterial"; break;
+ case 187: s = "QSGNode"; break;
+ case 188: s = "QSGMaterial"; break;
+ case 189: s = "QEvent"; break;
+ case 190: s = "QEvent"; break;
+ case 192: s = "QEvent"; break;
+ case 193: s = "QEvent"; break;
+ case 195: s = "QLayoutItem"; break;
+ case 199: s = "QSqlRecord"; break;
+ case 211: s = "QEvent"; break;
+ case 214: s = "QStyleOption"; break;
+ case 217: s = "QPaintDevice"; break;
+ case 222: s = "QInputEvent"; break;
+ case 224: s = "QTextFormat"; break;
+ case 227: s = "QTextFormat"; break;
+ case 236: s = "QTextFormat"; break;
+ case 237: s = "QTextCharFormat"; break;
+ case 241: s = "QTextFormat"; break;
+ case 244: s = "QTextCharFormat"; break;
+ case 245: s = "QTextFrameFormat"; break;
+ case 248: s = "QEvent"; break;
+ case 251: s = "QInputEvent"; break;
+ case 273: s = "QEvent"; break;
+ case 274: s = "QInputEvent"; break;
+ case 275: s = "QLayoutItem"; break;
+ case 276: s = "QEvent"; break; }
return s; }
StrList LObjects::overrideFunctions(const QByteArray& name) {
@@ -3212,111 +3459,111 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 109: ids = LIntValidator::overrideIds; break;
case 110: ids = LItemDelegate::overrideIds; break;
case 111: ids = LItemSelectionModel::overrideIds; break;
- case 112: ids = LKeyEventTransition::overrideIds; break;
- case 113: ids = LLCDNumber::overrideIds; break;
- case 114: ids = LLabel::overrideIds; break;
- case 116: ids = LLibrary::overrideIds; break;
- case 117: ids = LLineEdit::overrideIds; break;
- case 118: ids = LListView::overrideIds; break;
- case 119: ids = LListWidget::overrideIds; break;
- case 122: ids = LMainWindow::overrideIds; break;
- case 123: ids = LMdiArea::overrideIds; break;
- case 124: ids = LMdiSubWindow::overrideIds; break;
- case 130: ids = LMenu::overrideIds; break;
- case 131: ids = LMenuBar::overrideIds; break;
- case 132: ids = LMessageBox::overrideIds; break;
- case 133: ids = LMimeData::overrideIds; break;
- case 134: ids = LMouseEventTransition::overrideIds; break;
- case 135: ids = LMovie::overrideIds; break;
- case 140: ids = LObject::overrideIds; break;
- case 141: ids = LObjectCleanupHandler::overrideIds; break;
- case 142: ids = LOpenGLContext::overrideIds; break;
- case 143: ids = LOpenGLShader::overrideIds; break;
- case 144: ids = LOpenGLShaderProgram::overrideIds; break;
- case 145: ids = LOpenGLWidget::overrideIds; break;
- case 146: ids = LOpenGLWindow::overrideIds; break;
- case 147: ids = LPageSetupDialog::overrideIds; break;
- case 148: ids = LPaintDeviceWindow::overrideIds; break;
- case 149: ids = LPanGesture::overrideIds; break;
- case 150: ids = LParallelAnimationGroup::overrideIds; break;
- case 151: ids = LPauseAnimation::overrideIds; break;
- case 152: ids = LPdfWriter::overrideIds; break;
- case 153: ids = LPinchGesture::overrideIds; break;
- case 154: ids = LPlainTextDocumentLayout::overrideIds; break;
- case 155: ids = LPlainTextEdit::overrideIds; break;
- case 156: ids = LPluginLoader::overrideIds; break;
- case 157: ids = LPrintDialog::overrideIds; break;
- case 158: ids = LPrintPreviewDialog::overrideIds; break;
- case 159: ids = LPrintPreviewWidget::overrideIds; break;
- case 160: ids = LProcess::overrideIds; break;
- case 161: ids = LProgressBar::overrideIds; break;
- case 162: ids = LProgressDialog::overrideIds; break;
- case 163: ids = LPropertyAnimation::overrideIds; break;
- case 164: ids = LProxyStyle::overrideIds; break;
- case 165: ids = LPushButton::overrideIds; break;
- case 166: ids = LRadioButton::overrideIds; break;
- case 168: ids = LRegExpValidator::overrideIds; break;
- case 169: ids = LRubberBand::overrideIds; break;
- case 171: ids = LScrollArea::overrideIds; break;
- case 172: ids = LScrollBar::overrideIds; break;
- case 173: ids = LSequentialAnimationGroup::overrideIds; break;
- case 175: ids = LSettings::overrideIds; break;
- case 176: ids = LShortcut::overrideIds; break;
- case 177: ids = LSignalMapper::overrideIds; break;
- case 178: ids = LSignalTransition::overrideIds; break;
- case 179: ids = LSizeGrip::overrideIds; break;
- case 180: ids = LSlider::overrideIds; break;
- case 181: ids = LSortFilterProxyModel::overrideIds; break;
- case 182: ids = LSpinBox::overrideIds; break;
- case 183: ids = LSplashScreen::overrideIds; break;
- case 184: ids = LSplitter::overrideIds; break;
- case 185: ids = LSplitterHandle::overrideIds; break;
- case 191: ids = LStackedLayout::overrideIds; break;
- case 192: ids = LStackedWidget::overrideIds; break;
- case 193: ids = LStandardItemModel::overrideIds; break;
- case 194: ids = LState::overrideIds; break;
- case 195: ids = LStateMachine::overrideIds; break;
- case 196: ids = LStatusBar::overrideIds; break;
- case 197: ids = LStringListModel::overrideIds; break;
- case 199: ids = LStyleHints::overrideIds; break;
- case 200: ids = LStyledItemDelegate::overrideIds; break;
- case 203: ids = LSwipeGesture::overrideIds; break;
- case 204: ids = LSyntaxHighlighter::overrideIds; break;
- case 205: ids = LSystemTrayIcon::overrideIds; break;
- case 206: ids = LTabBar::overrideIds; break;
- case 207: ids = LTabWidget::overrideIds; break;
- case 208: ids = LTableView::overrideIds; break;
- case 209: ids = LTableWidget::overrideIds; break;
- case 210: ids = LTapAndHoldGesture::overrideIds; break;
- case 211: ids = LTapGesture::overrideIds; break;
- case 214: ids = LTextBlockGroup::overrideIds; break;
- case 215: ids = LTextBrowser::overrideIds; break;
- case 216: ids = LTextDocument::overrideIds; break;
- case 217: ids = LTextEdit::overrideIds; break;
- case 218: ids = LTextFrame::overrideIds; break;
- case 219: ids = LTextList::overrideIds; break;
- case 220: ids = LTextObject::overrideIds; break;
- case 221: ids = LTextTable::overrideIds; break;
- case 222: ids = LTimeEdit::overrideIds; break;
- case 223: ids = LTimeLine::overrideIds; break;
- case 224: ids = LTimer::overrideIds; break;
- case 225: ids = LToolBar::overrideIds; break;
- case 226: ids = LToolBox::overrideIds; break;
- case 227: ids = LToolButton::overrideIds; break;
- case 228: ids = LTranslator::overrideIds; break;
- case 229: ids = LTreeView::overrideIds; break;
- case 230: ids = LTreeWidget::overrideIds; break;
- case 232: ids = LUndoGroup::overrideIds; break;
- case 233: ids = LUndoStack::overrideIds; break;
- case 234: ids = LUndoView::overrideIds; break;
- case 235: ids = LVBoxLayout::overrideIds; break;
- case 236: ids = LValidator::overrideIds; break;
- case 237: ids = LVariantAnimation::overrideIds; break;
- case 246: ids = LWidget::overrideIds; break;
- case 247: ids = LWidgetAction::overrideIds; break;
- case 248: ids = LWindow::overrideIds; break;
- case 249: ids = LWizard::overrideIds; break;
- case 250: ids = LWizardPage::overrideIds; break;
+ case 113: ids = LKeyEventTransition::overrideIds; break;
+ case 114: ids = LLCDNumber::overrideIds; break;
+ case 115: ids = LLabel::overrideIds; break;
+ case 117: ids = LLibrary::overrideIds; break;
+ case 118: ids = LLineEdit::overrideIds; break;
+ case 119: ids = LListView::overrideIds; break;
+ case 120: ids = LListWidget::overrideIds; break;
+ case 123: ids = LMainWindow::overrideIds; break;
+ case 124: ids = LMdiArea::overrideIds; break;
+ case 125: ids = LMdiSubWindow::overrideIds; break;
+ case 132: ids = LMenu::overrideIds; break;
+ case 133: ids = LMenuBar::overrideIds; break;
+ case 134: ids = LMessageBox::overrideIds; break;
+ case 135: ids = LMimeData::overrideIds; break;
+ case 136: ids = LMouseEventTransition::overrideIds; break;
+ case 137: ids = LMovie::overrideIds; break;
+ case 142: ids = LObject::overrideIds; break;
+ case 143: ids = LObjectCleanupHandler::overrideIds; break;
+ case 144: ids = LOpenGLContext::overrideIds; break;
+ case 145: ids = LOpenGLShader::overrideIds; break;
+ case 146: ids = LOpenGLShaderProgram::overrideIds; break;
+ case 147: ids = LOpenGLWidget::overrideIds; break;
+ case 148: ids = LOpenGLWindow::overrideIds; break;
+ case 149: ids = LPageSetupDialog::overrideIds; break;
+ case 150: ids = LPaintDeviceWindow::overrideIds; break;
+ case 151: ids = LPanGesture::overrideIds; break;
+ case 152: ids = LParallelAnimationGroup::overrideIds; break;
+ case 153: ids = LPauseAnimation::overrideIds; break;
+ case 154: ids = LPdfWriter::overrideIds; break;
+ case 155: ids = LPinchGesture::overrideIds; break;
+ case 156: ids = LPlainTextDocumentLayout::overrideIds; break;
+ case 157: ids = LPlainTextEdit::overrideIds; break;
+ case 158: ids = LPluginLoader::overrideIds; break;
+ case 159: ids = LPrintDialog::overrideIds; break;
+ case 160: ids = LPrintPreviewDialog::overrideIds; break;
+ case 161: ids = LPrintPreviewWidget::overrideIds; break;
+ case 162: ids = LProcess::overrideIds; break;
+ case 163: ids = LProgressBar::overrideIds; break;
+ case 164: ids = LProgressDialog::overrideIds; break;
+ case 165: ids = LPropertyAnimation::overrideIds; break;
+ case 166: ids = LProxyStyle::overrideIds; break;
+ case 167: ids = LPushButton::overrideIds; break;
+ case 187: ids = LRadioButton::overrideIds; break;
+ case 189: ids = LRegExpValidator::overrideIds; break;
+ case 190: ids = LRubberBand::overrideIds; break;
+ case 197: ids = LScrollArea::overrideIds; break;
+ case 198: ids = LScrollBar::overrideIds; break;
+ case 199: ids = LSequentialAnimationGroup::overrideIds; break;
+ case 201: ids = LSettings::overrideIds; break;
+ case 202: ids = LShortcut::overrideIds; break;
+ case 203: ids = LSignalMapper::overrideIds; break;
+ case 204: ids = LSignalTransition::overrideIds; break;
+ case 205: ids = LSizeGrip::overrideIds; break;
+ case 206: ids = LSlider::overrideIds; break;
+ case 207: ids = LSortFilterProxyModel::overrideIds; break;
+ case 208: ids = LSpinBox::overrideIds; break;
+ case 209: ids = LSplashScreen::overrideIds; break;
+ case 210: ids = LSplitter::overrideIds; break;
+ case 211: ids = LSplitterHandle::overrideIds; break;
+ case 217: ids = LStackedLayout::overrideIds; break;
+ case 218: ids = LStackedWidget::overrideIds; break;
+ case 219: ids = LStandardItemModel::overrideIds; break;
+ case 220: ids = LState::overrideIds; break;
+ case 221: ids = LStateMachine::overrideIds; break;
+ case 222: ids = LStatusBar::overrideIds; break;
+ case 223: ids = LStringListModel::overrideIds; break;
+ case 225: ids = LStyleHints::overrideIds; break;
+ case 226: ids = LStyledItemDelegate::overrideIds; break;
+ case 229: ids = LSwipeGesture::overrideIds; break;
+ case 230: ids = LSyntaxHighlighter::overrideIds; break;
+ case 231: ids = LSystemTrayIcon::overrideIds; break;
+ case 232: ids = LTabBar::overrideIds; break;
+ case 233: ids = LTabWidget::overrideIds; break;
+ case 234: ids = LTableView::overrideIds; break;
+ case 235: ids = LTableWidget::overrideIds; break;
+ case 236: ids = LTapAndHoldGesture::overrideIds; break;
+ case 237: ids = LTapGesture::overrideIds; break;
+ case 240: ids = LTextBlockGroup::overrideIds; break;
+ case 241: ids = LTextBrowser::overrideIds; break;
+ case 242: ids = LTextDocument::overrideIds; break;
+ case 243: ids = LTextEdit::overrideIds; break;
+ case 244: ids = LTextFrame::overrideIds; break;
+ case 245: ids = LTextList::overrideIds; break;
+ case 246: ids = LTextObject::overrideIds; break;
+ case 247: ids = LTextTable::overrideIds; break;
+ case 248: ids = LTimeEdit::overrideIds; break;
+ case 249: ids = LTimeLine::overrideIds; break;
+ case 250: ids = LTimer::overrideIds; break;
+ case 251: ids = LToolBar::overrideIds; break;
+ case 252: ids = LToolBox::overrideIds; break;
+ case 253: ids = LToolButton::overrideIds; break;
+ case 254: ids = LTranslator::overrideIds; break;
+ case 255: ids = LTreeView::overrideIds; break;
+ case 256: ids = LTreeWidget::overrideIds; break;
+ case 258: ids = LUndoGroup::overrideIds; break;
+ case 259: ids = LUndoStack::overrideIds; break;
+ case 260: ids = LUndoView::overrideIds; break;
+ case 261: ids = LVBoxLayout::overrideIds; break;
+ case 262: ids = LValidator::overrideIds; break;
+ case 263: ids = LVariantAnimation::overrideIds; break;
+ case 272: ids = LWidget::overrideIds; break;
+ case 273: ids = LWidgetAction::overrideIds; break;
+ case 274: ids = LWindow::overrideIds; break;
+ case 275: ids = LWizard::overrideIds; break;
+ case 276: ids = LWizardPage::overrideIds; break;
case 95:
case 96:
case 97:
@@ -3340,14 +3587,15 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 33:
case 34:
case 86:
- case 125:
case 126:
case 127:
case 128:
case 129:
- case 167:
- case 238:
- case 239:
+ case 130:
+ case 131:
+ case 188:
+ case 264:
+ case 265:
if(override_multimedia) {
NumList* _ids = override_multimedia(name);
if(_ids) {
@@ -3356,45 +3604,75 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 7:
case 12:
case 104:
- case 120:
case 121:
- case 136:
- case 137:
+ case 122:
case 138:
case 139:
- case 212:
- case 213:
- case 231:
+ case 140:
+ case 141:
+ case 238:
+ case 239:
+ case 257:
if(override_network) {
NumList* _ids = override_network(name);
if(_ids) {
ids = *_ids; }}
break;
+ case 112:
+ case 168:
+ case 169:
+ case 170:
+ case 171:
+ case 172:
+ case 173:
+ case 174:
+ case 175:
+ case 176:
+ case 177:
+ case 178:
+ case 179:
+ case 180:
+ case 181:
+ case 182:
+ case 183:
+ case 184:
+ case 185:
case 186:
- case 187:
- case 188:
- case 189:
- case 190:
+ case 191:
+ case 192:
+ case 193:
+ case 194:
+ case 195:
+ if(override_quick) {
+ NumList* _ids = override_quick(name);
+ if(_ids) {
+ ids = *_ids; }}
+ break;
+ case 212:
+ case 213:
+ case 214:
+ case 215:
+ case 216:
if(override_sql) {
NumList* _ids = override_sql(name);
if(_ids) {
ids = *_ids; }}
break;
case 83:
- case 201:
- case 202:
+ case 227:
+ case 228:
if(override_svg) {
NumList* _ids = override_svg(name);
if(_ids) {
ids = *_ids; }}
break;
case 88:
- case 240:
- case 241:
- case 242:
- case 243:
- case 244:
- case 245:
+ case 266:
+ case 267:
+ case 268:
+ case 269:
+ case 270:
+ case 271:
if(override_webkit) {
NumList* _ids = override_webkit(name);
if(_ids) {
@@ -3492,108 +3770,108 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 101: ids = LItemEditorCreatorBase::overrideIds; break;
case 102: ids = LItemEditorFactory::overrideIds; break;
case 103: ids = LItemSelectionRange::overrideIds; break;
- case 104: ids = LKeyEvent::overrideIds; break;
- case 105: ids = LKeySequence::overrideIds; break;
- case 106: ids = LLayoutItem::overrideIds; break;
- case 107: ids = LLibraryInfo::overrideIds; break;
- case 108: ids = LLinearGradient::overrideIds; break;
- case 109: ids = LListWidgetItem::overrideIds; break;
- case 110: ids = LLocale::overrideIds; break;
- case 111: ids = LMargins::overrideIds; break;
- case 112: ids = LMarginsF::overrideIds; break;
- case 113: ids = LMatrix::overrideIds; break;
- case 114: ids = LMatrix4x4::overrideIds; break;
- case 117: ids = LMessageAuthenticationCode::overrideIds; break;
- case 118: ids = LMetaObject::overrideIds; break;
- case 119: ids = LModelIndex::overrideIds; break;
- case 120: ids = LMouseEvent::overrideIds; break;
- case 121: ids = LMoveEvent::overrideIds; break;
- case 131: ids = LOpenGLFramebufferObject::overrideIds; break;
- case 132: ids = LOpenGLFramebufferObjectFormat::overrideIds; break;
- case 133: ids = LOpenGLPaintDevice::overrideIds; break;
- case 134: ids = LOpenGLTexture::overrideIds; break;
- case 135: ids = LPageLayout::overrideIds; break;
- case 136: ids = LPageSize::overrideIds; break;
- case 139: ids = LPaintEvent::overrideIds; break;
- case 140: ids = LPainter::overrideIds; break;
- case 141: ids = LPainterPath::overrideIds; break;
- case 142: ids = LPainterPathStroker::overrideIds; break;
- case 143: ids = LPalette::overrideIds; break;
- case 144: ids = LPen::overrideIds; break;
- case 145: ids = LPersistentModelIndex::overrideIds; break;
- case 146: ids = LPicture::overrideIds; break;
- case 147: ids = LPixmap::overrideIds; break;
- case 148: ids = LPixmapCache::overrideIds; break;
- case 149: ids = LPrinter::overrideIds; break;
- case 150: ids = LPrinterInfo::overrideIds; break;
- case 151: ids = LProcessEnvironment::overrideIds; break;
- case 152: ids = LQuaternion::overrideIds; break;
- case 153: ids = LRadialGradient::overrideIds; break;
- case 154: ids = LRegExp::overrideIds; break;
- case 155: ids = LRegion::overrideIds; break;
- case 156: ids = LRegularExpression::overrideIds; break;
- case 157: ids = LResizeEvent::overrideIds; break;
- case 158: ids = LRunnable::overrideIds; break;
- case 159: ids = LScrollEvent::overrideIds; break;
- case 160: ids = LScrollPrepareEvent::overrideIds; break;
- case 161: ids = LSemaphore::overrideIds; break;
- case 162: ids = LShortcutEvent::overrideIds; break;
- case 163: ids = LShowEvent::overrideIds; break;
- case 164: ids = LSizePolicy::overrideIds; break;
- case 165: ids = LSpacerItem::overrideIds; break;
- case 179: ids = LStandardItem::overrideIds; break;
- case 181: ids = LStatusTipEvent::overrideIds; break;
- case 182: ids = LStorageInfo::overrideIds; break;
- case 183: ids = LStyleOption::overrideIds; break;
- case 184: ids = LStyleOptionGraphicsItem::overrideIds; break;
- case 186: ids = LSurfaceFormat::overrideIds; break;
- case 189: ids = LSystemSemaphore::overrideIds; break;
- case 190: ids = LTableWidgetItem::overrideIds; break;
- case 191: ids = LTableWidgetSelectionRange::overrideIds; break;
- case 192: ids = LTabletEvent::overrideIds; break;
- case 193: ids = LTextBlock::overrideIds; break;
- case 194: ids = LTextBlockFormat::overrideIds; break;
- case 195: ids = LTextBlockUserData::overrideIds; break;
- case 196: ids = LTextBoundaryFinder::overrideIds; break;
- case 197: ids = LTextCharFormat::overrideIds; break;
- case 198: ids = LTextCodec::overrideIds; break;
- case 199: ids = LTextCursor::overrideIds; break;
- case 200: ids = LTextDecoder::overrideIds; break;
- case 201: ids = LTextDocumentFragment::overrideIds; break;
- case 202: ids = LTextDocumentWriter::overrideIds; break;
- case 203: ids = LTextEncoder::overrideIds; break;
- case 204: ids = LTextFormat::overrideIds; break;
- case 205: ids = LTextFragment::overrideIds; break;
- case 206: ids = LTextFrameFormat::overrideIds; break;
- case 207: ids = LTextImageFormat::overrideIds; break;
- case 208: ids = LTextLayout::overrideIds; break;
- case 209: ids = LTextLength::overrideIds; break;
- case 210: ids = LTextLine::overrideIds; break;
- case 211: ids = LTextListFormat::overrideIds; break;
- case 212: ids = LTextOption::overrideIds; break;
- case 213: ids = LTextTableCell::overrideIds; break;
- case 214: ids = LTextTableCellFormat::overrideIds; break;
- case 215: ids = LTextTableFormat::overrideIds; break;
- case 216: ids = LTime::overrideIds; break;
- case 217: ids = LTimeZone::overrideIds; break;
- case 218: ids = LTimerEvent::overrideIds; break;
- case 219: ids = LToolTip::overrideIds; break;
- case 220: ids = LTouchDevice::overrideIds; break;
- case 221: ids = LTouchEvent::overrideIds; break;
- case 222: ids = LTransform::overrideIds; break;
- case 223: ids = LTreeWidgetItem::overrideIds; break;
- case 224: ids = LUndoCommand::overrideIds; break;
- case 225: ids = LUrl::overrideIds; break;
- case 226: ids = LUuid::overrideIds; break;
- case 227: ids = LVariant::overrideIds; break;
- case 228: ids = LVector2D::overrideIds; break;
- case 229: ids = LVector3D::overrideIds; break;
- case 230: ids = LVector4D::overrideIds; break;
- case 242: ids = LWhatsThis::overrideIds; break;
- case 243: ids = LWhatsThisClickedEvent::overrideIds; break;
- case 244: ids = LWheelEvent::overrideIds; break;
- case 245: ids = LWidgetItem::overrideIds; break;
- case 246: ids = LWindowStateChangeEvent::overrideIds; break;
+ case 106: ids = LKeyEvent::overrideIds; break;
+ case 107: ids = LKeySequence::overrideIds; break;
+ case 108: ids = LLayoutItem::overrideIds; break;
+ case 109: ids = LLibraryInfo::overrideIds; break;
+ case 110: ids = LLinearGradient::overrideIds; break;
+ case 111: ids = LListWidgetItem::overrideIds; break;
+ case 112: ids = LLocale::overrideIds; break;
+ case 113: ids = LMargins::overrideIds; break;
+ case 114: ids = LMarginsF::overrideIds; break;
+ case 115: ids = LMatrix::overrideIds; break;
+ case 116: ids = LMatrix4x4::overrideIds; break;
+ case 119: ids = LMessageAuthenticationCode::overrideIds; break;
+ case 120: ids = LMetaObject::overrideIds; break;
+ case 121: ids = LModelIndex::overrideIds; break;
+ case 122: ids = LMouseEvent::overrideIds; break;
+ case 123: ids = LMoveEvent::overrideIds; break;
+ case 133: ids = LOpenGLFramebufferObject::overrideIds; break;
+ case 134: ids = LOpenGLFramebufferObjectFormat::overrideIds; break;
+ case 135: ids = LOpenGLPaintDevice::overrideIds; break;
+ case 136: ids = LOpenGLTexture::overrideIds; break;
+ case 137: ids = LPageLayout::overrideIds; break;
+ case 138: ids = LPageSize::overrideIds; break;
+ case 141: ids = LPaintEvent::overrideIds; break;
+ case 142: ids = LPainter::overrideIds; break;
+ case 143: ids = LPainterPath::overrideIds; break;
+ case 144: ids = LPainterPathStroker::overrideIds; break;
+ case 145: ids = LPalette::overrideIds; break;
+ case 146: ids = LPen::overrideIds; break;
+ case 147: ids = LPersistentModelIndex::overrideIds; break;
+ case 148: ids = LPicture::overrideIds; break;
+ case 149: ids = LPixmap::overrideIds; break;
+ case 150: ids = LPixmapCache::overrideIds; break;
+ case 151: ids = LPrinter::overrideIds; break;
+ case 152: ids = LPrinterInfo::overrideIds; break;
+ case 153: ids = LProcessEnvironment::overrideIds; break;
+ case 164: ids = LQuaternion::overrideIds; break;
+ case 167: ids = LRadialGradient::overrideIds; break;
+ case 168: ids = LRegExp::overrideIds; break;
+ case 169: ids = LRegion::overrideIds; break;
+ case 170: ids = LRegularExpression::overrideIds; break;
+ case 171: ids = LResizeEvent::overrideIds; break;
+ case 172: ids = LRunnable::overrideIds; break;
+ case 189: ids = LScrollEvent::overrideIds; break;
+ case 190: ids = LScrollPrepareEvent::overrideIds; break;
+ case 191: ids = LSemaphore::overrideIds; break;
+ case 192: ids = LShortcutEvent::overrideIds; break;
+ case 193: ids = LShowEvent::overrideIds; break;
+ case 194: ids = LSizePolicy::overrideIds; break;
+ case 195: ids = LSpacerItem::overrideIds; break;
+ case 209: ids = LStandardItem::overrideIds; break;
+ case 211: ids = LStatusTipEvent::overrideIds; break;
+ case 212: ids = LStorageInfo::overrideIds; break;
+ case 213: ids = LStyleOption::overrideIds; break;
+ case 214: ids = LStyleOptionGraphicsItem::overrideIds; break;
+ case 216: ids = LSurfaceFormat::overrideIds; break;
+ case 219: ids = LSystemSemaphore::overrideIds; break;
+ case 220: ids = LTableWidgetItem::overrideIds; break;
+ case 221: ids = LTableWidgetSelectionRange::overrideIds; break;
+ case 222: ids = LTabletEvent::overrideIds; break;
+ case 223: ids = LTextBlock::overrideIds; break;
+ case 224: ids = LTextBlockFormat::overrideIds; break;
+ case 225: ids = LTextBlockUserData::overrideIds; break;
+ case 226: ids = LTextBoundaryFinder::overrideIds; break;
+ case 227: ids = LTextCharFormat::overrideIds; break;
+ case 228: ids = LTextCodec::overrideIds; break;
+ case 229: ids = LTextCursor::overrideIds; break;
+ case 230: ids = LTextDecoder::overrideIds; break;
+ case 231: ids = LTextDocumentFragment::overrideIds; break;
+ case 232: ids = LTextDocumentWriter::overrideIds; break;
+ case 233: ids = LTextEncoder::overrideIds; break;
+ case 234: ids = LTextFormat::overrideIds; break;
+ case 235: ids = LTextFragment::overrideIds; break;
+ case 236: ids = LTextFrameFormat::overrideIds; break;
+ case 237: ids = LTextImageFormat::overrideIds; break;
+ case 238: ids = LTextLayout::overrideIds; break;
+ case 239: ids = LTextLength::overrideIds; break;
+ case 240: ids = LTextLine::overrideIds; break;
+ case 241: ids = LTextListFormat::overrideIds; break;
+ case 242: ids = LTextOption::overrideIds; break;
+ case 243: ids = LTextTableCell::overrideIds; break;
+ case 244: ids = LTextTableCellFormat::overrideIds; break;
+ case 245: ids = LTextTableFormat::overrideIds; break;
+ case 246: ids = LTime::overrideIds; break;
+ case 247: ids = LTimeZone::overrideIds; break;
+ case 248: ids = LTimerEvent::overrideIds; break;
+ case 249: ids = LToolTip::overrideIds; break;
+ case 250: ids = LTouchDevice::overrideIds; break;
+ case 251: ids = LTouchEvent::overrideIds; break;
+ case 252: ids = LTransform::overrideIds; break;
+ case 253: ids = LTreeWidgetItem::overrideIds; break;
+ case 254: ids = LUndoCommand::overrideIds; break;
+ case 255: ids = LUrl::overrideIds; break;
+ case 256: ids = LUuid::overrideIds; break;
+ case 257: ids = LVariant::overrideIds; break;
+ case 258: ids = LVector2D::overrideIds; break;
+ case 259: ids = LVector3D::overrideIds; break;
+ case 260: ids = LVector4D::overrideIds; break;
+ case 272: ids = LWhatsThis::overrideIds; break;
+ case 273: ids = LWhatsThisClickedEvent::overrideIds; break;
+ case 274: ids = LWheelEvent::overrideIds; break;
+ case 275: ids = LWidgetItem::overrideIds; break;
+ case 276: ids = LWindowStateChangeEvent::overrideIds; break;
case 86:
case 88:
if(override_help) {
@@ -3607,11 +3885,11 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 27:
case 28:
case 97:
- case 115:
- case 116:
- case 231:
- case 232:
- case 233:
+ case 117:
+ case 118:
+ case 261:
+ case 262:
+ case 263:
if(override_multimedia) {
NumList* _ids = override_multimedia(name);
if(_ids) {
@@ -3621,8 +3899,6 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 90:
case 91:
case 93:
- case 122:
- case 123:
case 124:
case 125:
case 126:
@@ -3630,43 +3906,80 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 128:
case 129:
case 130:
- case 174:
- case 175:
- case 176:
- case 177:
- case 178:
+ case 131:
+ case 132:
+ case 204:
+ case 205:
+ case 206:
+ case 207:
+ case 208:
if(override_network) {
NumList* _ids = override_network(name);
if(_ids) {
ids = *_ids; }}
break;
+ case 104:
+ case 105:
+ case 154:
+ case 155:
+ case 156:
+ case 157:
+ case 158:
+ case 159:
+ case 160:
+ case 161:
+ case 162:
+ case 163:
+ case 165:
case 166:
- case 167:
- case 168:
- case 169:
- case 170:
- case 171:
- case 172:
case 173:
+ case 174:
+ case 175:
+ case 176:
+ case 177:
+ case 178:
+ case 179:
+ case 180:
+ case 181:
+ case 182:
+ case 183:
+ case 184:
+ case 185:
+ case 186:
+ case 187:
+ case 188:
+ if(override_quick) {
+ NumList* _ids = override_quick(name);
+ if(_ids) {
+ ids = *_ids; }}
+ break;
+ case 196:
+ case 197:
+ case 198:
+ case 199:
+ case 200:
+ case 201:
+ case 202:
+ case 203:
if(override_sql) {
NumList* _ids = override_sql(name);
if(_ids) {
ids = *_ids; }}
break;
- case 187:
+ case 217:
if(override_svg) {
NumList* _ids = override_svg(name);
if(_ids) {
ids = *_ids; }}
break;
- case 234:
- case 235:
- case 236:
- case 237:
- case 238:
- case 239:
- case 240:
- case 241:
+ case 264:
+ case 265:
+ case 266:
+ case 267:
+ case 268:
+ case 269:
+ case 270:
+ case 271:
if(override_webkit) {
NumList* _ids = override_webkit(name);
if(_ids) {
diff --git a/src/gen/_lobjects.h b/src/gen/_lobjects.h
index b715040..f6d42c8 100644
--- a/src/gen/_lobjects.h
+++ b/src/gen/_lobjects.h
@@ -55,6 +55,7 @@ public:
static int T_QHostInfo;
static int T_QHttpPart;
static int T_QImageEncoderSettings;
+ static int T_QJSValue;
static int T_QMediaContent;
static int T_QList_QMediaContent;
static int T_QNetworkAddressEntry;
@@ -69,6 +70,10 @@ public:
static int T_QNetworkProxy;
static int T_QList_QNetworkProxy;
static int T_QNetworkRequest;
+ static int T_QList_QQmlError;
+ static int T_QQmlProperty;
+ static int T_QQmlScriptString;
+ static int T_QList_QQuickItem;
static int T_QSqlDatabase;
static int T_QSqlError;
static int T_QSqlField;
@@ -138,18 +143,21 @@ public:
static StaticMetaObject staticMetaObject_help;
static StaticMetaObject staticMetaObject_multimedia;
static StaticMetaObject staticMetaObject_network;
+ static StaticMetaObject staticMetaObject_quick;
static StaticMetaObject staticMetaObject_sql;
static StaticMetaObject staticMetaObject_svg;
static StaticMetaObject staticMetaObject_webkit;
static DeleteNObject deleteNObject_help;
static DeleteNObject deleteNObject_multimedia;
static DeleteNObject deleteNObject_network;
+ static DeleteNObject deleteNObject_quick;
static DeleteNObject deleteNObject_sql;
static DeleteNObject deleteNObject_svg;
static DeleteNObject deleteNObject_webkit;
static Override override_help;
static Override override_multimedia;
static Override override_network;
+ static Override override_quick;
static Override override_sql;
static Override override_svg;
static Override override_webkit;
@@ -159,6 +167,8 @@ public:
static To_lisp_arg to_lisp_arg_multimedia;
static ToMetaArg toMetaArg_network;
static To_lisp_arg to_lisp_arg_network;
+ static ToMetaArg toMetaArg_quick;
+ static To_lisp_arg to_lisp_arg_quick;
static ToMetaArg toMetaArg_sql;
static To_lisp_arg to_lisp_arg_sql;
static ToMetaArg toMetaArg_webkit;
diff --git a/src/gen/_main_n_classes.h b/src/gen/_main_n_classes.h
index 1e6c223..3f48468 100644
--- a/src/gen/_main_n_classes.h
+++ b/src/gen/_main_n_classes.h
@@ -20,10 +20,10 @@ public:
bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::isObscuredBy(x1); } return ret; }
QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 269, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::opaqueArea(); } return ret; }
- void advance(int x1) { quint64 id = LObjects::override_id(unique, 426); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 426, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::advance(x1); }}
+ void advance(int x1) { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 461, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::advance(x1); }}
QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 260, 0, id).value(); } return ret; }
- bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 427); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 427, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::collidesWithItem(x1, x2); } return ret; }
- bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 428); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 428, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::collidesWithPath(x1, x2); } return ret; }
+ bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 462, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::collidesWithItem(x1, x2); } return ret; }
+ bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 463, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::collidesWithPath(x1, x2); } return ret; }
bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 267); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 267, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::contains(x1); } return ret; }
void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); }}
QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::shape(); } return ret; }
@@ -48,7 +48,7 @@ public:
void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 246); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 246, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::mousePressEvent(x1); }}
void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::mouseReleaseEvent(x1); }}
bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 262, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::sceneEvent(x1); } return ret; }
- bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 429); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 429, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::sceneEventFilter(x1, x2); } return ret; }
+ bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 464, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::sceneEventFilter(x1, x2); } return ret; }
void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 251); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 251, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::wheelEvent(x1); }}
};
@@ -67,9 +67,9 @@ public:
static NumList overrideIds;
uint unique;
- void deleteText(int x1, int x2) { quint64 id = LObjects::override_id(unique, 430); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 430, args, id); }}
- void insertText(int x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 431); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 431, args, id); }}
- void replaceText(int x1, int x2, const QString& x3) { quint64 id = LObjects::override_id(unique, 432); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 432, args, id); }}
+ void deleteText(int x1, int x2) { quint64 id = LObjects::override_id(unique, 465); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 465, args, id); }}
+ void insertText(int x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 466); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 466, args, id); }}
+ void replaceText(int x1, int x2, const QString& x3) { quint64 id = LObjects::override_id(unique, 467); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 467, args, id); }}
};
class LAccessibleEvent : public QAccessibleEvent {
@@ -81,7 +81,7 @@ public:
static NumList overrideIds;
uint unique;
- QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 433); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 433, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleEvent::accessibleInterface(); } return ret; }
+ QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 468, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleEvent::accessibleInterface(); } return ret; }
};
class LAccessibleInterface : public QAccessibleInterface {
@@ -91,21 +91,21 @@ public:
static NumList overrideIds;
uint unique;
- QColor backgroundColor() const { quint64 id = LObjects::override_id(unique, 434); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 434, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::backgroundColor(); } return ret; }
- QAccessibleInterface* child(int x1) const { quint64 id = LObjects::override_id(unique, 435); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 435, args, id).value(); } return ret; }
- QAccessibleInterface* childAt(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 436); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 436, args, id).value(); } return ret; }
- int childCount() const { quint64 id = LObjects::override_id(unique, 437); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 437, 0, id).toInt(); } return ret; }
- QAccessibleInterface* focusChild() const { quint64 id = LObjects::override_id(unique, 438); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 438, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::focusChild(); } return ret; }
- QColor foregroundColor() const { quint64 id = LObjects::override_id(unique, 439); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 439, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::foregroundColor(); } return ret; }
- int indexOfChild(const QAccessibleInterface* x1) const { quint64 id = LObjects::override_id(unique, 440); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 440, args, id).toInt(); } return ret; }
- bool isValid() const { quint64 id = LObjects::override_id(unique, 441); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 441, 0, id).toBool(); } return ret; }
- QObject* object() const { quint64 id = LObjects::override_id(unique, 442); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 442, 0, id).value(); } return ret; }
- QAccessibleInterface* parent() const { quint64 id = LObjects::override_id(unique, 443); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 443, 0, id).value(); } return ret; }
- QRect rect() const { quint64 id = LObjects::override_id(unique, 444); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 444, 0, id).value(); } return ret; }
- QAccessible::Role role() const { quint64 id = LObjects::override_id(unique, 445); void* fun = LObjects::overrideFun(id); QAccessible::Role ret = (QAccessible::Role)0; if(fun && (LObjects::calling != id)) { ret = (QAccessible::Role)callOverrideFun(fun, 445, 0, id).toInt(); } return ret; }
- void setText(QAccessible::Text x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 446); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 446, args, id); }}
- QString text(QAccessible::Text x1) const { quint64 id = LObjects::override_id(unique, 447); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 447, args, id).value(); } return ret; }
- QWindow* window() const { quint64 id = LObjects::override_id(unique, 448); void* fun = LObjects::overrideFun(id); QWindow* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWindow*)callOverrideFun(fun, 448, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::window(); } return ret; }
+ QColor backgroundColor() const { quint64 id = LObjects::override_id(unique, 469); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 469, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::backgroundColor(); } return ret; }
+ QAccessibleInterface* child(int x1) const { quint64 id = LObjects::override_id(unique, 470); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 470, args, id).value(); } return ret; }
+ QAccessibleInterface* childAt(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 471, args, id).value(); } return ret; }
+ int childCount() const { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 472, 0, id).toInt(); } return ret; }
+ QAccessibleInterface* focusChild() const { quint64 id = LObjects::override_id(unique, 473); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 473, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::focusChild(); } return ret; }
+ QColor foregroundColor() const { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 474, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::foregroundColor(); } return ret; }
+ int indexOfChild(const QAccessibleInterface* x1) const { quint64 id = LObjects::override_id(unique, 475); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 475, args, id).toInt(); } return ret; }
+ bool isValid() const { quint64 id = LObjects::override_id(unique, 476); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 476, 0, id).toBool(); } return ret; }
+ QObject* object() const { quint64 id = LObjects::override_id(unique, 477); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 477, 0, id).value(); } return ret; }
+ QAccessibleInterface* parent() const { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 478, 0, id).value(); } return ret; }
+ QRect rect() const { quint64 id = LObjects::override_id(unique, 479); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 479, 0, id).value(); } return ret; }
+ QAccessible::Role role() const { quint64 id = LObjects::override_id(unique, 480); void* fun = LObjects::overrideFun(id); QAccessible::Role ret = (QAccessible::Role)0; if(fun && (LObjects::calling != id)) { ret = (QAccessible::Role)callOverrideFun(fun, 480, 0, id).toInt(); } return ret; }
+ void setText(QAccessible::Text x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 481); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 481, args, id); }}
+ QString text(QAccessible::Text x1) const { quint64 id = LObjects::override_id(unique, 482); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 482, args, id).value(); } return ret; }
+ QWindow* window() const { quint64 id = LObjects::override_id(unique, 483); void* fun = LObjects::overrideFun(id); QWindow* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWindow*)callOverrideFun(fun, 483, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::window(); } return ret; }
};
class LAccessibleStateChangeEvent : public QAccessibleStateChangeEvent {
@@ -115,7 +115,7 @@ public:
static NumList overrideIds;
uint unique;
- QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 433); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 433, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleStateChangeEvent::accessibleInterface(); } return ret; }
+ QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 468, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleStateChangeEvent::accessibleInterface(); } return ret; }
};
class LAccessibleTextCursorEvent : public QAccessibleTextCursorEvent {
@@ -127,7 +127,7 @@ public:
static NumList overrideIds;
uint unique;
- QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 433); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 433, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleTextCursorEvent::accessibleInterface(); } return ret; }
+ QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 468, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleTextCursorEvent::accessibleInterface(); } return ret; }
};
class LAccessibleTextInsertEvent : public QAccessibleTextInsertEvent {
@@ -147,17 +147,17 @@ public:
static NumList overrideIds;
uint unique;
- void addSelection(int x1, int x2) { quint64 id = LObjects::override_id(unique, 449); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 449, args, id); }}
- int characterCount() const { quint64 id = LObjects::override_id(unique, 450); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 450, 0, id).toInt(); } return ret; }
- QRect characterRect(int x1) const { quint64 id = LObjects::override_id(unique, 451); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 451, args, id).value(); } return ret; }
- int cursorPosition() const { quint64 id = LObjects::override_id(unique, 452); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 452, 0, id).toInt(); } return ret; }
- int offsetAtPoint(const QPoint& x1) const { quint64 id = LObjects::override_id(unique, 453); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 453, args, id).toInt(); } return ret; }
- void removeSelection(int x1) { quint64 id = LObjects::override_id(unique, 454); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 454, args, id); }}
- void scrollToSubstring(int x1, int x2) { quint64 id = LObjects::override_id(unique, 455); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 455, args, id); }}
- int selectionCount() const { quint64 id = LObjects::override_id(unique, 456); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 456, 0, id).toInt(); } return ret; }
- void setCursorPosition(int x1) { quint64 id = LObjects::override_id(unique, 457); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 457, args, id); }}
- void setSelection(int x1, int x2, int x3) { quint64 id = LObjects::override_id(unique, 458); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 458, args, id); }}
- QString text(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 459); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 459, args, id).value(); } return ret; }
+ void addSelection(int x1, int x2) { quint64 id = LObjects::override_id(unique, 484); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 484, args, id); }}
+ int characterCount() const { quint64 id = LObjects::override_id(unique, 485); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 485, 0, id).toInt(); } return ret; }
+ QRect characterRect(int x1) const { quint64 id = LObjects::override_id(unique, 486); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 486, args, id).value(); } return ret; }
+ int cursorPosition() const { quint64 id = LObjects::override_id(unique, 487); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 487, 0, id).toInt(); } return ret; }
+ int offsetAtPoint(const QPoint& x1) const { quint64 id = LObjects::override_id(unique, 488); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 488, args, id).toInt(); } return ret; }
+ void removeSelection(int x1) { quint64 id = LObjects::override_id(unique, 489); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 489, args, id); }}
+ void scrollToSubstring(int x1, int x2) { quint64 id = LObjects::override_id(unique, 490); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 490, args, id); }}
+ int selectionCount() const { quint64 id = LObjects::override_id(unique, 491); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 491, 0, id).toInt(); } return ret; }
+ void setCursorPosition(int x1) { quint64 id = LObjects::override_id(unique, 492); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 492, args, id); }}
+ void setSelection(int x1, int x2, int x3) { quint64 id = LObjects::override_id(unique, 493); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 493, args, id); }}
+ QString text(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 494); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 494, args, id).value(); } return ret; }
};
class LAccessibleTextRemoveEvent : public QAccessibleTextRemoveEvent {
@@ -199,7 +199,7 @@ public:
static NumList overrideIds;
uint unique;
- QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 433); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 433, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleValueChangeEvent::accessibleInterface(); } return ret; }
+ QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 468, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleValueChangeEvent::accessibleInterface(); } return ret; }
};
class LAccessibleValueInterface : public QAccessibleValueInterface {
@@ -209,11 +209,11 @@ public:
static NumList overrideIds;
uint unique;
- QVariant currentValue() const { quint64 id = LObjects::override_id(unique, 460); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 460, 0, id).value(); } return ret; }
- QVariant maximumValue() const { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 461, 0, id).value(); } return ret; }
- QVariant minimumStepSize() const { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 462, 0, id).value(); } return ret; }
- QVariant minimumValue() const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 463, 0, id).value(); } return ret; }
- void setCurrentValue(const QVariant& x1) { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 464, args, id); }}
+ QVariant currentValue() const { quint64 id = LObjects::override_id(unique, 495); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 495, 0, id).value(); } return ret; }
+ QVariant maximumValue() const { quint64 id = LObjects::override_id(unique, 496); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 496, 0, id).value(); } return ret; }
+ QVariant minimumStepSize() const { quint64 id = LObjects::override_id(unique, 497); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 497, 0, id).value(); } return ret; }
+ QVariant minimumValue() const { quint64 id = LObjects::override_id(unique, 498); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 498, 0, id).value(); } return ret; }
+ void setCurrentValue(const QVariant& x1) { quint64 id = LObjects::override_id(unique, 499); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 499, args, id); }}
};
class LAccessibleWidget : public QAccessibleWidget {
@@ -224,24 +224,24 @@ public:
static NumList overrideIds;
uint unique;
- QStringList actionNames() const { quint64 id = LObjects::override_id(unique, 465); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 465, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::actionNames(); } return ret; }
- QColor backgroundColor() const { quint64 id = LObjects::override_id(unique, 434); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 434, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::backgroundColor(); } return ret; }
- QAccessibleInterface* child(int x1) const { quint64 id = LObjects::override_id(unique, 435); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 435, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::child(x1); } return ret; }
- int childCount() const { quint64 id = LObjects::override_id(unique, 437); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 437, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::childCount(); } return ret; }
- void doAction(const QString& x1) { quint64 id = LObjects::override_id(unique, 466); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 466, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAccessibleWidget::doAction(x1); }}
- QAccessibleInterface* focusChild() const { quint64 id = LObjects::override_id(unique, 438); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 438, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::focusChild(); } return ret; }
- QColor foregroundColor() const { quint64 id = LObjects::override_id(unique, 439); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 439, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::foregroundColor(); } return ret; }
- int indexOfChild(const QAccessibleInterface* x1) const { quint64 id = LObjects::override_id(unique, 440); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 440, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::indexOfChild(x1); } return ret; }
- bool isValid() const { quint64 id = LObjects::override_id(unique, 441); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 441, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::isValid(); } return ret; }
- QStringList keyBindingsForAction(const QString& x1) const { quint64 id = LObjects::override_id(unique, 467); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 467, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::keyBindingsForAction(x1); } return ret; }
- QAccessibleInterface* parent() const { quint64 id = LObjects::override_id(unique, 443); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 443, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::parent(); } return ret; }
- QRect rect() const { quint64 id = LObjects::override_id(unique, 444); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 444, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::rect(); } return ret; }
- QAccessible::Role role() const { quint64 id = LObjects::override_id(unique, 445); void* fun = LObjects::overrideFun(id); QAccessible::Role ret = (QAccessible::Role)0; if(fun && (LObjects::calling != id)) { ret = (QAccessible::Role)callOverrideFun(fun, 445, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::role(); } return ret; }
- QString text(QAccessible::Text x1) const { quint64 id = LObjects::override_id(unique, 447); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 447, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::text(x1); } return ret; }
- QWindow* window() const { quint64 id = LObjects::override_id(unique, 448); void* fun = LObjects::overrideFun(id); QWindow* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWindow*)callOverrideFun(fun, 448, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::window(); } return ret; }
- QAccessibleInterface* childAt(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 436); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 436, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::childAt(x1, x2); } return ret; }
- QObject* object() const { quint64 id = LObjects::override_id(unique, 442); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 442, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::object(); } return ret; }
- void setText(QAccessible::Text x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 446); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 446, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAccessibleWidget::setText(x1, x2); }}
+ QStringList actionNames() const { quint64 id = LObjects::override_id(unique, 500); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 500, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::actionNames(); } return ret; }
+ QColor backgroundColor() const { quint64 id = LObjects::override_id(unique, 469); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 469, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::backgroundColor(); } return ret; }
+ QAccessibleInterface* child(int x1) const { quint64 id = LObjects::override_id(unique, 470); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 470, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::child(x1); } return ret; }
+ int childCount() const { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 472, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::childCount(); } return ret; }
+ void doAction(const QString& x1) { quint64 id = LObjects::override_id(unique, 501); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 501, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAccessibleWidget::doAction(x1); }}
+ QAccessibleInterface* focusChild() const { quint64 id = LObjects::override_id(unique, 473); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 473, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::focusChild(); } return ret; }
+ QColor foregroundColor() const { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 474, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::foregroundColor(); } return ret; }
+ int indexOfChild(const QAccessibleInterface* x1) const { quint64 id = LObjects::override_id(unique, 475); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 475, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::indexOfChild(x1); } return ret; }
+ bool isValid() const { quint64 id = LObjects::override_id(unique, 476); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 476, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::isValid(); } return ret; }
+ QStringList keyBindingsForAction(const QString& x1) const { quint64 id = LObjects::override_id(unique, 502); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 502, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::keyBindingsForAction(x1); } return ret; }
+ QAccessibleInterface* parent() const { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 478, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::parent(); } return ret; }
+ QRect rect() const { quint64 id = LObjects::override_id(unique, 479); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 479, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::rect(); } return ret; }
+ QAccessible::Role role() const { quint64 id = LObjects::override_id(unique, 480); void* fun = LObjects::overrideFun(id); QAccessible::Role ret = (QAccessible::Role)0; if(fun && (LObjects::calling != id)) { ret = (QAccessible::Role)callOverrideFun(fun, 480, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::role(); } return ret; }
+ QString text(QAccessible::Text x1) const { quint64 id = LObjects::override_id(unique, 482); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 482, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::text(x1); } return ret; }
+ QWindow* window() const { quint64 id = LObjects::override_id(unique, 483); void* fun = LObjects::overrideFun(id); QWindow* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWindow*)callOverrideFun(fun, 483, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::window(); } return ret; }
+ QAccessibleInterface* childAt(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 471, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::childAt(x1, x2); } return ret; }
+ QObject* object() const { quint64 id = LObjects::override_id(unique, 477); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 477, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::object(); } return ret; }
+ void setText(QAccessible::Text x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 481); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 481, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAccessibleWidget::setText(x1, x2); }}
};
class LActionEvent : public QActionEvent {
@@ -547,8 +547,8 @@ public:
static NumList overrideIds;
uint unique;
- QIcon icon(IconType x1) const { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); QIcon ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 468, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QFileIconProvider::icon(x1); } return ret; }
- QString type(const QFileInfo& x1) const { quint64 id = LObjects::override_id(unique, 470); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 470, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QFileIconProvider::type(x1); } return ret; }
+ QIcon icon(IconType x1) const { quint64 id = LObjects::override_id(unique, 503); void* fun = LObjects::overrideFun(id); QIcon ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 503, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QFileIconProvider::icon(x1); } return ret; }
+ QString type(const QFileInfo& x1) const { quint64 id = LObjects::override_id(unique, 505); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 505, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QFileIconProvider::type(x1); } return ret; }
};
class LFileInfo : public QFileInfo {
@@ -663,10 +663,10 @@ public:
int count() const { quint64 id = LObjects::override_id(unique, 163); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 163, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsAnchorLayout::count(); } return ret; }
void invalidate() { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 165, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::invalidate(); }}
QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 166, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsAnchorLayout::itemAt(x1); } return ret; }
- void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 471, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::removeAt(x1); }}
+ void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 506); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 506, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::removeAt(x1); }}
void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 232, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::setGeometry(x1); }}
QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 249); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 249, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsAnchorLayout::sizeHint(x1, x2); } return ret; }
- void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 472, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::widgetEvent(x1); }}
+ void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 507); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 507, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::widgetEvent(x1); }}
void updateGeometry() { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 263, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::updateGeometry(); }}
};
@@ -700,10 +700,10 @@ public:
int count() const { quint64 id = LObjects::override_id(unique, 163); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 163, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsGridLayout::count(); } return ret; }
void invalidate() { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 165, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::invalidate(); }}
QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 166, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsGridLayout::itemAt(x1); } return ret; }
- void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 471, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::removeAt(x1); }}
+ void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 506); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 506, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::removeAt(x1); }}
void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 232, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::setGeometry(x1); }}
QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 249); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 249, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsGridLayout::sizeHint(x1, x2); } return ret; }
- void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 472, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::widgetEvent(x1); }}
+ void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 507); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 507, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::widgetEvent(x1); }}
void updateGeometry() { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 263, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::updateGeometry(); }}
};
@@ -715,10 +715,10 @@ public:
static NumList overrideIds;
uint unique;
- void advance(int x1) { quint64 id = LObjects::override_id(unique, 426); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 426, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::advance(x1); }}
+ void advance(int x1) { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 461, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::advance(x1); }}
QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 260, 0, id).value(); } return ret; }
- bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 427); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 427, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::collidesWithItem(x1, x2); } return ret; }
- bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 428); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 428, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::collidesWithPath(x1, x2); } return ret; }
+ bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 462, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::collidesWithItem(x1, x2); } return ret; }
+ bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 463, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::collidesWithPath(x1, x2); } return ret; }
bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 267); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 267, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::contains(x1); } return ret; }
bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::isObscuredBy(x1); } return ret; }
QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 269, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::opaqueArea(); } return ret; }
@@ -745,7 +745,7 @@ public:
void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 246); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 246, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::mousePressEvent(x1); }}
void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::mouseReleaseEvent(x1); }}
bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 262, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::sceneEvent(x1); } return ret; }
- bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 429); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 429, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::sceneEventFilter(x1, x2); } return ret; }
+ bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 464, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::sceneEventFilter(x1, x2); } return ret; }
void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 251); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 251, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::wheelEvent(x1); }}
};
@@ -762,9 +762,9 @@ public:
QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 269, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::opaqueArea(); } return ret; }
void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::paint(x1, x2, x3); }}
int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::type(); } return ret; }
- void advance(int x1) { quint64 id = LObjects::override_id(unique, 426); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 426, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::advance(x1); }}
- bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 427); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 427, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::collidesWithItem(x1, x2); } return ret; }
- bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 428); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 428, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::collidesWithPath(x1, x2); } return ret; }
+ void advance(int x1) { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 461, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::advance(x1); }}
+ bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 462, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::collidesWithItem(x1, x2); } return ret; }
+ bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 463, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::collidesWithPath(x1, x2); } return ret; }
bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 267); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 267, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::contains(x1); } return ret; }
QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::shape(); } return ret; }
void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 234, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::contextMenuEvent(x1); }}
@@ -787,7 +787,7 @@ public:
void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 246); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 246, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::mousePressEvent(x1); }}
void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::mouseReleaseEvent(x1); }}
bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 262, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::sceneEvent(x1); } return ret; }
- bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 429); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 429, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::sceneEventFilter(x1, x2); } return ret; }
+ bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 464, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::sceneEventFilter(x1, x2); } return ret; }
void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 251); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 251, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::wheelEvent(x1); }}
};
@@ -802,8 +802,8 @@ public:
int count() const { quint64 id = LObjects::override_id(unique, 163); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 163, 0, id).toInt(); } return ret; }
void invalidate() { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 165, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::invalidate(); }}
QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 166, args, id).value(); } return ret; }
- void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 471, args, id); }}
- void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 472, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::widgetEvent(x1); }}
+ void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 506); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 506, args, id); }}
+ void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 507); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 507, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::widgetEvent(x1); }}
void updateGeometry() { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 263, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::updateGeometry(); }}
void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 232, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::setGeometry(x1); }}
QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 249); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 249, args, id).value(); } return ret; }
@@ -839,9 +839,9 @@ public:
void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::paint(x1, x2, x3); }}
QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::shape(); } return ret; }
int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::type(); } return ret; }
- void advance(int x1) { quint64 id = LObjects::override_id(unique, 426); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 426, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::advance(x1); }}
- bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 427); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 427, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::collidesWithItem(x1, x2); } return ret; }
- bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 428); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 428, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::collidesWithPath(x1, x2); } return ret; }
+ void advance(int x1) { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 461, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::advance(x1); }}
+ bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 462, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::collidesWithItem(x1, x2); } return ret; }
+ bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 463, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::collidesWithPath(x1, x2); } return ret; }
void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 234, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::contextMenuEvent(x1); }}
void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::dragEnterEvent(x1); }}
void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 236, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::dragLeaveEvent(x1); }}
@@ -862,7 +862,7 @@ public:
void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 246); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 246, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::mousePressEvent(x1); }}
void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::mouseReleaseEvent(x1); }}
bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 262, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::sceneEvent(x1); } return ret; }
- bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 429); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 429, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::sceneEventFilter(x1, x2); } return ret; }
+ bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 464, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::sceneEventFilter(x1, x2); } return ret; }
void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 251); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 251, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::wheelEvent(x1); }}
};
@@ -878,10 +878,10 @@ public:
int count() const { quint64 id = LObjects::override_id(unique, 163); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 163, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLinearLayout::count(); } return ret; }
void invalidate() { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 165, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::invalidate(); }}
QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 166, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLinearLayout::itemAt(x1); } return ret; }
- void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 471, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::removeAt(x1); }}
+ void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 506); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 506, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::removeAt(x1); }}
void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 232, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::setGeometry(x1); }}
QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 249); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 249, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLinearLayout::sizeHint(x1, x2); } return ret; }
- void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 472, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::widgetEvent(x1); }}
+ void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 507); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 507, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::widgetEvent(x1); }}
void updateGeometry() { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 263, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::updateGeometry(); }}
};
@@ -919,9 +919,9 @@ public:
void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::paint(x1, x2, x3); }}
QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::shape(); } return ret; }
int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::type(); } return ret; }
- void advance(int x1) { quint64 id = LObjects::override_id(unique, 426); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 426, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::advance(x1); }}
- bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 427); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 427, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::collidesWithItem(x1, x2); } return ret; }
- bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 428); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 428, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::collidesWithPath(x1, x2); } return ret; }
+ void advance(int x1) { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 461, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::advance(x1); }}
+ bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 462, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::collidesWithItem(x1, x2); } return ret; }
+ bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 463, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::collidesWithPath(x1, x2); } return ret; }
void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 234, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::contextMenuEvent(x1); }}
void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::dragEnterEvent(x1); }}
void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 236, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::dragLeaveEvent(x1); }}
@@ -942,7 +942,7 @@ public:
void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 246); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 246, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::mousePressEvent(x1); }}
void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::mouseReleaseEvent(x1); }}
bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 262, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::sceneEvent(x1); } return ret; }
- bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 429); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 429, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::sceneEventFilter(x1, x2); } return ret; }
+ bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 464, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::sceneEventFilter(x1, x2); } return ret; }
void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 251); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 251, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::wheelEvent(x1); }}
};
@@ -1172,8 +1172,8 @@ public:
static NumList overrideIds;
uint unique;
- QWidget* createWidget(QWidget* x1) const { quint64 id = LObjects::override_id(unique, 416); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWidget*)callOverrideFun(fun, 416, args, id).value(); } return ret; }
- QByteArray valuePropertyName() const { quint64 id = LObjects::override_id(unique, 473); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 473, 0, id).value(); } return ret; }
+ QWidget* createWidget(QWidget* x1) const { quint64 id = LObjects::override_id(unique, 451); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWidget*)callOverrideFun(fun, 451, args, id).value(); } return ret; }
+ QByteArray valuePropertyName() const { quint64 id = LObjects::override_id(unique, 508); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 508, 0, id).value(); } return ret; }
};
class LItemEditorFactory : public QItemEditorFactory {
@@ -1184,8 +1184,8 @@ public:
static NumList overrideIds;
uint unique;
- QWidget* createEditor(int x1, QWidget* x2) const { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QWidget*)callOverrideFun(fun, 474, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::createEditor(x1, x2); } return ret; }
- QByteArray valuePropertyName(int x1) const { quint64 id = LObjects::override_id(unique, 475); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 475, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::valuePropertyName(x1); } return ret; }
+ QWidget* createEditor(int x1, QWidget* x2) const { quint64 id = LObjects::override_id(unique, 509); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QWidget*)callOverrideFun(fun, 509, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::createEditor(x1, x2); } return ret; }
+ QByteArray valuePropertyName(int x1) const { quint64 id = LObjects::override_id(unique, 510); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 510, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::valuePropertyName(x1); } return ret; }
};
class LItemSelectionRange : public QItemSelectionRange {
@@ -1201,7 +1201,7 @@ public:
};
class LKeyEvent : public QKeyEvent {
- friend class N104;
+ friend class N106;
public:
LKeyEvent(uint u, Type x1, int x2, Qt::KeyboardModifiers x3, const QString& x4 = QString(), bool x5 = false, ushort x6 = 1) : QKeyEvent(x1, x2, x3, x4, x5, x6), unique(u) {}
LKeyEvent(uint u, Type x1, int x2, Qt::KeyboardModifiers x3, quint32 x4, quint32 x5, quint32 x6, const QString& x7 = QString(), bool x8 = false, ushort x9 = 1) : QKeyEvent(x1, x2, x3, x4, x5, x6, x7, x8, x9), unique(u) {}
@@ -1211,7 +1211,7 @@ public:
};
class LKeySequence : public QKeySequence {
- friend class N105;
+ friend class N107;
public:
LKeySequence(uint u) : unique(u) {}
LKeySequence(uint u, const QString& x1, SequenceFormat x2 = NativeText) : QKeySequence(x1, x2), unique(u) {}
@@ -1224,7 +1224,7 @@ public:
};
class LLayoutItem : public QLayoutItem {
- friend class N106;
+ friend class N108;
public:
LLayoutItem(uint u, Qt::Alignment x1 = 0) : QLayoutItem(x1), unique(u) {}
@@ -1244,12 +1244,12 @@ public:
QSize minimumSize() const { quint64 id = LObjects::override_id(unique, 169); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 169, 0, id).value(); } return ret; }
void setGeometry(const QRect& x1) { quint64 id = LObjects::override_id(unique, 170); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 170, args, id); }}
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value(); } return ret; }
- QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 476); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 476, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::spacerItem(); } return ret; }
- QWidget* widget() { quint64 id = LObjects::override_id(unique, 477); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 477, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::widget(); } return ret; }
+ QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 511); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 511, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::spacerItem(); } return ret; }
+ QWidget* widget() { quint64 id = LObjects::override_id(unique, 512); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 512, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::widget(); } return ret; }
};
class LLibraryInfo : public QLibraryInfo {
- friend class N107;
+ friend class N109;
public:
static NumList overrideIds;
@@ -1257,7 +1257,7 @@ public:
};
class LLinearGradient : public QLinearGradient {
- friend class N108;
+ friend class N110;
public:
LLinearGradient(uint u) : unique(u) {}
LLinearGradient(uint u, const QPointF& x1, const QPointF& x2) : QLinearGradient(x1, x2), unique(u) {}
@@ -1268,7 +1268,7 @@ public:
};
class LListWidgetItem : public QListWidgetItem {
- friend class N109;
+ friend class N111;
public:
LListWidgetItem(uint u, QListWidget* x1 = 0, int x2 = Type) : QListWidgetItem(x1, x2), unique(u) {}
LListWidgetItem(uint u, const QString& x1, QListWidget* x2 = 0, int x3 = Type) : QListWidgetItem(x1, x2, x3), unique(u) {}
@@ -1278,13 +1278,13 @@ public:
static NumList overrideIds;
uint unique;
- QListWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); QListWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QListWidgetItem*)callOverrideFun(fun, 478, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QListWidgetItem::clone(); } return ret; }
- QVariant data(int x1) const { quint64 id = LObjects::override_id(unique, 479); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 479, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QListWidgetItem::data(x1); } return ret; }
- void setData(int x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 480); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 480, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QListWidgetItem::setData(x1, x2); }}
+ QListWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 513); void* fun = LObjects::overrideFun(id); QListWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QListWidgetItem*)callOverrideFun(fun, 513, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QListWidgetItem::clone(); } return ret; }
+ QVariant data(int x1) const { quint64 id = LObjects::override_id(unique, 514); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 514, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QListWidgetItem::data(x1); } return ret; }
+ void setData(int x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 515); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 515, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QListWidgetItem::setData(x1, x2); }}
};
class LLocale : public QLocale {
- friend class N110;
+ friend class N112;
public:
LLocale(uint u) : unique(u) {}
LLocale(uint u, const QString& x1) : QLocale(x1), unique(u) {}
@@ -1297,7 +1297,7 @@ public:
};
class LMargins : public QMargins {
- friend class N111;
+ friend class N113;
public:
LMargins(uint u) : unique(u) {}
LMargins(uint u, int x1, int x2, int x3, int x4) : QMargins(x1, x2, x3, x4), unique(u) {}
@@ -1307,7 +1307,7 @@ public:
};
class LMarginsF : public QMarginsF {
- friend class N112;
+ friend class N114;
public:
LMarginsF(uint u) : unique(u) {}
LMarginsF(uint u, qreal x1, qreal x2, qreal x3, qreal x4) : QMarginsF(x1, x2, x3, x4), unique(u) {}
@@ -1318,7 +1318,7 @@ public:
};
class LMatrix : public QMatrix {
- friend class N113;
+ friend class N115;
public:
LMatrix(uint u) : unique(u) {}
LMatrix(uint u, qreal x1, qreal x2, qreal x3, qreal x4, qreal x5, qreal x6) : QMatrix(x1, x2, x3, x4, x5, x6), unique(u) {}
@@ -1329,7 +1329,7 @@ public:
};
class LMatrix4x4 : public QMatrix4x4 {
- friend class N114;
+ friend class N116;
public:
LMatrix4x4(uint u) : unique(u) {}
LMatrix4x4(uint u, float x1, float x2, float x3, float x4, float x5, float x6, float x7, float x8, float x9, float x10, float x11, float x12, float x13, float x14, float x15, float x16) : QMatrix4x4(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16), unique(u) {}
@@ -1341,7 +1341,7 @@ public:
};
class LMessageAuthenticationCode : public QMessageAuthenticationCode {
- friend class N117;
+ friend class N119;
public:
LMessageAuthenticationCode(uint u, QCryptographicHash::Algorithm x1, const QByteArray& x2 = QByteArray()) : QMessageAuthenticationCode(x1, x2), unique(u) {}
@@ -1350,7 +1350,7 @@ public:
};
class LMetaObject : public QMetaObject {
- friend class N118;
+ friend class N120;
public:
static NumList overrideIds;
@@ -1358,7 +1358,7 @@ public:
};
class LModelIndex : public QModelIndex {
- friend class N119;
+ friend class N121;
public:
LModelIndex(uint u) : unique(u) {}
@@ -1367,7 +1367,7 @@ public:
};
class LMouseEvent : public QMouseEvent {
- friend class N120;
+ friend class N122;
public:
LMouseEvent(uint u, Type x1, const QPointF& x2, Qt::MouseButton x3, Qt::MouseButtons x4, Qt::KeyboardModifiers x5) : QMouseEvent(x1, x2, x3, x4, x5), unique(u) {}
LMouseEvent(uint u, Type x1, const QPointF& x2, const QPointF& x3, Qt::MouseButton x4, Qt::MouseButtons x5, Qt::KeyboardModifiers x6) : QMouseEvent(x1, x2, x3, x4, x5, x6), unique(u) {}
@@ -1378,7 +1378,7 @@ public:
};
class LMoveEvent : public QMoveEvent {
- friend class N121;
+ friend class N123;
public:
LMoveEvent(uint u, const QPoint& x1, const QPoint& x2) : QMoveEvent(x1, x2), unique(u) {}
@@ -1387,7 +1387,7 @@ public:
};
class LOpenGLFramebufferObject : public QOpenGLFramebufferObject {
- friend class N131;
+ friend class N133;
public:
LOpenGLFramebufferObject(uint u, const QSize& x1, GLenum x2 = GL_TEXTURE_2D) : QOpenGLFramebufferObject(x1, x2), unique(u) {}
LOpenGLFramebufferObject(uint u, int x1, int x2, GLenum x3 = GL_TEXTURE_2D) : QOpenGLFramebufferObject(x1, x2, x3), unique(u) {}
@@ -1401,7 +1401,7 @@ public:
};
class LOpenGLFramebufferObjectFormat : public QOpenGLFramebufferObjectFormat {
- friend class N132;
+ friend class N134;
public:
LOpenGLFramebufferObjectFormat(uint u) : unique(u) {}
LOpenGLFramebufferObjectFormat(uint u, const QOpenGLFramebufferObjectFormat& x1) : QOpenGLFramebufferObjectFormat(x1), unique(u) {}
@@ -1411,7 +1411,7 @@ public:
};
class LOpenGLPaintDevice : public QOpenGLPaintDevice {
- friend class N133;
+ friend class N135;
public:
LOpenGLPaintDevice(uint u) : unique(u) {}
LOpenGLPaintDevice(uint u, const QSize& x1) : QOpenGLPaintDevice(x1), unique(u) {}
@@ -1420,12 +1420,12 @@ public:
static NumList overrideIds;
uint unique;
- void ensureActiveTarget() { quint64 id = LObjects::override_id(unique, 482); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 482, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QOpenGLPaintDevice::ensureActiveTarget(); }}
- int metric(QPaintDevice::PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 483); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 483, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QOpenGLPaintDevice::metric(x1); } return ret; }
+ void ensureActiveTarget() { quint64 id = LObjects::override_id(unique, 517); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 517, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QOpenGLPaintDevice::ensureActiveTarget(); }}
+ int metric(QPaintDevice::PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 518); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 518, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QOpenGLPaintDevice::metric(x1); } return ret; }
};
class LOpenGLTexture : public QOpenGLTexture {
- friend class N134;
+ friend class N136;
public:
LOpenGLTexture(uint u, Target x1) : QOpenGLTexture(x1), unique(u) {}
LOpenGLTexture(uint u, const QImage& x1, MipMapGeneration x2 = GenerateMipMaps) : QOpenGLTexture(x1, x2), unique(u) {}
@@ -1435,7 +1435,7 @@ public:
};
class LPageLayout : public QPageLayout {
- friend class N135;
+ friend class N137;
public:
LPageLayout(uint u) : unique(u) {}
LPageLayout(uint u, const QPageSize& x1, Orientation x2, const QMarginsF& x3, Unit x4 = Point, const QMarginsF& x5 = QMarginsF_DEFAULT) : QPageLayout(x1, x2, x3, x4, x5), unique(u) {}
@@ -1446,7 +1446,7 @@ public:
};
class LPageSize : public QPageSize {
- friend class N136;
+ friend class N138;
public:
LPageSize(uint u) : unique(u) {}
LPageSize(uint u, PageSizeId x1) : QPageSize(x1), unique(u) {}
@@ -1459,7 +1459,7 @@ public:
};
class LPaintEvent : public QPaintEvent {
- friend class N139;
+ friend class N141;
public:
LPaintEvent(uint u, const QRegion& x1) : QPaintEvent(x1), unique(u) {}
LPaintEvent(uint u, const QRect& x1) : QPaintEvent(x1), unique(u) {}
@@ -1469,7 +1469,7 @@ public:
};
class LPainter : public QPainter {
- friend class N140;
+ friend class N142;
public:
LPainter(uint u, QImage* x1) : QPainter(x1), unique(u) {}
LPainter(uint u, QPdfWriter* x1) : QPainter(x1), unique(u) {}
@@ -1484,7 +1484,7 @@ public:
};
class LPainterPath : public QPainterPath {
- friend class N141;
+ friend class N143;
public:
LPainterPath(uint u) : unique(u) {}
LPainterPath(uint u, const QPointF& x1) : QPainterPath(x1), unique(u) {}
@@ -1495,7 +1495,7 @@ public:
};
class LPainterPathStroker : public QPainterPathStroker {
- friend class N142;
+ friend class N144;
public:
LPainterPathStroker(uint u) : unique(u) {}
LPainterPathStroker(uint u, const QPen& x1) : QPainterPathStroker(x1), unique(u) {}
@@ -1505,7 +1505,7 @@ public:
};
class LPalette : public QPalette {
- friend class N143;
+ friend class N145;
public:
LPalette(uint u) : unique(u) {}
LPalette(uint u, const QColor& x1) : QPalette(x1), unique(u) {}
@@ -1519,7 +1519,7 @@ public:
};
class LPen : public QPen {
- friend class N144;
+ friend class N146;
public:
LPen(uint u) : unique(u) {}
LPen(uint u, Qt::PenStyle x1) : QPen(x1), unique(u) {}
@@ -1532,7 +1532,7 @@ public:
};
class LPersistentModelIndex : public QPersistentModelIndex {
- friend class N145;
+ friend class N147;
public:
LPersistentModelIndex(uint u, const QModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {}
LPersistentModelIndex(uint u, const QPersistentModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {}
@@ -1542,7 +1542,7 @@ public:
};
class LPicture : public QPicture {
- friend class N146;
+ friend class N148;
public:
LPicture(uint u, int x1 = -1) : QPicture(x1), unique(u) {}
LPicture(uint u, const QPicture& x1) : QPicture(x1), unique(u) {}
@@ -1550,12 +1550,12 @@ public:
static NumList overrideIds;
uint unique;
- void setData(const char* x1, uint x2) { quint64 id = LObjects::override_id(unique, 484); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 484, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPicture::setData(x1, x2); }}
+ void setData(const char* x1, uint x2) { quint64 id = LObjects::override_id(unique, 519); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 519, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPicture::setData(x1, x2); }}
int metric(PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 45); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 45, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QPicture::metric(x1); } return ret; }
};
class LPixmap : public QPixmap {
- friend class N147;
+ friend class N149;
public:
LPixmap(uint u) : unique(u) {}
LPixmap(uint u, int x1, int x2) : QPixmap(x1, x2), unique(u) {}
@@ -1570,27 +1570,6 @@ public:
};
class LPixmapCache : public QPixmapCache {
- friend class N148;
-public:
-
- static NumList overrideIds;
- uint unique;
-};
-
-class LPrinter : public QPrinter {
- friend class N149;
-public:
- LPrinter(uint u, PrinterMode x1 = ScreenResolution) : QPrinter(x1), unique(u) {}
-
- static NumList overrideIds;
- uint unique;
-
- bool newPage() { quint64 id = LObjects::override_id(unique, 313); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 313, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QPrinter::newPage(); } return ret; }
- void setPageSize(PageSize x1) { quint64 id = LObjects::override_id(unique, 485); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 485, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSize(x1); }}
- void setPageSizeMM(const QSizeF& x1) { quint64 id = LObjects::override_id(unique, 486); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 486, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSizeMM(x1); }}
-};
-
-class LPrinterInfo : public QPrinterInfo {
friend class N150;
public:
@@ -1598,8 +1577,29 @@ public:
uint unique;
};
-class LProcessEnvironment : public QProcessEnvironment {
+class LPrinter : public QPrinter {
friend class N151;
+public:
+ LPrinter(uint u, PrinterMode x1 = ScreenResolution) : QPrinter(x1), unique(u) {}
+
+ static NumList overrideIds;
+ uint unique;
+
+ bool newPage() { quint64 id = LObjects::override_id(unique, 313); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 313, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QPrinter::newPage(); } return ret; }
+ void setPageSize(PageSize x1) { quint64 id = LObjects::override_id(unique, 520); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 520, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSize(x1); }}
+ void setPageSizeMM(const QSizeF& x1) { quint64 id = LObjects::override_id(unique, 521); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 521, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSizeMM(x1); }}
+};
+
+class LPrinterInfo : public QPrinterInfo {
+ friend class N152;
+public:
+
+ static NumList overrideIds;
+ uint unique;
+};
+
+class LProcessEnvironment : public QProcessEnvironment {
+ friend class N153;
public:
LProcessEnvironment(uint u) : unique(u) {}
LProcessEnvironment(uint u, const QProcessEnvironment& x1) : QProcessEnvironment(x1), unique(u) {}
@@ -1609,7 +1609,7 @@ public:
};
class LQuaternion : public QQuaternion {
- friend class N152;
+ friend class N164;
public:
LQuaternion(uint u) : unique(u) {}
LQuaternion(uint u, float x1, float x2, float x3, float x4) : QQuaternion(x1, x2, x3, x4), unique(u) {}
@@ -1621,7 +1621,7 @@ public:
};
class LRadialGradient : public QRadialGradient {
- friend class N153;
+ friend class N167;
public:
LRadialGradient(uint u) : unique(u) {}
LRadialGradient(uint u, const QPointF& x1, qreal x2, const QPointF& x3) : QRadialGradient(x1, x2, x3), unique(u) {}
@@ -1636,7 +1636,7 @@ public:
};
class LRegExp : public QRegExp {
- friend class N154;
+ friend class N168;
public:
LRegExp(uint u) : unique(u) {}
LRegExp(uint u, const QString& x1, Qt::CaseSensitivity x2 = Qt::CaseSensitive, PatternSyntax x3 = RegExp) : QRegExp(x1, x2, x3), unique(u) {}
@@ -1647,7 +1647,7 @@ public:
};
class LRegion : public QRegion {
- friend class N155;
+ friend class N169;
public:
LRegion(uint u) : unique(u) {}
LRegion(uint u, int x1, int x2, int x3, int x4, RegionType x5 = Rectangle) : QRegion(x1, x2, x3, x4, x5), unique(u) {}
@@ -1661,7 +1661,7 @@ public:
};
class LRegularExpression : public QRegularExpression {
- friend class N156;
+ friend class N170;
public:
LRegularExpression(uint u) : unique(u) {}
LRegularExpression(uint u, const QString& x1, PatternOptions x2 = NoPatternOption) : QRegularExpression(x1, x2), unique(u) {}
@@ -1672,7 +1672,7 @@ public:
};
class LResizeEvent : public QResizeEvent {
- friend class N157;
+ friend class N171;
public:
LResizeEvent(uint u, const QSize& x1, const QSize& x2) : QResizeEvent(x1, x2), unique(u) {}
@@ -1681,18 +1681,18 @@ public:
};
class LRunnable : public QRunnable {
- friend class N158;
+ friend class N172;
public:
LRunnable(uint u) : unique(u) {}
static NumList overrideIds;
uint unique;
- void run() { quint64 id = LObjects::override_id(unique, 487); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 487, 0, id); }}
+ void run() { quint64 id = LObjects::override_id(unique, 536); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 536, 0, id); }}
};
class LScrollEvent : public QScrollEvent {
- friend class N159;
+ friend class N189;
public:
LScrollEvent(uint u, const QPointF& x1, const QPointF& x2, ScrollState x3) : QScrollEvent(x1, x2, x3), unique(u) {}
@@ -1701,7 +1701,7 @@ public:
};
class LScrollPrepareEvent : public QScrollPrepareEvent {
- friend class N160;
+ friend class N190;
public:
LScrollPrepareEvent(uint u, const QPointF& x1) : QScrollPrepareEvent(x1), unique(u) {}
@@ -1710,7 +1710,7 @@ public:
};
class LSemaphore : public QSemaphore {
- friend class N161;
+ friend class N191;
public:
LSemaphore(uint u, int x1 = 0) : QSemaphore(x1), unique(u) {}
@@ -1719,7 +1719,7 @@ public:
};
class LShortcutEvent : public QShortcutEvent {
- friend class N162;
+ friend class N192;
public:
LShortcutEvent(uint u, const QKeySequence& x1, int x2, bool x3 = false) : QShortcutEvent(x1, x2, x3), unique(u) {}
@@ -1728,7 +1728,7 @@ public:
};
class LShowEvent : public QShowEvent {
- friend class N163;
+ friend class N193;
public:
LShowEvent(uint u) : unique(u) {}
@@ -1737,7 +1737,7 @@ public:
};
class LSizePolicy : public QSizePolicy {
- friend class N164;
+ friend class N194;
public:
LSizePolicy(uint u) : unique(u) {}
LSizePolicy(uint u, Policy x1, Policy x2, ControlType x3 = DefaultType) : QSizePolicy(x1, x2, x3), unique(u) {}
@@ -1747,7 +1747,7 @@ public:
};
class LSpacerItem : public QSpacerItem {
- friend class N165;
+ friend class N195;
public:
LSpacerItem(uint u, int x1, int x2, QSizePolicy::Policy x3 = QSizePolicy::Minimum, QSizePolicy::Policy x4 = QSizePolicy::Minimum) : QSpacerItem(x1, x2, x3, x4), unique(u) {}
@@ -1761,18 +1761,18 @@ public:
QSize minimumSize() const { quint64 id = LObjects::override_id(unique, 169); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 169, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::minimumSize(); } return ret; }
void setGeometry(const QRect& x1) { quint64 id = LObjects::override_id(unique, 170); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 170, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSpacerItem::setGeometry(x1); }}
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::sizeHint(); } return ret; }
- QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 476); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 476, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::spacerItem(); } return ret; }
+ QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 511); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 511, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::spacerItem(); } return ret; }
QSizePolicy::ControlTypes controlTypes() const { quint64 id = LObjects::override_id(unique, 173); void* fun = LObjects::overrideFun(id); QSizePolicy::ControlTypes ret = (QSizePolicy::ControlTypes)0; if(fun && (LObjects::calling != id)) { ret = (QSizePolicy::ControlTypes)callOverrideFun(fun, 173, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::controlTypes(); } return ret; }
bool hasHeightForWidth() const { quint64 id = LObjects::override_id(unique, 21); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 21, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::hasHeightForWidth(); } return ret; }
int heightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 22); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 22, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::heightForWidth(x1); } return ret; }
void invalidate() { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 165, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSpacerItem::invalidate(); }}
QLayout* layout() { quint64 id = LObjects::override_id(unique, 176); void* fun = LObjects::overrideFun(id); QLayout* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QLayout*)callOverrideFun(fun, 176, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::layout(); } return ret; }
int minimumHeightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 168); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 168, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::minimumHeightForWidth(x1); } return ret; }
- QWidget* widget() { quint64 id = LObjects::override_id(unique, 477); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 477, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::widget(); } return ret; }
+ QWidget* widget() { quint64 id = LObjects::override_id(unique, 512); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 512, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::widget(); } return ret; }
};
class LStandardItem : public QStandardItem {
- friend class N179;
+ friend class N209;
public:
LStandardItem(uint u) : unique(u) {}
LStandardItem(uint u, const QString& x1) : QStandardItem(x1), unique(u) {}
@@ -1782,14 +1782,14 @@ public:
static NumList overrideIds;
uint unique;
- QStandardItem* clone() const { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); QStandardItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QStandardItem*)callOverrideFun(fun, 478, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStandardItem::clone(); } return ret; }
- QVariant data(int x1 = Qt::UserRole+1) const { quint64 id = LObjects::override_id(unique, 479); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 479, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStandardItem::data(x1); } return ret; }
- void setData(const QVariant& x1, int x2 = Qt::UserRole+1) { quint64 id = LObjects::override_id(unique, 507); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 507, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QStandardItem::setData(x1, x2); }}
+ QStandardItem* clone() const { quint64 id = LObjects::override_id(unique, 513); void* fun = LObjects::overrideFun(id); QStandardItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QStandardItem*)callOverrideFun(fun, 513, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStandardItem::clone(); } return ret; }
+ QVariant data(int x1 = Qt::UserRole+1) const { quint64 id = LObjects::override_id(unique, 514); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 514, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStandardItem::data(x1); } return ret; }
+ void setData(const QVariant& x1, int x2 = Qt::UserRole+1) { quint64 id = LObjects::override_id(unique, 560); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 560, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QStandardItem::setData(x1, x2); }}
int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStandardItem::type(); } return ret; }
};
class LStatusTipEvent : public QStatusTipEvent {
- friend class N181;
+ friend class N211;
public:
LStatusTipEvent(uint u, const QString& x1) : QStatusTipEvent(x1), unique(u) {}
@@ -1798,7 +1798,7 @@ public:
};
class LStorageInfo : public QStorageInfo {
- friend class N182;
+ friend class N212;
public:
LStorageInfo(uint u) : unique(u) {}
LStorageInfo(uint u, const QString& x1) : QStorageInfo(x1), unique(u) {}
@@ -1810,7 +1810,7 @@ public:
};
class LStyleOption : public QStyleOption {
- friend class N183;
+ friend class N213;
public:
LStyleOption(uint u, int x1 = QStyleOption::Version, int x2 = SO_Default) : QStyleOption(x1, x2), unique(u) {}
LStyleOption(uint u, const QStyleOption& x1) : QStyleOption(x1), unique(u) {}
@@ -1820,7 +1820,7 @@ public:
};
class LStyleOptionGraphicsItem : public QStyleOptionGraphicsItem {
- friend class N184;
+ friend class N214;
public:
LStyleOptionGraphicsItem(uint u) : unique(u) {}
LStyleOptionGraphicsItem(uint u, const QStyleOptionGraphicsItem& x1) : QStyleOptionGraphicsItem(x1), unique(u) {}
@@ -1830,7 +1830,7 @@ public:
};
class LSurfaceFormat : public QSurfaceFormat {
- friend class N186;
+ friend class N216;
public:
LSurfaceFormat(uint u) : unique(u) {}
LSurfaceFormat(uint u, FormatOptions x1) : QSurfaceFormat(x1), unique(u) {}
@@ -1841,7 +1841,7 @@ public:
};
class LSystemSemaphore : public QSystemSemaphore {
- friend class N189;
+ friend class N219;
public:
LSystemSemaphore(uint u, const QString& x1, int x2 = 0, AccessMode x3 = Open) : QSystemSemaphore(x1, x2, x3), unique(u) {}
@@ -1850,7 +1850,7 @@ public:
};
class LTableWidgetItem : public QTableWidgetItem {
- friend class N190;
+ friend class N220;
public:
LTableWidgetItem(uint u, int x1 = Type) : QTableWidgetItem(x1), unique(u) {}
LTableWidgetItem(uint u, const QString& x1, int x2 = Type) : QTableWidgetItem(x1, x2), unique(u) {}
@@ -1860,13 +1860,13 @@ public:
static NumList overrideIds;
uint unique;
- QTableWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); QTableWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTableWidgetItem*)callOverrideFun(fun, 478, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidgetItem::clone(); } return ret; }
- QVariant data(int x1) const { quint64 id = LObjects::override_id(unique, 479); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 479, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidgetItem::data(x1); } return ret; }
- void setData(int x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 480); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 480, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTableWidgetItem::setData(x1, x2); }}
+ QTableWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 513); void* fun = LObjects::overrideFun(id); QTableWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTableWidgetItem*)callOverrideFun(fun, 513, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidgetItem::clone(); } return ret; }
+ QVariant data(int x1) const { quint64 id = LObjects::override_id(unique, 514); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 514, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidgetItem::data(x1); } return ret; }
+ void setData(int x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 515); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 515, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTableWidgetItem::setData(x1, x2); }}
};
class LTableWidgetSelectionRange : public QTableWidgetSelectionRange {
- friend class N191;
+ friend class N221;
public:
LTableWidgetSelectionRange(uint u) : unique(u) {}
LTableWidgetSelectionRange(uint u, int x1, int x2, int x3, int x4) : QTableWidgetSelectionRange(x1, x2, x3, x4), unique(u) {}
@@ -1877,7 +1877,7 @@ public:
};
class LTabletEvent : public QTabletEvent {
- friend class N192;
+ friend class N222;
public:
LTabletEvent(uint u, Type x1, const QPointF& x2, const QPointF& x3, int x4, int x5, qreal x6, int x7, int x8, qreal x9, qreal x10, int x11, Qt::KeyboardModifiers x12, qint64 x13, Qt::MouseButton x14, Qt::MouseButtons x15) : QTabletEvent(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15), unique(u) {}
@@ -1886,7 +1886,7 @@ public:
};
class LTextBlock : public QTextBlock {
- friend class N193;
+ friend class N223;
public:
LTextBlock(uint u, const QTextBlock& x1) : QTextBlock(x1), unique(u) {}
@@ -1895,7 +1895,7 @@ public:
};
class LTextBlockFormat : public QTextBlockFormat {
- friend class N194;
+ friend class N224;
public:
LTextBlockFormat(uint u) : unique(u) {}
@@ -1904,7 +1904,7 @@ public:
};
class LTextBlockUserData : public QTextBlockUserData {
- friend class N195;
+ friend class N225;
public:
static NumList overrideIds;
@@ -1912,7 +1912,7 @@ public:
};
class LTextBoundaryFinder : public QTextBoundaryFinder {
- friend class N196;
+ friend class N226;
public:
LTextBoundaryFinder(uint u) : unique(u) {}
LTextBoundaryFinder(uint u, const QTextBoundaryFinder& x1) : QTextBoundaryFinder(x1), unique(u) {}
@@ -1924,7 +1924,7 @@ public:
};
class LTextCharFormat : public QTextCharFormat {
- friend class N197;
+ friend class N227;
public:
LTextCharFormat(uint u) : unique(u) {}
@@ -1933,21 +1933,21 @@ public:
};
class LTextCodec : public QTextCodec {
- friend class N198;
+ friend class N228;
public:
static NumList overrideIds;
uint unique;
- QList aliases() const { quint64 id = LObjects::override_id(unique, 508); void* fun = LObjects::overrideFun(id); QList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 508, 0, id).value >(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTextCodec::aliases(); } return ret; }
- int mibEnum() const { quint64 id = LObjects::override_id(unique, 509); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 509, 0, id).toInt(); } return ret; }
- QByteArray name() const { quint64 id = LObjects::override_id(unique, 510); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 510, 0, id).value(); } return ret; }
- QByteArray convertFromUnicode(const QChar* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 511); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 511, args, id).value(); } return ret; }
- QString convertToUnicode(const char* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 512); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 512, args, id).value(); } return ret; }
+ QList aliases() const { quint64 id = LObjects::override_id(unique, 561); void* fun = LObjects::overrideFun(id); QList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 561, 0, id).value >(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTextCodec::aliases(); } return ret; }
+ int mibEnum() const { quint64 id = LObjects::override_id(unique, 562); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 562, 0, id).toInt(); } return ret; }
+ QByteArray name() const { quint64 id = LObjects::override_id(unique, 563); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 563, 0, id).value(); } return ret; }
+ QByteArray convertFromUnicode(const QChar* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 564); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 564, args, id).value(); } return ret; }
+ QString convertToUnicode(const char* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 565); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 565, args, id).value(); } return ret; }
};
class LTextCursor : public QTextCursor {
- friend class N199;
+ friend class N229;
public:
LTextCursor(uint u) : unique(u) {}
LTextCursor(uint u, QTextDocument* x1) : QTextCursor(x1), unique(u) {}
@@ -1960,7 +1960,7 @@ public:
};
class LTextDecoder : public QTextDecoder {
- friend class N200;
+ friend class N230;
public:
LTextDecoder(uint u, const QTextCodec* x1) : QTextDecoder(x1), unique(u) {}
LTextDecoder(uint u, const QTextCodec* x1, QTextCodec::ConversionFlags x2) : QTextDecoder(x1, x2), unique(u) {}
@@ -1970,7 +1970,7 @@ public:
};
class LTextDocumentFragment : public QTextDocumentFragment {
- friend class N201;
+ friend class N231;
public:
LTextDocumentFragment(uint u) : unique(u) {}
LTextDocumentFragment(uint u, const QTextDocument* x1) : QTextDocumentFragment(x1), unique(u) {}
@@ -1982,7 +1982,7 @@ public:
};
class LTextDocumentWriter : public QTextDocumentWriter {
- friend class N202;
+ friend class N232;
public:
LTextDocumentWriter(uint u) : unique(u) {}
LTextDocumentWriter(uint u, const QString& x1, const QByteArray& x2 = QByteArray()) : QTextDocumentWriter(x1, x2), unique(u) {}
@@ -1992,7 +1992,7 @@ public:
};
class LTextEncoder : public QTextEncoder {
- friend class N203;
+ friend class N233;
public:
LTextEncoder(uint u, const QTextCodec* x1) : QTextEncoder(x1), unique(u) {}
LTextEncoder(uint u, const QTextCodec* x1, QTextCodec::ConversionFlags x2) : QTextEncoder(x1, x2), unique(u) {}
@@ -2002,7 +2002,7 @@ public:
};
class LTextFormat : public QTextFormat {
- friend class N204;
+ friend class N234;
public:
LTextFormat(uint u) : unique(u) {}
LTextFormat(uint u, int x1) : QTextFormat(x1), unique(u) {}
@@ -2013,7 +2013,7 @@ public:
};
class LTextFragment : public QTextFragment {
- friend class N205;
+ friend class N235;
public:
LTextFragment(uint u) : unique(u) {}
LTextFragment(uint u, const QTextFragment& x1) : QTextFragment(x1), unique(u) {}
@@ -2023,7 +2023,7 @@ public:
};
class LTextFrameFormat : public QTextFrameFormat {
- friend class N206;
+ friend class N236;
public:
LTextFrameFormat(uint u) : unique(u) {}
@@ -2032,7 +2032,7 @@ public:
};
class LTextImageFormat : public QTextImageFormat {
- friend class N207;
+ friend class N237;
public:
LTextImageFormat(uint u) : unique(u) {}
@@ -2041,7 +2041,7 @@ public:
};
class LTextLayout : public QTextLayout {
- friend class N208;
+ friend class N238;
public:
LTextLayout(uint u) : unique(u) {}
LTextLayout(uint u, const QString& x1) : QTextLayout(x1), unique(u) {}
@@ -2052,7 +2052,7 @@ public:
};
class LTextLength : public QTextLength {
- friend class N209;
+ friend class N239;
public:
LTextLength(uint u) : unique(u) {}
LTextLength(uint u, Type x1, qreal x2) : QTextLength(x1, x2), unique(u) {}
@@ -2062,7 +2062,7 @@ public:
};
class LTextLine : public QTextLine {
- friend class N210;
+ friend class N240;
public:
LTextLine(uint u) : unique(u) {}
@@ -2071,7 +2071,7 @@ public:
};
class LTextListFormat : public QTextListFormat {
- friend class N211;
+ friend class N241;
public:
LTextListFormat(uint u) : unique(u) {}
@@ -2080,7 +2080,7 @@ public:
};
class LTextOption : public QTextOption {
- friend class N212;
+ friend class N242;
public:
LTextOption(uint u) : unique(u) {}
LTextOption(uint u, Qt::Alignment x1) : QTextOption(x1), unique(u) {}
@@ -2091,7 +2091,7 @@ public:
};
class LTextTableCell : public QTextTableCell {
- friend class N213;
+ friend class N243;
public:
LTextTableCell(uint u) : unique(u) {}
LTextTableCell(uint u, const QTextTableCell& x1) : QTextTableCell(x1), unique(u) {}
@@ -2101,7 +2101,7 @@ public:
};
class LTextTableCellFormat : public QTextTableCellFormat {
- friend class N214;
+ friend class N244;
public:
LTextTableCellFormat(uint u) : unique(u) {}
@@ -2110,7 +2110,7 @@ public:
};
class LTextTableFormat : public QTextTableFormat {
- friend class N215;
+ friend class N245;
public:
LTextTableFormat(uint u) : unique(u) {}
@@ -2119,7 +2119,7 @@ public:
};
class LTime : public QTime {
- friend class N216;
+ friend class N246;
public:
LTime(uint u) : unique(u) {}
LTime(uint u, int x1, int x2, int x3 = 0, int x4 = 0) : QTime(x1, x2, x3, x4), unique(u) {}
@@ -2129,7 +2129,7 @@ public:
};
class LTimeZone : public QTimeZone {
- friend class N217;
+ friend class N247;
public:
LTimeZone(uint u) : unique(u) {}
LTimeZone(uint u, const QByteArray& x1) : QTimeZone(x1), unique(u) {}
@@ -2142,7 +2142,7 @@ public:
};
class LTimerEvent : public QTimerEvent {
- friend class N218;
+ friend class N248;
public:
LTimerEvent(uint u, int x1) : QTimerEvent(x1), unique(u) {}
@@ -2151,7 +2151,7 @@ public:
};
class LToolTip : public QToolTip {
- friend class N219;
+ friend class N249;
public:
static NumList overrideIds;
@@ -2159,7 +2159,7 @@ public:
};
class LTouchDevice : public QTouchDevice {
- friend class N220;
+ friend class N250;
public:
LTouchDevice(uint u) : unique(u) {}
@@ -2168,7 +2168,7 @@ public:
};
class LTouchEvent : public QTouchEvent {
- friend class N221;
+ friend class N251;
public:
LTouchEvent(uint u, QEvent::Type x1, QTouchDevice* x2 = 0, Qt::KeyboardModifiers x3 = Qt::NoModifier, Qt::TouchPointStates x4 = 0, const QList& x5 = QList()) : QTouchEvent(x1, x2, x3, x4, x5), unique(u) {}
@@ -2177,7 +2177,7 @@ public:
};
class LTransform : public QTransform {
- friend class N222;
+ friend class N252;
public:
LTransform(uint u) : unique(u) {}
LTransform(uint u, qreal x1, qreal x2, qreal x3, qreal x4, qreal x5, qreal x6, qreal x7, qreal x8, qreal x9 = 1.0) : QTransform(x1, x2, x3, x4, x5, x6, x7, x8, x9), unique(u) {}
@@ -2189,7 +2189,7 @@ public:
};
class LTreeWidgetItem : public QTreeWidgetItem {
- friend class N223;
+ friend class N253;
public:
LTreeWidgetItem(uint u, int x1 = Type) : QTreeWidgetItem(x1), unique(u) {}
LTreeWidgetItem(uint u, const QStringList& x1, int x2 = Type) : QTreeWidgetItem(x1, x2), unique(u) {}
@@ -2204,13 +2204,13 @@ public:
static NumList overrideIds;
uint unique;
- QTreeWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); QTreeWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTreeWidgetItem*)callOverrideFun(fun, 478, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidgetItem::clone(); } return ret; }
- QVariant data(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 513); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 513, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidgetItem::data(x1, x2); } return ret; }
- void setData(int x1, int x2, const QVariant& x3) { quint64 id = LObjects::override_id(unique, 514); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 514, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTreeWidgetItem::setData(x1, x2, x3); }}
+ QTreeWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 513); void* fun = LObjects::overrideFun(id); QTreeWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTreeWidgetItem*)callOverrideFun(fun, 513, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidgetItem::clone(); } return ret; }
+ QVariant data(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 566); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 566, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidgetItem::data(x1, x2); } return ret; }
+ void setData(int x1, int x2, const QVariant& x3) { quint64 id = LObjects::override_id(unique, 567); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 567, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTreeWidgetItem::setData(x1, x2, x3); }}
};
class LUndoCommand : public QUndoCommand {
- friend class N224;
+ friend class N254;
public:
LUndoCommand(uint u, QUndoCommand* x1 = 0) : QUndoCommand(x1), unique(u) {}
LUndoCommand(uint u, const QString& x1, QUndoCommand* x2 = 0) : QUndoCommand(x1, x2), unique(u) {}
@@ -2218,14 +2218,14 @@ public:
static NumList overrideIds;
uint unique;
- int id() const { quint64 id = LObjects::override_id(unique, 515); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 515, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QUndoCommand::id(); } return ret; }
- bool mergeWith(const QUndoCommand* x1) { quint64 id = LObjects::override_id(unique, 516); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 516, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QUndoCommand::mergeWith(x1); } return ret; }
- void redo() { quint64 id = LObjects::override_id(unique, 517); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 517, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QUndoCommand::redo(); }}
- void undo() { quint64 id = LObjects::override_id(unique, 518); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 518, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QUndoCommand::undo(); }}
+ int id() const { quint64 id = LObjects::override_id(unique, 568); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 568, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QUndoCommand::id(); } return ret; }
+ bool mergeWith(const QUndoCommand* x1) { quint64 id = LObjects::override_id(unique, 569); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 569, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QUndoCommand::mergeWith(x1); } return ret; }
+ void redo() { quint64 id = LObjects::override_id(unique, 570); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 570, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QUndoCommand::redo(); }}
+ void undo() { quint64 id = LObjects::override_id(unique, 571); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 571, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QUndoCommand::undo(); }}
};
class LUrl : public QUrl {
- friend class N225;
+ friend class N255;
public:
LUrl(uint u) : unique(u) {}
LUrl(uint u, const QUrl& x1) : QUrl(x1), unique(u) {}
@@ -2236,7 +2236,7 @@ public:
};
class LUuid : public QUuid {
- friend class N226;
+ friend class N256;
public:
LUuid(uint u) : unique(u) {}
LUuid(uint u, uint x1, ushort x2, ushort x3, uchar x4, uchar x5, uchar x6, uchar x7, uchar x8, uchar x9, uchar x10, uchar x11) : QUuid(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11), unique(u) {}
@@ -2248,7 +2248,7 @@ public:
};
class LVariant : public QVariant {
- friend class N227;
+ friend class N257;
public:
LVariant(uint u, const QCursor& x1) : QVariant(x1), unique(u) {}
LVariant(uint u) : unique(u) {}
@@ -2297,7 +2297,7 @@ public:
};
class LVector2D : public QVector2D {
- friend class N228;
+ friend class N258;
public:
LVector2D(uint u) : unique(u) {}
LVector2D(uint u, float x1, float x2) : QVector2D(x1, x2), unique(u) {}
@@ -2311,7 +2311,7 @@ public:
};
class LVector3D : public QVector3D {
- friend class N229;
+ friend class N259;
public:
LVector3D(uint u) : unique(u) {}
LVector3D(uint u, float x1, float x2, float x3) : QVector3D(x1, x2, x3), unique(u) {}
@@ -2326,7 +2326,7 @@ public:
};
class LVector4D : public QVector4D {
- friend class N230;
+ friend class N260;
public:
LVector4D(uint u) : unique(u) {}
LVector4D(uint u, float x1, float x2, float x3, float x4) : QVector4D(x1, x2, x3, x4), unique(u) {}
@@ -2342,7 +2342,7 @@ public:
};
class LWhatsThis : public QWhatsThis {
- friend class N242;
+ friend class N272;
public:
static NumList overrideIds;
@@ -2350,7 +2350,7 @@ public:
};
class LWhatsThisClickedEvent : public QWhatsThisClickedEvent {
- friend class N243;
+ friend class N273;
public:
LWhatsThisClickedEvent(uint u, const QString& x1) : QWhatsThisClickedEvent(x1), unique(u) {}
@@ -2359,7 +2359,7 @@ public:
};
class LWheelEvent : public QWheelEvent {
- friend class N244;
+ friend class N274;
public:
LWheelEvent(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8) : QWheelEvent(x1, x2, x3, x4, x5, x6, x7, x8), unique(u) {}
LWheelEvent(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8, Qt::ScrollPhase x9) : QWheelEvent(x1, x2, x3, x4, x5, x6, x7, x8, x9), unique(u) {}
@@ -2370,7 +2370,7 @@ public:
};
class LWidgetItem : public QWidgetItem {
- friend class N245;
+ friend class N275;
public:
LWidgetItem(uint u, QWidget* x1) : QWidgetItem(x1), unique(u) {}
@@ -2387,15 +2387,15 @@ public:
QSize minimumSize() const { quint64 id = LObjects::override_id(unique, 169); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 169, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::minimumSize(); } return ret; }
void setGeometry(const QRect& x1) { quint64 id = LObjects::override_id(unique, 170); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 170, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWidgetItem::setGeometry(x1); }}
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::sizeHint(); } return ret; }
- QWidget* widget() { quint64 id = LObjects::override_id(unique, 477); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 477, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::widget(); } return ret; }
+ QWidget* widget() { quint64 id = LObjects::override_id(unique, 512); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 512, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::widget(); } return ret; }
void invalidate() { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 165, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWidgetItem::invalidate(); }}
QLayout* layout() { quint64 id = LObjects::override_id(unique, 176); void* fun = LObjects::overrideFun(id); QLayout* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QLayout*)callOverrideFun(fun, 176, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::layout(); } return ret; }
int minimumHeightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 168); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 168, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::minimumHeightForWidth(x1); } return ret; }
- QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 476); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 476, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::spacerItem(); } return ret; }
+ QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 511); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 511, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::spacerItem(); } return ret; }
};
class LWindowStateChangeEvent : public QWindowStateChangeEvent {
- friend class N246;
+ friend class N276;
public:
static NumList overrideIds;
diff --git a/src/gen/_main_n_methods.h b/src/gen/_main_n_methods.h
index 0bb6e77..3d76231 100644
--- a/src/gen/_main_n_methods.h
+++ b/src/gen/_main_n_methods.h
@@ -1101,7 +1101,7 @@ public:
Q_INVOKABLE int Mwidth(QItemSelectionRange* o) const { return o->width(); }
};
-class EQL_EXPORT N105 : public QObject { // QKeySequence
+class EQL_EXPORT N107 : public QObject { // QKeySequence
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LKeySequence(u); }
@@ -1121,7 +1121,7 @@ public:
Q_INVOKABLE QKeySequence Smnemonic(const QString& x1) { return QKeySequence::mnemonic(x1); }
};
-class EQL_EXPORT N106 : public QObject { // QLayoutItem
+class EQL_EXPORT N108 : public QObject { // QLayoutItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, Qt::Alignment x1 = 0) { return new LLayoutItem(u, x1); }
@@ -1144,7 +1144,7 @@ public:
Q_INVOKABLE QWidget* Mwidget(QLayoutItem* o) { return o->widget(); }
};
-class EQL_EXPORT N107 : public QObject { // QLibraryInfo
+class EQL_EXPORT N109 : public QObject { // QLibraryInfo
Q_OBJECT
public:
Q_INVOKABLE bool SisDebugBuild() { return QLibraryInfo::isDebugBuild(); }
@@ -1153,7 +1153,7 @@ public:
Q_INVOKABLE QString Slocation(QLibraryInfo::LibraryLocation x1) { return QLibraryInfo::location(x1); }
};
-class EQL_EXPORT N109 : public QObject { // QListWidgetItem
+class EQL_EXPORT N111 : public QObject { // QListWidgetItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QListWidget* x1 = 0, int x2 = QListWidgetItem::Type) { return new LListWidgetItem(u, x1, x2); }
@@ -1195,7 +1195,7 @@ public:
Q_INVOKABLE QString MwhatsThis(QListWidgetItem* o) const { return o->whatsThis(); }
};
-class EQL_EXPORT N110 : public QObject { // QLocale
+class EQL_EXPORT N112 : public QObject { // QLocale
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LLocale(u); }
@@ -1290,7 +1290,7 @@ public:
Q_INVOKABLE QLocale Ssystem() { return QLocale::system(); }
};
-class EQL_EXPORT N111 : public QObject { // QMargins
+class EQL_EXPORT N113 : public QObject { // QMargins
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMargins(u); }
@@ -1306,7 +1306,7 @@ public:
Q_INVOKABLE int Mtop(QMargins* o) const { return o->top(); }
};
-class EQL_EXPORT N112 : public QObject { // QMarginsF
+class EQL_EXPORT N114 : public QObject { // QMarginsF
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMarginsF(u); }
@@ -1324,7 +1324,7 @@ public:
Q_INVOKABLE qreal Mtop(QMarginsF* o) const { return o->top(); }
};
-class EQL_EXPORT N113 : public QObject { // QMatrix
+class EQL_EXPORT N115 : public QObject { // QMatrix
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMatrix(u); }
@@ -1359,7 +1359,7 @@ public:
Q_INVOKABLE QMatrix Mtranslate(QMatrix* o, qreal x1, qreal x2) { return o->translate(x1, x2); }
};
-class EQL_EXPORT N114 : public QObject { // QMatrix4x4
+class EQL_EXPORT N116 : public QObject { // QMatrix4x4
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMatrix4x4(u); }
@@ -1408,7 +1408,7 @@ public:
Q_INVOKABLE void Mviewport(QMatrix4x4* o, const QRectF& x1) { o->viewport(x1); }
};
-class EQL_EXPORT N117 : public QObject { // QMessageAuthenticationCode
+class EQL_EXPORT N119 : public QObject { // QMessageAuthenticationCode
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QCryptographicHash::Algorithm x1, const QByteArray& x2 = QByteArray()) { return new LMessageAuthenticationCode(u, x1, x2); }
@@ -1420,7 +1420,7 @@ public:
Q_INVOKABLE QByteArray Shash(const QByteArray& x1, const QByteArray& x2, QCryptographicHash::Algorithm x3) { return QMessageAuthenticationCode::hash(x1, x2, x3); }
};
-class EQL_EXPORT N118 : public QObject { // QMetaObject
+class EQL_EXPORT N120 : public QObject { // QMetaObject
Q_OBJECT
public:
Q_INVOKABLE int MclassInfoCount(QMetaObject* o) const { return o->classInfoCount(); }
@@ -1447,7 +1447,7 @@ public:
Q_INVOKABLE QByteArray SnormalizedType(const char* x1) { return QMetaObject::normalizedType(x1); }
};
-class EQL_EXPORT N119 : public QObject { // QModelIndex
+class EQL_EXPORT N121 : public QObject { // QModelIndex
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LModelIndex(u); }
@@ -1462,7 +1462,7 @@ public:
Q_INVOKABLE QModelIndex Msibling(QModelIndex* o, int x1, int x2) const { return o->sibling(x1, x2); }
};
-class EQL_EXPORT N131 : public QObject { // QOpenGLFramebufferObject
+class EQL_EXPORT N133 : public QObject { // QOpenGLFramebufferObject
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QSize& x1, GLenum x2 = GL_TEXTURE_2D) { return new LOpenGLFramebufferObject(u, x1, x2); }
@@ -1493,7 +1493,7 @@ public:
Q_INVOKABLE bool ShasOpenGLFramebufferObjects() { return QOpenGLFramebufferObject::hasOpenGLFramebufferObjects(); }
};
-class EQL_EXPORT N132 : public QObject { // QOpenGLFramebufferObjectFormat
+class EQL_EXPORT N134 : public QObject { // QOpenGLFramebufferObjectFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LOpenGLFramebufferObjectFormat(u); }
@@ -1510,7 +1510,7 @@ public:
Q_INVOKABLE GLenum MtextureTarget(QOpenGLFramebufferObjectFormat* o) const { return o->textureTarget(); }
};
-class EQL_EXPORT N134 : public QObject { // QOpenGLTexture
+class EQL_EXPORT N136 : public QObject { // QOpenGLTexture
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QOpenGLTexture::Target x1) { return new LOpenGLTexture(u, x1); }
@@ -1593,7 +1593,7 @@ public:
Q_INVOKABLE bool ShasFeature(QOpenGLTexture::Feature x1) { return QOpenGLTexture::hasFeature(x1); }
};
-class EQL_EXPORT N135 : public QObject { // QPageLayout
+class EQL_EXPORT N137 : public QObject { // QPageLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPageLayout(u); }
@@ -1630,7 +1630,7 @@ public:
Q_INVOKABLE int Munits(QPageLayout* o) const { return o->units(); }
};
-class EQL_EXPORT N136 : public QObject { // QPageSize
+class EQL_EXPORT N138 : public QObject { // QPageSize
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPageSize(u); }
@@ -1666,7 +1666,7 @@ public:
Q_INVOKABLE int SwindowsId(QPageSize::PageSizeId x1) { return QPageSize::windowsId(x1); }
};
-class EQL_EXPORT N138 : public QObject { // QPaintDevice
+class EQL_EXPORT N140 : public QObject { // QPaintDevice
Q_OBJECT
public:
Q_INVOKABLE int McolorCount(QPaintDevice* o) const { return o->colorCount(); }
@@ -1683,7 +1683,7 @@ public:
Q_INVOKABLE int MwidthMM(QPaintDevice* o) const { return o->widthMM(); }
};
-class EQL_EXPORT N140 : public QObject { // QPainter
+class EQL_EXPORT N142 : public QObject { // QPainter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QImage* x1) { return new LPainter(u, x1); }
@@ -1880,7 +1880,7 @@ public:
Q_INVOKABLE QTransform MworldTransform(QPainter* o) const { return o->worldTransform(); }
};
-class EQL_EXPORT N141 : public QObject { // QPainterPath
+class EQL_EXPORT N143 : public QObject { // QPainterPath
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPainterPath(u); }
@@ -1948,7 +1948,7 @@ public:
Q_INVOKABLE QPainterPath Munited(QPainterPath* o, const QPainterPath& x1) const { return o->united(x1); }
};
-class EQL_EXPORT N142 : public QObject { // QPainterPathStroker
+class EQL_EXPORT N144 : public QObject { // QPainterPathStroker
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPainterPathStroker(u); }
@@ -1971,7 +1971,7 @@ public:
Q_INVOKABLE qreal Mwidth(QPainterPathStroker* o) const { return o->width(); }
};
-class EQL_EXPORT N143 : public QObject { // QPalette
+class EQL_EXPORT N145 : public QObject { // QPalette
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPalette(u); }
@@ -2018,7 +2018,7 @@ public:
Q_INVOKABLE QBrush MwindowText(QPalette* o) const { return o->windowText(); }
};
-class EQL_EXPORT N144 : public QObject { // QPen
+class EQL_EXPORT N146 : public QObject { // QPen
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPen(u); }
@@ -2052,7 +2052,7 @@ public:
Q_INVOKABLE qreal MwidthF(QPen* o) const { return o->widthF(); }
};
-class EQL_EXPORT N145 : public QObject { // QPersistentModelIndex
+class EQL_EXPORT N147 : public QObject { // QPersistentModelIndex
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QModelIndex& x1) { return new LPersistentModelIndex(u, x1); }
@@ -2069,7 +2069,7 @@ public:
Q_INVOKABLE void Mswap(QPersistentModelIndex* o, QPersistentModelIndex& x1) { o->swap(x1); }
};
-class EQL_EXPORT N148 : public QObject { // QPixmapCache
+class EQL_EXPORT N150 : public QObject { // QPixmapCache
Q_OBJECT
public:
Q_INVOKABLE int ScacheLimit() { return QPixmapCache::cacheLimit(); }
@@ -2080,7 +2080,7 @@ public:
Q_INVOKABLE void SsetCacheLimit(int x1) { QPixmapCache::setCacheLimit(x1); }
};
-class EQL_EXPORT N150 : public QObject { // QPrinterInfo
+class EQL_EXPORT N152 : public QObject { // QPrinterInfo
Q_OBJECT
public:
Q_INVOKABLE int MdefaultDuplexMode(QPrinterInfo* o) const { return o->defaultDuplexMode(); }
@@ -2103,7 +2103,7 @@ public:
Q_INVOKABLE QString SdefaultPrinterName() { return QPrinterInfo::defaultPrinterName(); }
};
-class EQL_EXPORT N151 : public QObject { // QProcessEnvironment
+class EQL_EXPORT N153 : public QObject { // QProcessEnvironment
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LProcessEnvironment(u); }
@@ -2121,7 +2121,7 @@ public:
Q_INVOKABLE QProcessEnvironment SsystemEnvironment() { return QProcessEnvironment::systemEnvironment(); }
};
-class EQL_EXPORT N152 : public QObject { // QQuaternion
+class EQL_EXPORT N164 : public QObject { // QQuaternion
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LQuaternion(u); }
@@ -2162,7 +2162,7 @@ public:
Q_INVOKABLE QQuaternion Sslerp(const QQuaternion& x1, const QQuaternion& x2, float x3) { return QQuaternion::slerp(x1, x2, x3); }
};
-class EQL_EXPORT N154 : public QObject { // QRegExp
+class EQL_EXPORT N168 : public QObject { // QRegExp
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LRegExp(u); }
@@ -2191,7 +2191,7 @@ public:
Q_INVOKABLE QString Sescape(const QString& x1) { return QRegExp::escape(x1); }
};
-class EQL_EXPORT N155 : public QObject { // QRegion
+class EQL_EXPORT N169 : public QObject { // QRegion
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LRegion(u); }
@@ -2223,7 +2223,7 @@ public:
Q_INVOKABLE QRegion Mxored(QRegion* o, const QRegion& x1) const { return o->xored(x1); }
};
-class EQL_EXPORT N156 : public QObject { // QRegularExpression
+class EQL_EXPORT N170 : public QObject { // QRegularExpression
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LRegularExpression(u); }
@@ -2247,7 +2247,7 @@ public:
Q_INVOKABLE QString Sescape(const QString& x1) { return QRegularExpression::escape(x1); }
};
-class EQL_EXPORT N158 : public QObject { // QRunnable
+class EQL_EXPORT N172 : public QObject { // QRunnable
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LRunnable(u); }
@@ -2256,7 +2256,7 @@ public:
Q_INVOKABLE void MsetAutoDelete(QRunnable* o, bool x1) { o->setAutoDelete(x1); }
};
-class EQL_EXPORT N161 : public QObject { // QSemaphore
+class EQL_EXPORT N191 : public QObject { // QSemaphore
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1 = 0) { return new LSemaphore(u, x1); }
@@ -2267,7 +2267,7 @@ public:
Q_INVOKABLE bool MtryAcquire(QSemaphore* o, int x1, int x2) { return o->tryAcquire(x1, x2); }
};
-class EQL_EXPORT N164 : public QObject { // QSizePolicy
+class EQL_EXPORT N194 : public QObject { // QSizePolicy
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LSizePolicy(u); }
@@ -2292,7 +2292,7 @@ public:
Q_INVOKABLE int MverticalStretch(QSizePolicy* o) const { return o->verticalStretch(); }
};
-class EQL_EXPORT N179 : public QObject { // QStandardItem
+class EQL_EXPORT N209 : public QObject { // QStandardItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LStandardItem(u); }
@@ -2379,7 +2379,7 @@ public:
Q_INVOKABLE void MemitDataChanged(QStandardItem* o) { ((LStandardItem*)o)->emitDataChanged(); }
};
-class EQL_EXPORT N180 : public QObject { // QStandardPaths
+class EQL_EXPORT N210 : public QObject { // QStandardPaths
Q_OBJECT
public:
Q_INVOKABLE QString SdisplayName(QStandardPaths::StandardLocation x1) { return QStandardPaths::displayName(x1); }
@@ -2391,7 +2391,7 @@ public:
Q_INVOKABLE QString SwritableLocation(QStandardPaths::StandardLocation x1) { return QStandardPaths::writableLocation(x1); }
};
-class EQL_EXPORT N182 : public QObject { // QStorageInfo
+class EQL_EXPORT N212 : public QObject { // QStorageInfo
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LStorageInfo(u); }
@@ -2416,7 +2416,7 @@ public:
Q_INVOKABLE QStorageInfo Sroot() { return QStorageInfo::root(); }
};
-class EQL_EXPORT N183 : public QObject { // QStyleOption
+class EQL_EXPORT N213 : public QObject { // QStyleOption
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1 = QStyleOption::Version, int x2 = QStyleOption::SO_Default) { return new LStyleOption(u, x1, x2); }
@@ -2424,7 +2424,7 @@ public:
Q_INVOKABLE void MinitFrom(QStyleOption* o, const QWidget* x1) { o->initFrom(x1); }
};
-class EQL_EXPORT N185 : public QObject { // QSurface
+class EQL_EXPORT N215 : public QObject { // QSurface
Q_OBJECT
public:
Q_INVOKABLE QSurfaceFormat Mformat(QSurface* o) const { return o->format(); }
@@ -2434,7 +2434,7 @@ public:
Q_INVOKABLE int MsurfaceType(QSurface* o) const { return o->surfaceType(); }
};
-class EQL_EXPORT N186 : public QObject { // QSurfaceFormat
+class EQL_EXPORT N216 : public QObject { // QSurfaceFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LSurfaceFormat(u); }
@@ -2478,7 +2478,7 @@ public:
Q_INVOKABLE void SsetDefaultFormat(const QSurfaceFormat& x1) { QSurfaceFormat::setDefaultFormat(x1); }
};
-class EQL_EXPORT N188 : public QObject { // QSysInfo
+class EQL_EXPORT N218 : public QObject { // QSysInfo
Q_OBJECT
public:
Q_INVOKABLE QString SbuildAbi() { return QSysInfo::buildAbi(); }
@@ -2493,7 +2493,7 @@ public:
Q_INVOKABLE int SwindowsVersion() { return QSysInfo::windowsVersion(); }
};
-class EQL_EXPORT N189 : public QObject { // QSystemSemaphore
+class EQL_EXPORT N219 : public QObject { // QSystemSemaphore
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1, int x2 = 0, QSystemSemaphore::AccessMode x3 = QSystemSemaphore::Open) { return new LSystemSemaphore(u, x1, x2, x3); }
@@ -2505,7 +2505,7 @@ public:
Q_INVOKABLE void MsetKey(QSystemSemaphore* o, const QString& x1, int x2 = 0, QSystemSemaphore::AccessMode x3 = QSystemSemaphore::Open) { o->setKey(x1, x2, x3); }
};
-class EQL_EXPORT N190 : public QObject { // QTableWidgetItem
+class EQL_EXPORT N220 : public QObject { // QTableWidgetItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1 = QTableWidgetItem::Type) { return new LTableWidgetItem(u, x1); }
@@ -2547,7 +2547,7 @@ public:
Q_INVOKABLE QString MwhatsThis(QTableWidgetItem* o) const { return o->whatsThis(); }
};
-class EQL_EXPORT N191 : public QObject { // QTableWidgetSelectionRange
+class EQL_EXPORT N221 : public QObject { // QTableWidgetSelectionRange
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTableWidgetSelectionRange(u); }
@@ -2561,7 +2561,7 @@ public:
Q_INVOKABLE int MtopRow(QTableWidgetSelectionRange* o) const { return o->topRow(); }
};
-class EQL_EXPORT N193 : public QObject { // QTextBlock
+class EQL_EXPORT N223 : public QObject { // QTextBlock
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QTextBlock& x1) { return new LTextBlock(u, x1); }
@@ -2596,12 +2596,12 @@ public:
Q_INVOKABLE int MuserState(QTextBlock* o) const { return o->userState(); }
};
-class EQL_EXPORT N195 : public QObject { // QTextBlockUserData
+class EQL_EXPORT N225 : public QObject { // QTextBlockUserData
Q_OBJECT
public:
};
-class EQL_EXPORT N196 : public QObject { // QTextBoundaryFinder
+class EQL_EXPORT N226 : public QObject { // QTextBoundaryFinder
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextBoundaryFinder(u); }
@@ -2621,7 +2621,7 @@ public:
Q_INVOKABLE int Mtype(QTextBoundaryFinder* o) const { return o->type(); }
};
-class EQL_EXPORT N198 : public QObject { // QTextCodec
+class EQL_EXPORT N228 : public QObject { // QTextCodec
Q_OBJECT
public:
Q_INVOKABLE QList Maliases(QTextCodec* o) const { return o->aliases(); }
@@ -2649,7 +2649,7 @@ public:
Q_INVOKABLE void SsetCodecForLocale(QTextCodec* x1) { QTextCodec::setCodecForLocale(x1); }
};
-class EQL_EXPORT N199 : public QObject { // QTextCursor
+class EQL_EXPORT N229 : public QObject { // QTextCursor
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextCursor(u); }
@@ -2725,7 +2725,7 @@ public:
Q_INVOKABLE bool MvisualNavigation(QTextCursor* o) const { return o->visualNavigation(); }
};
-class EQL_EXPORT N200 : public QObject { // QTextDecoder
+class EQL_EXPORT N230 : public QObject { // QTextDecoder
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QTextCodec* x1) { return new LTextDecoder(u, x1); }
@@ -2735,7 +2735,7 @@ public:
Q_INVOKABLE QString MtoUnicode(QTextDecoder* o, const QByteArray& x1) { return o->toUnicode(x1); }
};
-class EQL_EXPORT N201 : public QObject { // QTextDocumentFragment
+class EQL_EXPORT N231 : public QObject { // QTextDocumentFragment
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextDocumentFragment(u); }
@@ -2750,7 +2750,7 @@ public:
Q_INVOKABLE QTextDocumentFragment SfromPlainText(const QString& x1) { return QTextDocumentFragment::fromPlainText(x1); }
};
-class EQL_EXPORT N202 : public QObject { // QTextDocumentWriter
+class EQL_EXPORT N232 : public QObject { // QTextDocumentWriter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextDocumentWriter(u); }
@@ -2766,7 +2766,7 @@ public:
Q_INVOKABLE QList SsupportedDocumentFormats() { return QTextDocumentWriter::supportedDocumentFormats(); }
};
-class EQL_EXPORT N203 : public QObject { // QTextEncoder
+class EQL_EXPORT N233 : public QObject { // QTextEncoder
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QTextCodec* x1) { return new LTextEncoder(u, x1); }
@@ -2775,7 +2775,7 @@ public:
Q_INVOKABLE QByteArray MfromUnicode(QTextEncoder* o, const QChar* x1, int x2) { return o->fromUnicode(x1, x2); }
};
-class EQL_EXPORT N204 : public QObject { // QTextFormat
+class EQL_EXPORT N234 : public QObject { // QTextFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextFormat(u); }
@@ -2829,7 +2829,7 @@ public:
Q_INVOKABLE int Mtype(QTextFormat* o) const { return o->type(); }
};
-class EQL_EXPORT N205 : public QObject { // QTextFragment
+class EQL_EXPORT N235 : public QObject { // QTextFragment
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextFragment(u); }
@@ -2844,7 +2844,7 @@ public:
Q_INVOKABLE QString Mtext(QTextFragment* o) const { return o->text(); }
};
-class EQL_EXPORT N208 : public QObject { // QTextLayout
+class EQL_EXPORT N238 : public QObject { // QTextLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextLayout(u); }
@@ -2886,7 +2886,7 @@ public:
Q_INVOKABLE QTextOption MtextOption(QTextLayout* o) const { return o->textOption(); }
};
-class EQL_EXPORT N209 : public QObject { // QTextLength
+class EQL_EXPORT N239 : public QObject { // QTextLength
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextLength(u); }
@@ -2896,7 +2896,7 @@ public:
Q_INVOKABLE qreal Mvalue(QTextLength* o, qreal x1) const { return o->value(x1); }
};
-class EQL_EXPORT N210 : public QObject { // QTextLine
+class EQL_EXPORT N240 : public QObject { // QTextLine
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextLine(u); }
@@ -2928,7 +2928,7 @@ public:
Q_INVOKABLE qreal My(QTextLine* o) const { return o->y(); }
};
-class EQL_EXPORT N212 : public QObject { // QTextOption
+class EQL_EXPORT N242 : public QObject { // QTextOption
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextOption(u); }
@@ -2950,7 +2950,7 @@ public:
Q_INVOKABLE int MwrapMode(QTextOption* o) const { return o->wrapMode(); }
};
-class EQL_EXPORT N213 : public QObject { // QTextTableCell
+class EQL_EXPORT N243 : public QObject { // QTextTableCell
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextTableCell(u); }
@@ -2967,7 +2967,7 @@ public:
Q_INVOKABLE int MtableCellFormatIndex(QTextTableCell* o) const { return o->tableCellFormatIndex(); }
};
-class EQL_EXPORT N216 : public QObject { // QTime
+class EQL_EXPORT N246 : public QObject { // QTime
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTime(u); }
@@ -2996,7 +2996,7 @@ public:
Q_INVOKABLE bool SisValid(int x1, int x2, int x3, int x4 = 0) { return QTime::isValid(x1, x2, x3, x4); }
};
-class EQL_EXPORT N217 : public QObject { // QTimeZone
+class EQL_EXPORT N247 : public QObject { // QTimeZone
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTimeZone(u); }
@@ -3032,7 +3032,7 @@ public:
Q_INVOKABLE QList SwindowsIdToIanaIds(const QByteArray& x1, QLocale::Country x2) { return QTimeZone::windowsIdToIanaIds(x1, x2); }
};
-class EQL_EXPORT N219 : public QObject { // QToolTip
+class EQL_EXPORT N249 : public QObject { // QToolTip
Q_OBJECT
public:
Q_INVOKABLE QFont Sfont() { return QToolTip::font(); }
@@ -3047,7 +3047,7 @@ public:
Q_INVOKABLE QString Stext() { return QToolTip::text(); }
};
-class EQL_EXPORT N220 : public QObject { // QTouchDevice
+class EQL_EXPORT N250 : public QObject { // QTouchDevice
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTouchDevice(u); }
@@ -3062,7 +3062,7 @@ public:
Q_INVOKABLE QList Sdevices() { return QTouchDevice::devices(); }
};
-class EQL_EXPORT N222 : public QObject { // QTransform
+class EQL_EXPORT N252 : public QObject { // QTransform
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTransform(u); }
@@ -3117,7 +3117,7 @@ public:
Q_INVOKABLE bool SsquareToQuad(const QPolygonF& x1, QTransform& x2) { return QTransform::squareToQuad(x1, x2); }
};
-class EQL_EXPORT N223 : public QObject { // QTreeWidgetItem
+class EQL_EXPORT N253 : public QObject { // QTreeWidgetItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1 = QTreeWidgetItem::Type) { return new LTreeWidgetItem(u, x1); }
@@ -3186,7 +3186,7 @@ public:
Q_INVOKABLE void MemitDataChanged(QTreeWidgetItem* o) { ((LTreeWidgetItem*)o)->emitDataChanged(); }
};
-class EQL_EXPORT N224 : public QObject { // QUndoCommand
+class EQL_EXPORT N254 : public QObject { // QUndoCommand
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QUndoCommand* x1 = 0) { return new LUndoCommand(u, x1); }
@@ -3202,7 +3202,7 @@ public:
Q_INVOKABLE void Mundo(QUndoCommand* o) { o->undo(); }
};
-class EQL_EXPORT N225 : public QObject { // QUrl
+class EQL_EXPORT N255 : public QObject { // QUrl
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LUrl(u); }
@@ -3264,7 +3264,7 @@ public:
Q_INVOKABLE QStringList StoStringList(const QList& x1, QUrl::FormattingOptions x2 = QUrl::PrettyDecoded) { return QUrl::toStringList(x1, x2); }
};
-class EQL_EXPORT N226 : public QObject { // QUuid
+class EQL_EXPORT N256 : public QObject { // QUuid
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LUuid(u); }
@@ -3285,7 +3285,7 @@ public:
Q_INVOKABLE QUuid SfromRfc4122(const QByteArray& x1) { return QUuid::fromRfc4122(x1); }
};
-class EQL_EXPORT N227 : public QObject { // QVariant
+class EQL_EXPORT N257 : public QObject { // QVariant
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QCursor& x1) { return new LVariant(u, x1); }
@@ -3378,7 +3378,7 @@ public:
Q_INVOKABLE const char* StypeToName(int x1) { return QVariant::typeToName(x1); }
};
-class EQL_EXPORT N228 : public QObject { // QVector2D
+class EQL_EXPORT N258 : public QObject { // QVector2D
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVector2D(u); }
@@ -3405,7 +3405,7 @@ public:
Q_INVOKABLE float SdotProduct(const QVector2D& x1, const QVector2D& x2) { return QVector2D::dotProduct(x1, x2); }
};
-class EQL_EXPORT N229 : public QObject { // QVector3D
+class EQL_EXPORT N259 : public QObject { // QVector3D
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVector3D(u); }
@@ -3442,7 +3442,7 @@ public:
Q_INVOKABLE QVector3D Snormal(const QVector3D& x1, const QVector3D& x2, const QVector3D& x3) { return QVector3D::normal(x1, x2, x3); }
};
-class EQL_EXPORT N230 : public QObject { // QVector4D
+class EQL_EXPORT N260 : public QObject { // QVector4D
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVector4D(u); }
@@ -3475,7 +3475,7 @@ public:
Q_INVOKABLE float SdotProduct(const QVector4D& x1, const QVector4D& x2) { return QVector4D::dotProduct(x1, x2); }
};
-class EQL_EXPORT N242 : public QObject { // QWhatsThis
+class EQL_EXPORT N272 : public QObject { // QWhatsThis
Q_OBJECT
public:
Q_INVOKABLE QAction* ScreateAction(QObject* x1 = 0) { return QWhatsThis::createAction(x1); }
@@ -4006,7 +4006,7 @@ public:
Q_INVOKABLE void* C(uint u) { return new LIconDragEvent(u); }
};
-class EQL_EXPORT N96 : public N138 { // QImage
+class EQL_EXPORT N96 : public N140 { // QImage
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LImage(u); }
@@ -4117,7 +4117,7 @@ public:
Q_INVOKABLE QVariant Mvalue(QInputMethodQueryEvent* o, Qt::InputMethodQuery x1) const { return o->value(x1); }
};
-class EQL_EXPORT N104 : public N98 { // QKeyEvent
+class EQL_EXPORT N106 : public N98 { // QKeyEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QKeyEvent::Type x1, int x2, Qt::KeyboardModifiers x3, const QString& x4 = QString(), bool x5 = false, ushort x6 = 1) { return new LKeyEvent(u, x1, x2, x3, x4, x5, x6); }
@@ -4133,7 +4133,7 @@ public:
Q_INVOKABLE QString Mtext(QKeyEvent* o) const { return o->text(); }
};
-class EQL_EXPORT N108 : public N62 { // QLinearGradient
+class EQL_EXPORT N110 : public N62 { // QLinearGradient
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LLinearGradient(u); }
@@ -4147,7 +4147,7 @@ public:
Q_INVOKABLE QPointF Mstart(QLinearGradient* o) const { return o->start(); }
};
-class EQL_EXPORT N120 : public N98 { // QMouseEvent
+class EQL_EXPORT N122 : public N98 { // QMouseEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QMouseEvent::Type x1, const QPointF& x2, Qt::MouseButton x3, Qt::MouseButtons x4, Qt::KeyboardModifiers x5) { return new LMouseEvent(u, x1, x2, x3, x4, x5); }
@@ -4168,7 +4168,7 @@ public:
Q_INVOKABLE int My(QMouseEvent* o) const { return o->y(); }
};
-class EQL_EXPORT N121 : public N49 { // QMoveEvent
+class EQL_EXPORT N123 : public N49 { // QMoveEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QPoint& x1, const QPoint& x2) { return new LMoveEvent(u, x1, x2); }
@@ -4176,7 +4176,7 @@ public:
Q_INVOKABLE QPoint Mpos(QMoveEvent* o) const { return o->pos(); }
};
-class EQL_EXPORT N133 : public N138 { // QOpenGLPaintDevice
+class EQL_EXPORT N135 : public N140 { // QOpenGLPaintDevice
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LOpenGLPaintDevice(u); }
@@ -4195,7 +4195,7 @@ public:
Q_INVOKABLE QSize Msize(QOpenGLPaintDevice* o) const { return o->size(); }
};
-class EQL_EXPORT N137 : public N138 { // QPagedPaintDevice
+class EQL_EXPORT N139 : public N140 { // QPagedPaintDevice
Q_OBJECT
public:
Q_INVOKABLE bool MnewPage(QPagedPaintDevice* o) { return o->newPage(); }
@@ -4211,7 +4211,7 @@ public:
Q_INVOKABLE void MsetPageSizeMM(QPagedPaintDevice* o, const QSizeF& x1) { o->setPageSizeMM(x1); }
};
-class EQL_EXPORT N139 : public N49 { // QPaintEvent
+class EQL_EXPORT N141 : public N49 { // QPaintEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QRegion& x1) { return new LPaintEvent(u, x1); }
@@ -4220,7 +4220,7 @@ public:
Q_INVOKABLE QRegion Mregion(QPaintEvent* o) const { return o->region(); }
};
-class EQL_EXPORT N146 : public N138 { // QPicture
+class EQL_EXPORT N148 : public N140 { // QPicture
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1 = -1) { return new LPicture(u, x1); }
@@ -4237,7 +4237,7 @@ public:
Q_INVOKABLE void Mswap(QPicture* o, QPicture& x1) { o->swap(x1); }
};
-class EQL_EXPORT N147 : public N138 { // QPixmap
+class EQL_EXPORT N149 : public N140 { // QPixmap
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPixmap(u); }
@@ -4286,7 +4286,7 @@ public:
Q_INVOKABLE QMatrix StrueMatrix(const QMatrix& x1, int x2, int x3) { return QPixmap::trueMatrix(x1, x2, x3); }
};
-class EQL_EXPORT N149 : public N137 { // QPrinter
+class EQL_EXPORT N151 : public N139 { // QPrinter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QPrinter::PrinterMode x1 = QPrinter::ScreenResolution) { return new LPrinter(u, x1); }
@@ -4341,7 +4341,7 @@ public:
Q_INVOKABLE bool MnewPage(QPrinter* o) { return o->newPage(); }
};
-class EQL_EXPORT N153 : public N62 { // QRadialGradient
+class EQL_EXPORT N167 : public N62 { // QRadialGradient
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LRadialGradient(u); }
@@ -4365,7 +4365,7 @@ public:
Q_INVOKABLE void MsetRadius(QRadialGradient* o, qreal x1) { o->setRadius(x1); }
};
-class EQL_EXPORT N157 : public N49 { // QResizeEvent
+class EQL_EXPORT N171 : public N49 { // QResizeEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QSize& x1, const QSize& x2) { return new LResizeEvent(u, x1, x2); }
@@ -4373,7 +4373,7 @@ public:
Q_INVOKABLE QSize Msize(QResizeEvent* o) const { return o->size(); }
};
-class EQL_EXPORT N159 : public N49 { // QScrollEvent
+class EQL_EXPORT N189 : public N49 { // QScrollEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QPointF& x1, const QPointF& x2, QScrollEvent::ScrollState x3) { return new LScrollEvent(u, x1, x2, x3); }
@@ -4382,7 +4382,7 @@ public:
Q_INVOKABLE int MscrollState(QScrollEvent* o) const { return o->scrollState(); }
};
-class EQL_EXPORT N160 : public N49 { // QScrollPrepareEvent
+class EQL_EXPORT N190 : public N49 { // QScrollPrepareEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QPointF& x1) { return new LScrollPrepareEvent(u, x1); }
@@ -4395,7 +4395,7 @@ public:
Q_INVOKABLE QSizeF MviewportSize(QScrollPrepareEvent* o) const { return o->viewportSize(); }
};
-class EQL_EXPORT N162 : public N49 { // QShortcutEvent
+class EQL_EXPORT N192 : public N49 { // QShortcutEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QKeySequence& x1, int x2, bool x3 = false) { return new LShortcutEvent(u, x1, x2, x3); }
@@ -4404,13 +4404,13 @@ public:
Q_INVOKABLE int MshortcutId(QShortcutEvent* o) const { return o->shortcutId(); }
};
-class EQL_EXPORT N163 : public N49 { // QShowEvent
+class EQL_EXPORT N193 : public N49 { // QShowEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LShowEvent(u); }
};
-class EQL_EXPORT N165 : public N106 { // QSpacerItem
+class EQL_EXPORT N195 : public N108 { // QSpacerItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1, int x2, QSizePolicy::Policy x3 = QSizePolicy::Minimum, QSizePolicy::Policy x4 = QSizePolicy::Minimum) { return new LSpacerItem(u, x1, x2, x3, x4); }
@@ -4426,14 +4426,14 @@ public:
Q_INVOKABLE QSpacerItem* MspacerItem(QSpacerItem* o) { return o->spacerItem(); }
};
-class EQL_EXPORT N181 : public N49 { // QStatusTipEvent
+class EQL_EXPORT N211 : public N49 { // QStatusTipEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1) { return new LStatusTipEvent(u, x1); }
Q_INVOKABLE QString Mtip(QStatusTipEvent* o) const { return o->tip(); }
};
-class EQL_EXPORT N184 : public N183 { // QStyleOptionGraphicsItem
+class EQL_EXPORT N214 : public N213 { // QStyleOptionGraphicsItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LStyleOptionGraphicsItem(u); }
@@ -4441,7 +4441,7 @@ public:
Q_INVOKABLE qreal SlevelOfDetailFromTransform(const QTransform& x1) { return QStyleOptionGraphicsItem::levelOfDetailFromTransform(x1); }
};
-class EQL_EXPORT N192 : public N98 { // QTabletEvent
+class EQL_EXPORT N222 : public N98 { // QTabletEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QTabletEvent::Type x1, const QPointF& x2, const QPointF& x3, int x4, int x5, qreal x6, int x7, int x8, qreal x9, qreal x10, int x11, Qt::KeyboardModifiers x12, qint64 x13, Qt::MouseButton x14, Qt::MouseButtons x15) { return new LTabletEvent(u, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15); }
@@ -4468,7 +4468,7 @@ public:
Q_INVOKABLE int Mz(QTabletEvent* o) const { return o->z(); }
};
-class EQL_EXPORT N194 : public N204 { // QTextBlockFormat
+class EQL_EXPORT N224 : public N234 { // QTextBlockFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextBlockFormat(u); }
@@ -4499,7 +4499,7 @@ public:
Q_INVOKABLE qreal MtopMargin(QTextBlockFormat* o) const { return o->topMargin(); }
};
-class EQL_EXPORT N197 : public N204 { // QTextCharFormat
+class EQL_EXPORT N227 : public N234 { // QTextCharFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextCharFormat(u); }
@@ -4559,7 +4559,7 @@ public:
Q_INVOKABLE int MverticalAlignment(QTextCharFormat* o) const { return o->verticalAlignment(); }
};
-class EQL_EXPORT N206 : public N204 { // QTextFrameFormat
+class EQL_EXPORT N236 : public N234 { // QTextFrameFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextFrameFormat(u); }
@@ -4594,7 +4594,7 @@ public:
Q_INVOKABLE QTextLength Mwidth(QTextFrameFormat* o) const { return o->width(); }
};
-class EQL_EXPORT N207 : public N197 { // QTextImageFormat
+class EQL_EXPORT N237 : public N227 { // QTextImageFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextImageFormat(u); }
@@ -4607,7 +4607,7 @@ public:
Q_INVOKABLE qreal Mwidth(QTextImageFormat* o) const { return o->width(); }
};
-class EQL_EXPORT N211 : public N204 { // QTextListFormat
+class EQL_EXPORT N241 : public N234 { // QTextListFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextListFormat(u); }
@@ -4622,7 +4622,7 @@ public:
Q_INVOKABLE int Mstyle(QTextListFormat* o) const { return o->style(); }
};
-class EQL_EXPORT N214 : public N197 { // QTextTableCellFormat
+class EQL_EXPORT N244 : public N227 { // QTextTableCellFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextTableCellFormat(u); }
@@ -4638,7 +4638,7 @@ public:
Q_INVOKABLE qreal MtopPadding(QTextTableCellFormat* o) const { return o->topPadding(); }
};
-class EQL_EXPORT N215 : public N206 { // QTextTableFormat
+class EQL_EXPORT N245 : public N236 { // QTextTableFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextTableFormat(u); }
@@ -4657,14 +4657,14 @@ public:
Q_INVOKABLE void MsetHeaderRowCount(QTextTableFormat* o, int x1) { o->setHeaderRowCount(x1); }
};
-class EQL_EXPORT N218 : public N49 { // QTimerEvent
+class EQL_EXPORT N248 : public N49 { // QTimerEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1) { return new LTimerEvent(u, x1); }
Q_INVOKABLE int MtimerId(QTimerEvent* o) const { return o->timerId(); }
};
-class EQL_EXPORT N221 : public N98 { // QTouchEvent
+class EQL_EXPORT N251 : public N98 { // QTouchEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QEvent::Type x1, QTouchDevice* x2 = 0, Qt::KeyboardModifiers x3 = Qt::NoModifier, Qt::TouchPointStates x4 = 0, const QList& x5 = QList()) { return new LTouchEvent(u, x1, x2, x3, x4, x5); }
@@ -4675,14 +4675,14 @@ public:
Q_INVOKABLE QWindow* Mwindow(QTouchEvent* o) const { return o->window(); }
};
-class EQL_EXPORT N243 : public N49 { // QWhatsThisClickedEvent
+class EQL_EXPORT N273 : public N49 { // QWhatsThisClickedEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1) { return new LWhatsThisClickedEvent(u, x1); }
Q_INVOKABLE QString Mhref(QWhatsThisClickedEvent* o) const { return o->href(); }
};
-class EQL_EXPORT N244 : public N98 { // QWheelEvent
+class EQL_EXPORT N274 : public N98 { // QWheelEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8) { return new LWheelEvent(u, x1, x2, x3, x4, x5, x6, x7, x8); }
@@ -4703,7 +4703,7 @@ public:
Q_INVOKABLE int My(QWheelEvent* o) const { return o->y(); }
};
-class EQL_EXPORT N245 : public N106 { // QWidgetItem
+class EQL_EXPORT N275 : public N108 { // QWidgetItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LWidgetItem(u, x1); }
@@ -4720,13 +4720,13 @@ public:
Q_INVOKABLE QWidget* Mwidget(QWidgetItem* o) { return o->widget(); }
};
-class EQL_EXPORT N246 : public N49 { // QWindowStateChangeEvent
+class EQL_EXPORT N276 : public N49 { // QWindowStateChangeEvent
Q_OBJECT
public:
Q_INVOKABLE int MoldState(QWindowStateChangeEvent* o) const { return o->oldState(); }
};
-class EQL_EXPORT N25 : public N147 { // QBitmap
+class EQL_EXPORT N25 : public N149 { // QBitmap
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LBitmap(u); }
diff --git a/src/gen/_main_q_classes.h b/src/gen/_main_q_classes.h
index f97a2f7..734c5f0 100644
--- a/src/gen/_main_q_classes.h
+++ b/src/gen/_main_q_classes.h
@@ -2953,7 +2953,7 @@ public:
class LKeyEventTransition : public QKeyEventTransition {
Q_OBJECT
- friend class Q112;
+ friend class Q113;
public:
LKeyEventTransition(uint u, QState* x1 = 0) : QKeyEventTransition(x1), unique(u) {}
LKeyEventTransition(uint u, QObject* x1, QEvent::Type x2, int x3, QState* x4 = 0) : QKeyEventTransition(x1, x2, x3, x4), unique(u) {}
@@ -2971,7 +2971,7 @@ public:
class LLCDNumber : public QLCDNumber {
Q_OBJECT
- friend class Q113;
+ friend class Q114;
public:
LLCDNumber(uint u, QWidget* x1 = 0) : QLCDNumber(x1), unique(u) {}
LLCDNumber(uint u, uint x1, QWidget* x2 = 0) : QLCDNumber(x1, x2), unique(u) {}
@@ -3021,7 +3021,7 @@ public:
class LLabel : public QLabel {
Q_OBJECT
- friend class Q114;
+ friend class Q115;
public:
LLabel(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QLabel(x1, x2), unique(u) {}
LLabel(uint u, const QString& x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) : QLabel(x1, x2, x3), unique(u) {}
@@ -3071,7 +3071,7 @@ public:
class LLibrary : public QLibrary {
Q_OBJECT
- friend class Q116;
+ friend class Q117;
public:
LLibrary(uint u, QObject* x1 = 0) : QLibrary(x1), unique(u) {}
LLibrary(uint u, const QString& x1, QObject* x2 = 0) : QLibrary(x1, x2), unique(u) {}
@@ -3089,7 +3089,7 @@ public:
class LLineEdit : public QLineEdit {
Q_OBJECT
- friend class Q117;
+ friend class Q118;
public:
LLineEdit(uint u, QWidget* x1 = 0) : QLineEdit(x1), unique(u) {}
LLineEdit(uint u, const QString& x1, QWidget* x2 = 0) : QLineEdit(x1, x2), unique(u) {}
@@ -3139,7 +3139,7 @@ public:
class LListView : public QListView {
Q_OBJECT
- friend class Q118;
+ friend class Q119;
public:
LListView(uint u, QWidget* x1 = 0) : QListView(x1), unique(u) {}
@@ -3217,7 +3217,7 @@ public:
class LListWidget : public QListWidget {
Q_OBJECT
- friend class Q119;
+ friend class Q120;
public:
LListWidget(uint u, QWidget* x1 = 0) : QListWidget(x1), unique(u) {}
@@ -3298,7 +3298,7 @@ public:
class LMainWindow : public QMainWindow {
Q_OBJECT
- friend class Q122;
+ friend class Q123;
public:
LMainWindow(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QMainWindow(x1, x2), unique(u) {}
@@ -3348,7 +3348,7 @@ public:
class LMdiArea : public QMdiArea {
Q_OBJECT
- friend class Q123;
+ friend class Q124;
public:
LMdiArea(uint u, QWidget* x1 = 0) : QMdiArea(x1), unique(u) {}
@@ -3401,7 +3401,7 @@ public:
class LMdiSubWindow : public QMdiSubWindow {
Q_OBJECT
- friend class Q124;
+ friend class Q125;
public:
LMdiSubWindow(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QMdiSubWindow(x1, x2), unique(u) {}
@@ -3450,7 +3450,7 @@ public:
class LMenu : public QMenu {
Q_OBJECT
- friend class Q130;
+ friend class Q132;
public:
LMenu(uint u, QWidget* x1 = 0) : QMenu(x1), unique(u) {}
LMenu(uint u, const QString& x1, QWidget* x2 = 0) : QMenu(x1, x2), unique(u) {}
@@ -3500,7 +3500,7 @@ public:
class LMenuBar : public QMenuBar {
Q_OBJECT
- friend class Q131;
+ friend class Q133;
public:
LMenuBar(uint u, QWidget* x1 = 0) : QMenuBar(x1), unique(u) {}
@@ -3549,7 +3549,7 @@ public:
class LMessageBox : public QMessageBox {
Q_OBJECT
- friend class Q132;
+ friend class Q134;
public:
LMessageBox(uint u, QWidget* x1 = 0) : QMessageBox(x1), unique(u) {}
LMessageBox(uint u, Icon x1, const QString& x2, const QString& x3, StandardButtons x4 = NoButton, QWidget* x5 = 0, Qt::WindowFlags x6 = Qt::Dialog|Qt::MSWindowsFixedSizeDialogHint) : QMessageBox(x1, x2, x3, x4, x5, x6), unique(u) {}
@@ -3600,7 +3600,7 @@ public:
class LMimeData : public QMimeData {
Q_OBJECT
- friend class Q133;
+ friend class Q135;
public:
LMimeData(uint u) : unique(u) {}
@@ -3618,7 +3618,7 @@ public:
class LMouseEventTransition : public QMouseEventTransition {
Q_OBJECT
- friend class Q134;
+ friend class Q136;
public:
LMouseEventTransition(uint u, QState* x1 = 0) : QMouseEventTransition(x1), unique(u) {}
LMouseEventTransition(uint u, QObject* x1, QEvent::Type x2, Qt::MouseButton x3, QState* x4 = 0) : QMouseEventTransition(x1, x2, x3, x4), unique(u) {}
@@ -3636,7 +3636,7 @@ public:
class LMovie : public QMovie {
Q_OBJECT
- friend class Q135;
+ friend class Q137;
public:
LMovie(uint u, QObject* x1 = 0) : QMovie(x1), unique(u) {}
LMovie(uint u, const QString& x1, const QByteArray& x2 = QByteArray(), QObject* x3 = 0) : QMovie(x1, x2, x3), unique(u) {}
@@ -3652,7 +3652,7 @@ public:
class LObject : public QObject {
Q_OBJECT
- friend class Q140;
+ friend class Q142;
public:
LObject(uint u, QObject* x1 = 0) : QObject(x1), unique(u) {}
@@ -3667,7 +3667,7 @@ public:
class LObjectCleanupHandler : public QObjectCleanupHandler {
Q_OBJECT
- friend class Q141;
+ friend class Q143;
public:
static NumList overrideIds;
@@ -3681,7 +3681,7 @@ public:
class LOpenGLContext : public QOpenGLContext {
Q_OBJECT
- friend class Q142;
+ friend class Q144;
public:
LOpenGLContext(uint u, QObject* x1 = 0) : QOpenGLContext(x1), unique(u) {}
@@ -3696,7 +3696,7 @@ public:
class LOpenGLShader : public QOpenGLShader {
Q_OBJECT
- friend class Q143;
+ friend class Q145;
public:
LOpenGLShader(uint u, QOpenGLShader::ShaderType x1, QObject* x2 = 0) : QOpenGLShader(x1, x2), unique(u) {}
@@ -3711,7 +3711,7 @@ public:
class LOpenGLShaderProgram : public QOpenGLShaderProgram {
Q_OBJECT
- friend class Q144;
+ friend class Q146;
public:
LOpenGLShaderProgram(uint u, QObject* x1 = 0) : QOpenGLShaderProgram(x1), unique(u) {}
@@ -3727,7 +3727,7 @@ public:
class LOpenGLWidget : public QOpenGLWidget {
Q_OBJECT
- friend class Q145;
+ friend class Q147;
public:
LOpenGLWidget(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QOpenGLWidget(x1, x2), unique(u) {}
@@ -3779,7 +3779,7 @@ public:
class LOpenGLWindow : public QOpenGLWindow {
Q_OBJECT
- friend class Q146;
+ friend class Q148;
public:
LOpenGLWindow(uint u, UpdateBehavior x1 = NoPartialUpdate, QWindow* x2 = 0) : QOpenGLWindow(x1, x2), unique(u) {}
LOpenGLWindow(uint u, QOpenGLContext* x1, UpdateBehavior x2 = NoPartialUpdate, QWindow* x3 = 0) : QOpenGLWindow(x1, x2, x3), unique(u) {}
@@ -3821,7 +3821,7 @@ public:
class LPageSetupDialog : public QPageSetupDialog {
Q_OBJECT
- friend class Q147;
+ friend class Q149;
public:
LPageSetupDialog(uint u, QPrinter* x1, QWidget* x2 = 0) : QPageSetupDialog(x1, x2), unique(u) {}
LPageSetupDialog(uint u, QWidget* x1 = 0) : QPageSetupDialog(x1), unique(u) {}
@@ -3874,7 +3874,7 @@ public:
class LPaintDeviceWindow : public QPaintDeviceWindow {
Q_OBJECT
- friend class Q148;
+ friend class Q150;
public:
static NumList overrideIds;
@@ -3909,7 +3909,7 @@ public:
class LPanGesture : public QPanGesture {
Q_OBJECT
- friend class Q149;
+ friend class Q151;
public:
static NumList overrideIds;
@@ -3923,7 +3923,7 @@ public:
class LParallelAnimationGroup : public QParallelAnimationGroup {
Q_OBJECT
- friend class Q150;
+ friend class Q152;
public:
LParallelAnimationGroup(uint u, QObject* x1 = 0) : QParallelAnimationGroup(x1), unique(u) {}
@@ -3942,7 +3942,7 @@ public:
class LPauseAnimation : public QPauseAnimation {
Q_OBJECT
- friend class Q151;
+ friend class Q153;
public:
LPauseAnimation(uint u, QObject* x1 = 0) : QPauseAnimation(x1), unique(u) {}
LPauseAnimation(uint u, int x1, QObject* x2 = 0) : QPauseAnimation(x1, x2), unique(u) {}
@@ -3962,7 +3962,7 @@ public:
class LPdfWriter : public QPdfWriter {
Q_OBJECT
- friend class Q152;
+ friend class Q154;
public:
LPdfWriter(uint u, const QString& x1) : QPdfWriter(x1), unique(u) {}
@@ -3978,7 +3978,7 @@ public:
class LPinchGesture : public QPinchGesture {
Q_OBJECT
- friend class Q153;
+ friend class Q155;
public:
static NumList overrideIds;
@@ -3992,7 +3992,7 @@ public:
class LPlainTextDocumentLayout : public QPlainTextDocumentLayout {
Q_OBJECT
- friend class Q154;
+ friend class Q156;
public:
LPlainTextDocumentLayout(uint u, QTextDocument* x1) : QPlainTextDocumentLayout(x1), unique(u) {}
@@ -4017,7 +4017,7 @@ public:
class LPlainTextEdit : public QPlainTextEdit {
Q_OBJECT
- friend class Q155;
+ friend class Q157;
public:
LPlainTextEdit(uint u, QWidget* x1 = 0) : QPlainTextEdit(x1), unique(u) {}
LPlainTextEdit(uint u, const QString& x1, QWidget* x2 = 0) : QPlainTextEdit(x1, x2), unique(u) {}
@@ -4075,7 +4075,7 @@ public:
class LPluginLoader : public QPluginLoader {
Q_OBJECT
- friend class Q156;
+ friend class Q158;
public:
LPluginLoader(uint u, QObject* x1 = 0) : QPluginLoader(x1), unique(u) {}
LPluginLoader(uint u, const QString& x1, QObject* x2 = 0) : QPluginLoader(x1, x2), unique(u) {}
@@ -4091,7 +4091,7 @@ public:
class LPrintDialog : public QPrintDialog {
Q_OBJECT
- friend class Q157;
+ friend class Q159;
public:
LPrintDialog(uint u, QPrinter* x1, QWidget* x2 = 0) : QPrintDialog(x1, x2), unique(u) {}
LPrintDialog(uint u, QWidget* x1 = 0) : QPrintDialog(x1), unique(u) {}
@@ -4144,7 +4144,7 @@ public:
class LPrintPreviewDialog : public QPrintPreviewDialog {
Q_OBJECT
- friend class Q158;
+ friend class Q160;
public:
LPrintPreviewDialog(uint u, QPrinter* x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) : QPrintPreviewDialog(x1, x2, x3), unique(u) {}
LPrintPreviewDialog(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QPrintPreviewDialog(x1, x2), unique(u) {}
@@ -4196,7 +4196,7 @@ public:
class LPrintPreviewWidget : public QPrintPreviewWidget {
Q_OBJECT
- friend class Q159;
+ friend class Q161;
public:
LPrintPreviewWidget(uint u, QPrinter* x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) : QPrintPreviewWidget(x1, x2, x3), unique(u) {}
LPrintPreviewWidget(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QPrintPreviewWidget(x1, x2), unique(u) {}
@@ -4247,7 +4247,7 @@ public:
class LProcess : public QProcess {
Q_OBJECT
- friend class Q160;
+ friend class Q162;
public:
LProcess(uint u, QObject* x1 = 0) : QProcess(x1), unique(u) {}
@@ -4279,7 +4279,7 @@ public:
class LProgressBar : public QProgressBar {
Q_OBJECT
- friend class Q161;
+ friend class Q163;
public:
LProgressBar(uint u, QWidget* x1 = 0) : QProgressBar(x1), unique(u) {}
@@ -4329,7 +4329,7 @@ public:
class LProgressDialog : public QProgressDialog {
Q_OBJECT
- friend class Q162;
+ friend class Q164;
public:
LProgressDialog(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QProgressDialog(x1, x2), unique(u) {}
LProgressDialog(uint u, const QString& x1, const QString& x2, int x3, int x4, QWidget* x5 = 0, Qt::WindowFlags x6 = 0) : QProgressDialog(x1, x2, x3, x4, x5, x6), unique(u) {}
@@ -4380,7 +4380,7 @@ public:
class LPropertyAnimation : public QPropertyAnimation {
Q_OBJECT
- friend class Q163;
+ friend class Q165;
public:
LPropertyAnimation(uint u, QObject* x1 = 0) : QPropertyAnimation(x1), unique(u) {}
LPropertyAnimation(uint u, QObject* x1, const QByteArray& x2, QObject* x3 = 0) : QPropertyAnimation(x1, x2, x3), unique(u) {}
@@ -4402,7 +4402,7 @@ public:
class LProxyStyle : public QProxyStyle {
Q_OBJECT
- friend class Q164;
+ friend class Q166;
public:
LProxyStyle(uint u, QStyle* x1 = 0) : QProxyStyle(x1), unique(u) {}
LProxyStyle(uint u, const QString& x1) : QProxyStyle(x1), unique(u) {}
@@ -4438,7 +4438,7 @@ public:
class LPushButton : public QPushButton {
Q_OBJECT
- friend class Q165;
+ friend class Q167;
public:
LPushButton(uint u, QWidget* x1 = 0) : QPushButton(x1), unique(u) {}
LPushButton(uint u, const QString& x1, QWidget* x2 = 0) : QPushButton(x1, x2), unique(u) {}
@@ -4492,7 +4492,7 @@ public:
class LRadioButton : public QRadioButton {
Q_OBJECT
- friend class Q166;
+ friend class Q187;
public:
LRadioButton(uint u, QWidget* x1 = 0) : QRadioButton(x1), unique(u) {}
LRadioButton(uint u, const QString& x1, QWidget* x2 = 0) : QRadioButton(x1, x2), unique(u) {}
@@ -4545,7 +4545,7 @@ public:
class LRegExpValidator : public QRegExpValidator {
Q_OBJECT
- friend class Q168;
+ friend class Q189;
public:
LRegExpValidator(uint u, QObject* x1 = 0) : QRegExpValidator(x1), unique(u) {}
LRegExpValidator(uint u, const QRegExp& x1, QObject* x2 = 0) : QRegExpValidator(x1, x2), unique(u) {}
@@ -4563,7 +4563,7 @@ public:
class LRubberBand : public QRubberBand {
Q_OBJECT
- friend class Q169;
+ friend class Q190;
public:
LRubberBand(uint u, Shape x1, QWidget* x2 = 0) : QRubberBand(x1, x2), unique(u) {}
@@ -4612,7 +4612,7 @@ public:
class LScrollArea : public QScrollArea {
Q_OBJECT
- friend class Q171;
+ friend class Q197;
public:
LScrollArea(uint u, QWidget* x1 = 0) : QScrollArea(x1), unique(u) {}
@@ -4665,7 +4665,7 @@ public:
class LScrollBar : public QScrollBar {
Q_OBJECT
- friend class Q172;
+ friend class Q198;
public:
LScrollBar(uint u, QWidget* x1 = 0) : QScrollBar(x1), unique(u) {}
LScrollBar(uint u, Qt::Orientation x1, QWidget* x2 = 0) : QScrollBar(x1, x2), unique(u) {}
@@ -4716,7 +4716,7 @@ public:
class LSequentialAnimationGroup : public QSequentialAnimationGroup {
Q_OBJECT
- friend class Q173;
+ friend class Q199;
public:
LSequentialAnimationGroup(uint u, QObject* x1 = 0) : QSequentialAnimationGroup(x1), unique(u) {}
@@ -4735,7 +4735,7 @@ public:
class LSettings : public QSettings {
Q_OBJECT
- friend class Q175;
+ friend class Q201;
public:
LSettings(uint u, const QString& x1, const QString& x2 = QString(), QObject* x3 = 0) : QSettings(x1, x2, x3), unique(u) {}
LSettings(uint u, Scope x1, const QString& x2, const QString& x3 = QString(), QObject* x4 = 0) : QSettings(x1, x2, x3, x4), unique(u) {}
@@ -4754,7 +4754,7 @@ public:
class LShortcut : public QShortcut {
Q_OBJECT
- friend class Q176;
+ friend class Q202;
public:
LShortcut(uint u, QWidget* x1) : QShortcut(x1), unique(u) {}
LShortcut(uint u, const QKeySequence& x1, QWidget* x2, const char* x3 = 0, const char* x4 = 0, Qt::ShortcutContext x5 = Qt::WindowShortcut) : QShortcut(x1, x2, x3, x4, x5), unique(u) {}
@@ -4770,7 +4770,7 @@ public:
class LSignalMapper : public QSignalMapper {
Q_OBJECT
- friend class Q177;
+ friend class Q203;
public:
LSignalMapper(uint u, QObject* x1 = 0) : QSignalMapper(x1), unique(u) {}
@@ -4785,7 +4785,7 @@ public:
class LSignalTransition : public QSignalTransition {
Q_OBJECT
- friend class Q178;
+ friend class Q204;
public:
LSignalTransition(uint u, QState* x1 = 0) : QSignalTransition(x1), unique(u) {}
LSignalTransition(uint u, const QObject* x1, const char* x2, QState* x3 = 0) : QSignalTransition(x1, x2, x3), unique(u) {}
@@ -4803,7 +4803,7 @@ public:
class LSizeGrip : public QSizeGrip {
Q_OBJECT
- friend class Q179;
+ friend class Q205;
public:
LSizeGrip(uint u, QWidget* x1) : QSizeGrip(x1), unique(u) {}
@@ -4853,7 +4853,7 @@ public:
class LSlider : public QSlider {
Q_OBJECT
- friend class Q180;
+ friend class Q206;
public:
LSlider(uint u, QWidget* x1 = 0) : QSlider(x1), unique(u) {}
LSlider(uint u, Qt::Orientation x1, QWidget* x2 = 0) : QSlider(x1, x2), unique(u) {}
@@ -4904,16 +4904,16 @@ public:
class LSortFilterProxyModel : public QSortFilterProxyModel {
Q_OBJECT
- friend class Q181;
+ friend class Q207;
public:
LSortFilterProxyModel(uint u, QObject* x1 = 0) : QSortFilterProxyModel(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- bool filterAcceptsColumn(int x1, const QModelIndex& x2) const { quint64 id = LObjects::override_id(unique, 322); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 322, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSortFilterProxyModel::filterAcceptsColumn(x1, x2); } return ret; }
- bool filterAcceptsRow(int x1, const QModelIndex& x2) const { quint64 id = LObjects::override_id(unique, 323); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 323, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSortFilterProxyModel::filterAcceptsRow(x1, x2); } return ret; }
- bool lessThan(const QModelIndex& x1, const QModelIndex& x2) const { quint64 id = LObjects::override_id(unique, 324); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 324, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSortFilterProxyModel::lessThan(x1, x2); } return ret; }
+ bool filterAcceptsColumn(int x1, const QModelIndex& x2) const { quint64 id = LObjects::override_id(unique, 357); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 357, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSortFilterProxyModel::filterAcceptsColumn(x1, x2); } return ret; }
+ bool filterAcceptsRow(int x1, const QModelIndex& x2) const { quint64 id = LObjects::override_id(unique, 358); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 358, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSortFilterProxyModel::filterAcceptsRow(x1, x2); } return ret; }
+ bool lessThan(const QModelIndex& x1, const QModelIndex& x2) const { quint64 id = LObjects::override_id(unique, 359); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 359, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSortFilterProxyModel::lessThan(x1, x2); } return ret; }
QModelIndex buddy(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 55); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 55, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSortFilterProxyModel::buddy(x1); } return ret; }
bool canFetchMore(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 57); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 57, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSortFilterProxyModel::canFetchMore(x1); } return ret; }
int columnCount(const QModelIndex& x1 = QModelIndex()) const { quint64 id = LObjects::override_id(unique, 58); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 58, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSortFilterProxyModel::columnCount(x1); } return ret; }
@@ -4958,14 +4958,14 @@ public:
class LSpinBox : public QSpinBox {
Q_OBJECT
- friend class Q182;
+ friend class Q208;
public:
LSpinBox(uint u, QWidget* x1 = 0) : QSpinBox(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- QString textFromValue(int x1) const { quint64 id = LObjects::override_id(unique, 325); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 325, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpinBox::textFromValue(x1); } return ret; }
+ QString textFromValue(int x1) const { quint64 id = LObjects::override_id(unique, 360); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 360, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpinBox::textFromValue(x1); } return ret; }
int valueFromText(const QString& x1) const { quint64 id = LObjects::override_id(unique, 221); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 221, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpinBox::valueFromText(x1); } return ret; }
void fixup(QString& x1) const { quint64 id = LObjects::override_id(unique, 142); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 142, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSpinBox::fixup(x1); }}
QValidator::State validate(QString& x1, int& x2) const { quint64 id = LObjects::override_id(unique, 144); void* fun = LObjects::overrideFun(id); QValidator::State ret = (QValidator::State)0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QValidator::State)callOverrideFun(fun, 144, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpinBox::validate(x1, x2); } return ret; }
@@ -5013,7 +5013,7 @@ public:
class LSplashScreen : public QSplashScreen {
Q_OBJECT
- friend class Q183;
+ friend class Q209;
public:
LSplashScreen(uint u, const QPixmap& x1 = QPixmap(), Qt::WindowFlags x2 = 0) : QSplashScreen(x1, x2), unique(u) {}
LSplashScreen(uint u, QWidget* x1, const QPixmap& x2 = QPixmap(), Qt::WindowFlags x3 = 0) : QSplashScreen(x1, x2, x3), unique(u) {}
@@ -5021,7 +5021,7 @@ public:
static NumList overrideIds;
uint unique;
- void drawContents(QPainter* x1) { quint64 id = LObjects::override_id(unique, 326); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 326, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSplashScreen::drawContents(x1); }}
+ void drawContents(QPainter* x1) { quint64 id = LObjects::override_id(unique, 361); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 361, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSplashScreen::drawContents(x1); }}
void mousePressEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 18); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 18, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSplashScreen::mousePressEvent(x1); }}
bool hasHeightForWidth() const { quint64 id = LObjects::override_id(unique, 21); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 21, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSplashScreen::hasHeightForWidth(); } return ret; }
int heightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 22); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 22, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSplashScreen::heightForWidth(x1); } return ret; }
@@ -5064,7 +5064,7 @@ public:
class LSplitter : public QSplitter {
Q_OBJECT
- friend class Q184;
+ friend class Q210;
public:
LSplitter(uint u, QWidget* x1 = 0) : QSplitter(x1), unique(u) {}
LSplitter(uint u, Qt::Orientation x1, QWidget* x2 = 0) : QSplitter(x1, x2), unique(u) {}
@@ -5114,7 +5114,7 @@ public:
class LSplitterHandle : public QSplitterHandle {
Q_OBJECT
- friend class Q185;
+ friend class Q211;
public:
static NumList overrideIds;
@@ -5162,7 +5162,7 @@ public:
class LStackedLayout : public QStackedLayout {
Q_OBJECT
- friend class Q191;
+ friend class Q217;
public:
LStackedLayout(uint u) : unique(u) {}
LStackedLayout(uint u, QWidget* x1) : QStackedLayout(x1), unique(u) {}
@@ -5196,7 +5196,7 @@ public:
class LStackedWidget : public QStackedWidget {
Q_OBJECT
- friend class Q192;
+ friend class Q218;
public:
LStackedWidget(uint u, QWidget* x1 = 0) : QStackedWidget(x1), unique(u) {}
@@ -5245,7 +5245,7 @@ public:
class LStandardItemModel : public QStandardItemModel {
Q_OBJECT
- friend class Q193;
+ friend class Q219;
public:
LStandardItemModel(uint u, QObject* x1 = 0) : QStandardItemModel(x1), unique(u) {}
LStandardItemModel(uint u, int x1, int x2, QObject* x3 = 0) : QStandardItemModel(x1, x2, x3), unique(u) {}
@@ -5290,7 +5290,7 @@ public:
class LState : public QState {
Q_OBJECT
- friend class Q194;
+ friend class Q220;
public:
LState(uint u, QState* x1 = 0) : QState(x1), unique(u) {}
LState(uint u, ChildMode x1, QState* x2 = 0) : QState(x1, x2), unique(u) {}
@@ -5308,7 +5308,7 @@ public:
class LStateMachine : public QStateMachine {
Q_OBJECT
- friend class Q195;
+ friend class Q221;
public:
LStateMachine(uint u, QObject* x1 = 0) : QStateMachine(x1), unique(u) {}
LStateMachine(uint u, QState::ChildMode x1, QObject* x2 = 0) : QStateMachine(x1, x2), unique(u) {}
@@ -5326,7 +5326,7 @@ public:
class LStatusBar : public QStatusBar {
Q_OBJECT
- friend class Q196;
+ friend class Q222;
public:
LStatusBar(uint u, QWidget* x1 = 0) : QStatusBar(x1), unique(u) {}
@@ -5375,7 +5375,7 @@ public:
class LStringListModel : public QStringListModel {
Q_OBJECT
- friend class Q197;
+ friend class Q223;
public:
LStringListModel(uint u, QObject* x1 = 0) : QStringListModel(x1), unique(u) {}
LStringListModel(uint u, const QStringList& x1, QObject* x2 = 0) : QStringListModel(x1, x2), unique(u) {}
@@ -5417,7 +5417,7 @@ public:
class LStyleHints : public QStyleHints {
Q_OBJECT
- friend class Q199;
+ friend class Q225;
public:
static NumList overrideIds;
@@ -5431,15 +5431,15 @@ public:
class LStyledItemDelegate : public QStyledItemDelegate {
Q_OBJECT
- friend class Q200;
+ friend class Q226;
public:
LStyledItemDelegate(uint u, QObject* x1 = 0) : QStyledItemDelegate(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- QString displayText(const QVariant& x1, const QLocale& x2) const { quint64 id = LObjects::override_id(unique, 364); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 364, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStyledItemDelegate::displayText(x1, x2); } return ret; }
- void initStyleOption(QStyleOptionViewItem* x1, const QModelIndex& x2) const { quint64 id = LObjects::override_id(unique, 365); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 365, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QStyledItemDelegate::initStyleOption(x1, x2); }}
+ QString displayText(const QVariant& x1, const QLocale& x2) const { quint64 id = LObjects::override_id(unique, 399); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 399, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStyledItemDelegate::displayText(x1, x2); } return ret; }
+ void initStyleOption(QStyleOptionViewItem* x1, const QModelIndex& x2) const { quint64 id = LObjects::override_id(unique, 400); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 400, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QStyledItemDelegate::initStyleOption(x1, x2); }}
QWidget* createEditor(QWidget* x1, const QStyleOptionViewItem& x2, const QModelIndex& x3) const { quint64 id = LObjects::override_id(unique, 46); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = (QWidget*)callOverrideFun(fun, 46, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStyledItemDelegate::createEditor(x1, x2, x3); } return ret; }
void paint(QPainter* x1, const QStyleOptionViewItem& x2, const QModelIndex& x3) const { quint64 id = LObjects::override_id(unique, 50); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 50, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QStyledItemDelegate::paint(x1, x2, x3); }}
void setEditorData(QWidget* x1, const QModelIndex& x2) const { quint64 id = LObjects::override_id(unique, 51); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 51, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QStyledItemDelegate::setEditorData(x1, x2); }}
@@ -5457,7 +5457,7 @@ public:
class LSwipeGesture : public QSwipeGesture {
Q_OBJECT
- friend class Q203;
+ friend class Q229;
public:
static NumList overrideIds;
@@ -5471,7 +5471,7 @@ public:
class LSyntaxHighlighter : public QSyntaxHighlighter {
Q_OBJECT
- friend class Q204;
+ friend class Q230;
public:
LSyntaxHighlighter(uint u, QObject* x1) : QSyntaxHighlighter(x1), unique(u) {}
LSyntaxHighlighter(uint u, QTextDocument* x1) : QSyntaxHighlighter(x1), unique(u) {}
@@ -5479,7 +5479,7 @@ public:
static NumList overrideIds;
uint unique;
- void highlightBlock(const QString& x1) { quint64 id = LObjects::override_id(unique, 366); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 366, args, id); }}
+ void highlightBlock(const QString& x1) { quint64 id = LObjects::override_id(unique, 401); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 401, args, id); }}
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSyntaxHighlighter::eventFilter(x1, x2); } return ret; }
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSyntaxHighlighter::childEvent(x1); }}
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSyntaxHighlighter::customEvent(x1); }}
@@ -5488,7 +5488,7 @@ public:
class LSystemTrayIcon : public QSystemTrayIcon {
Q_OBJECT
- friend class Q205;
+ friend class Q231;
public:
LSystemTrayIcon(uint u, QObject* x1 = 0) : QSystemTrayIcon(x1), unique(u) {}
LSystemTrayIcon(uint u, const QIcon& x1, QObject* x2 = 0) : QSystemTrayIcon(x1, x2), unique(u) {}
@@ -5504,18 +5504,18 @@ public:
class LTabBar : public QTabBar {
Q_OBJECT
- friend class Q206;
+ friend class Q232;
public:
LTabBar(uint u, QWidget* x1 = 0) : QTabBar(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- QSize minimumTabSizeHint(int x1) const { quint64 id = LObjects::override_id(unique, 367); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 367, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTabBar::minimumTabSizeHint(x1); } return ret; }
- void tabInserted(int x1) { quint64 id = LObjects::override_id(unique, 368); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 368, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabBar::tabInserted(x1); }}
- void tabLayoutChange() { quint64 id = LObjects::override_id(unique, 369); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 369, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabBar::tabLayoutChange(); }}
- void tabRemoved(int x1) { quint64 id = LObjects::override_id(unique, 370); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 370, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabBar::tabRemoved(x1); }}
- QSize tabSizeHint(int x1) const { quint64 id = LObjects::override_id(unique, 371); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 371, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTabBar::tabSizeHint(x1); } return ret; }
+ QSize minimumTabSizeHint(int x1) const { quint64 id = LObjects::override_id(unique, 402); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 402, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTabBar::minimumTabSizeHint(x1); } return ret; }
+ void tabInserted(int x1) { quint64 id = LObjects::override_id(unique, 403); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 403, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabBar::tabInserted(x1); }}
+ void tabLayoutChange() { quint64 id = LObjects::override_id(unique, 404); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 404, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabBar::tabLayoutChange(); }}
+ void tabRemoved(int x1) { quint64 id = LObjects::override_id(unique, 405); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 405, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabBar::tabRemoved(x1); }}
+ QSize tabSizeHint(int x1) const { quint64 id = LObjects::override_id(unique, 406); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 406, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTabBar::tabSizeHint(x1); } return ret; }
QSize minimumSizeHint() const { quint64 id = LObjects::override_id(unique, 24); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 24, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTabBar::minimumSizeHint(); } return ret; }
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTabBar::sizeHint(); } return ret; }
void changeEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 12); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 12, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabBar::changeEvent(x1); }}
@@ -5558,15 +5558,15 @@ public:
class LTabWidget : public QTabWidget {
Q_OBJECT
- friend class Q207;
+ friend class Q233;
public:
LTabWidget(uint u, QWidget* x1 = 0) : QTabWidget(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- void tabInserted(int x1) { quint64 id = LObjects::override_id(unique, 368); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 368, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabWidget::tabInserted(x1); }}
- void tabRemoved(int x1) { quint64 id = LObjects::override_id(unique, 370); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 370, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabWidget::tabRemoved(x1); }}
+ void tabInserted(int x1) { quint64 id = LObjects::override_id(unique, 403); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 403, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabWidget::tabInserted(x1); }}
+ void tabRemoved(int x1) { quint64 id = LObjects::override_id(unique, 405); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 405, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabWidget::tabRemoved(x1); }}
bool hasHeightForWidth() const { quint64 id = LObjects::override_id(unique, 21); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 21, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTabWidget::hasHeightForWidth(); } return ret; }
int heightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 22); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 22, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTabWidget::heightForWidth(x1); } return ret; }
QSize minimumSizeHint() const { quint64 id = LObjects::override_id(unique, 24); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 24, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTabWidget::minimumSizeHint(); } return ret; }
@@ -5609,7 +5609,7 @@ public:
class LTableView : public QTableView {
Q_OBJECT
- friend class Q208;
+ friend class Q234;
public:
LTableView(uint u, QWidget* x1 = 0) : QTableView(x1), unique(u) {}
@@ -5685,7 +5685,7 @@ public:
class LTableWidget : public QTableWidget {
Q_OBJECT
- friend class Q209;
+ friend class Q235;
public:
LTableWidget(uint u, QWidget* x1 = 0) : QTableWidget(x1), unique(u) {}
LTableWidget(uint u, int x1, int x2, QWidget* x3 = 0) : QTableWidget(x1, x2, x3), unique(u) {}
@@ -5693,8 +5693,8 @@ public:
static NumList overrideIds;
uint unique;
- bool dropMimeData(int x1, int x2, const QMimeData* x3, Qt::DropAction x4) { quint64 id = LObjects::override_id(unique, 372); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 372, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidget::dropMimeData(x1, x2, x3, x4); } return ret; }
- QMimeData* mimeData(const QList& x1) const { quint64 id = LObjects::override_id(unique, 373); void* fun = LObjects::overrideFun(id); QMimeData* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QMimeData*)callOverrideFun(fun, 373, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidget::mimeData(x1); } return ret; }
+ bool dropMimeData(int x1, int x2, const QMimeData* x3, Qt::DropAction x4) { quint64 id = LObjects::override_id(unique, 407); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 407, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidget::dropMimeData(x1, x2, x3, x4); } return ret; }
+ QMimeData* mimeData(const QList& x1) const { quint64 id = LObjects::override_id(unique, 408); void* fun = LObjects::overrideFun(id); QMimeData* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QMimeData*)callOverrideFun(fun, 408, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidget::mimeData(x1); } return ret; }
QStringList mimeTypes() const { quint64 id = LObjects::override_id(unique, 70); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 70, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidget::mimeTypes(); } return ret; }
Qt::DropActions supportedDropActions() const { quint64 id = LObjects::override_id(unique, 83); void* fun = LObjects::overrideFun(id); Qt::DropActions ret = (Qt::DropActions)0; if(fun && (LObjects::calling != id)) { ret = (Qt::DropActions)callOverrideFun(fun, 83, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidget::supportedDropActions(); } return ret; }
void dropEvent(QDropEvent* x1) { quint64 id = LObjects::override_id(unique, 32); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 32, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTableWidget::dropEvent(x1); }}
@@ -5765,7 +5765,7 @@ public:
class LTapAndHoldGesture : public QTapAndHoldGesture {
Q_OBJECT
- friend class Q210;
+ friend class Q236;
public:
static NumList overrideIds;
@@ -5779,7 +5779,7 @@ public:
class LTapGesture : public QTapGesture {
Q_OBJECT
- friend class Q211;
+ friend class Q237;
public:
static NumList overrideIds;
@@ -5793,15 +5793,15 @@ public:
class LTextBlockGroup : public QTextBlockGroup {
Q_OBJECT
- friend class Q214;
+ friend class Q240;
public:
static NumList overrideIds;
uint unique;
- void blockFormatChanged(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 374); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 374, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextBlockGroup::blockFormatChanged(x1); }}
- void blockInserted(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 375); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 375, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextBlockGroup::blockInserted(x1); }}
- void blockRemoved(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 376); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 376, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextBlockGroup::blockRemoved(x1); }}
+ void blockFormatChanged(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 409); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 409, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextBlockGroup::blockFormatChanged(x1); }}
+ void blockInserted(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 410); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 410, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextBlockGroup::blockInserted(x1); }}
+ void blockRemoved(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 411); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 411, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextBlockGroup::blockRemoved(x1); }}
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTextBlockGroup::eventFilter(x1, x2); } return ret; }
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextBlockGroup::childEvent(x1); }}
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextBlockGroup::customEvent(x1); }}
@@ -5810,7 +5810,7 @@ public:
class LTextBrowser : public QTextBrowser {
Q_OBJECT
- friend class Q215;
+ friend class Q241;
public:
LTextBrowser(uint u, QWidget* x1 = 0) : QTextBrowser(x1), unique(u) {}
@@ -5867,7 +5867,7 @@ public:
class LTextDocument : public QTextDocument {
Q_OBJECT
- friend class Q216;
+ friend class Q242;
public:
LTextDocument(uint u, QObject* x1 = 0) : QTextDocument(x1), unique(u) {}
LTextDocument(uint u, const QString& x1, QObject* x2 = 0) : QTextDocument(x1, x2), unique(u) {}
@@ -5876,7 +5876,7 @@ public:
uint unique;
void clear() { quint64 id = LObjects::override_id(unique, 219); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 219, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextDocument::clear(); }}
- QTextObject* createObject(const QTextFormat& x1) { quint64 id = LObjects::override_id(unique, 377); void* fun = LObjects::overrideFun(id); QTextObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QTextObject*)callOverrideFun(fun, 377, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTextDocument::createObject(x1); } return ret; }
+ QTextObject* createObject(const QTextFormat& x1) { quint64 id = LObjects::override_id(unique, 412); void* fun = LObjects::overrideFun(id); QTextObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QTextObject*)callOverrideFun(fun, 412, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTextDocument::createObject(x1); } return ret; }
QVariant loadResource(int x1, const QUrl& x2) { quint64 id = LObjects::override_id(unique, 314); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 314, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTextDocument::loadResource(x1, x2); } return ret; }
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTextDocument::eventFilter(x1, x2); } return ret; }
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextDocument::childEvent(x1); }}
@@ -5886,7 +5886,7 @@ public:
class LTextEdit : public QTextEdit {
Q_OBJECT
- friend class Q217;
+ friend class Q243;
public:
LTextEdit(uint u, QWidget* x1 = 0) : QTextEdit(x1), unique(u) {}
LTextEdit(uint u, const QString& x1, QWidget* x2 = 0) : QTextEdit(x1, x2), unique(u) {}
@@ -5944,7 +5944,7 @@ public:
class LTextFrame : public QTextFrame {
Q_OBJECT
- friend class Q218;
+ friend class Q244;
public:
LTextFrame(uint u, QTextDocument* x1) : QTextFrame(x1), unique(u) {}
@@ -5959,15 +5959,15 @@ public:
class LTextList : public QTextList {
Q_OBJECT
- friend class Q219;
+ friend class Q245;
public:
static NumList overrideIds;
uint unique;
- void blockFormatChanged(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 374); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 374, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextList::blockFormatChanged(x1); }}
- void blockInserted(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 375); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 375, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextList::blockInserted(x1); }}
- void blockRemoved(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 376); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 376, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextList::blockRemoved(x1); }}
+ void blockFormatChanged(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 409); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 409, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextList::blockFormatChanged(x1); }}
+ void blockInserted(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 410); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 410, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextList::blockInserted(x1); }}
+ void blockRemoved(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 411); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 411, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextList::blockRemoved(x1); }}
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTextList::eventFilter(x1, x2); } return ret; }
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextList::childEvent(x1); }}
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTextList::customEvent(x1); }}
@@ -5976,7 +5976,7 @@ public:
class LTextObject : public QTextObject {
Q_OBJECT
- friend class Q220;
+ friend class Q246;
public:
static NumList overrideIds;
@@ -5990,7 +5990,7 @@ public:
class LTextTable : public QTextTable {
Q_OBJECT
- friend class Q221;
+ friend class Q247;
public:
static NumList overrideIds;
@@ -6004,7 +6004,7 @@ public:
class LTimeEdit : public QTimeEdit {
Q_OBJECT
- friend class Q222;
+ friend class Q248;
public:
LTimeEdit(uint u, QWidget* x1 = 0) : QTimeEdit(x1), unique(u) {}
LTimeEdit(uint u, const QTime& x1, QWidget* x2 = 0) : QTimeEdit(x1, x2), unique(u) {}
@@ -6061,14 +6061,14 @@ public:
class LTimeLine : public QTimeLine {
Q_OBJECT
- friend class Q223;
+ friend class Q249;
public:
LTimeLine(uint u, int x1 = 1000, QObject* x2 = 0) : QTimeLine(x1, x2), unique(u) {}
static NumList overrideIds;
uint unique;
- qreal valueForTime(int x1) const { quint64 id = LObjects::override_id(unique, 378); void* fun = LObjects::overrideFun(id); qreal ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 378, args, id).toReal(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTimeLine::valueForTime(x1); } return ret; }
+ qreal valueForTime(int x1) const { quint64 id = LObjects::override_id(unique, 413); void* fun = LObjects::overrideFun(id); qreal ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 413, args, id).toReal(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTimeLine::valueForTime(x1); } return ret; }
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTimeLine::timerEvent(x1); }}
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTimeLine::eventFilter(x1, x2); } return ret; }
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTimeLine::childEvent(x1); }}
@@ -6077,7 +6077,7 @@ public:
class LTimer : public QTimer {
Q_OBJECT
- friend class Q224;
+ friend class Q250;
public:
LTimer(uint u, QObject* x1 = 0) : QTimer(x1), unique(u) {}
@@ -6092,7 +6092,7 @@ public:
class LToolBar : public QToolBar {
Q_OBJECT
- friend class Q225;
+ friend class Q251;
public:
LToolBar(uint u, const QString& x1, QWidget* x2 = 0) : QToolBar(x1, x2), unique(u) {}
LToolBar(uint u, QWidget* x1 = 0) : QToolBar(x1), unique(u) {}
@@ -6142,15 +6142,15 @@ public:
class LToolBox : public QToolBox {
Q_OBJECT
- friend class Q226;
+ friend class Q252;
public:
LToolBox(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QToolBox(x1, x2), unique(u) {}
static NumList overrideIds;
uint unique;
- void itemInserted(int x1) { quint64 id = LObjects::override_id(unique, 379); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 379, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QToolBox::itemInserted(x1); }}
- void itemRemoved(int x1) { quint64 id = LObjects::override_id(unique, 380); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 380, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QToolBox::itemRemoved(x1); }}
+ void itemInserted(int x1) { quint64 id = LObjects::override_id(unique, 414); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 414, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QToolBox::itemInserted(x1); }}
+ void itemRemoved(int x1) { quint64 id = LObjects::override_id(unique, 415); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 415, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QToolBox::itemRemoved(x1); }}
void changeEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 12); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 12, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QToolBox::changeEvent(x1); }}
void showEvent(QShowEvent* x1) { quint64 id = LObjects::override_id(unique, 41); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 41, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QToolBox::showEvent(x1); }}
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QToolBox::sizeHint(); } return ret; }
@@ -6193,7 +6193,7 @@ public:
class LToolButton : public QToolButton {
Q_OBJECT
- friend class Q227;
+ friend class Q253;
public:
LToolButton(uint u, QWidget* x1 = 0) : QToolButton(x1), unique(u) {}
@@ -6245,7 +6245,7 @@ public:
class LTranslator : public QTranslator {
Q_OBJECT
- friend class Q228;
+ friend class Q254;
public:
LTranslator(uint u, QObject* x1 = 0) : QTranslator(x1), unique(u) {}
@@ -6253,7 +6253,7 @@ public:
uint unique;
bool isEmpty() const { quint64 id = LObjects::override_id(unique, 175); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 175, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTranslator::isEmpty(); } return ret; }
- QString translate(const char* x1, const char* x2, const char* x3 = 0, int x4 = -1) const { quint64 id = LObjects::override_id(unique, 381); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 381, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTranslator::translate(x1, x2, x3, x4); } return ret; }
+ QString translate(const char* x1, const char* x2, const char* x3 = 0, int x4 = -1) const { quint64 id = LObjects::override_id(unique, 416); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 416, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTranslator::translate(x1, x2, x3, x4); } return ret; }
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTranslator::eventFilter(x1, x2); } return ret; }
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTranslator::childEvent(x1); }}
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTranslator::customEvent(x1); }}
@@ -6262,7 +6262,7 @@ public:
class LTreeView : public QTreeView {
Q_OBJECT
- friend class Q229;
+ friend class Q255;
public:
LTreeView(uint u, QWidget* x1 = 0) : QTreeView(x1), unique(u) {}
@@ -6345,15 +6345,15 @@ public:
class LTreeWidget : public QTreeWidget {
Q_OBJECT
- friend class Q230;
+ friend class Q256;
public:
LTreeWidget(uint u, QWidget* x1 = 0) : QTreeWidget(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- bool dropMimeData(QTreeWidgetItem* x1, int x2, const QMimeData* x3, Qt::DropAction x4) { quint64 id = LObjects::override_id(unique, 382); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 382, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidget::dropMimeData(x1, x2, x3, x4); } return ret; }
- QMimeData* mimeData(const QList& x1) const { quint64 id = LObjects::override_id(unique, 383); void* fun = LObjects::overrideFun(id); QMimeData* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QMimeData*)callOverrideFun(fun, 383, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidget::mimeData(x1); } return ret; }
+ bool dropMimeData(QTreeWidgetItem* x1, int x2, const QMimeData* x3, Qt::DropAction x4) { quint64 id = LObjects::override_id(unique, 417); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 417, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidget::dropMimeData(x1, x2, x3, x4); } return ret; }
+ QMimeData* mimeData(const QList& x1) const { quint64 id = LObjects::override_id(unique, 418); void* fun = LObjects::overrideFun(id); QMimeData* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QMimeData*)callOverrideFun(fun, 418, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidget::mimeData(x1); } return ret; }
QStringList mimeTypes() const { quint64 id = LObjects::override_id(unique, 70); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 70, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidget::mimeTypes(); } return ret; }
Qt::DropActions supportedDropActions() const { quint64 id = LObjects::override_id(unique, 83); void* fun = LObjects::overrideFun(id); Qt::DropActions ret = (Qt::DropActions)0; if(fun && (LObjects::calling != id)) { ret = (Qt::DropActions)callOverrideFun(fun, 83, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidget::supportedDropActions(); } return ret; }
void setSelectionModel(QItemSelectionModel* x1) { quint64 id = LObjects::override_id(unique, 88); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 88, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTreeWidget::setSelectionModel(x1); }}
@@ -6431,7 +6431,7 @@ public:
class LUndoGroup : public QUndoGroup {
Q_OBJECT
- friend class Q232;
+ friend class Q258;
public:
LUndoGroup(uint u, QObject* x1 = 0) : QUndoGroup(x1), unique(u) {}
@@ -6446,7 +6446,7 @@ public:
class LUndoStack : public QUndoStack {
Q_OBJECT
- friend class Q233;
+ friend class Q259;
public:
LUndoStack(uint u, QObject* x1 = 0) : QUndoStack(x1), unique(u) {}
@@ -6461,7 +6461,7 @@ public:
class LUndoView : public QUndoView {
Q_OBJECT
- friend class Q234;
+ friend class Q260;
public:
LUndoView(uint u, QWidget* x1 = 0) : QUndoView(x1), unique(u) {}
LUndoView(uint u, QUndoStack* x1, QWidget* x2 = 0) : QUndoView(x1, x2), unique(u) {}
@@ -6541,7 +6541,7 @@ public:
class LVBoxLayout : public QVBoxLayout {
Q_OBJECT
- friend class Q235;
+ friend class Q261;
public:
LVBoxLayout(uint u) : unique(u) {}
LVBoxLayout(uint u, QWidget* x1) : QVBoxLayout(x1), unique(u) {}
@@ -6575,7 +6575,7 @@ public:
class LValidator : public QValidator {
Q_OBJECT
- friend class Q236;
+ friend class Q262;
public:
LValidator(uint u, QObject* x1 = 0) : QValidator(x1), unique(u) {}
@@ -6592,7 +6592,7 @@ public:
class LVariantAnimation : public QVariantAnimation {
Q_OBJECT
- friend class Q237;
+ friend class Q263;
public:
LVariantAnimation(uint u, QObject* x1 = 0) : QVariantAnimation(x1), unique(u) {}
@@ -6613,7 +6613,7 @@ public:
class LWidget : public QWidget {
Q_OBJECT
- friend class Q246;
+ friend class Q272;
public:
LWidget(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QWidget(x1, x2), unique(u) {}
@@ -6662,15 +6662,15 @@ public:
class LWidgetAction : public QWidgetAction {
Q_OBJECT
- friend class Q247;
+ friend class Q273;
public:
LWidgetAction(uint u, QObject* x1) : QWidgetAction(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- QWidget* createWidget(QWidget* x1) { quint64 id = LObjects::override_id(unique, 416); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWidget*)callOverrideFun(fun, 416, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetAction::createWidget(x1); } return ret; }
- void deleteWidget(QWidget* x1) { quint64 id = LObjects::override_id(unique, 417); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 417, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWidgetAction::deleteWidget(x1); }}
+ QWidget* createWidget(QWidget* x1) { quint64 id = LObjects::override_id(unique, 451); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWidget*)callOverrideFun(fun, 451, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetAction::createWidget(x1); } return ret; }
+ void deleteWidget(QWidget* x1) { quint64 id = LObjects::override_id(unique, 452); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 452, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWidgetAction::deleteWidget(x1); }}
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetAction::eventFilter(x1, x2); } return ret; }
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWidgetAction::childEvent(x1); }}
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWidgetAction::customEvent(x1); }}
@@ -6679,7 +6679,7 @@ public:
class LWindow : public QWindow {
Q_OBJECT
- friend class Q248;
+ friend class Q274;
public:
LWindow(uint u, QScreen* x1 = 0) : QWindow(x1), unique(u) {}
LWindow(uint u, QWindow* x1) : QWindow(x1), unique(u) {}
@@ -6715,17 +6715,17 @@ public:
class LWizard : public QWizard {
Q_OBJECT
- friend class Q249;
+ friend class Q275;
public:
LWizard(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QWizard(x1, x2), unique(u) {}
static NumList overrideIds;
uint unique;
- int nextId() const { quint64 id = LObjects::override_id(unique, 418); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 418, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizard::nextId(); } return ret; }
- bool validateCurrentPage() { quint64 id = LObjects::override_id(unique, 419); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 419, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizard::validateCurrentPage(); } return ret; }
- void cleanupPage(int x1) { quint64 id = LObjects::override_id(unique, 420); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 420, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizard::cleanupPage(x1); }}
- void initializePage(int x1) { quint64 id = LObjects::override_id(unique, 421); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 421, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizard::initializePage(x1); }}
+ int nextId() const { quint64 id = LObjects::override_id(unique, 453); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 453, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizard::nextId(); } return ret; }
+ bool validateCurrentPage() { quint64 id = LObjects::override_id(unique, 454); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 454, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizard::validateCurrentPage(); } return ret; }
+ void cleanupPage(int x1) { quint64 id = LObjects::override_id(unique, 455); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 455, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizard::cleanupPage(x1); }}
+ void initializePage(int x1) { quint64 id = LObjects::override_id(unique, 456); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 456, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizard::initializePage(x1); }}
void setVisible(bool x1) { quint64 id = LObjects::override_id(unique, 108); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 108, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizard::setVisible(x1); }}
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizard::sizeHint(); } return ret; }
void done(int x1) { quint64 id = LObjects::override_id(unique, 184); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 184, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizard::done(x1); }}
@@ -6770,18 +6770,18 @@ public:
class LWizardPage : public QWizardPage {
Q_OBJECT
- friend class Q250;
+ friend class Q276;
public:
LWizardPage(uint u, QWidget* x1 = 0) : QWizardPage(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- void cleanupPage() { quint64 id = LObjects::override_id(unique, 422); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 422, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizardPage::cleanupPage(); }}
- void initializePage() { quint64 id = LObjects::override_id(unique, 423); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 423, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizardPage::initializePage(); }}
- bool isComplete() const { quint64 id = LObjects::override_id(unique, 424); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 424, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::isComplete(); } return ret; }
- int nextId() const { quint64 id = LObjects::override_id(unique, 418); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 418, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::nextId(); } return ret; }
- bool validatePage() { quint64 id = LObjects::override_id(unique, 425); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 425, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::validatePage(); } return ret; }
+ void cleanupPage() { quint64 id = LObjects::override_id(unique, 457); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 457, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizardPage::cleanupPage(); }}
+ void initializePage() { quint64 id = LObjects::override_id(unique, 458); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 458, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizardPage::initializePage(); }}
+ bool isComplete() const { quint64 id = LObjects::override_id(unique, 459); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 459, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::isComplete(); } return ret; }
+ int nextId() const { quint64 id = LObjects::override_id(unique, 453); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 453, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::nextId(); } return ret; }
+ bool validatePage() { quint64 id = LObjects::override_id(unique, 460); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 460, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::validatePage(); } return ret; }
bool hasHeightForWidth() const { quint64 id = LObjects::override_id(unique, 21); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 21, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::hasHeightForWidth(); } return ret; }
int heightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 22); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 22, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::heightForWidth(x1); } return ret; }
QVariant inputMethodQuery(Qt::InputMethodQuery x1) const { quint64 id = LObjects::override_id(unique, 23); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 23, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::inputMethodQuery(x1); } return ret; }
diff --git a/src/gen/_main_q_methods.h b/src/gen/_main_q_methods.h
index 5306a23..e61521f 100644
--- a/src/gen/_main_q_methods.h
+++ b/src/gen/_main_q_methods.h
@@ -11,7 +11,7 @@
QT_BEGIN_NAMESPACE
-class EQL_EXPORT Q140 : public QObject { // QObject
+class EQL_EXPORT Q142 : public QObject { // QObject
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LObject(u, x1); }
@@ -45,7 +45,7 @@ public:
Q_INVOKABLE QString Str(const char* x1, const char* x2 = 0, int x3 = -1) { return QObject::tr(x1, x2, x3); }
};
-class EQL_EXPORT Q1 : public Q140 { // QAbstractAnimation
+class EQL_EXPORT Q1 : public Q142 { // QAbstractAnimation
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LAbstractAnimation(u, x1); }
@@ -62,7 +62,7 @@ public:
Q_INVOKABLE int MtotalDuration(QAbstractAnimation* o) const { return o->totalDuration(); }
};
-class EQL_EXPORT Q3 : public Q140 { // QAbstractItemDelegate
+class EQL_EXPORT Q3 : public Q142 { // QAbstractItemDelegate
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LAbstractItemDelegate(u, x1); }
@@ -77,7 +77,7 @@ public:
Q_INVOKABLE void MupdateEditorGeometry(QAbstractItemDelegate* o, QWidget* x1, const QStyleOptionViewItem& x2, const QModelIndex& x3) const { o->updateEditorGeometry(x1, x2, x3); }
};
-class EQL_EXPORT Q4 : public Q140 { // QAbstractItemModel
+class EQL_EXPORT Q4 : public Q142 { // QAbstractItemModel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LAbstractItemModel(u, x1); }
@@ -178,7 +178,7 @@ public:
Q_INVOKABLE int MsupportedDropActions(QAbstractProxyModel* o) const { return o->supportedDropActions(); }
};
-class EQL_EXPORT Q14 : public Q140 { // QAbstractState
+class EQL_EXPORT Q14 : public Q142 { // QAbstractState
Q_OBJECT
public:
Q_INVOKABLE bool Mactive(QAbstractState* o) const { return o->active(); }
@@ -195,7 +195,7 @@ public:
Q_INVOKABLE QModelIndex Msibling(QAbstractTableModel* o, int x1, int x2, const QModelIndex& x3) const { return o->sibling(x1, x2, x3); }
};
-class EQL_EXPORT Q16 : public Q140 { // QAbstractTextDocumentLayout
+class EQL_EXPORT Q16 : public Q142 { // QAbstractTextDocumentLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QTextDocument* x1) { return new LAbstractTextDocumentLayout(u, x1); }
@@ -211,7 +211,7 @@ public:
Q_INVOKABLE QTextCharFormat Mformat(QAbstractTextDocumentLayout* o, int x1) { return ((LAbstractTextDocumentLayout*)o)->format(x1); }
};
-class EQL_EXPORT Q17 : public Q140 { // QAbstractTransition
+class EQL_EXPORT Q17 : public Q142 { // QAbstractTransition
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LAbstractTransition(u, x1); }
@@ -228,7 +228,7 @@ public:
Q_INVOKABLE int MtransitionType(QAbstractTransition* o) const { return o->transitionType(); }
};
-class EQL_EXPORT Q19 : public Q140 { // QAction
+class EQL_EXPORT Q19 : public Q142 { // QAction
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1) { return new LAction(u, x1); }
@@ -283,7 +283,7 @@ public:
Q_INVOKABLE QString MwhatsThis(QAction* o) const { return o->whatsThis(); }
};
-class EQL_EXPORT Q20 : public Q140 { // QActionGroup
+class EQL_EXPORT Q20 : public Q142 { // QActionGroup
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1) { return new LActionGroup(u, x1); }
@@ -312,7 +312,7 @@ public:
Q_INVOKABLE QAbstractAnimation* MtakeAnimation(QAnimationGroup* o, int x1) { return o->takeAnimation(x1); }
};
-class EQL_EXPORT Q27 : public Q140 { // QButtonGroup
+class EQL_EXPORT Q27 : public Q142 { // QButtonGroup
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LButtonGroup(u, x1); }
@@ -328,7 +328,7 @@ public:
Q_INVOKABLE void MsetId(QButtonGroup* o, QAbstractButton* x1, int x2) { o->setId(x1, x2); }
};
-class EQL_EXPORT Q36 : public Q140 { // QClipboard
+class EQL_EXPORT Q36 : public Q142 { // QClipboard
Q_OBJECT
public:
Q_INVOKABLE void Mclear(QClipboard* o, QClipboard::Mode x1 = QClipboard::Clipboard) { o->clear(x1); }
@@ -348,7 +348,7 @@ public:
Q_INVOKABLE QString Mtext(QClipboard* o, QString& x1, QClipboard::Mode x2 = QClipboard::Clipboard) const { return o->text(x1, x2); }
};
-class EQL_EXPORT Q42 : public Q140 { // QCompleter
+class EQL_EXPORT Q42 : public Q142 { // QCompleter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LCompleter(u, x1); }
@@ -386,7 +386,7 @@ public:
Q_INVOKABLE bool MwrapAround(QCompleter* o) const { return o->wrapAround(); }
};
-class EQL_EXPORT Q43 : public Q140 { // QCoreApplication
+class EQL_EXPORT Q43 : public Q142 { // QCoreApplication
Q_OBJECT
public:
Q_INVOKABLE void MinstallNativeEventFilter(QCoreApplication* o, QAbstractNativeEventFilter* x1) { o->installNativeEventFilter(x1); }
@@ -433,7 +433,7 @@ public:
Q_INVOKABLE QString Stranslate(const char* x1, const char* x2, const char* x3 = 0, int x4 = -1) { return QCoreApplication::translate(x1, x2, x3, x4); }
};
-class EQL_EXPORT Q44 : public Q140 { // QDataWidgetMapper
+class EQL_EXPORT Q44 : public Q142 { // QDataWidgetMapper
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LDataWidgetMapper(u, x1); }
@@ -501,7 +501,7 @@ public:
Q_INVOKABLE int MsupportedDropActions(QDirModel* o) const { return o->supportedDropActions(); }
};
-class EQL_EXPORT Q55 : public Q140 { // QDrag
+class EQL_EXPORT Q55 : public Q142 { // QDrag
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1) { return new LDrag(u, x1); }
@@ -520,7 +520,7 @@ public:
Q_INVOKABLE QObject* Mtarget(QDrag* o) const { return o->target(); }
};
-class EQL_EXPORT Q57 : public Q140 { // QEventLoop
+class EQL_EXPORT Q57 : public Q142 { // QEventLoop
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LEventLoop(u, x1); }
@@ -544,7 +544,7 @@ public:
Q_INVOKABLE void MsetEventType(QEventTransition* o, QEvent::Type x1) { o->setEventType(x1); }
};
-class EQL_EXPORT Q62 : public Q140 { // QFileSelector
+class EQL_EXPORT Q62 : public Q142 { // QFileSelector
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LFileSelector(u, x1); }
@@ -606,7 +606,7 @@ public:
Q_INVOKABLE int MsupportedDropActions(QFileSystemModel* o) const { return o->supportedDropActions(); }
};
-class EQL_EXPORT Q64 : public Q140 { // QFileSystemWatcher
+class EQL_EXPORT Q64 : public Q142 { // QFileSystemWatcher
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LFileSystemWatcher(u, x1); }
@@ -625,7 +625,7 @@ public:
Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LFinalState(u, x1); }
};
-class EQL_EXPORT Q71 : public Q140 { // QGesture
+class EQL_EXPORT Q71 : public Q142 { // QGesture
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LGesture(u, x1); }
@@ -639,7 +639,7 @@ public:
Q_INVOKABLE void MunsetHotSpot(QGesture* o) { o->unsetHotSpot(); }
};
-class EQL_EXPORT Q72 : public Q140 { // QGraphicsAnchor
+class EQL_EXPORT Q72 : public Q142 { // QGraphicsAnchor
Q_OBJECT
public:
Q_INVOKABLE void MsetSizePolicy(QGraphicsAnchor* o, QSizePolicy::Policy x1) { o->setSizePolicy(x1); }
@@ -649,7 +649,7 @@ public:
Q_INVOKABLE void MunsetSpacing(QGraphicsAnchor* o) { o->unsetSpacing(); }
};
-class EQL_EXPORT Q76 : public Q140 { // QGraphicsEffect
+class EQL_EXPORT Q76 : public Q142 { // QGraphicsEffect
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LGraphicsEffect(u, x1); }
@@ -662,7 +662,7 @@ public:
Q_INVOKABLE void MupdateBoundingRect(QGraphicsEffect* o) { ((LGraphicsEffect*)o)->updateBoundingRect(); }
};
-class EQL_EXPORT Q77 : public Q140 { // QGraphicsObject
+class EQL_EXPORT Q77 : public Q142 { // QGraphicsObject
Q_OBJECT
public:
Q_INVOKABLE void MgrabGesture(QGraphicsObject* o, Qt::GestureType x1, Qt::GestureFlags x2 = Qt::GestureFlags()) { o->grabGesture(x1, x2); }
@@ -677,7 +677,7 @@ public:
Q_INVOKABLE QBrush MopacityMask(QGraphicsOpacityEffect* o) const { return o->opacityMask(); }
};
-class EQL_EXPORT Q82 : public Q140 { // QGraphicsScene
+class EQL_EXPORT Q82 : public Q142 { // QGraphicsScene
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LGraphicsScene(u, x1); }
@@ -791,7 +791,7 @@ public:
Q_INVOKABLE int Mtype(QGraphicsTextItem* o) const { return o->type(); }
};
-class EQL_EXPORT Q85 : public Q140 { // QGraphicsTransform
+class EQL_EXPORT Q85 : public Q142 { // QGraphicsTransform
Q_OBJECT
public:
};
@@ -916,7 +916,7 @@ public:
Q_INVOKABLE void MsetHistoryType(QHistoryState* o, QHistoryState::HistoryType x1) { o->setHistoryType(x1); }
};
-class EQL_EXPORT Q105 : public Q140 { // QIODevice
+class EQL_EXPORT Q105 : public Q142 { // QIODevice
Q_OBJECT
public:
Q_INVOKABLE bool MatEnd(QIODevice* o) const { return o->atEnd(); }
@@ -979,7 +979,7 @@ public:
Q_INVOKABLE QModelIndex Msibling(QIdentityProxyModel* o, int x1, int x2, const QModelIndex& x3) const { return o->sibling(x1, x2, x3); }
};
-class EQL_EXPORT Q108 : public Q140 { // QInputMethod
+class EQL_EXPORT Q108 : public Q142 { // QInputMethod
Q_OBJECT
public:
Q_INVOKABLE QRectF McursorRectangle(QInputMethod* o) const { return o->cursorRectangle(); }
@@ -1013,7 +1013,7 @@ public:
Q_INVOKABLE void MupdateEditorGeometry(QItemDelegate* o, QWidget* x1, const QStyleOptionViewItem& x2, const QModelIndex& x3) const { o->updateEditorGeometry(x1, x2, x3); }
};
-class EQL_EXPORT Q111 : public Q140 { // QItemSelectionModel
+class EQL_EXPORT Q111 : public Q142 { // QItemSelectionModel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QAbstractItemModel* x1 = 0) { return new LItemSelectionModel(u, x1); }
@@ -1035,7 +1035,7 @@ public:
Q_INVOKABLE void MemitSelectionChanged(QItemSelectionModel* o, const QItemSelection& x1, const QItemSelection& x2) { ((LItemSelectionModel*)o)->emitSelectionChanged(x1, x2); }
};
-class EQL_EXPORT Q112 : public Q58 { // QKeyEventTransition
+class EQL_EXPORT Q113 : public Q58 { // QKeyEventTransition
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LKeyEventTransition(u, x1); }
@@ -1046,7 +1046,7 @@ public:
Q_INVOKABLE void MsetModifierMask(QKeyEventTransition* o, Qt::KeyboardModifiers x1) { o->setModifierMask(x1); }
};
-class EQL_EXPORT Q115 : public Q140 { // QLayout
+class EQL_EXPORT Q116 : public Q142 { // QLayout
Q_OBJECT
public:
Q_INVOKABLE bool Mactivate(QLayout* o) { return o->activate(); }
@@ -1087,7 +1087,7 @@ public:
Q_INVOKABLE QSize SclosestAcceptableSize(const QWidget* x1, const QSize& x2) { return QLayout::closestAcceptableSize(x1, x2); }
};
-class EQL_EXPORT Q116 : public Q140 { // QLibrary
+class EQL_EXPORT Q117 : public Q142 { // QLibrary
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LLibrary(u, x1); }
@@ -1111,7 +1111,7 @@ public:
Q_INVOKABLE QFunctionPointer Sresolve(const QString& x1, const QString& x2, const char* x3) { return QLibrary::resolve(x1, x2, x3); }
};
-class EQL_EXPORT Q133 : public Q140 { // QMimeData
+class EQL_EXPORT Q135 : public Q142 { // QMimeData
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMimeData(u); }
@@ -1138,7 +1138,7 @@ public:
Q_INVOKABLE QList Murls(QMimeData* o) const { return o->urls(); }
};
-class EQL_EXPORT Q134 : public Q58 { // QMouseEventTransition
+class EQL_EXPORT Q136 : public Q58 { // QMouseEventTransition
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LMouseEventTransition(u, x1); }
@@ -1151,7 +1151,7 @@ public:
Q_INVOKABLE void MsetModifierMask(QMouseEventTransition* o, Qt::KeyboardModifiers x1) { o->setModifierMask(x1); }
};
-class EQL_EXPORT Q135 : public Q140 { // QMovie
+class EQL_EXPORT Q137 : public Q142 { // QMovie
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LMovie(u, x1); }
@@ -1180,7 +1180,7 @@ public:
Q_INVOKABLE QList SsupportedFormats() { return QMovie::supportedFormats(); }
};
-class EQL_EXPORT Q141 : public Q140 { // QObjectCleanupHandler
+class EQL_EXPORT Q143 : public Q142 { // QObjectCleanupHandler
Q_OBJECT
public:
Q_INVOKABLE QObject* Madd(QObjectCleanupHandler* o, QObject* x1) { return o->add(x1); }
@@ -1189,7 +1189,7 @@ public:
Q_INVOKABLE void Mremove(QObjectCleanupHandler* o, QObject* x1) { o->remove(x1); }
};
-class EQL_EXPORT Q142 : public Q140 { // QOpenGLContext
+class EQL_EXPORT Q144 : public Q142 { // QOpenGLContext
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LOpenGLContext(u, x1); }
@@ -1218,7 +1218,7 @@ public:
Q_INVOKABLE bool SsupportsThreadedOpenGL() { return QOpenGLContext::supportsThreadedOpenGL(); }
};
-class EQL_EXPORT Q143 : public Q140 { // QOpenGLShader
+class EQL_EXPORT Q145 : public Q142 { // QOpenGLShader
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QOpenGLShader::ShaderType x1, QObject* x2 = 0) { return new LOpenGLShader(u, x1, x2); }
@@ -1234,7 +1234,7 @@ public:
Q_INVOKABLE bool ShasOpenGLShaders(QOpenGLShader::ShaderType x1, QOpenGLContext* x2 = 0) { return QOpenGLShader::hasOpenGLShaders(x1, x2); }
};
-class EQL_EXPORT Q144 : public Q140 { // QOpenGLShaderProgram
+class EQL_EXPORT Q146 : public Q142 { // QOpenGLShaderProgram
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LOpenGLShaderProgram(u, x1); }
@@ -1326,7 +1326,7 @@ public:
Q_INVOKABLE bool ShasOpenGLShaderPrograms(QOpenGLContext* x1 = 0) { return QOpenGLShaderProgram::hasOpenGLShaderPrograms(x1); }
};
-class EQL_EXPORT Q149 : public Q71 { // QPanGesture
+class EQL_EXPORT Q151 : public Q71 { // QPanGesture
Q_OBJECT
public:
Q_INVOKABLE qreal Macceleration(QPanGesture* o) const { return o->acceleration(); }
@@ -1338,14 +1338,14 @@ public:
Q_INVOKABLE void MsetOffset(QPanGesture* o, const QPointF& x1) { o->setOffset(x1); }
};
-class EQL_EXPORT Q150 : public Q21 { // QParallelAnimationGroup
+class EQL_EXPORT Q152 : public Q21 { // QParallelAnimationGroup
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LParallelAnimationGroup(u, x1); }
Q_INVOKABLE int Mduration(QParallelAnimationGroup* o) const { return o->duration(); }
};
-class EQL_EXPORT Q151 : public Q1 { // QPauseAnimation
+class EQL_EXPORT Q153 : public Q1 { // QPauseAnimation
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LPauseAnimation(u, x1); }
@@ -1354,7 +1354,7 @@ public:
Q_INVOKABLE int Mduration(QPauseAnimation* o) const { return o->duration(); }
};
-class EQL_EXPORT Q152 : public Q140 { // QPdfWriter
+class EQL_EXPORT Q154 : public Q142 { // QPdfWriter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1) { return new LPdfWriter(u, x1); }
@@ -1373,7 +1373,7 @@ public:
Q_INVOKABLE bool MnewPage(QPdfWriter* o) { return o->newPage(); }
};
-class EQL_EXPORT Q153 : public Q71 { // QPinchGesture
+class EQL_EXPORT Q155 : public Q71 { // QPinchGesture
Q_OBJECT
public:
Q_INVOKABLE QPointF McenterPoint(QPinchGesture* o) const { return o->centerPoint(); }
@@ -1400,7 +1400,7 @@ public:
Q_INVOKABLE qreal MtotalScaleFactor(QPinchGesture* o) const { return o->totalScaleFactor(); }
};
-class EQL_EXPORT Q154 : public Q16 { // QPlainTextDocumentLayout
+class EQL_EXPORT Q156 : public Q16 { // QPlainTextDocumentLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QTextDocument* x1) { return new LPlainTextDocumentLayout(u, x1); }
@@ -1416,7 +1416,7 @@ public:
Q_INVOKABLE int MpageCount(QPlainTextDocumentLayout* o) const { return o->pageCount(); }
};
-class EQL_EXPORT Q156 : public Q140 { // QPluginLoader
+class EQL_EXPORT Q158 : public Q142 { // QPluginLoader
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LPluginLoader(u, x1); }
@@ -1435,7 +1435,7 @@ public:
Q_INVOKABLE QVector SstaticPlugins() { return QPluginLoader::staticPlugins(); }
};
-class EQL_EXPORT Q160 : public Q105 { // QProcess
+class EQL_EXPORT Q162 : public Q105 { // QProcess
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LProcess(u, x1); }
@@ -1489,7 +1489,7 @@ public:
Q_INVOKABLE QStringList SsystemEnvironment() { return QProcess::systemEnvironment(); }
};
-class EQL_EXPORT Q170 : public Q140 { // QScreen
+class EQL_EXPORT Q196 : public Q142 { // QScreen
Q_OBJECT
public:
Q_INVOKABLE int MangleBetween(QScreen* o, Qt::ScreenOrientation x1, Qt::ScreenOrientation x2) const { return o->angleBetween(x1, x2); }
@@ -1526,7 +1526,7 @@ public:
Q_INVOKABLE QSize MvirtualSize(QScreen* o) const { return o->virtualSize(); }
};
-class EQL_EXPORT Q173 : public Q21 { // QSequentialAnimationGroup
+class EQL_EXPORT Q199 : public Q21 { // QSequentialAnimationGroup
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSequentialAnimationGroup(u, x1); }
@@ -1536,7 +1536,7 @@ public:
Q_INVOKABLE int Mduration(QSequentialAnimationGroup* o) const { return o->duration(); }
};
-class EQL_EXPORT Q174 : public Q140 { // QSessionManager
+class EQL_EXPORT Q200 : public Q142 { // QSessionManager
Q_OBJECT
public:
Q_INVOKABLE bool MallowsErrorInteraction(QSessionManager* o) { return o->allowsErrorInteraction(); }
@@ -1557,7 +1557,7 @@ public:
Q_INVOKABLE void MsetRestartHint(QSessionManager* o, QSessionManager::RestartHint x1) { o->setRestartHint(x1); }
};
-class EQL_EXPORT Q175 : public Q140 { // QSettings
+class EQL_EXPORT Q201 : public Q142 { // QSettings
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1, const QString& x2 = QString(), QObject* x3 = 0) { return new LSettings(u, x1, x2, x3); }
@@ -1599,7 +1599,7 @@ public:
Q_INVOKABLE void SsetPath(QSettings::Format x1, QSettings::Scope x2, const QString& x3) { QSettings::setPath(x1, x2, x3); }
};
-class EQL_EXPORT Q176 : public Q140 { // QShortcut
+class EQL_EXPORT Q202 : public Q142 { // QShortcut
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LShortcut(u, x1); }
@@ -1618,7 +1618,7 @@ public:
Q_INVOKABLE QString MwhatsThis(QShortcut* o) const { return o->whatsThis(); }
};
-class EQL_EXPORT Q177 : public Q140 { // QSignalMapper
+class EQL_EXPORT Q203 : public Q142 { // QSignalMapper
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSignalMapper(u, x1); }
@@ -1633,7 +1633,7 @@ public:
Q_INVOKABLE void MsetMapping(QSignalMapper* o, QObject* x1, QObject* x2) { o->setMapping(x1, x2); }
};
-class EQL_EXPORT Q178 : public Q17 { // QSignalTransition
+class EQL_EXPORT Q204 : public Q17 { // QSignalTransition
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LSignalTransition(u, x1); }
@@ -1644,7 +1644,7 @@ public:
Q_INVOKABLE QByteArray Msignal(QSignalTransition* o) const { return o->signal(); }
};
-class EQL_EXPORT Q181 : public Q9 { // QSortFilterProxyModel
+class EQL_EXPORT Q207 : public Q9 { // QSortFilterProxyModel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSortFilterProxyModel(u, x1); }
@@ -1699,7 +1699,7 @@ public:
Q_INVOKABLE int MsupportedDropActions(QSortFilterProxyModel* o) const { return o->supportedDropActions(); }
};
-class EQL_EXPORT Q191 : public Q115 { // QStackedLayout
+class EQL_EXPORT Q217 : public Q116 { // QStackedLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LStackedLayout(u); }
@@ -1723,7 +1723,7 @@ public:
Q_INVOKABLE QLayoutItem* MtakeAt(QStackedLayout* o, int x1) { return o->takeAt(x1); }
};
-class EQL_EXPORT Q193 : public Q4 { // QStandardItemModel
+class EQL_EXPORT Q219 : public Q4 { // QStandardItemModel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LStandardItemModel(u, x1); }
@@ -1783,7 +1783,7 @@ public:
Q_INVOKABLE int MsupportedDropActions(QStandardItemModel* o) const { return o->supportedDropActions(); }
};
-class EQL_EXPORT Q194 : public Q14 { // QState
+class EQL_EXPORT Q220 : public Q14 { // QState
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LState(u, x1); }
@@ -1802,7 +1802,7 @@ public:
Q_INVOKABLE QList Mtransitions(QState* o) const { return o->transitions(); }
};
-class EQL_EXPORT Q195 : public Q194 { // QStateMachine
+class EQL_EXPORT Q221 : public Q220 { // QStateMachine
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LStateMachine(u, x1); }
@@ -1826,7 +1826,7 @@ public:
Q_INVOKABLE bool MeventFilter(QStateMachine* o, QObject* x1, QEvent* x2) { return o->eventFilter(x1, x2); }
};
-class EQL_EXPORT Q197 : public Q6 { // QStringListModel
+class EQL_EXPORT Q223 : public Q6 { // QStringListModel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LStringListModel(u, x1); }
@@ -1844,7 +1844,7 @@ public:
Q_INVOKABLE int MsupportedDropActions(QStringListModel* o) const { return o->supportedDropActions(); }
};
-class EQL_EXPORT Q198 : public Q140 { // QStyle
+class EQL_EXPORT Q224 : public Q142 { // QStyle
Q_OBJECT
public:
Q_INVOKABLE int McombinedLayoutSpacing(QStyle* o, QSizePolicy::ControlTypes x1, QSizePolicy::ControlTypes x2, Qt::Orientation x3, QStyleOption* x4 = 0, QWidget* x5 = 0) const { return o->combinedLayoutSpacing(x1, x2, x3, x4, x5); }
@@ -1879,7 +1879,7 @@ public:
Q_INVOKABLE QRect SvisualRect(Qt::LayoutDirection x1, const QRect& x2, const QRect& x3) { return QStyle::visualRect(x1, x2, x3); }
};
-class EQL_EXPORT Q199 : public Q140 { // QStyleHints
+class EQL_EXPORT Q225 : public Q142 { // QStyleHints
Q_OBJECT
public:
Q_INVOKABLE int McursorFlashTime(QStyleHints* o) const { return o->cursorFlashTime(); }
@@ -1900,7 +1900,7 @@ public:
Q_INVOKABLE bool MuseRtlExtensions(QStyleHints* o) const { return o->useRtlExtensions(); }
};
-class EQL_EXPORT Q200 : public Q3 { // QStyledItemDelegate
+class EQL_EXPORT Q226 : public Q3 { // QStyledItemDelegate
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LStyledItemDelegate(u, x1); }
@@ -1915,7 +1915,7 @@ public:
Q_INVOKABLE void MupdateEditorGeometry(QStyledItemDelegate* o, QWidget* x1, const QStyleOptionViewItem& x2, const QModelIndex& x3) const { o->updateEditorGeometry(x1, x2, x3); }
};
-class EQL_EXPORT Q203 : public Q71 { // QSwipeGesture
+class EQL_EXPORT Q229 : public Q71 { // QSwipeGesture
Q_OBJECT
public:
Q_INVOKABLE int MhorizontalDirection(QSwipeGesture* o) const { return o->horizontalDirection(); }
@@ -1924,7 +1924,7 @@ public:
Q_INVOKABLE int MverticalDirection(QSwipeGesture* o) const { return o->verticalDirection(); }
};
-class EQL_EXPORT Q204 : public Q140 { // QSyntaxHighlighter
+class EQL_EXPORT Q230 : public Q142 { // QSyntaxHighlighter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1) { return new LSyntaxHighlighter(u, x1); }
@@ -1943,7 +1943,7 @@ public:
Q_INVOKABLE void MsetFormat(QSyntaxHighlighter* o, int x1, int x2, const QFont& x3) { ((LSyntaxHighlighter*)o)->setFormat(x1, x2, x3); }
};
-class EQL_EXPORT Q205 : public Q140 { // QSystemTrayIcon
+class EQL_EXPORT Q231 : public Q142 { // QSystemTrayIcon
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSystemTrayIcon(u, x1); }
@@ -1960,7 +1960,7 @@ public:
Q_INVOKABLE bool SsupportsMessages() { return QSystemTrayIcon::supportsMessages(); }
};
-class EQL_EXPORT Q210 : public Q71 { // QTapAndHoldGesture
+class EQL_EXPORT Q236 : public Q71 { // QTapAndHoldGesture
Q_OBJECT
public:
Q_INVOKABLE QPointF Mposition(QTapAndHoldGesture* o) const { return o->position(); }
@@ -1969,14 +1969,14 @@ public:
Q_INVOKABLE int Stimeout() { return QTapAndHoldGesture::timeout(); }
};
-class EQL_EXPORT Q211 : public Q71 { // QTapGesture
+class EQL_EXPORT Q237 : public Q71 { // QTapGesture
Q_OBJECT
public:
Q_INVOKABLE QPointF Mposition(QTapGesture* o) const { return o->position(); }
Q_INVOKABLE void MsetPosition(QTapGesture* o, const QPointF& x1) { o->setPosition(x1); }
};
-class EQL_EXPORT Q216 : public Q140 { // QTextDocument
+class EQL_EXPORT Q242 : public Q142 { // QTextDocument
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTextDocument(u, x1); }
@@ -2057,7 +2057,7 @@ public:
Q_INVOKABLE bool MuseDesignMetrics(QTextDocument* o) const { return o->useDesignMetrics(); }
};
-class EQL_EXPORT Q220 : public Q140 { // QTextObject
+class EQL_EXPORT Q246 : public Q142 { // QTextObject
Q_OBJECT
public:
Q_INVOKABLE QTextDocument* Mdocument(QTextObject* o) const { return o->document(); }
@@ -2067,7 +2067,7 @@ public:
Q_INVOKABLE void MsetFormat(QTextObject* o, const QTextFormat& x1) { ((LTextObject*)o)->setFormat(x1); }
};
-class EQL_EXPORT Q223 : public Q140 { // QTimeLine
+class EQL_EXPORT Q249 : public Q142 { // QTimeLine
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1 = 1000, QObject* x2 = 0) { return new LTimeLine(u, x1, x2); }
@@ -2096,7 +2096,7 @@ public:
Q_INVOKABLE qreal MvalueForTime(QTimeLine* o, int x1) const { return o->valueForTime(x1); }
};
-class EQL_EXPORT Q224 : public Q140 { // QTimer
+class EQL_EXPORT Q250 : public Q142 { // QTimer
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTimer(u, x1); }
@@ -2110,7 +2110,7 @@ public:
Q_INVOKABLE int MtimerType(QTimer* o) const { return o->timerType(); }
};
-class EQL_EXPORT Q228 : public Q140 { // QTranslator
+class EQL_EXPORT Q254 : public Q142 { // QTranslator
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTranslator(u, x1); }
@@ -2120,7 +2120,7 @@ public:
Q_INVOKABLE QString Mtranslate(QTranslator* o, const char* x1, const char* x2, const char* x3 = 0, int x4 = -1) const { return o->translate(x1, x2, x3, x4); }
};
-class EQL_EXPORT Q232 : public Q140 { // QUndoGroup
+class EQL_EXPORT Q258 : public Q142 { // QUndoGroup
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LUndoGroup(u, x1); }
@@ -2137,7 +2137,7 @@ public:
Q_INVOKABLE QString MundoText(QUndoGroup* o) const { return o->undoText(); }
};
-class EQL_EXPORT Q233 : public Q140 { // QUndoStack
+class EQL_EXPORT Q259 : public Q142 { // QUndoStack
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LUndoStack(u, x1); }
@@ -2162,7 +2162,7 @@ public:
Q_INVOKABLE QString MundoText(QUndoStack* o) const { return o->undoText(); }
};
-class EQL_EXPORT Q236 : public Q140 { // QValidator
+class EQL_EXPORT Q262 : public Q142 { // QValidator
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LValidator(u, x1); }
@@ -2172,7 +2172,7 @@ public:
Q_INVOKABLE int Mvalidate(QValidator* o, QString& x1, int& x2) const { return o->validate(x1, x2); }
};
-class EQL_EXPORT Q237 : public Q1 { // QVariantAnimation
+class EQL_EXPORT Q263 : public Q1 { // QVariantAnimation
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LVariantAnimation(u, x1); }
@@ -2188,7 +2188,7 @@ public:
Q_INVOKABLE int Mduration(QVariantAnimation* o) const { return o->duration(); }
};
-class EQL_EXPORT Q246 : public Q140 { // QWidget
+class EQL_EXPORT Q272 : public Q142 { // QWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LWidget(u, x1, x2); }
@@ -2408,7 +2408,7 @@ public:
Q_INVOKABLE void SsetTabOrder(QWidget* x1, QWidget* x2) { QWidget::setTabOrder(x1, x2); }
};
-class EQL_EXPORT Q247 : public Q19 { // QWidgetAction
+class EQL_EXPORT Q273 : public Q19 { // QWidgetAction
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1) { return new LWidgetAction(u, x1); }
@@ -2419,7 +2419,7 @@ public:
Q_INVOKABLE QList McreatedWidgets(QWidgetAction* o) const { return ((LWidgetAction*)o)->createdWidgets(); }
};
-class EQL_EXPORT Q248 : public Q140 { // QWindow
+class EQL_EXPORT Q274 : public Q142 { // QWindow
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QScreen* x1 = 0) { return new LWindow(u, x1); }
@@ -2505,7 +2505,7 @@ public:
Q_INVOKABLE QWindow* SfromWinId(WId x1) { return QWindow::fromWinId(x1); }
};
-class EQL_EXPORT Q250 : public Q246 { // QWizardPage
+class EQL_EXPORT Q276 : public Q272 { // QWizardPage
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LWizardPage(u, x1); }
@@ -2532,7 +2532,7 @@ public:
Q_INVOKABLE QWizard* Mwizard(QWizardPage* o) const { return ((LWizardPage*)o)->wizard(); }
};
-class EQL_EXPORT Q2 : public Q246 { // QAbstractButton
+class EQL_EXPORT Q2 : public Q272 { // QAbstractButton
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LAbstractButton(u, x1); }
@@ -2559,7 +2559,7 @@ public:
Q_INVOKABLE QString Mtext(QAbstractButton* o) const { return o->text(); }
};
-class EQL_EXPORT Q11 : public Q246 { // QAbstractSlider
+class EQL_EXPORT Q11 : public Q272 { // QAbstractSlider
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LAbstractSlider(u, x1); }
@@ -2588,7 +2588,7 @@ public:
Q_INVOKABLE void MsetRepeatAction(QAbstractSlider* o, QAbstractSlider::SliderAction x1, int x2 = 500, int x3 = 50) { ((LAbstractSlider*)o)->setRepeatAction(x1, x2, x3); }
};
-class EQL_EXPORT Q13 : public Q246 { // QAbstractSpinBox
+class EQL_EXPORT Q13 : public Q272 { // QAbstractSpinBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LAbstractSpinBox(u, x1); }
@@ -2680,7 +2680,7 @@ public:
Q_INVOKABLE QIcon SwindowIcon() { return QApplication::windowIcon(); }
};
-class EQL_EXPORT Q25 : public Q115 { // QBoxLayout
+class EQL_EXPORT Q25 : public Q116 { // QBoxLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QBoxLayout::Direction x1, QWidget* x2 = 0) { return new LBoxLayout(u, x1, x2); }
@@ -2737,7 +2737,7 @@ public:
Q_INVOKABLE qlonglong Msize(QBuffer* o) const { return o->size(); }
};
-class EQL_EXPORT Q28 : public Q246 { // QCalendarWidget
+class EQL_EXPORT Q28 : public Q272 { // QCalendarWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LCalendarWidget(u, x1); }
@@ -2788,7 +2788,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QCheckBox* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q39 : public Q246 { // QComboBox
+class EQL_EXPORT Q39 : public Q272 { // QComboBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LComboBox(u, x1); }
@@ -2855,7 +2855,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QComboBox* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q41 : public Q198 { // QCommonStyle
+class EQL_EXPORT Q41 : public Q224 { // QCommonStyle
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LCommonStyle(u); }
@@ -2933,7 +2933,7 @@ public:
Q_INVOKABLE void MstepBy(QDateTimeEdit* o, int x1) { o->stepBy(x1); }
};
-class EQL_EXPORT Q47 : public Q246 { // QDesktopWidget
+class EQL_EXPORT Q47 : public Q272 { // QDesktopWidget
Q_OBJECT
public:
Q_INVOKABLE const QRect MavailableGeometry(QDesktopWidget* o, int x1 = -1) const { return o->availableGeometry(x1); }
@@ -2964,7 +2964,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QDial* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q49 : public Q246 { // QDialog
+class EQL_EXPORT Q49 : public Q272 { // QDialog
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LDialog(u, x1, x2); }
@@ -2978,7 +2978,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QDialog* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q50 : public Q246 { // QDialogButtonBox
+class EQL_EXPORT Q50 : public Q272 { // QDialogButtonBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LDialogButtonBox(u, x1); }
@@ -3002,7 +3002,7 @@ public:
Q_INVOKABLE int MstandardButtons(QDialogButtonBox* o) const { return o->standardButtons(); }
};
-class EQL_EXPORT Q52 : public Q246 { // QDockWidget
+class EQL_EXPORT Q52 : public Q272 { // QDockWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) { return new LDockWidget(u, x1, x2, x3); }
@@ -3047,7 +3047,7 @@ public:
Q_INVOKABLE int Mvalidate(QDoubleSpinBox* o, QString& x1, int& x2) const { return o->validate(x1, x2); }
};
-class EQL_EXPORT Q54 : public Q236 { // QDoubleValidator
+class EQL_EXPORT Q54 : public Q262 { // QDoubleValidator
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LDoubleValidator(u, x1); }
@@ -3151,7 +3151,7 @@ public:
Q_INVOKABLE QUrl SgetSaveFileUrl(QWidget* x1 = 0, const QString& x2 = QString(), const QUrl& x3 = QUrl(), const QString& x4 = QString(), QString* x5 = 0, QFileDialog::Options x6 = 0, const QStringList& x7 = QStringList()) { return QFileDialog::getSaveFileUrl(x1, x2, x3, x4, x5, x6, x7); }
};
-class EQL_EXPORT Q66 : public Q246 { // QFocusFrame
+class EQL_EXPORT Q66 : public Q272 { // QFocusFrame
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LFocusFrame(u, x1); }
@@ -3190,7 +3190,7 @@ public:
Q_INVOKABLE QFont SgetFont(bool* x1, QWidget* x2 = 0) { return QFontDialog::getFont(x1, x2); }
};
-class EQL_EXPORT Q69 : public Q115 { // QFormLayout
+class EQL_EXPORT Q69 : public Q116 { // QFormLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LFormLayout(u, x1); }
@@ -3240,7 +3240,7 @@ public:
Q_INVOKABLE QLayoutItem* MtakeAt(QFormLayout* o, int x1) { return o->takeAt(x1); }
};
-class EQL_EXPORT Q70 : public Q246 { // QFrame
+class EQL_EXPORT Q70 : public Q272 { // QFrame
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LFrame(u, x1, x2); }
@@ -3330,7 +3330,7 @@ public:
Q_INVOKABLE qreal MzScale(QGraphicsScale* o) const { return o->zScale(); }
};
-class EQL_EXPORT Q90 : public Q115 { // QGridLayout
+class EQL_EXPORT Q90 : public Q116 { // QGridLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LGridLayout(u, x1); }
@@ -3374,7 +3374,7 @@ public:
Q_INVOKABLE QLayoutItem* MtakeAt(QGridLayout* o, int x1) { return o->takeAt(x1); }
};
-class EQL_EXPORT Q91 : public Q246 { // QGroupBox
+class EQL_EXPORT Q91 : public Q272 { // QGroupBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LGroupBox(u, x1); }
@@ -3453,7 +3453,7 @@ public:
Q_INVOKABLE QString SgetText(QWidget* x1, const QString& x2, const QString& x3, QLineEdit::EchoMode x4 = QLineEdit::Normal, const QString& x5 = QString(), bool* x6 = 0, Qt::WindowFlags x7 = 0, Qt::InputMethodHints x8 = Qt::ImhNone) { return QInputDialog::getText(x1, x2, x3, x4, x5, x6, x7, x8); }
};
-class EQL_EXPORT Q109 : public Q236 { // QIntValidator
+class EQL_EXPORT Q109 : public Q262 { // QIntValidator
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LIntValidator(u, x1); }
@@ -3467,7 +3467,7 @@ public:
Q_INVOKABLE int Mvalidate(QIntValidator* o, QString& x1, int& x2) const { return o->validate(x1, x2); }
};
-class EQL_EXPORT Q113 : public Q70 { // QLCDNumber
+class EQL_EXPORT Q114 : public Q70 { // QLCDNumber
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LLCDNumber(u, x1); }
@@ -3486,7 +3486,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QLCDNumber* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q114 : public Q70 { // QLabel
+class EQL_EXPORT Q115 : public Q70 { // QLabel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LLabel(u, x1, x2); }
@@ -3522,7 +3522,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QLabel* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q117 : public Q246 { // QLineEdit
+class EQL_EXPORT Q118 : public Q272 { // QLineEdit
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LLineEdit(u, x1); }
@@ -3587,7 +3587,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QLineEdit* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q122 : public Q246 { // QMainWindow
+class EQL_EXPORT Q123 : public Q272 { // QMainWindow
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LMainWindow(u, x1, x2); }
@@ -3640,7 +3640,7 @@ public:
Q_INVOKABLE bool MunifiedTitleAndToolBarOnMac(QMainWindow* o) const { return o->unifiedTitleAndToolBarOnMac(); }
};
-class EQL_EXPORT Q124 : public Q246 { // QMdiSubWindow
+class EQL_EXPORT Q125 : public Q272 { // QMdiSubWindow
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LMdiSubWindow(u, x1, x2); }
@@ -3660,7 +3660,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QMdiSubWindow* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q130 : public Q246 { // QMenu
+class EQL_EXPORT Q132 : public Q272 { // QMenu
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMenu(u, x1); }
@@ -3707,7 +3707,7 @@ public:
Q_INVOKABLE QAction* Sexec(const QList& x1, const QPoint& x2, QAction* x3 = 0, QWidget* x4 = 0) { return QMenu::exec(x1, x2, x3, x4); }
};
-class EQL_EXPORT Q131 : public Q246 { // QMenuBar
+class EQL_EXPORT Q133 : public Q272 { // QMenuBar
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMenuBar(u, x1); }
@@ -3736,7 +3736,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QMenuBar* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q132 : public Q49 { // QMessageBox
+class EQL_EXPORT Q134 : public Q49 { // QMessageBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMessageBox(u, x1); }
@@ -3786,7 +3786,7 @@ public:
Q_INVOKABLE int Swarning(QWidget* x1, const QString& x2, const QString& x3, QMessageBox::StandardButtons x4 = QMessageBox::Ok, QMessageBox::StandardButton x5 = QMessageBox::NoButton) { return QMessageBox::warning(x1, x2, x3, x4, x5); }
};
-class EQL_EXPORT Q145 : public Q246 { // QOpenGLWidget
+class EQL_EXPORT Q147 : public Q272 { // QOpenGLWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LOpenGLWidget(u, x1, x2); }
@@ -3802,7 +3802,7 @@ public:
Q_INVOKABLE int MupdateBehavior(QOpenGLWidget* o) const { return o->updateBehavior(); }
};
-class EQL_EXPORT Q147 : public Q49 { // QPageSetupDialog
+class EQL_EXPORT Q149 : public Q49 { // QPageSetupDialog
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QPrinter* x1, QWidget* x2 = 0) { return new LPageSetupDialog(u, x1, x2); }
@@ -3814,14 +3814,14 @@ public:
Q_INVOKABLE void MsetVisible(QPageSetupDialog* o, bool x1) { o->setVisible(x1); }
};
-class EQL_EXPORT Q148 : public Q248 { // QPaintDeviceWindow
+class EQL_EXPORT Q150 : public Q274 { // QPaintDeviceWindow
Q_OBJECT
public:
Q_INVOKABLE void Mupdate(QPaintDeviceWindow* o, const QRect& x1) { o->update(x1); }
Q_INVOKABLE void Mupdate(QPaintDeviceWindow* o, const QRegion& x1) { o->update(x1); }
};
-class EQL_EXPORT Q158 : public Q49 { // QPrintPreviewDialog
+class EQL_EXPORT Q160 : public Q49 { // QPrintPreviewDialog
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QPrinter* x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) { return new LPrintPreviewDialog(u, x1, x2, x3); }
@@ -3832,7 +3832,7 @@ public:
Q_INVOKABLE void MsetVisible(QPrintPreviewDialog* o, bool x1) { o->setVisible(x1); }
};
-class EQL_EXPORT Q159 : public Q246 { // QPrintPreviewWidget
+class EQL_EXPORT Q161 : public Q272 { // QPrintPreviewWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QPrinter* x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) { return new LPrintPreviewWidget(u, x1, x2, x3); }
@@ -3846,7 +3846,7 @@ public:
Q_INVOKABLE void MsetVisible(QPrintPreviewWidget* o, bool x1) { o->setVisible(x1); }
};
-class EQL_EXPORT Q161 : public Q246 { // QProgressBar
+class EQL_EXPORT Q163 : public Q272 { // QProgressBar
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LProgressBar(u, x1); }
@@ -3871,7 +3871,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QProgressBar* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q162 : public Q49 { // QProgressDialog
+class EQL_EXPORT Q164 : public Q49 { // QProgressDialog
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LProgressDialog(u, x1, x2); }
@@ -3893,7 +3893,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QProgressDialog* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q163 : public Q237 { // QPropertyAnimation
+class EQL_EXPORT Q165 : public Q263 { // QPropertyAnimation
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LPropertyAnimation(u, x1); }
@@ -3904,7 +3904,7 @@ public:
Q_INVOKABLE QObject* MtargetObject(QPropertyAnimation* o) const { return o->targetObject(); }
};
-class EQL_EXPORT Q164 : public Q41 { // QProxyStyle
+class EQL_EXPORT Q166 : public Q41 { // QProxyStyle
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QStyle* x1 = 0) { return new LProxyStyle(u, x1); }
@@ -3936,7 +3936,7 @@ public:
Q_INVOKABLE void Munpolish(QProxyStyle* o, QApplication* x1) { o->unpolish(x1); }
};
-class EQL_EXPORT Q165 : public Q2 { // QPushButton
+class EQL_EXPORT Q167 : public Q2 { // QPushButton
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LPushButton(u, x1); }
@@ -3955,7 +3955,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QPushButton* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q166 : public Q2 { // QRadioButton
+class EQL_EXPORT Q187 : public Q2 { // QRadioButton
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LRadioButton(u, x1); }
@@ -3965,7 +3965,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QRadioButton* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q168 : public Q236 { // QRegExpValidator
+class EQL_EXPORT Q189 : public Q262 { // QRegExpValidator
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LRegExpValidator(u, x1); }
@@ -3975,7 +3975,7 @@ public:
Q_INVOKABLE int Mvalidate(QRegExpValidator* o, QString& x1, int& x2) const { return o->validate(x1, x2); }
};
-class EQL_EXPORT Q169 : public Q246 { // QRubberBand
+class EQL_EXPORT Q190 : public Q272 { // QRubberBand
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QRubberBand::Shape x1, QWidget* x2 = 0) { return new LRubberBand(u, x1, x2); }
@@ -3989,7 +3989,7 @@ public:
Q_INVOKABLE void MinitStyleOption(QRubberBand* o, QStyleOptionRubberBand* x1) const { ((LRubberBand*)o)->initStyleOption(x1); }
};
-class EQL_EXPORT Q172 : public Q11 { // QScrollBar
+class EQL_EXPORT Q198 : public Q11 { // QScrollBar
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LScrollBar(u, x1); }
@@ -3999,7 +3999,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QScrollBar* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q179 : public Q246 { // QSizeGrip
+class EQL_EXPORT Q205 : public Q272 { // QSizeGrip
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LSizeGrip(u, x1); }
@@ -4007,7 +4007,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QSizeGrip* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q180 : public Q11 { // QSlider
+class EQL_EXPORT Q206 : public Q11 { // QSlider
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LSlider(u, x1); }
@@ -4022,7 +4022,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QSlider* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q182 : public Q13 { // QSpinBox
+class EQL_EXPORT Q208 : public Q13 { // QSpinBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LSpinBox(u, x1); }
@@ -4043,7 +4043,7 @@ public:
Q_INVOKABLE int Mvalue(QSpinBox* o) const { return o->value(); }
};
-class EQL_EXPORT Q183 : public Q246 { // QSplashScreen
+class EQL_EXPORT Q209 : public Q272 { // QSplashScreen
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QPixmap& x1 = QPixmap(), Qt::WindowFlags x2 = 0) { return new LSplashScreen(u, x1, x2); }
@@ -4055,7 +4055,7 @@ public:
Q_INVOKABLE void MsetPixmap(QSplashScreen* o, const QPixmap& x1) { o->setPixmap(x1); }
};
-class EQL_EXPORT Q184 : public Q70 { // QSplitter
+class EQL_EXPORT Q210 : public Q70 { // QSplitter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LSplitter(u, x1); }
@@ -4087,7 +4087,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QSplitter* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q185 : public Q246 { // QSplitterHandle
+class EQL_EXPORT Q211 : public Q272 { // QSplitterHandle
Q_OBJECT
public:
Q_INVOKABLE bool MopaqueResize(QSplitterHandle* o) const { return o->opaqueResize(); }
@@ -4099,7 +4099,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QSplitterHandle* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q192 : public Q70 { // QStackedWidget
+class EQL_EXPORT Q218 : public Q70 { // QStackedWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LStackedWidget(u, x1); }
@@ -4113,7 +4113,7 @@ public:
Q_INVOKABLE QWidget* Mwidget(QStackedWidget* o, int x1) const { return o->widget(x1); }
};
-class EQL_EXPORT Q196 : public Q246 { // QStatusBar
+class EQL_EXPORT Q222 : public Q272 { // QStatusBar
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LStatusBar(u, x1); }
@@ -4129,7 +4129,7 @@ public:
Q_INVOKABLE void Mreformat(QStatusBar* o) { ((LStatusBar*)o)->reformat(); }
};
-class EQL_EXPORT Q206 : public Q246 { // QTabBar
+class EQL_EXPORT Q232 : public Q272 { // QTabBar
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTabBar(u, x1); }
@@ -4188,7 +4188,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QTabBar* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q207 : public Q246 { // QTabWidget
+class EQL_EXPORT Q233 : public Q272 { // QTabWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTabWidget(u, x1); }
@@ -4242,13 +4242,13 @@ public:
Q_INVOKABLE QSize MsizeHint(QTabWidget* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q214 : public Q220 { // QTextBlockGroup
+class EQL_EXPORT Q240 : public Q246 { // QTextBlockGroup
Q_OBJECT
public:
Q_INVOKABLE QList MblockList(QTextBlockGroup* o) const { return ((LTextBlockGroup*)o)->blockList(); }
};
-class EQL_EXPORT Q218 : public Q220 { // QTextFrame
+class EQL_EXPORT Q244 : public Q246 { // QTextFrame
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QTextDocument* x1) { return new LTextFrame(u, x1); }
@@ -4262,7 +4262,7 @@ public:
Q_INVOKABLE void MsetFrameFormat(QTextFrame* o, const QTextFrameFormat& x1) { o->setFrameFormat(x1); }
};
-class EQL_EXPORT Q219 : public Q214 { // QTextList
+class EQL_EXPORT Q245 : public Q240 { // QTextList
Q_OBJECT
public:
Q_INVOKABLE void Madd(QTextList* o, const QTextBlock& x1) { o->add(x1); }
@@ -4276,7 +4276,7 @@ public:
Q_INVOKABLE void MsetFormat(QTextList* o, const QTextListFormat& x1) { o->setFormat(x1); }
};
-class EQL_EXPORT Q221 : public Q218 { // QTextTable
+class EQL_EXPORT Q247 : public Q244 { // QTextTable
Q_OBJECT
public:
Q_INVOKABLE void MappendColumns(QTextTable* o, int x1) { o->appendColumns(x1); }
@@ -4300,14 +4300,14 @@ public:
Q_INVOKABLE void MsplitCell(QTextTable* o, int x1, int x2, int x3, int x4) { o->splitCell(x1, x2, x3, x4); }
};
-class EQL_EXPORT Q222 : public Q46 { // QTimeEdit
+class EQL_EXPORT Q248 : public Q46 { // QTimeEdit
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTimeEdit(u, x1); }
Q_INVOKABLE void* C(uint u, const QTime& x1, QWidget* x2 = 0) { return new LTimeEdit(u, x1, x2); }
};
-class EQL_EXPORT Q225 : public Q246 { // QToolBar
+class EQL_EXPORT Q251 : public Q272 { // QToolBar
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1, QWidget* x2 = 0) { return new LToolBar(u, x1, x2); }
@@ -4339,7 +4339,7 @@ public:
Q_INVOKABLE QWidget* MwidgetForAction(QToolBar* o, QAction* x1) const { return o->widgetForAction(x1); }
};
-class EQL_EXPORT Q226 : public Q70 { // QToolBox
+class EQL_EXPORT Q252 : public Q70 { // QToolBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LToolBox(u, x1, x2); }
@@ -4363,7 +4363,7 @@ public:
Q_INVOKABLE QWidget* Mwidget(QToolBox* o, int x1) const { return o->widget(x1); }
};
-class EQL_EXPORT Q227 : public Q2 { // QToolButton
+class EQL_EXPORT Q253 : public Q2 { // QToolButton
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LToolButton(u, x1); }
@@ -4381,14 +4381,14 @@ public:
Q_INVOKABLE QSize MsizeHint(QToolButton* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q235 : public Q25 { // QVBoxLayout
+class EQL_EXPORT Q261 : public Q25 { // QVBoxLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVBoxLayout(u); }
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LVBoxLayout(u, x1); }
};
-class EQL_EXPORT Q249 : public Q49 { // QWizard
+class EQL_EXPORT Q275 : public Q49 { // QWizard
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LWizard(u, x1, x2); }
@@ -4498,7 +4498,7 @@ public:
Q_INVOKABLE QColor SstandardColor(int x1) { return QColorDialog::standardColor(x1); }
};
-class EQL_EXPORT Q40 : public Q165 { // QCommandLinkButton
+class EQL_EXPORT Q40 : public Q167 { // QCommandLinkButton
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LCommandLinkButton(u, x1); }
@@ -4633,7 +4633,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QGraphicsView* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q123 : public Q10 { // QMdiArea
+class EQL_EXPORT Q124 : public Q10 { // QMdiArea
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMdiArea(u, x1); }
@@ -4664,7 +4664,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QMdiArea* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q146 : public Q148 { // QOpenGLWindow
+class EQL_EXPORT Q148 : public Q150 { // QOpenGLWindow
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QOpenGLWindow::UpdateBehavior x1 = QOpenGLWindow::NoPartialUpdate, QWindow* x2 = 0) { return new LOpenGLWindow(u, x1, x2); }
@@ -4679,7 +4679,7 @@ public:
Q_INVOKABLE int MupdateBehavior(QOpenGLWindow* o) const { return o->updateBehavior(); }
};
-class EQL_EXPORT Q155 : public Q10 { // QPlainTextEdit
+class EQL_EXPORT Q157 : public Q10 { // QPlainTextEdit
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LPlainTextEdit(u, x1); }
@@ -4741,7 +4741,7 @@ public:
Q_INVOKABLE QVariant MinputMethodQuery(QPlainTextEdit* o, Qt::InputMethodQuery x1) const { return o->inputMethodQuery(x1); }
};
-class EQL_EXPORT Q157 : public Q8 { // QPrintDialog
+class EQL_EXPORT Q159 : public Q8 { // QPrintDialog
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QPrinter* x1, QWidget* x2 = 0) { return new LPrintDialog(u, x1, x2); }
@@ -4757,7 +4757,7 @@ public:
Q_INVOKABLE void MsetVisible(QPrintDialog* o, bool x1) { o->setVisible(x1); }
};
-class EQL_EXPORT Q171 : public Q10 { // QScrollArea
+class EQL_EXPORT Q197 : public Q10 { // QScrollArea
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LScrollArea(u, x1); }
@@ -4774,7 +4774,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QScrollArea* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q217 : public Q10 { // QTextEdit
+class EQL_EXPORT Q243 : public Q10 { // QTextEdit
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTextEdit(u, x1); }
@@ -5001,7 +5001,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QHeaderView* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q118 : public Q5 { // QListView
+class EQL_EXPORT Q119 : public Q5 { // QListView
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LListView(u, x1); }
@@ -5041,7 +5041,7 @@ public:
Q_INVOKABLE QRect MvisualRect(QListView* o, const QModelIndex& x1) const { return o->visualRect(x1); }
};
-class EQL_EXPORT Q119 : public Q118 { // QListWidget
+class EQL_EXPORT Q120 : public Q119 { // QListWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LListWidget(u, x1); }
@@ -5081,7 +5081,7 @@ public:
Q_INVOKABLE void MdropEvent(QListWidget* o, QDropEvent* x1) { o->dropEvent(x1); }
};
-class EQL_EXPORT Q208 : public Q5 { // QTableView
+class EQL_EXPORT Q234 : public Q5 { // QTableView
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTableView(u, x1); }
@@ -5121,7 +5121,7 @@ public:
Q_INVOKABLE void MsetSelectionModel(QTableView* o, QItemSelectionModel* x1) { o->setSelectionModel(x1); }
};
-class EQL_EXPORT Q209 : public Q208 { // QTableWidget
+class EQL_EXPORT Q235 : public Q234 { // QTableWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTableWidget(u, x1); }
@@ -5173,7 +5173,7 @@ public:
Q_INVOKABLE QList Mitems(QTableWidget* o, const QMimeData* x1) const { return ((LTableWidget*)o)->items(x1); }
};
-class EQL_EXPORT Q215 : public Q217 { // QTextBrowser
+class EQL_EXPORT Q241 : public Q243 { // QTextBrowser
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTextBrowser(u, x1); }
@@ -5194,7 +5194,7 @@ public:
Q_INVOKABLE QVariant MloadResource(QTextBrowser* o, int x1, const QUrl& x2) { return o->loadResource(x1, x2); }
};
-class EQL_EXPORT Q229 : public Q5 { // QTreeView
+class EQL_EXPORT Q255 : public Q5 { // QTreeView
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTreeView(u, x1); }
@@ -5255,7 +5255,7 @@ public:
Q_INVOKABLE QRect MvisualRect(QTreeView* o, const QModelIndex& x1) const { return o->visualRect(x1); }
};
-class EQL_EXPORT Q230 : public Q229 { // QTreeWidget
+class EQL_EXPORT Q256 : public Q255 { // QTreeWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTreeWidget(u, x1); }
@@ -5301,7 +5301,7 @@ public:
Q_INVOKABLE void MsetSelectionModel(QTreeWidget* o, QItemSelectionModel* x1) { o->setSelectionModel(x1); }
};
-class EQL_EXPORT Q234 : public Q118 { // QUndoView
+class EQL_EXPORT Q260 : public Q119 { // QUndoView
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LUndoView(u, x1); }
diff --git a/src/gen/help/_q_methods.h b/src/gen/help/_q_methods.h
index b194efc..6c6d741 100644
--- a/src/gen/help/_q_methods.h
+++ b/src/gen/help/_q_methods.h
@@ -24,7 +24,7 @@ public:
Q_INVOKABLE int MrowCount(QHelpContentModel* o, const QModelIndex& x1 = QModelIndex()) const { return o->rowCount(x1); }
};
-class Q97 : public Q140 { // QHelpEngineCore
+class Q97 : public Q142 { // QHelpEngineCore
Q_OBJECT
public:
Q_INVOKABLE bool MaddCustomFilter(QHelpEngineCore* o, const QString& x1, const QStringList& x2) { return o->addCustomFilter(x1, x2); }
@@ -56,7 +56,7 @@ public:
Q_INVOKABLE QString SnamespaceName(const QString& x1) { return QHelpEngineCore::namespaceName(x1); }
};
-class Q100 : public Q140 { // QHelpSearchEngine
+class Q100 : public Q142 { // QHelpSearchEngine
Q_OBJECT
public:
Q_INVOKABLE int MhitCount(QHelpSearchEngine* o) const { return o->hitCount(); }
@@ -65,7 +65,7 @@ public:
Q_INVOKABLE QHelpSearchResultWidget* MresultWidget(QHelpSearchEngine* o) { return o->resultWidget(); }
};
-class Q98 : public Q197 { // QHelpIndexModel
+class Q98 : public Q223 { // QHelpIndexModel
Q_OBJECT
public:
Q_INVOKABLE void McreateIndex(QHelpIndexModel* o, const QString& x1) { o->createIndex(x1); }
@@ -73,7 +73,7 @@ public:
Q_INVOKABLE bool MisCreatingIndex(QHelpIndexModel* o) const { return o->isCreatingIndex(); }
};
-class Q101 : public Q246 { // QHelpSearchQueryWidget
+class Q101 : public Q272 { // QHelpSearchQueryWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LHelpSearchQueryWidget(u, x1); }
@@ -84,19 +84,19 @@ public:
Q_INVOKABLE void MsetQuery(QHelpSearchQueryWidget* o, const QList& x1) { o->setQuery(x1); }
};
-class Q102 : public Q246 { // QHelpSearchResultWidget
+class Q102 : public Q272 { // QHelpSearchResultWidget
Q_OBJECT
public:
Q_INVOKABLE QUrl MlinkAt(QHelpSearchResultWidget* o, const QPoint& x1) { return o->linkAt(x1); }
};
-class Q96 : public Q229 { // QHelpContentWidget
+class Q96 : public Q255 { // QHelpContentWidget
Q_OBJECT
public:
Q_INVOKABLE QModelIndex MindexOf(QHelpContentWidget* o, const QUrl& x1) { return o->indexOf(x1); }
};
-class Q99 : public Q118 { // QHelpIndexWidget
+class Q99 : public Q119 { // QHelpIndexWidget
Q_OBJECT
public:
};
diff --git a/src/gen/multimedia/_ini.cpp b/src/gen/multimedia/_ini.cpp
index 361c176..ed6ec5d 100644
--- a/src/gen/multimedia/_ini.cpp
+++ b/src/gen/multimedia/_ini.cpp
@@ -12,13 +12,14 @@ NumList LCamera::overrideIds = NumList() << 178;
NumList LCameraImageCapture::overrideIds = NumList() << 161 << 183;
NumList LCameraViewfinder::overrideIds = NumList();
NumList LGraphicsVideoItem::overrideIds = NumList() << 260 << 231;
+NumList LMediaControl::overrideIds = NumList();
NumList LMediaObject::overrideIds = NumList() << 178 << 179 << 180 << 181 << 182;
NumList LMediaPlayer::overrideIds = NumList() << 178;
NumList LMediaPlaylist::overrideIds = NumList() << 161;
NumList LMediaRecorder::overrideIds = NumList() << 161;
NumList LRadioTuner::overrideIds = NumList() << 178;
NumList LVideoWidget::overrideIds = NumList() << 25 << 35 << 39 << 20 << 40 << 41;
-NumList LVideoWidgetControl::overrideIds = NumList() << 384 << 385 << 386 << 387 << 388 << 389 << 390 << 391 << 392 << 393 << 394 << 395 << 396;
+NumList LVideoWidgetControl::overrideIds = NumList() << 419 << 420 << 421 << 422 << 423 << 424 << 425 << 426 << 427 << 428 << 429 << 430 << 431;
NumList LAudioDeviceInfo::overrideIds = NumList();
NumList LAudioEncoderSettings::overrideIds = NumList();
NumList LAudioFormat::overrideIds = NumList();
@@ -44,25 +45,26 @@ void ini() {
LObjects::Q[32] = new Q33;
LObjects::Q[33] = new Q34;
LObjects::Q[85] = new Q86;
- LObjects::Q[124] = new Q125;
LObjects::Q[125] = new Q126;
LObjects::Q[126] = new Q127;
LObjects::Q[127] = new Q128;
LObjects::Q[128] = new Q129;
- LObjects::Q[166] = new Q167;
- LObjects::Q[237] = new Q238;
- LObjects::Q[238] = new Q239;
+ LObjects::Q[129] = new Q130;
+ LObjects::Q[130] = new Q131;
+ LObjects::Q[187] = new Q188;
+ LObjects::Q[263] = new Q264;
+ LObjects::Q[264] = new Q265;
LObjects::N[17] = new N18;
LObjects::N[18] = new N19;
LObjects::N[19] = new N20;
LObjects::N[26] = new N27;
LObjects::N[27] = new N28;
LObjects::N[96] = new N97;
- LObjects::N[114] = new N115;
- LObjects::N[115] = new N116;
- LObjects::N[230] = new N231;
- LObjects::N[231] = new N232;
- LObjects::N[232] = new N233; }
+ LObjects::N[116] = new N117;
+ LObjects::N[117] = new N118;
+ LObjects::N[260] = new N261;
+ LObjects::N[261] = new N262;
+ LObjects::N[262] = new N263; }
const QMetaObject* staticMetaObject(int n) {
const QMetaObject* m = 0;
@@ -77,14 +79,15 @@ const QMetaObject* staticMetaObject(int n) {
case 33: m = &QCameraImageProcessing::staticMetaObject; break;
case 34: m = &QCameraViewfinder::staticMetaObject; break;
case 86: m = &QGraphicsVideoItem::staticMetaObject; break;
- case 125: m = &QMediaObject::staticMetaObject; break;
- case 126: m = &QMediaPlayer::staticMetaObject; break;
- case 127: m = &QMediaPlaylist::staticMetaObject; break;
- case 128: m = &QMediaRecorder::staticMetaObject; break;
- case 129: m = &QMediaService::staticMetaObject; break;
- case 167: m = &QRadioTuner::staticMetaObject; break;
- case 238: m = &QVideoWidget::staticMetaObject; break;
- case 239: m = &QVideoWidgetControl::staticMetaObject; break; }
+ case 126: m = &QMediaControl::staticMetaObject; break;
+ case 127: m = &QMediaObject::staticMetaObject; break;
+ case 128: m = &QMediaPlayer::staticMetaObject; break;
+ case 129: m = &QMediaPlaylist::staticMetaObject; break;
+ case 130: m = &QMediaRecorder::staticMetaObject; break;
+ case 131: m = &QMediaService::staticMetaObject; break;
+ case 188: m = &QRadioTuner::staticMetaObject; break;
+ case 264: m = &QVideoWidget::staticMetaObject; break;
+ case 265: m = &QVideoWidgetControl::staticMetaObject; break; }
return m; }
void deleteNObject(int n, void* p, int gc) {
@@ -95,11 +98,11 @@ void deleteNObject(int n, void* p, int gc) {
case 27: if(gc) delete (QCameraInfo*)p; else delete (LCameraInfo*)p; break;
case 28: if(gc) delete (QCameraViewfinderSettings*)p; else delete (LCameraViewfinderSettings*)p; break;
case 97: if(gc) delete (QImageEncoderSettings*)p; else delete (LImageEncoderSettings*)p; break;
- case 115: if(gc) delete (QMediaContent*)p; else delete (LMediaContent*)p; break;
- case 116: if(gc) delete (QMediaResource*)p; else delete (LMediaResource*)p; break;
- case 231: if(gc) delete (QVideoEncoderSettings*)p; else delete (LVideoEncoderSettings*)p; break;
- case 232: if(gc) delete (QVideoFrame*)p; else delete (LVideoFrame*)p; break;
- case 233: if(gc) delete (QVideoSurfaceFormat*)p; else delete (LVideoSurfaceFormat*)p; break; }}
+ case 117: if(gc) delete (QMediaContent*)p; else delete (LMediaContent*)p; break;
+ case 118: if(gc) delete (QMediaResource*)p; else delete (LMediaResource*)p; break;
+ case 261: if(gc) delete (QVideoEncoderSettings*)p; else delete (LVideoEncoderSettings*)p; break;
+ case 262: if(gc) delete (QVideoFrame*)p; else delete (LVideoFrame*)p; break;
+ case 263: if(gc) delete (QVideoSurfaceFormat*)p; else delete (LVideoSurfaceFormat*)p; break; }}
NumList* overrideFunctions(const QByteArray& name) {
NumList* ids = 0;
@@ -112,13 +115,14 @@ NumList* overrideFunctions(const QByteArray& name) {
case 32: ids = &LCameraImageCapture::overrideIds; break;
case 34: ids = &LCameraViewfinder::overrideIds; break;
case 86: ids = &LGraphicsVideoItem::overrideIds; break;
- case 125: ids = &LMediaObject::overrideIds; break;
- case 126: ids = &LMediaPlayer::overrideIds; break;
- case 127: ids = &LMediaPlaylist::overrideIds; break;
- case 128: ids = &LMediaRecorder::overrideIds; break;
- case 167: ids = &LRadioTuner::overrideIds; break;
- case 238: ids = &LVideoWidget::overrideIds; break;
- case 239: ids = &LVideoWidgetControl::overrideIds; break; }}
+ case 126: ids = &LMediaControl::overrideIds; break;
+ case 127: ids = &LMediaObject::overrideIds; break;
+ case 128: ids = &LMediaPlayer::overrideIds; break;
+ case 129: ids = &LMediaPlaylist::overrideIds; break;
+ case 130: ids = &LMediaRecorder::overrideIds; break;
+ case 188: ids = &LRadioTuner::overrideIds; break;
+ case 264: ids = &LVideoWidget::overrideIds; break;
+ case 265: ids = &LVideoWidgetControl::overrideIds; break; }}
else {
n = LObjects::n_names.value(name);
switch(n) {
@@ -128,11 +132,11 @@ NumList* overrideFunctions(const QByteArray& name) {
case 27: ids = &LCameraInfo::overrideIds; break;
case 28: ids = &LCameraViewfinderSettings::overrideIds; break;
case 97: ids = &LImageEncoderSettings::overrideIds; break;
- case 115: ids = &LMediaContent::overrideIds; break;
- case 116: ids = &LMediaResource::overrideIds; break;
- case 231: ids = &LVideoEncoderSettings::overrideIds; break;
- case 232: ids = &LVideoFrame::overrideIds; break;
- case 233: ids = &LVideoSurfaceFormat::overrideIds; break; }}
+ case 117: ids = &LMediaContent::overrideIds; break;
+ case 118: ids = &LMediaResource::overrideIds; break;
+ case 261: ids = &LVideoEncoderSettings::overrideIds; break;
+ case 262: ids = &LVideoFrame::overrideIds; break;
+ case 263: ids = &LVideoSurfaceFormat::overrideIds; break; }}
return ids; }
QT_END_NAMESPACE
diff --git a/src/gen/multimedia/_n_classes.h b/src/gen/multimedia/_n_classes.h
index d14a35a..77304b3 100644
--- a/src/gen/multimedia/_n_classes.h
+++ b/src/gen/multimedia/_n_classes.h
@@ -73,7 +73,7 @@ public:
};
class LMediaContent : public QMediaContent {
- friend class N115;
+ friend class N117;
public:
LMediaContent(uint u) : unique(u) {}
LMediaContent(uint u, const QUrl& x1) : QMediaContent(x1), unique(u) {}
@@ -88,7 +88,7 @@ public:
};
class LMediaResource : public QMediaResource {
- friend class N116;
+ friend class N118;
public:
LMediaResource(uint u) : unique(u) {}
LMediaResource(uint u, const QUrl& x1, const QString& x2 = QString()) : QMediaResource(x1, x2), unique(u) {}
@@ -100,7 +100,7 @@ public:
};
class LVideoEncoderSettings : public QVideoEncoderSettings {
- friend class N231;
+ friend class N261;
public:
LVideoEncoderSettings(uint u) : unique(u) {}
LVideoEncoderSettings(uint u, const QVideoEncoderSettings& x1) : QVideoEncoderSettings(x1), unique(u) {}
@@ -110,7 +110,7 @@ public:
};
class LVideoFrame : public QVideoFrame {
- friend class N232;
+ friend class N262;
public:
LVideoFrame(uint u) : unique(u) {}
LVideoFrame(uint u, QAbstractVideoBuffer* x1, const QSize& x2, PixelFormat x3) : QVideoFrame(x1, x2, x3), unique(u) {}
@@ -123,7 +123,7 @@ public:
};
class LVideoSurfaceFormat : public QVideoSurfaceFormat {
- friend class N233;
+ friend class N263;
public:
LVideoSurfaceFormat(uint u) : unique(u) {}
LVideoSurfaceFormat(uint u, const QVideoSurfaceFormat& x1) : QVideoSurfaceFormat(x1), unique(u) {}
diff --git a/src/gen/multimedia/_n_methods.h b/src/gen/multimedia/_n_methods.h
index bd55dd8..e9c9050 100644
--- a/src/gen/multimedia/_n_methods.h
+++ b/src/gen/multimedia/_n_methods.h
@@ -134,7 +134,7 @@ public:
Q_INVOKABLE void MsetResolution(QImageEncoderSettings* o, int x1, int x2) { o->setResolution(x1, x2); }
};
-class N115 : public QObject { // QMediaContent
+class N117 : public QObject { // QMediaContent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMediaContent(u); }
@@ -152,7 +152,7 @@ public:
Q_INVOKABLE QMediaResourceList Mresources(QMediaContent* o) const { return o->resources(); }
};
-class N116 : public QObject { // QMediaResource
+class N118 : public QObject { // QMediaResource
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMediaResource(u); }
@@ -184,7 +184,7 @@ public:
Q_INVOKABLE QString MvideoCodec(QMediaResource* o) const { return o->videoCodec(); }
};
-class N231 : public QObject { // QVideoEncoderSettings
+class N261 : public QObject { // QVideoEncoderSettings
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVideoEncoderSettings(u); }
@@ -207,7 +207,7 @@ public:
Q_INVOKABLE void MsetResolution(QVideoEncoderSettings* o, int x1, int x2) { o->setResolution(x1, x2); }
};
-class N232 : public QObject { // QVideoFrame
+class N262 : public QObject { // QVideoFrame
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVideoFrame(u); }
@@ -243,7 +243,7 @@ public:
Q_INVOKABLE int SpixelFormatFromImageFormat(QImage::Format x1) { return QVideoFrame::pixelFormatFromImageFormat(x1); }
};
-class N233 : public QObject { // QVideoSurfaceFormat
+class N263 : public QObject { // QVideoSurfaceFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVideoSurfaceFormat(u); }
diff --git a/src/gen/multimedia/_q_classes.h b/src/gen/multimedia/_q_classes.h
index 3d820cb..fb353bb 100644
--- a/src/gen/multimedia/_q_classes.h
+++ b/src/gen/multimedia/_q_classes.h
@@ -149,9 +149,23 @@ public:
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsVideoItem::timerEvent(x1); }}
};
+class LMediaControl : public QMediaControl {
+ Q_OBJECT
+ friend class Q126;
+public:
+
+ static NumList overrideIds;
+ uint unique;
+
+ bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QMediaControl::eventFilter(x1, x2); } return ret; }
+ void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QMediaControl::childEvent(x1); }}
+ void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QMediaControl::customEvent(x1); }}
+ void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QMediaControl::timerEvent(x1); }}
+};
+
class LMediaObject : public QMediaObject {
Q_OBJECT
- friend class Q125;
+ friend class Q127;
public:
static NumList overrideIds;
@@ -170,7 +184,7 @@ public:
class LMediaPlayer : public QMediaPlayer {
Q_OBJECT
- friend class Q126;
+ friend class Q128;
public:
LMediaPlayer(uint u, QObject* x1 = 0, Flags x2 = 0) : QMediaPlayer(x1, x2), unique(u) {}
@@ -190,7 +204,7 @@ public:
class LMediaPlaylist : public QMediaPlaylist {
Q_OBJECT
- friend class Q127;
+ friend class Q129;
public:
LMediaPlaylist(uint u, QObject* x1 = 0) : QMediaPlaylist(x1), unique(u) {}
@@ -206,7 +220,7 @@ public:
class LMediaRecorder : public QMediaRecorder {
Q_OBJECT
- friend class Q128;
+ friend class Q130;
public:
LMediaRecorder(uint u, QMediaObject* x1, QObject* x2 = 0) : QMediaRecorder(x1, x2), unique(u) {}
@@ -222,7 +236,7 @@ public:
class LRadioTuner : public QRadioTuner {
Q_OBJECT
- friend class Q167;
+ friend class Q188;
public:
LRadioTuner(uint u, QObject* x1 = 0) : QRadioTuner(x1), unique(u) {}
@@ -242,7 +256,7 @@ public:
class LVideoWidget : public QVideoWidget {
Q_OBJECT
- friend class Q238;
+ friend class Q264;
public:
LVideoWidget(uint u, QWidget* x1 = 0) : QVideoWidget(x1), unique(u) {}
@@ -291,25 +305,29 @@ public:
class LVideoWidgetControl : public QVideoWidgetControl {
Q_OBJECT
- friend class Q239;
+ friend class Q265;
public:
static NumList overrideIds;
uint unique;
- Qt::AspectRatioMode aspectRatioMode() const { quint64 id = LObjects::override_id(unique, 384); void* fun = LObjects::overrideFun(id); Qt::AspectRatioMode ret = (Qt::AspectRatioMode)0; if(fun && (LObjects::calling != id)) { ret = (Qt::AspectRatioMode)callOverrideFun(fun, 384, 0, id).toInt(); } return ret; }
- int brightness() const { quint64 id = LObjects::override_id(unique, 385); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 385, 0, id).toInt(); } return ret; }
- int contrast() const { quint64 id = LObjects::override_id(unique, 386); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 386, 0, id).toInt(); } return ret; }
- int hue() const { quint64 id = LObjects::override_id(unique, 387); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 387, 0, id).toInt(); } return ret; }
- bool isFullScreen() const { quint64 id = LObjects::override_id(unique, 388); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 388, 0, id).toBool(); } return ret; }
- int saturation() const { quint64 id = LObjects::override_id(unique, 389); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 389, 0, id).toInt(); } return ret; }
- void setAspectRatioMode(Qt::AspectRatioMode x1) { quint64 id = LObjects::override_id(unique, 390); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 390, args, id); }}
- void setBrightness(int x1) { quint64 id = LObjects::override_id(unique, 391); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 391, args, id); }}
- void setContrast(int x1) { quint64 id = LObjects::override_id(unique, 392); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 392, args, id); }}
- void setFullScreen(bool x1) { quint64 id = LObjects::override_id(unique, 393); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 393, args, id); }}
- void setHue(int x1) { quint64 id = LObjects::override_id(unique, 394); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 394, args, id); }}
- void setSaturation(int x1) { quint64 id = LObjects::override_id(unique, 395); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 395, args, id); }}
- QWidget* videoWidget() { quint64 id = LObjects::override_id(unique, 396); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 396, 0, id).value(); } return ret; }
+ Qt::AspectRatioMode aspectRatioMode() const { quint64 id = LObjects::override_id(unique, 419); void* fun = LObjects::overrideFun(id); Qt::AspectRatioMode ret = (Qt::AspectRatioMode)0; if(fun && (LObjects::calling != id)) { ret = (Qt::AspectRatioMode)callOverrideFun(fun, 419, 0, id).toInt(); } return ret; }
+ int brightness() const { quint64 id = LObjects::override_id(unique, 420); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 420, 0, id).toInt(); } return ret; }
+ int contrast() const { quint64 id = LObjects::override_id(unique, 421); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 421, 0, id).toInt(); } return ret; }
+ int hue() const { quint64 id = LObjects::override_id(unique, 422); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 422, 0, id).toInt(); } return ret; }
+ bool isFullScreen() const { quint64 id = LObjects::override_id(unique, 423); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 423, 0, id).toBool(); } return ret; }
+ int saturation() const { quint64 id = LObjects::override_id(unique, 424); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 424, 0, id).toInt(); } return ret; }
+ void setAspectRatioMode(Qt::AspectRatioMode x1) { quint64 id = LObjects::override_id(unique, 425); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 425, args, id); }}
+ void setBrightness(int x1) { quint64 id = LObjects::override_id(unique, 426); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 426, args, id); }}
+ void setContrast(int x1) { quint64 id = LObjects::override_id(unique, 427); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 427, args, id); }}
+ void setFullScreen(bool x1) { quint64 id = LObjects::override_id(unique, 428); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 428, args, id); }}
+ void setHue(int x1) { quint64 id = LObjects::override_id(unique, 429); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 429, args, id); }}
+ void setSaturation(int x1) { quint64 id = LObjects::override_id(unique, 430); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 430, args, id); }}
+ QWidget* videoWidget() { quint64 id = LObjects::override_id(unique, 431); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 431, 0, id).value(); } return ret; }
+ bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QVideoWidgetControl::eventFilter(x1, x2); } return ret; }
+ void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidgetControl::childEvent(x1); }}
+ void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidgetControl::customEvent(x1); }}
+ void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidgetControl::timerEvent(x1); }}
};
QT_END_NAMESPACE
diff --git a/src/gen/multimedia/_q_methods.h b/src/gen/multimedia/_q_methods.h
index d3f05d4..6bd0c7c 100644
--- a/src/gen/multimedia/_q_methods.h
+++ b/src/gen/multimedia/_q_methods.h
@@ -11,25 +11,7 @@
QT_BEGIN_NAMESPACE
-class Q239 : public QObject { // QVideoWidgetControl
- Q_OBJECT
-public:
- Q_INVOKABLE int MaspectRatioMode(QVideoWidgetControl* o) const { return o->aspectRatioMode(); }
- Q_INVOKABLE int Mbrightness(QVideoWidgetControl* o) const { return o->brightness(); }
- Q_INVOKABLE int Mcontrast(QVideoWidgetControl* o) const { return o->contrast(); }
- Q_INVOKABLE int Mhue(QVideoWidgetControl* o) const { return o->hue(); }
- Q_INVOKABLE bool MisFullScreen(QVideoWidgetControl* o) const { return o->isFullScreen(); }
- Q_INVOKABLE int Msaturation(QVideoWidgetControl* o) const { return o->saturation(); }
- Q_INVOKABLE void MsetAspectRatioMode(QVideoWidgetControl* o, Qt::AspectRatioMode x1) { o->setAspectRatioMode(x1); }
- Q_INVOKABLE void MsetBrightness(QVideoWidgetControl* o, int x1) { o->setBrightness(x1); }
- Q_INVOKABLE void MsetContrast(QVideoWidgetControl* o, int x1) { o->setContrast(x1); }
- Q_INVOKABLE void MsetFullScreen(QVideoWidgetControl* o, bool x1) { o->setFullScreen(x1); }
- Q_INVOKABLE void MsetHue(QVideoWidgetControl* o, int x1) { o->setHue(x1); }
- Q_INVOKABLE void MsetSaturation(QVideoWidgetControl* o, int x1) { o->setSaturation(x1); }
- Q_INVOKABLE QWidget* MvideoWidget(QVideoWidgetControl* o) { return o->videoWidget(); }
-};
-
-class Q18 : public Q140 { // QAbstractVideoSurface
+class Q18 : public Q142 { // QAbstractVideoSurface
Q_OBJECT
public:
Q_INVOKABLE int Merror(QAbstractVideoSurface* o) const { return o->error(); }
@@ -43,7 +25,7 @@ public:
Q_INVOKABLE QVideoSurfaceFormat MsurfaceFormat(QAbstractVideoSurface* o) const { return o->surfaceFormat(); }
};
-class Q23 : public Q140 { // QAudioOutput
+class Q23 : public Q142 { // QAudioOutput
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QAudioFormat& x1 = QAudioFormat(), QObject* x2 = 0) { return new LAudioOutput(u, x1, x2); }
@@ -69,7 +51,7 @@ public:
Q_INVOKABLE qreal Mvolume(QAudioOutput* o) const { return o->volume(); }
};
-class Q30 : public Q140 { // QCameraExposure
+class Q30 : public Q142 { // QCameraExposure
Q_OBJECT
public:
Q_INVOKABLE qreal Maperture(QCameraExposure* o) const { return o->aperture(); }
@@ -94,7 +76,7 @@ public:
Q_INVOKABLE QList MsupportedShutterSpeeds(QCameraExposure* o, bool* x1 = 0) const { return o->supportedShutterSpeeds(x1); }
};
-class Q31 : public Q140 { // QCameraFocus
+class Q31 : public Q142 { // QCameraFocus
Q_OBJECT
public:
Q_INVOKABLE QPointF McustomFocusPoint(QCameraFocus* o) const { return o->customFocusPoint(); }
@@ -114,7 +96,7 @@ public:
Q_INVOKABLE void MzoomTo(QCameraFocus* o, qreal x1, qreal x2) { o->zoomTo(x1, x2); }
};
-class Q32 : public Q140 { // QCameraImageCapture
+class Q32 : public Q142 { // QCameraImageCapture
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QMediaObject* x1, QObject* x2 = 0) { return new LCameraImageCapture(u, x1, x2); }
@@ -137,7 +119,7 @@ public:
Q_INVOKABLE QMediaObject* MmediaObject(QCameraImageCapture* o) const { return o->mediaObject(); }
};
-class Q33 : public Q140 { // QCameraImageProcessing
+class Q33 : public Q142 { // QCameraImageProcessing
Q_OBJECT
public:
Q_INVOKABLE int McolorFilter(QCameraImageProcessing* o) const { return o->colorFilter(); }
@@ -175,7 +157,12 @@ public:
Q_INVOKABLE void Mpaint(QGraphicsVideoItem* o, QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { o->paint(x1, x2, x3); }
};
-class Q125 : public Q140 { // QMediaObject
+class Q126 : public Q142 { // QMediaControl
+ Q_OBJECT
+public:
+};
+
+class Q127 : public Q142 { // QMediaObject
Q_OBJECT
public:
Q_INVOKABLE int Mavailability(QMediaObject* o) const { return o->availability(); }
@@ -192,7 +179,7 @@ public:
Q_INVOKABLE void MremovePropertyWatch(QMediaObject* o, const QByteArray& x1) { ((LMediaObject*)o)->removePropertyWatch(x1); }
};
-class Q126 : public Q125 { // QMediaPlayer
+class Q128 : public Q127 { // QMediaPlayer
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0, QMediaPlayer::Flags x2 = 0) { return new LMediaPlayer(u, x1, x2); }
@@ -223,7 +210,7 @@ public:
Q_INVOKABLE int ShasSupport(const QString& x1, const QStringList& x2 = QStringList(), QMediaPlayer::Flags x3 = 0) { return QMediaPlayer::hasSupport(x1, x2, x3); }
};
-class Q127 : public Q140 { // QMediaPlaylist
+class Q129 : public Q142 { // QMediaPlaylist
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LMediaPlaylist(u, x1); }
@@ -253,7 +240,7 @@ public:
Q_INVOKABLE QMediaObject* MmediaObject(QMediaPlaylist* o) const { return o->mediaObject(); }
};
-class Q128 : public Q140 { // QMediaRecorder
+class Q130 : public Q142 { // QMediaRecorder
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QMediaObject* x1, QObject* x2 = 0) { return new LMediaRecorder(u, x1, x2); }
@@ -293,14 +280,14 @@ public:
Q_INVOKABLE QMediaObject* MmediaObject(QMediaRecorder* o) const { return o->mediaObject(); }
};
-class Q129 : public Q140 { // QMediaService
+class Q131 : public Q142 { // QMediaService
Q_OBJECT
public:
Q_INVOKABLE void MreleaseControl(QMediaService* o, QMediaControl* x1) { o->releaseControl(x1); }
Q_INVOKABLE QMediaControl* MrequestControl(QMediaService* o, const char* x1) { return o->requestControl(x1); }
};
-class Q167 : public Q125 { // QRadioTuner
+class Q188 : public Q127 { // QRadioTuner
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LRadioTuner(u, x1); }
@@ -323,7 +310,25 @@ public:
Q_INVOKABLE int Mavailability(QRadioTuner* o) const { return o->availability(); }
};
-class Q24 : public Q128 { // QAudioRecorder
+class Q265 : public Q126 { // QVideoWidgetControl
+ Q_OBJECT
+public:
+ Q_INVOKABLE int MaspectRatioMode(QVideoWidgetControl* o) const { return o->aspectRatioMode(); }
+ Q_INVOKABLE int Mbrightness(QVideoWidgetControl* o) const { return o->brightness(); }
+ Q_INVOKABLE int Mcontrast(QVideoWidgetControl* o) const { return o->contrast(); }
+ Q_INVOKABLE int Mhue(QVideoWidgetControl* o) const { return o->hue(); }
+ Q_INVOKABLE bool MisFullScreen(QVideoWidgetControl* o) const { return o->isFullScreen(); }
+ Q_INVOKABLE int Msaturation(QVideoWidgetControl* o) const { return o->saturation(); }
+ Q_INVOKABLE void MsetAspectRatioMode(QVideoWidgetControl* o, Qt::AspectRatioMode x1) { o->setAspectRatioMode(x1); }
+ Q_INVOKABLE void MsetBrightness(QVideoWidgetControl* o, int x1) { o->setBrightness(x1); }
+ Q_INVOKABLE void MsetContrast(QVideoWidgetControl* o, int x1) { o->setContrast(x1); }
+ Q_INVOKABLE void MsetFullScreen(QVideoWidgetControl* o, bool x1) { o->setFullScreen(x1); }
+ Q_INVOKABLE void MsetHue(QVideoWidgetControl* o, int x1) { o->setHue(x1); }
+ Q_INVOKABLE void MsetSaturation(QVideoWidgetControl* o, int x1) { o->setSaturation(x1); }
+ Q_INVOKABLE QWidget* MvideoWidget(QVideoWidgetControl* o) { return o->videoWidget(); }
+};
+
+class Q24 : public Q130 { // QAudioRecorder
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LAudioRecorder(u, x1); }
@@ -333,7 +338,7 @@ public:
Q_INVOKABLE QString MdefaultAudioInput(QAudioRecorder* o) const { return o->defaultAudioInput(); }
};
-class Q29 : public Q125 { // QCamera
+class Q29 : public Q127 { // QCamera
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LCamera(u, x1); }
@@ -365,7 +370,7 @@ public:
Q_INVOKABLE int Mavailability(QCamera* o) const { return o->availability(); }
};
-class Q238 : public Q246 { // QVideoWidget
+class Q264 : public Q272 { // QVideoWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LVideoWidget(u, x1); }
@@ -379,7 +384,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QVideoWidget* o) const { return o->sizeHint(); }
};
-class Q34 : public Q238 { // QCameraViewfinder
+class Q34 : public Q264 { // QCameraViewfinder
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LCameraViewfinder(u, x1); }
diff --git a/src/gen/network/_ini.cpp b/src/gen/network/_ini.cpp
index 73fc47c..a29b6d9 100644
--- a/src/gen/network/_ini.cpp
+++ b/src/gen/network/_ini.cpp
@@ -26,7 +26,7 @@ NumList LNetworkConfiguration::overrideIds = NumList();
NumList LNetworkCookie::overrideIds = NumList();
NumList LNetworkInterface::overrideIds = NumList();
NumList LNetworkProxy::overrideIds = NumList();
-NumList LNetworkProxyFactory::overrideIds = NumList() << 481;
+NumList LNetworkProxyFactory::overrideIds = NumList() << 516;
NumList LNetworkProxyQuery::overrideIds = NumList();
NumList LNetworkRequest::overrideIds = NumList();
NumList LSslCertificate::overrideIds = NumList();
@@ -41,21 +41,19 @@ void ini() {
LObjects::Q[6] = new Q7;
LObjects::Q[11] = new Q12;
LObjects::Q[103] = new Q104;
- LObjects::Q[119] = new Q120;
LObjects::Q[120] = new Q121;
- LObjects::Q[135] = new Q136;
- LObjects::Q[136] = new Q137;
+ LObjects::Q[121] = new Q122;
LObjects::Q[137] = new Q138;
LObjects::Q[138] = new Q139;
- LObjects::Q[211] = new Q212;
- LObjects::Q[212] = new Q213;
- LObjects::Q[230] = new Q231;
+ LObjects::Q[139] = new Q140;
+ LObjects::Q[140] = new Q141;
+ LObjects::Q[237] = new Q238;
+ LObjects::Q[238] = new Q239;
+ LObjects::Q[256] = new Q257;
LObjects::N[20] = new N21;
LObjects::N[89] = new N90;
LObjects::N[90] = new N91;
LObjects::N[92] = new N93;
- LObjects::N[121] = new N122;
- LObjects::N[122] = new N123;
LObjects::N[123] = new N124;
LObjects::N[124] = new N125;
LObjects::N[125] = new N126;
@@ -63,11 +61,13 @@ void ini() {
LObjects::N[127] = new N128;
LObjects::N[128] = new N129;
LObjects::N[129] = new N130;
- LObjects::N[173] = new N174;
- LObjects::N[174] = new N175;
- LObjects::N[175] = new N176;
- LObjects::N[176] = new N177;
- LObjects::N[177] = new N178; }
+ LObjects::N[130] = new N131;
+ LObjects::N[131] = new N132;
+ LObjects::N[203] = new N204;
+ LObjects::N[204] = new N205;
+ LObjects::N[205] = new N206;
+ LObjects::N[206] = new N207;
+ LObjects::N[207] = new N208; }
const QMetaObject* staticMetaObject(int n) {
const QMetaObject* m = 0;
@@ -75,15 +75,15 @@ const QMetaObject* staticMetaObject(int n) {
case 7: m = &QAbstractNetworkCache::staticMetaObject; break;
case 12: m = &QAbstractSocket::staticMetaObject; break;
case 104: m = &QHttpMultiPart::staticMetaObject; break;
- case 120: m = &QLocalServer::staticMetaObject; break;
- case 121: m = &QLocalSocket::staticMetaObject; break;
- case 136: m = &QNetworkAccessManager::staticMetaObject; break;
- case 137: m = &QNetworkCookieJar::staticMetaObject; break;
- case 138: m = &QNetworkDiskCache::staticMetaObject; break;
- case 139: m = &QNetworkReply::staticMetaObject; break;
- case 212: m = &QTcpServer::staticMetaObject; break;
- case 213: m = &QTcpSocket::staticMetaObject; break;
- case 231: m = &QUdpSocket::staticMetaObject; break; }
+ case 121: m = &QLocalServer::staticMetaObject; break;
+ case 122: m = &QLocalSocket::staticMetaObject; break;
+ case 138: m = &QNetworkAccessManager::staticMetaObject; break;
+ case 139: m = &QNetworkCookieJar::staticMetaObject; break;
+ case 140: m = &QNetworkDiskCache::staticMetaObject; break;
+ case 141: m = &QNetworkReply::staticMetaObject; break;
+ case 238: m = &QTcpServer::staticMetaObject; break;
+ case 239: m = &QTcpSocket::staticMetaObject; break;
+ case 257: m = &QUdpSocket::staticMetaObject; break; }
return m; }
void deleteNObject(int n, void* p, int gc) {
@@ -92,20 +92,20 @@ void deleteNObject(int n, void* p, int gc) {
case 90: if(gc) delete (QHostAddress*)p; else delete (LHostAddress*)p; break;
case 91: if(gc) delete (QHostInfo*)p; else delete (LHostInfo*)p; break;
case 93: if(gc) delete (QHttpPart*)p; else delete (LHttpPart*)p; break;
- case 122: if(gc) delete (QNetworkAddressEntry*)p; else delete (LNetworkAddressEntry*)p; break;
- case 123: if(gc) delete (QNetworkCacheMetaData*)p; else delete (LNetworkCacheMetaData*)p; break;
- case 124: if(gc) delete (QNetworkConfiguration*)p; else delete (LNetworkConfiguration*)p; break;
- case 125: if(gc) delete (QNetworkCookie*)p; else delete (LNetworkCookie*)p; break;
- case 126: if(gc) delete (QNetworkInterface*)p; else delete (LNetworkInterface*)p; break;
- case 127: if(gc) delete (QNetworkProxy*)p; else delete (LNetworkProxy*)p; break;
- case 128: if(gc) delete (QNetworkProxyFactory*)p; else delete (LNetworkProxyFactory*)p; break;
- case 129: if(gc) delete (QNetworkProxyQuery*)p; else delete (LNetworkProxyQuery*)p; break;
- case 130: if(gc) delete (QNetworkRequest*)p; else delete (LNetworkRequest*)p; break;
- case 174: if(gc) delete (QSslCertificate*)p; else delete (LSslCertificate*)p; break;
- case 175: if(gc) delete (QSslCipher*)p; else delete (LSslCipher*)p; break;
- case 176: if(gc) delete (QSslConfiguration*)p; else delete (LSslConfiguration*)p; break;
- case 177: if(gc) delete (QSslError*)p; else delete (LSslError*)p; break;
- case 178: if(gc) delete (QSslKey*)p; else delete (LSslKey*)p; break; }}
+ case 124: if(gc) delete (QNetworkAddressEntry*)p; else delete (LNetworkAddressEntry*)p; break;
+ case 125: if(gc) delete (QNetworkCacheMetaData*)p; else delete (LNetworkCacheMetaData*)p; break;
+ case 126: if(gc) delete (QNetworkConfiguration*)p; else delete (LNetworkConfiguration*)p; break;
+ case 127: if(gc) delete (QNetworkCookie*)p; else delete (LNetworkCookie*)p; break;
+ case 128: if(gc) delete (QNetworkInterface*)p; else delete (LNetworkInterface*)p; break;
+ case 129: if(gc) delete (QNetworkProxy*)p; else delete (LNetworkProxy*)p; break;
+ case 130: if(gc) delete (QNetworkProxyFactory*)p; else delete (LNetworkProxyFactory*)p; break;
+ case 131: if(gc) delete (QNetworkProxyQuery*)p; else delete (LNetworkProxyQuery*)p; break;
+ case 132: if(gc) delete (QNetworkRequest*)p; else delete (LNetworkRequest*)p; break;
+ case 204: if(gc) delete (QSslCertificate*)p; else delete (LSslCertificate*)p; break;
+ case 205: if(gc) delete (QSslCipher*)p; else delete (LSslCipher*)p; break;
+ case 206: if(gc) delete (QSslConfiguration*)p; else delete (LSslConfiguration*)p; break;
+ case 207: if(gc) delete (QSslError*)p; else delete (LSslError*)p; break;
+ case 208: if(gc) delete (QSslKey*)p; else delete (LSslKey*)p; break; }}
NumList* overrideFunctions(const QByteArray& name) {
NumList* ids = 0;
@@ -114,14 +114,14 @@ NumList* overrideFunctions(const QByteArray& name) {
switch(n) {
case 12: ids = &LAbstractSocket::overrideIds; break;
case 104: ids = &LHttpMultiPart::overrideIds; break;
- case 120: ids = &LLocalServer::overrideIds; break;
- case 121: ids = &LLocalSocket::overrideIds; break;
- case 136: ids = &LNetworkAccessManager::overrideIds; break;
- case 137: ids = &LNetworkCookieJar::overrideIds; break;
- case 138: ids = &LNetworkDiskCache::overrideIds; break;
- case 212: ids = <cpServer::overrideIds; break;
- case 213: ids = <cpSocket::overrideIds; break;
- case 231: ids = &LUdpSocket::overrideIds; break; }}
+ case 121: ids = &LLocalServer::overrideIds; break;
+ case 122: ids = &LLocalSocket::overrideIds; break;
+ case 138: ids = &LNetworkAccessManager::overrideIds; break;
+ case 139: ids = &LNetworkCookieJar::overrideIds; break;
+ case 140: ids = &LNetworkDiskCache::overrideIds; break;
+ case 238: ids = <cpServer::overrideIds; break;
+ case 239: ids = <cpSocket::overrideIds; break;
+ case 257: ids = &LUdpSocket::overrideIds; break; }}
else {
n = LObjects::n_names.value(name);
switch(n) {
@@ -129,20 +129,20 @@ NumList* overrideFunctions(const QByteArray& name) {
case 90: ids = &LHostAddress::overrideIds; break;
case 91: ids = &LHostInfo::overrideIds; break;
case 93: ids = &LHttpPart::overrideIds; break;
- case 122: ids = &LNetworkAddressEntry::overrideIds; break;
- case 123: ids = &LNetworkCacheMetaData::overrideIds; break;
- case 124: ids = &LNetworkConfiguration::overrideIds; break;
- case 125: ids = &LNetworkCookie::overrideIds; break;
- case 126: ids = &LNetworkInterface::overrideIds; break;
- case 127: ids = &LNetworkProxy::overrideIds; break;
- case 128: ids = &LNetworkProxyFactory::overrideIds; break;
- case 129: ids = &LNetworkProxyQuery::overrideIds; break;
- case 130: ids = &LNetworkRequest::overrideIds; break;
- case 174: ids = &LSslCertificate::overrideIds; break;
- case 175: ids = &LSslCipher::overrideIds; break;
- case 176: ids = &LSslConfiguration::overrideIds; break;
- case 177: ids = &LSslError::overrideIds; break;
- case 178: ids = &LSslKey::overrideIds; break; }}
+ case 124: ids = &LNetworkAddressEntry::overrideIds; break;
+ case 125: ids = &LNetworkCacheMetaData::overrideIds; break;
+ case 126: ids = &LNetworkConfiguration::overrideIds; break;
+ case 127: ids = &LNetworkCookie::overrideIds; break;
+ case 128: ids = &LNetworkInterface::overrideIds; break;
+ case 129: ids = &LNetworkProxy::overrideIds; break;
+ case 130: ids = &LNetworkProxyFactory::overrideIds; break;
+ case 131: ids = &LNetworkProxyQuery::overrideIds; break;
+ case 132: ids = &LNetworkRequest::overrideIds; break;
+ case 204: ids = &LSslCertificate::overrideIds; break;
+ case 205: ids = &LSslCipher::overrideIds; break;
+ case 206: ids = &LSslConfiguration::overrideIds; break;
+ case 207: ids = &LSslError::overrideIds; break;
+ case 208: ids = &LSslKey::overrideIds; break; }}
return ids; }
QT_END_NAMESPACE
diff --git a/src/gen/network/_n_classes.h b/src/gen/network/_n_classes.h
index 4c0aaab..98d5745 100644
--- a/src/gen/network/_n_classes.h
+++ b/src/gen/network/_n_classes.h
@@ -55,7 +55,7 @@ public:
};
class LNetworkAddressEntry : public QNetworkAddressEntry {
- friend class N122;
+ friend class N124;
public:
LNetworkAddressEntry(uint u) : unique(u) {}
LNetworkAddressEntry(uint u, const QNetworkAddressEntry& x1) : QNetworkAddressEntry(x1), unique(u) {}
@@ -65,7 +65,7 @@ public:
};
class LNetworkCacheMetaData : public QNetworkCacheMetaData {
- friend class N123;
+ friend class N125;
public:
LNetworkCacheMetaData(uint u) : unique(u) {}
LNetworkCacheMetaData(uint u, const QNetworkCacheMetaData& x1) : QNetworkCacheMetaData(x1), unique(u) {}
@@ -75,7 +75,7 @@ public:
};
class LNetworkConfiguration : public QNetworkConfiguration {
- friend class N124;
+ friend class N126;
public:
LNetworkConfiguration(uint u) : unique(u) {}
LNetworkConfiguration(uint u, const QNetworkConfiguration& x1) : QNetworkConfiguration(x1), unique(u) {}
@@ -85,7 +85,7 @@ public:
};
class LNetworkCookie : public QNetworkCookie {
- friend class N125;
+ friend class N127;
public:
LNetworkCookie(uint u, const QByteArray& x1 = QByteArray(), const QByteArray& x2 = QByteArray()) : QNetworkCookie(x1, x2), unique(u) {}
LNetworkCookie(uint u, const QNetworkCookie& x1) : QNetworkCookie(x1), unique(u) {}
@@ -95,7 +95,7 @@ public:
};
class LNetworkInterface : public QNetworkInterface {
- friend class N126;
+ friend class N128;
public:
LNetworkInterface(uint u) : unique(u) {}
LNetworkInterface(uint u, const QNetworkInterface& x1) : QNetworkInterface(x1), unique(u) {}
@@ -105,7 +105,7 @@ public:
};
class LNetworkProxy : public QNetworkProxy {
- friend class N127;
+ friend class N129;
public:
LNetworkProxy(uint u) : unique(u) {}
LNetworkProxy(uint u, ProxyType x1, const QString& x2 = QString(), quint16 x3 = 0, const QString& x4 = QString(), const QString& x5 = QString()) : QNetworkProxy(x1, x2, x3, x4, x5), unique(u) {}
@@ -116,18 +116,18 @@ public:
};
class LNetworkProxyFactory : public QNetworkProxyFactory {
- friend class N128;
+ friend class N130;
public:
LNetworkProxyFactory(uint u) : unique(u) {}
static NumList overrideIds;
uint unique;
- QList queryProxy(const QNetworkProxyQuery& x1 = QNetworkProxyQuery()) { quint64 id = LObjects::override_id(unique, 481); void* fun = LObjects::overrideFun(id); QList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 481, args, id).value >(); } return ret; }
+ QList queryProxy(const QNetworkProxyQuery& x1 = QNetworkProxyQuery()) { quint64 id = LObjects::override_id(unique, 516); void* fun = LObjects::overrideFun(id); QList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 516, args, id).value >(); } return ret; }
};
class LNetworkProxyQuery : public QNetworkProxyQuery {
- friend class N129;
+ friend class N131;
public:
LNetworkProxyQuery(uint u) : unique(u) {}
LNetworkProxyQuery(uint u, const QUrl& x1, QueryType x2 = UrlRequest) : QNetworkProxyQuery(x1, x2), unique(u) {}
@@ -143,7 +143,7 @@ public:
};
class LNetworkRequest : public QNetworkRequest {
- friend class N130;
+ friend class N132;
public:
LNetworkRequest(uint u, const QUrl& x1 = QUrl()) : QNetworkRequest(x1), unique(u) {}
LNetworkRequest(uint u, const QNetworkRequest& x1) : QNetworkRequest(x1), unique(u) {}
@@ -153,7 +153,7 @@ public:
};
class LSslCertificate : public QSslCertificate {
- friend class N174;
+ friend class N204;
public:
LSslCertificate(uint u, const QByteArray& x1 = QByteArray(), QSsl::EncodingFormat x2 = QSsl::Pem) : QSslCertificate(x1, x2), unique(u) {}
LSslCertificate(uint u, const QSslCertificate& x1) : QSslCertificate(x1), unique(u) {}
@@ -163,7 +163,7 @@ public:
};
class LSslCipher : public QSslCipher {
- friend class N175;
+ friend class N205;
public:
LSslCipher(uint u) : unique(u) {}
LSslCipher(uint u, const QString& x1) : QSslCipher(x1), unique(u) {}
@@ -175,7 +175,7 @@ public:
};
class LSslConfiguration : public QSslConfiguration {
- friend class N176;
+ friend class N206;
public:
LSslConfiguration(uint u) : unique(u) {}
LSslConfiguration(uint u, const QSslConfiguration& x1) : QSslConfiguration(x1), unique(u) {}
@@ -185,7 +185,7 @@ public:
};
class LSslError : public QSslError {
- friend class N177;
+ friend class N207;
public:
LSslError(uint u) : unique(u) {}
LSslError(uint u, SslError x1) : QSslError(x1), unique(u) {}
@@ -197,7 +197,7 @@ public:
};
class LSslKey : public QSslKey {
- friend class N178;
+ friend class N208;
public:
LSslKey(uint u) : unique(u) {}
LSslKey(uint u, const QByteArray& x1, QSsl::KeyAlgorithm x2, QSsl::EncodingFormat x3 = QSsl::Pem, QSsl::KeyType x4 = QSsl::PrivateKey, const QByteArray& x5 = QByteArray()) : QSslKey(x1, x2, x3, x4, x5), unique(u) {}
diff --git a/src/gen/network/_n_methods.h b/src/gen/network/_n_methods.h
index 73aa18e..621610a 100644
--- a/src/gen/network/_n_methods.h
+++ b/src/gen/network/_n_methods.h
@@ -81,7 +81,7 @@ public:
Q_INVOKABLE void MsetRawHeader(QHttpPart* o, const QByteArray& x1, const QByteArray& x2) { o->setRawHeader(x1, x2); }
};
-class N122 : public QObject { // QNetworkAddressEntry
+class N124 : public QObject { // QNetworkAddressEntry
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LNetworkAddressEntry(u); }
@@ -96,7 +96,7 @@ public:
Q_INVOKABLE void MsetPrefixLength(QNetworkAddressEntry* o, int x1) { o->setPrefixLength(x1); }
};
-class N123 : public QObject { // QNetworkCacheMetaData
+class N125 : public QObject { // QNetworkCacheMetaData
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LNetworkCacheMetaData(u); }
@@ -112,7 +112,7 @@ public:
Q_INVOKABLE QUrl Murl(QNetworkCacheMetaData* o) const { return o->url(); }
};
-class N124 : public QObject { // QNetworkConfiguration
+class N126 : public QObject { // QNetworkConfiguration
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LNetworkConfiguration(u); }
@@ -130,7 +130,7 @@ public:
Q_INVOKABLE int Mtype(QNetworkConfiguration* o) const { return o->type(); }
};
-class N125 : public QObject { // QNetworkCookie
+class N127 : public QObject { // QNetworkCookie
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QByteArray& x1 = QByteArray(), const QByteArray& x2 = QByteArray()) { return new LNetworkCookie(u, x1, x2); }
@@ -156,7 +156,7 @@ public:
Q_INVOKABLE QList SparseCookies(const QByteArray& x1) { return QNetworkCookie::parseCookies(x1); }
};
-class N126 : public QObject { // QNetworkInterface
+class N128 : public QObject { // QNetworkInterface
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LNetworkInterface(u); }
@@ -174,7 +174,7 @@ public:
Q_INVOKABLE QNetworkInterface SinterfaceFromName(const QString& x1) { return QNetworkInterface::interfaceFromName(x1); }
};
-class N127 : public QObject { // QNetworkProxy
+class N129 : public QObject { // QNetworkProxy
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LNetworkProxy(u); }
@@ -204,7 +204,7 @@ public:
Q_INVOKABLE void SsetApplicationProxy(const QNetworkProxy& x1) { QNetworkProxy::setApplicationProxy(x1); }
};
-class N128 : public QObject { // QNetworkProxyFactory
+class N130 : public QObject { // QNetworkProxyFactory
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LNetworkProxyFactory(u); }
@@ -215,7 +215,7 @@ public:
Q_INVOKABLE QList SsystemProxyForQuery(const QNetworkProxyQuery& x1 = QNetworkProxyQuery()) { return QNetworkProxyFactory::systemProxyForQuery(x1); }
};
-class N129 : public QObject { // QNetworkProxyQuery
+class N131 : public QObject { // QNetworkProxyQuery
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LNetworkProxyQuery(u); }
@@ -242,7 +242,7 @@ public:
Q_INVOKABLE QUrl Murl(QNetworkProxyQuery* o) const { return o->url(); }
};
-class N130 : public QObject { // QNetworkRequest
+class N132 : public QObject { // QNetworkRequest
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QUrl& x1 = QUrl()) { return new LNetworkRequest(u, x1); }
@@ -265,7 +265,7 @@ public:
Q_INVOKABLE QUrl Murl(QNetworkRequest* o) const { return o->url(); }
};
-class N174 : public QObject { // QSslCertificate
+class N204 : public QObject { // QSslCertificate
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QByteArray& x1 = QByteArray(), QSsl::EncodingFormat x2 = QSsl::Pem) { return new LSslCertificate(u, x1, x2); }
@@ -297,7 +297,7 @@ public:
Q_INVOKABLE QList