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 - -QT_BEGIN_NAMESPACE - -QObject* ini() -{ - MyQuickWidget* my = new MyQuickWidget; - my->setObjectName("QQuickWidget"); - return my; -} - -MyQuickWidget::MyQuickWidget() -{ - setResizeMode(QQuickWidget::SizeRootObjectToView); - connect(this, SIGNAL(statusChanged(QQuickWidget::Status)), - this, SLOT(statusChanged(QQuickWidget::Status))); - connect(this, SIGNAL(sceneGraphError(QQuickWindow::SceneGraphError,QString)), - this, SLOT(sceneGraphError(QQuickWindow::SceneGraphError,QString))); -} - -void MyQuickWidget::statusChanged(QQuickWidget::Status status) -{ - if(status == QQuickWidget::Error) { - QStringList list; - foreach(const QQmlError& error, errors()) { - list << error.toString(); } - emit qmlErrors(list); } -} - -void MyQuickWidget::sceneGraphError(QQuickWindow::SceneGraphError, const QString& message) -{ - emit qmlErrors(QStringList() << message); -} - -QT_END_NAMESPACE diff --git a/Qt_EQL/quickwidget/cpp/lib.h b/Qt_EQL/quickwidget/cpp/lib.h deleted file mode 100644 index 526c348..0000000 --- a/Qt_EQL/quickwidget/cpp/lib.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef Q_QUICK_WIDGET_H -#define Q_QUICK_WIDGET_H - -#include -#include - -#ifdef Q_OS_WIN -#define LIB_EXPORT __declspec(dllexport) -#else -#define LIB_EXPORT -#endif - -QT_BEGIN_NAMESPACE - -extern "C" { LIB_EXPORT QObject* ini(); } - -class MyQuickWidget : public QQuickWidget -{ - Q_OBJECT -public: - MyQuickWidget(); - - Q_INVOKABLE void setQml(const QUrl& url) { setSource(url); } - -signals: - void qmlErrors(const QStringList&); - -public slots: - void statusChanged(QQuickWidget::Status); - void sceneGraphError(QQuickWindow::SceneGraphError, const QString&); -}; - -QT_END_NAMESPACE - -#endif diff --git a/Qt_EQL/quickwidget/cpp/quick_widget.pro b/Qt_EQL/quickwidget/cpp/quick_widget.pro deleted file mode 100644 index 483a45c..0000000 --- a/Qt_EQL/quickwidget/cpp/quick_widget.pro +++ /dev/null @@ -1,12 +0,0 @@ -QT += quickwidgets -TEMPLATE = lib -CONFIG += plugin release -DESTDIR = ../ -TARGET = quick_widget_cpp -OBJECTS_DIR = ./tmp/ -MOC_DIR = ./tmp/ - -include(../../../src/windows.pri) - -HEADERS += lib.h -SOURCES += lib.cpp diff --git a/Qt_EQL/quickwidget/quickwidget.lisp b/Qt_EQL/quickwidget/quickwidget.lisp deleted file mode 100644 index f421f46..0000000 --- a/Qt_EQL/quickwidget/quickwidget.lisp +++ /dev/null @@ -1,32 +0,0 @@ -;;; -;;; Create a QQuickWidget in C++, since this can't be done directly in a EQL5 module (threading problem). -;;; - -#-qt-wrapper-functions ; see README-OPTIONAL.txt -(load (in-home "src/lisp/all-wrappers")) - -(defun make-quick-widget () - (qload-c++ (in-home "Qt_EQL/quickwidget/quick_widget_cpp"))) - -(defvar *mdi-area* (qnew "QMdiArea")) -(defvar *quick-widget-1* (make-quick-widget)) -(defvar *quick-widget-2* (make-quick-widget)) - -(define-qt-wrappers *quick-widget-1*) - -(defun print-qml-errors (errors) - (format *debug-io* "~&### QML errors: ~A~%" (x:join errors ", "))) - -(defun run () - (mapc (lambda (widget file) - ;; please note (and keep) the order: - (qconnect widget "qmlErrors(QStringList)" 'print-qml-errors) ; 1 - (set-qml widget (|fromLocalFile.QUrl| ; 2 - (in-home (format nil "Qt_EQL/quickwidget/qml/~A.qml" file)))) - (|setMinimumSize| widget '(300 300)) ; 3 - (|addSubWindow| *mdi-area* widget)) - (list *quick-widget-1* *quick-widget-2*) - (list "example-1" "example-2")) - (|show| *mdi-area*)) - -(run) diff --git a/README-1.txt b/README-1.txt index 7e72da1..741ea23 100644 --- a/README-1.txt +++ b/README-1.txt @@ -141,7 +141,7 @@ In order to run (sort of) a top-level processing Qt events, do (requires ECL thr -QT MODULES (help, multimedia, network, sql, svg, webkit) +QT MODULES (help, multimedia, network, quick, sql, svg, webkit) ========== To build an EQL module (corresponding to a Qt module), do the following in src/: diff --git a/doc/Notes.htm b/doc/Notes.htm index eee4c86..59c1214 100644 --- a/doc/Notes.htm +++ b/doc/Notes.htm @@ -30,7 +30,7 @@
(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.

diff --git a/doc/auto-doc.htm b/doc/auto-doc.htm index 350eab6..4eeedda 100644 --- a/doc/auto-doc.htm +++ b/doc/auto-doc.htm @@ -441,7 +441,7 @@ Removes the event filter corresponding to handle, which is the retu

QREQUIRE (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)
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 Sverify(const QList& x1, const QString& x2 = QString()) { return QSslCertificate::verify(x1, x2); } }; -class N175 : public QObject { // QSslCipher +class N205 : public QObject { // QSslCipher Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslCipher(u); } @@ -316,7 +316,7 @@ public: Q_INVOKABLE int MusedBits(QSslCipher* o) const { return o->usedBits(); } }; -class N176 : public QObject { // QSslConfiguration +class N206 : public QObject { // QSslConfiguration Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslConfiguration(u); } @@ -361,7 +361,7 @@ public: Q_INVOKABLE QList SsystemCaCertificates() { return QSslConfiguration::systemCaCertificates(); } }; -class N177 : public QObject { // QSslError +class N207 : public QObject { // QSslError Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslError(u); } @@ -374,7 +374,7 @@ public: Q_INVOKABLE void Mswap(QSslError* o, QSslError& x1) { o->swap(x1); } }; -class N178 : public QObject { // QSslKey +class N208 : public QObject { // QSslKey Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslKey(u); } diff --git a/src/gen/network/_q_classes.h b/src/gen/network/_q_classes.h index 9044756..9f21323 100644 --- a/src/gen/network/_q_classes.h +++ b/src/gen/network/_q_classes.h @@ -68,7 +68,7 @@ public: class LLocalServer : public QLocalServer { Q_OBJECT - friend class Q120; + friend class Q121; public: LLocalServer(uint u, QObject* x1 = 0) : QLocalServer(x1), unique(u) {} @@ -85,7 +85,7 @@ public: class LLocalSocket : public QLocalSocket { Q_OBJECT - friend class Q121; + friend class Q122; public: LLocalSocket(uint u, QObject* x1 = 0) : QLocalSocket(x1), unique(u) {} @@ -116,7 +116,7 @@ public: class LNetworkAccessManager : public QNetworkAccessManager { Q_OBJECT - friend class Q136; + friend class Q138; public: LNetworkAccessManager(uint u, QObject* x1 = 0) : QNetworkAccessManager(x1), unique(u) {} @@ -131,7 +131,7 @@ public: class LNetworkCookieJar : public QNetworkCookieJar { Q_OBJECT - friend class Q137; + friend class Q139; public: LNetworkCookieJar(uint u, QObject* x1 = 0) : QNetworkCookieJar(x1), unique(u) {} @@ -152,7 +152,7 @@ public: class LNetworkDiskCache : public QNetworkDiskCache { Q_OBJECT - friend class Q138; + friend class Q140; public: LNetworkDiskCache(uint u, QObject* x1 = 0) : QNetworkDiskCache(x1), unique(u) {} @@ -172,7 +172,7 @@ public: class LTcpServer : public QTcpServer { Q_OBJECT - friend class Q212; + friend class Q238; public: LTcpServer(uint u, QObject* x1 = 0) : QTcpServer(x1), unique(u) {} @@ -189,7 +189,7 @@ public: class LTcpSocket : public QTcpSocket { Q_OBJECT - friend class Q213; + friend class Q239; public: LTcpSocket(uint u, QObject* x1 = 0) : QTcpSocket(x1), unique(u) {} @@ -228,7 +228,7 @@ public: class LUdpSocket : public QUdpSocket { Q_OBJECT - friend class Q231; + friend class Q257; public: LUdpSocket(uint u, QObject* x1 = 0) : QUdpSocket(x1), unique(u) {} diff --git a/src/gen/network/_q_methods.h b/src/gen/network/_q_methods.h index 1cfcdd7..dd1e0e1 100644 --- a/src/gen/network/_q_methods.h +++ b/src/gen/network/_q_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class Q7 : public Q140 { // QAbstractNetworkCache +class Q7 : public Q142 { // QAbstractNetworkCache Q_OBJECT public: Q_INVOKABLE qlonglong McacheSize(QAbstractNetworkCache* o) const { return o->cacheSize(); } @@ -20,7 +20,7 @@ public: Q_INVOKABLE void MupdateMetaData(QAbstractNetworkCache* o, const QNetworkCacheMetaData& x1) { o->updateMetaData(x1); } }; -class Q104 : public Q140 { // QHttpMultiPart +class Q104 : public Q142 { // QHttpMultiPart Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LHttpMultiPart(u, x1); } @@ -31,7 +31,7 @@ public: Q_INVOKABLE void MsetContentType(QHttpMultiPart* o, QHttpMultiPart::ContentType x1) { o->setContentType(x1); } }; -class Q120 : public Q140 { // QLocalServer +class Q121 : public Q142 { // QLocalServer Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LLocalServer(u, x1); } @@ -52,7 +52,7 @@ public: Q_INVOKABLE bool SremoveServer(const QString& x1) { return QLocalServer::removeServer(x1); } }; -class Q121 : public Q105 { // QLocalSocket +class Q122 : public Q105 { // QLocalSocket Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LLocalSocket(u, x1); } @@ -81,7 +81,7 @@ public: Q_INVOKABLE bool MwaitForReadyRead(QLocalSocket* o, int x1 = 30000) { return o->waitForReadyRead(x1); } }; -class Q136 : public Q140 { // QNetworkAccessManager +class Q138 : public Q142 { // QNetworkAccessManager Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LNetworkAccessManager(u, x1); } @@ -111,7 +111,7 @@ public: Q_INVOKABLE QStringList MsupportedSchemes(QNetworkAccessManager* o) const { return o->supportedSchemes(); } }; -class Q137 : public Q140 { // QNetworkCookieJar +class Q139 : public Q142 { // QNetworkCookieJar Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LNetworkCookieJar(u, x1); } @@ -124,7 +124,7 @@ public: Q_INVOKABLE void MsetAllCookies(QNetworkCookieJar* o, const QList& x1) { ((LNetworkCookieJar*)o)->setAllCookies(x1); } }; -class Q138 : public Q7 { // QNetworkDiskCache +class Q140 : public Q7 { // QNetworkDiskCache Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LNetworkDiskCache(u, x1); } @@ -139,10 +139,9 @@ public: Q_INVOKABLE void MupdateMetaData(QNetworkDiskCache* o, const QNetworkCacheMetaData& x1) { o->updateMetaData(x1); } }; -class Q139 : public Q105 { // QNetworkReply +class Q141 : public Q105 { // QNetworkReply Q_OBJECT public: - Q_INVOKABLE QVariant Mattribute(QNetworkReply* o, QNetworkRequest::Attribute x1) const { return o->attribute(x1); } Q_INVOKABLE int Merror(QNetworkReply* o) const { return o->error(); } Q_INVOKABLE bool MhasRawHeader(QNetworkReply* o, const QByteArray& x1) const { return o->hasRawHeader(x1); } Q_INVOKABLE QVariant Mheader(QNetworkReply* o, QNetworkRequest::KnownHeaders x1) const { return o->header(x1); } @@ -162,7 +161,7 @@ public: Q_INVOKABLE void Mclose(QNetworkReply* o) { o->close(); } }; -class Q212 : public Q140 { // QTcpServer +class Q238 : public Q142 { // QTcpServer Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTcpServer(u, x1); } @@ -233,13 +232,13 @@ public: Q_INVOKABLE bool MwaitForReadyRead(QAbstractSocket* o, int x1 = 30000) { return o->waitForReadyRead(x1); } }; -class Q213 : public Q12 { // QTcpSocket +class Q239 : public Q12 { // QTcpSocket Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTcpSocket(u, x1); } }; -class Q231 : public Q12 { // QUdpSocket +class Q257 : public Q12 { // QUdpSocket Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LUdpSocket(u, x1); } diff --git a/src/gen/quick/_ini.cpp b/src/gen/quick/_ini.cpp new file mode 100644 index 0000000..5e6ab36 --- /dev/null +++ b/src/gen/quick/_ini.cpp @@ -0,0 +1,247 @@ +// THIS FILE IS GENERATED (see helper/) + +#include "_q_methods.h" +#include "_n_methods.h" +#include "_ini2.h" + +QT_BEGIN_NAMESPACE + +NumList LJSEngine::overrideIds = NumList(); +NumList LQmlApplicationEngine::overrideIds = NumList(); +NumList LQmlComponent::overrideIds = NumList() << 322 << 323 << 324; +NumList LQmlContext::overrideIds = NumList(); +NumList LQmlEngine::overrideIds = NumList(); +NumList LQmlExpression::overrideIds = NumList(); +NumList LQmlExtensionPlugin::overrideIds = NumList() << 325; +NumList LQmlFileSelector::overrideIds = NumList(); +NumList LQmlPropertyMap::overrideIds = NumList() << 326; +NumList LQuickImageResponse::overrideIds = NumList() << 327 << 328; +NumList LQuickItem::overrideIds = NumList() << 267 << 23 << 329 << 330 << 331 << 29 << 30 << 31 << 32 << 13 << 14 << 332 << 333 << 334 << 335 << 36 << 336 << 15 << 16 << 38 << 17 << 18 << 19 << 337 << 338 << 310 << 339 << 340 << 341 << 43; +NumList LQuickItemGrabResult::overrideIds = NumList(); +NumList LQuickPaintedItem::overrideIds = NumList() << 342 << 329 << 330 << 338 << 340; +NumList LQuickRenderControl::overrideIds = NumList(); +NumList LQuickTextDocument::overrideIds = NumList(); +NumList LQuickTextureFactory::overrideIds = NumList() << 343 << 344 << 345 << 346; +NumList LQuickView::overrideIds = NumList(); +NumList LQuickWidget::overrideIds = NumList() << 29 << 30 << 31 << 32 << 13 << 14 << 35 << 15 << 16 << 38 << 17 << 18 << 19 << 41 << 43; +NumList LQuickWindow::overrideIds = NumList(); +NumList LSGAbstractRenderer::overrideIds = NumList() << 347; +NumList LSGDynamicTexture::overrideIds = NumList() << 348; +NumList LSGEngine::overrideIds = NumList(); +NumList LSGTexture::overrideIds = NumList() << 349 << 350 << 351 << 352 << 353 << 354 << 355 << 346; +NumList LSGTextureProvider::overrideIds = NumList() << 356; +NumList LJSValue::overrideIds = NumList(); +NumList LJSValueIterator::overrideIds = NumList(); +NumList LQmlAbstractUrlInterceptor::overrideIds = NumList() << 522; +NumList LQmlError::overrideIds = NumList(); +NumList LQmlImageProviderBase::overrideIds = NumList() << 523 << 524; +NumList LQmlIncubationController::overrideIds = NumList() << 525; +NumList LQmlIncubator::overrideIds = NumList() << 526 << 527; +NumList LQmlNetworkAccessManagerFactory::overrideIds = NumList() << 528; +NumList LQmlParserStatus::overrideIds = NumList() << 529 << 530; +NumList LQmlProperty::overrideIds = NumList(); +NumList LQmlPropertyValueSource::overrideIds = NumList() << 531; +NumList LQmlScriptString::overrideIds = NumList(); +NumList LQuickAsyncImageProvider::overrideIds = NumList() << 532; +NumList LQuickImageProvider::overrideIds = NumList() << 533 << 534 << 535; +NumList LSGBasicGeometryNode::overrideIds = NumList(); +NumList LSGClipNode::overrideIds = NumList(); +NumList LSGFlatColorMaterial::overrideIds = NumList(); +NumList LSGGeometry::overrideIds = NumList(); +NumList LSGGeometryNode::overrideIds = NumList(); +NumList LSGMaterial::overrideIds = NumList() << 539 << 540 << 233; +NumList LSGMaterialType::overrideIds = NumList(); +NumList LSGNode::overrideIds = NumList() << 537 << 538; +NumList LSGOpacityNode::overrideIds = NumList(); +NumList LSGOpaqueTextureMaterial::overrideIds = NumList(); +NumList LSGSimpleRectNode::overrideIds = NumList(); +NumList LSGSimpleTextureNode::overrideIds = NumList(); +NumList LSGTextureMaterial::overrideIds = NumList(); +NumList LSGTransformNode::overrideIds = NumList(); +NumList LSGVertexColorMaterial::overrideIds = NumList(); + +void ini() { + static bool _ = false; if(_) return; _ = true; + ini2(); + LObjects::Q[111] = new Q112; + LObjects::Q[167] = new Q168; + LObjects::Q[168] = new Q169; + LObjects::Q[169] = new Q170; + LObjects::Q[170] = new Q171; + LObjects::Q[171] = new Q172; + LObjects::Q[172] = new Q173; + LObjects::Q[173] = new Q174; + LObjects::Q[174] = new Q175; + LObjects::Q[175] = new Q176; + LObjects::Q[176] = new Q177; + LObjects::Q[177] = new Q178; + LObjects::Q[178] = new Q179; + LObjects::Q[179] = new Q180; + LObjects::Q[180] = new Q181; + LObjects::Q[181] = new Q182; + LObjects::Q[182] = new Q183; + LObjects::Q[183] = new Q184; + LObjects::Q[184] = new Q185; + LObjects::Q[185] = new Q186; + LObjects::Q[190] = new Q191; + LObjects::Q[191] = new Q192; + LObjects::Q[192] = new Q193; + LObjects::Q[193] = new Q194; + LObjects::Q[194] = new Q195; + LObjects::N[103] = new N104; + LObjects::N[104] = new N105; + LObjects::N[153] = new N154; + LObjects::N[154] = new N155; + LObjects::N[155] = new N156; + LObjects::N[156] = new N157; + LObjects::N[157] = new N158; + LObjects::N[158] = new N159; + LObjects::N[159] = new N160; + LObjects::N[160] = new N161; + LObjects::N[161] = new N162; + LObjects::N[162] = new N163; + LObjects::N[164] = new N165; + LObjects::N[165] = new N166; + LObjects::N[172] = new N173; + 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[178] = new N179; + LObjects::N[179] = new N180; + LObjects::N[180] = new N181; + LObjects::N[181] = new N182; + LObjects::N[182] = new N183; + LObjects::N[183] = new N184; + LObjects::N[184] = new N185; + LObjects::N[185] = new N186; + LObjects::N[186] = new N187; + LObjects::N[187] = new N188; } + +const QMetaObject* staticMetaObject(int n) { + const QMetaObject* m = 0; + switch(n) { + case 112: m = &QJSEngine::staticMetaObject; break; + case 168: m = &QQmlApplicationEngine::staticMetaObject; break; + case 169: m = &QQmlComponent::staticMetaObject; break; + case 170: m = &QQmlContext::staticMetaObject; break; + case 171: m = &QQmlEngine::staticMetaObject; break; + case 172: m = &QQmlExpression::staticMetaObject; break; + case 173: m = &QQmlExtensionPlugin::staticMetaObject; break; + case 174: m = &QQmlFileSelector::staticMetaObject; break; + case 175: m = &QQmlPropertyMap::staticMetaObject; break; + case 176: m = &QQuickFramebufferObject::staticMetaObject; break; + case 177: m = &QQuickImageResponse::staticMetaObject; break; + case 178: m = &QQuickItem::staticMetaObject; break; + case 179: m = &QQuickItemGrabResult::staticMetaObject; break; + case 180: m = &QQuickPaintedItem::staticMetaObject; break; + case 181: m = &QQuickRenderControl::staticMetaObject; break; + case 182: m = &QQuickTextDocument::staticMetaObject; break; + case 183: m = &QQuickTextureFactory::staticMetaObject; break; + case 184: m = &QQuickView::staticMetaObject; break; + case 185: m = &QQuickWidget::staticMetaObject; break; + case 186: m = &QQuickWindow::staticMetaObject; break; + case 191: m = &QSGAbstractRenderer::staticMetaObject; break; + case 192: m = &QSGDynamicTexture::staticMetaObject; break; + case 193: m = &QSGEngine::staticMetaObject; break; + case 194: m = &QSGTexture::staticMetaObject; break; + case 195: m = &QSGTextureProvider::staticMetaObject; break; } + return m; } + +void deleteNObject(int n, void* p, int gc) { + switch(n) { + case 104: if(gc) delete (QJSValue*)p; else delete (LJSValue*)p; break; + case 105: if(gc) delete (QJSValueIterator*)p; else delete (LJSValueIterator*)p; break; + case 154: if(gc) delete (QQmlAbstractUrlInterceptor*)p; else delete (LQmlAbstractUrlInterceptor*)p; break; + case 155: if(gc) delete (QQmlError*)p; else delete (LQmlError*)p; break; + case 156: if(gc) delete (QQmlImageProviderBase*)p; else delete (LQmlImageProviderBase*)p; break; + case 157: if(gc) delete (QQmlIncubationController*)p; else delete (LQmlIncubationController*)p; break; + case 158: if(gc) delete (QQmlIncubator*)p; else delete (LQmlIncubator*)p; break; + case 159: if(gc) delete (QQmlNetworkAccessManagerFactory*)p; else delete (LQmlNetworkAccessManagerFactory*)p; break; + case 160: if(gc) delete (QQmlParserStatus*)p; else delete (LQmlParserStatus*)p; break; + case 161: if(gc) delete (QQmlProperty*)p; else delete (LQmlProperty*)p; break; + case 162: if(gc) delete (QQmlPropertyValueSource*)p; else delete (LQmlPropertyValueSource*)p; break; + case 163: if(gc) delete (QQmlScriptString*)p; else delete (LQmlScriptString*)p; break; + case 165: if(gc) delete (QQuickAsyncImageProvider*)p; else delete (LQuickAsyncImageProvider*)p; break; + case 166: if(gc) delete (QQuickImageProvider*)p; else delete (LQuickImageProvider*)p; break; + case 173: if(gc) delete (QSGBasicGeometryNode*)p; else delete (LSGBasicGeometryNode*)p; break; + case 174: if(gc) delete (QSGClipNode*)p; else delete (LSGClipNode*)p; break; + case 175: if(gc) delete (QSGFlatColorMaterial*)p; else delete (LSGFlatColorMaterial*)p; break; + case 176: if(gc) delete (QSGGeometry*)p; else delete (LSGGeometry*)p; break; + case 177: if(gc) delete (QSGGeometryNode*)p; else delete (LSGGeometryNode*)p; break; + case 178: if(gc) delete (QSGMaterial*)p; else delete (LSGMaterial*)p; break; + case 180: if(gc) delete (QSGMaterialType*)p; else delete (LSGMaterialType*)p; break; + case 181: if(gc) delete (QSGNode*)p; else delete (LSGNode*)p; break; + case 182: if(gc) delete (QSGOpacityNode*)p; else delete (LSGOpacityNode*)p; break; + case 183: if(gc) delete (QSGOpaqueTextureMaterial*)p; else delete (LSGOpaqueTextureMaterial*)p; break; + case 184: if(gc) delete (QSGSimpleRectNode*)p; else delete (LSGSimpleRectNode*)p; break; + case 185: if(gc) delete (QSGSimpleTextureNode*)p; else delete (LSGSimpleTextureNode*)p; break; + case 186: if(gc) delete (QSGTextureMaterial*)p; else delete (LSGTextureMaterial*)p; break; + case 187: if(gc) delete (QSGTransformNode*)p; else delete (LSGTransformNode*)p; break; + case 188: if(gc) delete (QSGVertexColorMaterial*)p; else delete (LSGVertexColorMaterial*)p; break; }} + +NumList* overrideFunctions(const QByteArray& name) { + NumList* ids = 0; + int n = LObjects::q_names.value(name, -1); + if(n != -1) { + switch(n) { + case 112: ids = &LJSEngine::overrideIds; break; + case 168: ids = &LQmlApplicationEngine::overrideIds; break; + case 169: ids = &LQmlComponent::overrideIds; break; + case 170: ids = &LQmlContext::overrideIds; break; + case 171: ids = &LQmlEngine::overrideIds; break; + case 172: ids = &LQmlExpression::overrideIds; break; + case 173: ids = &LQmlExtensionPlugin::overrideIds; break; + case 174: ids = &LQmlFileSelector::overrideIds; break; + case 175: ids = &LQmlPropertyMap::overrideIds; break; + case 177: ids = &LQuickImageResponse::overrideIds; break; + case 178: ids = &LQuickItem::overrideIds; break; + case 179: ids = &LQuickItemGrabResult::overrideIds; break; + case 180: ids = &LQuickPaintedItem::overrideIds; break; + case 181: ids = &LQuickRenderControl::overrideIds; break; + case 182: ids = &LQuickTextDocument::overrideIds; break; + case 183: ids = &LQuickTextureFactory::overrideIds; break; + case 184: ids = &LQuickView::overrideIds; break; + case 185: ids = &LQuickWidget::overrideIds; break; + case 186: ids = &LQuickWindow::overrideIds; break; + case 191: ids = &LSGAbstractRenderer::overrideIds; break; + case 192: ids = &LSGDynamicTexture::overrideIds; break; + case 193: ids = &LSGEngine::overrideIds; break; + case 194: ids = &LSGTexture::overrideIds; break; + case 195: ids = &LSGTextureProvider::overrideIds; break; }} + else { + n = LObjects::n_names.value(name); + switch(n) { + case 104: ids = &LJSValue::overrideIds; break; + case 105: ids = &LJSValueIterator::overrideIds; break; + case 154: ids = &LQmlAbstractUrlInterceptor::overrideIds; break; + case 155: ids = &LQmlError::overrideIds; break; + case 156: ids = &LQmlImageProviderBase::overrideIds; break; + case 157: ids = &LQmlIncubationController::overrideIds; break; + case 158: ids = &LQmlIncubator::overrideIds; break; + case 159: ids = &LQmlNetworkAccessManagerFactory::overrideIds; break; + case 160: ids = &LQmlParserStatus::overrideIds; break; + case 161: ids = &LQmlProperty::overrideIds; break; + case 162: ids = &LQmlPropertyValueSource::overrideIds; break; + case 163: ids = &LQmlScriptString::overrideIds; break; + case 165: ids = &LQuickAsyncImageProvider::overrideIds; break; + case 166: ids = &LQuickImageProvider::overrideIds; break; + case 173: ids = &LSGBasicGeometryNode::overrideIds; break; + case 174: ids = &LSGClipNode::overrideIds; break; + case 175: ids = &LSGFlatColorMaterial::overrideIds; break; + case 176: ids = &LSGGeometry::overrideIds; break; + case 177: ids = &LSGGeometryNode::overrideIds; break; + case 178: ids = &LSGMaterial::overrideIds; break; + case 180: ids = &LSGMaterialType::overrideIds; break; + case 181: ids = &LSGNode::overrideIds; break; + case 182: ids = &LSGOpacityNode::overrideIds; break; + case 183: ids = &LSGOpaqueTextureMaterial::overrideIds; break; + case 184: ids = &LSGSimpleRectNode::overrideIds; break; + case 185: ids = &LSGSimpleTextureNode::overrideIds; break; + case 186: ids = &LSGTextureMaterial::overrideIds; break; + case 187: ids = &LSGTransformNode::overrideIds; break; + case 188: ids = &LSGVertexColorMaterial::overrideIds; break; }} + return ids; } + +QT_END_NAMESPACE diff --git a/src/gen/quick/_ini.h b/src/gen/quick/_ini.h new file mode 100644 index 0000000..51e2705 --- /dev/null +++ b/src/gen/quick/_ini.h @@ -0,0 +1,29 @@ +#ifndef INI_H +#define INI_H + +#include "../../ecl_fun.h" +#include +#include +#include + +#ifdef Q_OS_WIN +#define LIB_EXPORT __declspec(dllexport) +#else +#define LIB_EXPORT +#endif + +QT_BEGIN_NAMESPACE + +typedef QList NumList; + +extern "C" { + LIB_EXPORT void ini(); + LIB_EXPORT const QMetaObject* staticMetaObject(int); + LIB_EXPORT void deleteNObject(int, void*, int); + LIB_EXPORT NumList* overrideFunctions(const QByteArray&); + LIB_EXPORT void* toMetaArg(int, cl_object, bool*); + LIB_EXPORT cl_object to_lisp_arg(int, void*, bool*); } + +QT_END_NAMESPACE + +#endif diff --git a/src/gen/quick/_ini2.h b/src/gen/quick/_ini2.h new file mode 100644 index 0000000..7500634 --- /dev/null +++ b/src/gen/quick/_ini2.h @@ -0,0 +1,56 @@ +#ifndef INI2_H +#define INI2_H + +#include "_ini.h" +#include "../_lobjects.h" +#include "../../eql.h" +#include + +QT_BEGIN_NAMESPACE + +TO_QT_TYPE_PTR (QJSValue, qjsvalue) +TO_QT_TYPE_PTR (QQmlProperty, qqmlproperty) +TO_QT_TYPE_PTR (QQmlScriptString, qqmlscriptstring) + +FROM_QT_TYPE_ONLY (QQmlError, qqmlerror) + +TO_CL_LIST_VAL (QQmlError, qqmlerror) + +TO_CL_LIST_PTR (QQuickItem, qquickitem) + +#define META_TYPE_(var, type) var = qRegisterMetaType< type >(#type); + +void ini2() { + META_TYPE_(LObjects::T_QJSValue, QJSValue) + META_TYPE_(LObjects::T_QQmlProperty, QQmlProperty) + META_TYPE_(LObjects::T_QQmlScriptString, QQmlScriptString) + META_TYPE_(LObjects::T_QList_QQmlError, QList) + META_TYPE_(LObjects::T_QList_QQuickItem, QList) } + +void* toMetaArg(int n, cl_object l_arg, bool* found) { + void* p = 0; + bool _found = true; + if(LObjects::T_QJSValue == n) { p = new QJSValue(*toQJSValuePointer(l_arg)); } + else if(LObjects::T_QQmlProperty == n) { p = new QQmlProperty(*toQQmlPropertyPointer(l_arg)); } + else if(LObjects::T_QQmlScriptString == n) { p = new QQmlScriptString(*toQQmlScriptStringPointer(l_arg)); } + else { _found = false; } + if(_found) { + *found = true; } + return p; } + +cl_object to_lisp_arg(int n, void* p, bool* found) { + cl_object l_ret = Cnil; + bool _found = true; + if(LObjects::T_QJSValue == n) { l_ret = from_qjsvalue(*(QJSValue*)p); } + else if(LObjects::T_QQmlProperty == n) { l_ret = from_qqmlproperty(*(QQmlProperty*)p); } + else if(LObjects::T_QQmlScriptString == n) { l_ret = from_qqmlscriptstring(*(QQmlScriptString*)p); } + else if(LObjects::T_QList_QQmlError == n) { l_ret = from_qqmlerrorlist(*(QList*)p); } + else if(LObjects::T_QList_QQuickItem == n) { l_ret = from_qquickitemlist(*(QList*)p); } + else { _found = false; } + if(_found) { + *found = true; } + return l_ret; } + +QT_END_NAMESPACE + +#endif diff --git a/src/gen/quick/_n_classes.h b/src/gen/quick/_n_classes.h new file mode 100644 index 0000000..a45ac58 --- /dev/null +++ b/src/gen/quick/_n_classes.h @@ -0,0 +1,341 @@ +// THIS FILE IS GENERATED (see helper/) + +#ifndef N_CLASSES_H +#define N_CLASSES_H + +#include "_ini.h" +#include "../../ecl_fun.h" +#include "../_lobjects.h" +#include +#include + +QT_BEGIN_NAMESPACE + +class LJSValue : public QJSValue { + friend class N104; +public: + LJSValue(uint u, SpecialValue x1 = UndefinedValue) : QJSValue(x1), unique(u) {} + LJSValue(uint u, const QJSValue& x1) : QJSValue(x1), unique(u) {} + LJSValue(uint u, bool x1) : QJSValue(x1), unique(u) {} + LJSValue(uint u, int x1) : QJSValue(x1), unique(u) {} + LJSValue(uint u, uint x1) : QJSValue(x1), unique(u) {} + LJSValue(uint u, double x1) : QJSValue(x1), unique(u) {} + LJSValue(uint u, const QString& x1) : QJSValue(x1), unique(u) {} + LJSValue(uint u, const QLatin1String& x1) : QJSValue(x1), unique(u) {} + LJSValue(uint u, const char* x1) : QJSValue(x1), unique(u) {} + + static NumList overrideIds; + uint unique; +}; + +class LJSValueIterator : public QJSValueIterator { + friend class N105; +public: + LJSValueIterator(uint u, const QJSValue& x1) : QJSValueIterator(x1), unique(u) {} + + static NumList overrideIds; + uint unique; +}; + +class LQmlAbstractUrlInterceptor : public QQmlAbstractUrlInterceptor { + friend class N154; +public: + LQmlAbstractUrlInterceptor(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; + + QUrl intercept(const QUrl& x1, DataType x2) { quint64 id = LObjects::override_id(unique, 522); void* fun = LObjects::overrideFun(id); QUrl ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 522, args, id).value(); } return ret; } +}; + +class LQmlError : public QQmlError { + friend class N155; +public: + LQmlError(uint u) : unique(u) {} + LQmlError(uint u, const QQmlError& x1) : QQmlError(x1), unique(u) {} + + static NumList overrideIds; + uint unique; +}; + +class LQmlImageProviderBase : public QQmlImageProviderBase { + friend class N156; +public: + + static NumList overrideIds; + uint unique; + + Flags flags() const { quint64 id = LObjects::override_id(unique, 523); void* fun = LObjects::overrideFun(id); Flags ret = (Flags)0; if(fun && (LObjects::calling != id)) { ret = (Flags)callOverrideFun(fun, 523, 0, id).toInt(); } return ret; } + ImageType imageType() const { quint64 id = LObjects::override_id(unique, 524); void* fun = LObjects::overrideFun(id); ImageType ret = (ImageType)0; if(fun && (LObjects::calling != id)) { ret = (ImageType)callOverrideFun(fun, 524, 0, id).toInt(); } return ret; } +}; + +class LQmlIncubationController : public QQmlIncubationController { + friend class N157; +public: + LQmlIncubationController(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; + + void incubatingObjectCountChanged(int x1) { quint64 id = LObjects::override_id(unique, 525); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 525, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQmlIncubationController::incubatingObjectCountChanged(x1); }} +}; + +class LQmlIncubator : public QQmlIncubator { + friend class N158; +public: + LQmlIncubator(uint u, IncubationMode x1 = Asynchronous) : QQmlIncubator(x1), unique(u) {} + + static NumList overrideIds; + uint unique; + + void setInitialState(QObject* x1) { quint64 id = LObjects::override_id(unique, 526); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 526, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQmlIncubator::setInitialState(x1); }} + void statusChanged(Status x1) { quint64 id = LObjects::override_id(unique, 527); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 527, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQmlIncubator::statusChanged(x1); }} +}; + +class LQmlNetworkAccessManagerFactory : public QQmlNetworkAccessManagerFactory { + friend class N159; +public: + + static NumList overrideIds; + uint unique; + + QNetworkAccessManager* create(QObject* x1) { quint64 id = LObjects::override_id(unique, 528); void* fun = LObjects::overrideFun(id); QNetworkAccessManager* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QNetworkAccessManager*)callOverrideFun(fun, 528, args, id).value(); } return ret; } +}; + +class LQmlParserStatus : public QQmlParserStatus { + friend class N160; +public: + + static NumList overrideIds; + uint unique; + + void classBegin() { quint64 id = LObjects::override_id(unique, 529); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 529, 0, id); }} + void componentComplete() { quint64 id = LObjects::override_id(unique, 530); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 530, 0, id); }} +}; + +class LQmlProperty : public QQmlProperty { + friend class N161; +public: + LQmlProperty(uint u) : unique(u) {} + LQmlProperty(uint u, QObject* x1) : QQmlProperty(x1), unique(u) {} + LQmlProperty(uint u, QObject* x1, QQmlContext* x2) : QQmlProperty(x1, x2), unique(u) {} + LQmlProperty(uint u, QObject* x1, const QString& x2) : QQmlProperty(x1, x2), unique(u) {} + LQmlProperty(uint u, QObject* x1, const QString& x2, QQmlContext* x3) : QQmlProperty(x1, x2, x3), unique(u) {} + LQmlProperty(uint u, const QQmlProperty& x1) : QQmlProperty(x1), unique(u) {} + + static NumList overrideIds; + uint unique; +}; + +class LQmlPropertyValueSource : public QQmlPropertyValueSource { + friend class N162; +public: + LQmlPropertyValueSource(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; + + void setTarget(const QQmlProperty& x1) { quint64 id = LObjects::override_id(unique, 531); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 531, args, id); }} +}; + +class LQmlScriptString : public QQmlScriptString { + friend class N163; +public: + LQmlScriptString(uint u) : unique(u) {} + LQmlScriptString(uint u, const QQmlScriptString& x1) : QQmlScriptString(x1), unique(u) {} + + static NumList overrideIds; + uint unique; +}; + +class LQuickAsyncImageProvider : public QQuickAsyncImageProvider { + friend class N165; +public: + LQuickAsyncImageProvider(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; + + QQuickImageResponse* requestImageResponse(const QString& x1, const QSize& x2) { quint64 id = LObjects::override_id(unique, 532); void* fun = LObjects::overrideFun(id); QQuickImageResponse* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QQuickImageResponse*)callOverrideFun(fun, 532, args, id).value(); } return ret; } + QImage requestImage(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 533); void* fun = LObjects::overrideFun(id); QImage ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 533, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickAsyncImageProvider::requestImage(x1, x2, x3); } return ret; } + QPixmap requestPixmap(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 534); void* fun = LObjects::overrideFun(id); QPixmap ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 534, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickAsyncImageProvider::requestPixmap(x1, x2, x3); } return ret; } + QQuickTextureFactory* requestTexture(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 535); void* fun = LObjects::overrideFun(id); QQuickTextureFactory* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = (QQuickTextureFactory*)callOverrideFun(fun, 535, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickAsyncImageProvider::requestTexture(x1, x2, x3); } return ret; } +}; + +class LQuickImageProvider : public QQuickImageProvider { + friend class N166; +public: + LQuickImageProvider(uint u, ImageType x1, Flags x2 = 0) : QQuickImageProvider(x1, x2), unique(u) {} + + static NumList overrideIds; + uint unique; + + QImage requestImage(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 533); void* fun = LObjects::overrideFun(id); QImage ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 533, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::requestImage(x1, x2, x3); } return ret; } + QPixmap requestPixmap(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 534); void* fun = LObjects::overrideFun(id); QPixmap ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 534, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::requestPixmap(x1, x2, x3); } return ret; } + QQuickTextureFactory* requestTexture(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 535); void* fun = LObjects::overrideFun(id); QQuickTextureFactory* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = (QQuickTextureFactory*)callOverrideFun(fun, 535, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::requestTexture(x1, x2, x3); } return ret; } + Flags flags() const { quint64 id = LObjects::override_id(unique, 523); void* fun = LObjects::overrideFun(id); Flags ret = (Flags)0; if(fun && (LObjects::calling != id)) { ret = (Flags)callOverrideFun(fun, 523, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::flags(); } return ret; } + ImageType imageType() const { quint64 id = LObjects::override_id(unique, 524); void* fun = LObjects::overrideFun(id); ImageType ret = (ImageType)0; if(fun && (LObjects::calling != id)) { ret = (ImageType)callOverrideFun(fun, 524, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::imageType(); } return ret; } +}; + +class LSGBasicGeometryNode : public QSGBasicGeometryNode { + friend class N173; +public: + + static NumList overrideIds; + uint unique; + + bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 537); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 537, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGBasicGeometryNode::isSubtreeBlocked(); } return ret; } + void preprocess() { quint64 id = LObjects::override_id(unique, 538); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 538, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGBasicGeometryNode::preprocess(); }} +}; + +class LSGClipNode : public QSGClipNode { + friend class N174; +public: + LSGClipNode(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; +}; + +class LSGFlatColorMaterial : public QSGFlatColorMaterial { + friend class N175; +public: + LSGFlatColorMaterial(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; + + int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 539); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 539, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGFlatColorMaterial::compare(x1); } return ret; } + QSGMaterialShader* createShader() const { quint64 id = LObjects::override_id(unique, 540); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 540, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGFlatColorMaterial::createShader(); } return ret; } + QSGMaterialType* type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); QSGMaterialType* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialType*)callOverrideFun(fun, 233, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGFlatColorMaterial::type(); } return ret; } +}; + +class LSGGeometry : public QSGGeometry { + friend class N176; +public: + + static NumList overrideIds; + uint unique; +}; + +class LSGGeometryNode : public QSGGeometryNode { + friend class N177; +public: + LSGGeometryNode(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; +}; + +class LSGMaterial : public QSGMaterial { + friend class N178; +public: + + static NumList overrideIds; + uint unique; + + int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 539); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 539, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGMaterial::compare(x1); } return ret; } + QSGMaterialShader* createShader() const { quint64 id = LObjects::override_id(unique, 540); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 540, 0, id).value(); } return ret; } + QSGMaterialType* type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); QSGMaterialType* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialType*)callOverrideFun(fun, 233, 0, id).value(); } return ret; } +}; + +class LSGMaterialType : public QSGMaterialType { + friend class N180; +public: + + static NumList overrideIds; + uint unique; +}; + +class LSGNode : public QSGNode { + friend class N181; +public: + LSGNode(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; + + bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 537); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 537, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGNode::isSubtreeBlocked(); } return ret; } + void preprocess() { quint64 id = LObjects::override_id(unique, 538); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 538, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGNode::preprocess(); }} +}; + +class LSGOpacityNode : public QSGOpacityNode { + friend class N182; +public: + LSGOpacityNode(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; + + bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 537); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 537, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGOpacityNode::isSubtreeBlocked(); } return ret; } + void preprocess() { quint64 id = LObjects::override_id(unique, 538); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 538, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGOpacityNode::preprocess(); }} +}; + +class LSGOpaqueTextureMaterial : public QSGOpaqueTextureMaterial { + friend class N183; +public: + LSGOpaqueTextureMaterial(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; + + int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 539); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 539, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGOpaqueTextureMaterial::compare(x1); } return ret; } + QSGMaterialShader* createShader() const { quint64 id = LObjects::override_id(unique, 540); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 540, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGOpaqueTextureMaterial::createShader(); } return ret; } + QSGMaterialType* type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); QSGMaterialType* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialType*)callOverrideFun(fun, 233, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGOpaqueTextureMaterial::type(); } return ret; } +}; + +class LSGSimpleRectNode : public QSGSimpleRectNode { + friend class N184; +public: + LSGSimpleRectNode(uint u, const QRectF& x1, const QColor& x2) : QSGSimpleRectNode(x1, x2), unique(u) {} + LSGSimpleRectNode(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; +}; + +class LSGSimpleTextureNode : public QSGSimpleTextureNode { + friend class N185; +public: + LSGSimpleTextureNode(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; +}; + +class LSGTextureMaterial : public QSGTextureMaterial { + friend class N186; +public: + + static NumList overrideIds; + uint unique; +}; + +class LSGTransformNode : public QSGTransformNode { + friend class N187; +public: + LSGTransformNode(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; + + bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 537); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 537, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGTransformNode::isSubtreeBlocked(); } return ret; } + void preprocess() { quint64 id = LObjects::override_id(unique, 538); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 538, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGTransformNode::preprocess(); }} +}; + +class LSGVertexColorMaterial : public QSGVertexColorMaterial { + friend class N188; +public: + LSGVertexColorMaterial(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; + + int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 539); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 539, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGVertexColorMaterial::compare(x1); } return ret; } + QSGMaterialShader* createShader() const { quint64 id = LObjects::override_id(unique, 540); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 540, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGVertexColorMaterial::createShader(); } return ret; } + QSGMaterialType* type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); QSGMaterialType* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialType*)callOverrideFun(fun, 233, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGVertexColorMaterial::type(); } return ret; } +}; + +QT_END_NAMESPACE + +#endif diff --git a/src/gen/quick/_n_methods.h b/src/gen/quick/_n_methods.h new file mode 100644 index 0000000..d73fbee --- /dev/null +++ b/src/gen/quick/_n_methods.h @@ -0,0 +1,405 @@ +// THIS FILE IS GENERATED (see helper/) + +#ifndef N_METHODS_H +#define N_METHODS_H + +#include "_n_classes.h" +#include "../_main_n_methods.h" +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class N104 : public QObject { // QJSValue + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QJSValue::SpecialValue x1 = QJSValue::UndefinedValue) { return new LJSValue(u, x1); } + Q_INVOKABLE void* C(uint u, const QJSValue& x1) { return new LJSValue(u, x1); } + Q_INVOKABLE void* C(uint u, bool x1) { return new LJSValue(u, x1); } + Q_INVOKABLE void* C(uint u, int x1) { return new LJSValue(u, x1); } + Q_INVOKABLE void* C(uint u, uint x1) { return new LJSValue(u, x1); } + Q_INVOKABLE void* C(uint u, double x1) { return new LJSValue(u, x1); } + Q_INVOKABLE void* C(uint u, const QString& x1) { return new LJSValue(u, x1); } + Q_INVOKABLE void* C(uint u, const QLatin1String& x1) { return new LJSValue(u, x1); } + Q_INVOKABLE void* C(uint u, const char* x1) { return new LJSValue(u, x1); } + Q_INVOKABLE QJSValue Mcall(QJSValue* o, const QJSValueList& x1 = QJSValueList()) { return o->call(x1); } + Q_INVOKABLE QJSValue McallAsConstructor(QJSValue* o, const QJSValueList& x1 = QJSValueList()) { return o->callAsConstructor(x1); } + Q_INVOKABLE QJSValue McallWithInstance(QJSValue* o, const QJSValue& x1, const QJSValueList& x2 = QJSValueList()) { return o->callWithInstance(x1, x2); } + Q_INVOKABLE bool MdeleteProperty(QJSValue* o, const QString& x1) { return o->deleteProperty(x1); } + Q_INVOKABLE bool Mequals(QJSValue* o, const QJSValue& x1) const { return o->equals(x1); } + Q_INVOKABLE bool MhasOwnProperty(QJSValue* o, const QString& x1) const { return o->hasOwnProperty(x1); } + Q_INVOKABLE bool MhasProperty(QJSValue* o, const QString& x1) const { return o->hasProperty(x1); } + Q_INVOKABLE bool MisArray(QJSValue* o) const { return o->isArray(); } + Q_INVOKABLE bool MisBool(QJSValue* o) const { return o->isBool(); } + Q_INVOKABLE bool MisCallable(QJSValue* o) const { return o->isCallable(); } + Q_INVOKABLE bool MisDate(QJSValue* o) const { return o->isDate(); } + Q_INVOKABLE bool MisError(QJSValue* o) const { return o->isError(); } + Q_INVOKABLE bool MisNull(QJSValue* o) const { return o->isNull(); } + Q_INVOKABLE bool MisNumber(QJSValue* o) const { return o->isNumber(); } + Q_INVOKABLE bool MisObject(QJSValue* o) const { return o->isObject(); } + Q_INVOKABLE bool MisQObject(QJSValue* o) const { return o->isQObject(); } + Q_INVOKABLE bool MisRegExp(QJSValue* o) const { return o->isRegExp(); } + Q_INVOKABLE bool MisString(QJSValue* o) const { return o->isString(); } + Q_INVOKABLE bool MisUndefined(QJSValue* o) const { return o->isUndefined(); } + Q_INVOKABLE bool MisVariant(QJSValue* o) const { return o->isVariant(); } + Q_INVOKABLE QJSValue Mproperty(QJSValue* o, const QString& x1) const { return o->property(x1); } + Q_INVOKABLE QJSValue Mproperty(QJSValue* o, quint32 x1) const { return o->property(x1); } + Q_INVOKABLE QJSValue Mprototype(QJSValue* o) const { return o->prototype(); } + Q_INVOKABLE void MsetProperty(QJSValue* o, const QString& x1, const QJSValue& x2) { o->setProperty(x1, x2); } + Q_INVOKABLE void MsetProperty(QJSValue* o, quint32 x1, const QJSValue& x2) { o->setProperty(x1, x2); } + Q_INVOKABLE void MsetPrototype(QJSValue* o, const QJSValue& x1) { o->setPrototype(x1); } + Q_INVOKABLE bool MstrictlyEquals(QJSValue* o, const QJSValue& x1) const { return o->strictlyEquals(x1); } + Q_INVOKABLE bool MtoBool(QJSValue* o) const { return o->toBool(); } + Q_INVOKABLE QDateTime MtoDateTime(QJSValue* o) const { return o->toDateTime(); } + Q_INVOKABLE qint32 MtoInt(QJSValue* o) const { return o->toInt(); } + Q_INVOKABLE double MtoNumber(QJSValue* o) const { return o->toNumber(); } + Q_INVOKABLE QObject* MtoQObject(QJSValue* o) const { return o->toQObject(); } + Q_INVOKABLE QString MtoString(QJSValue* o) const { return o->toString(); } + Q_INVOKABLE quint32 MtoUInt(QJSValue* o) const { return o->toUInt(); } + Q_INVOKABLE QVariant MtoVariant(QJSValue* o) const { return o->toVariant(); } +}; + +class N105 : public QObject { // QJSValueIterator + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, const QJSValue& x1) { return new LJSValueIterator(u, x1); } + Q_INVOKABLE bool MhasNext(QJSValueIterator* o) const { return o->hasNext(); } + Q_INVOKABLE QString Mname(QJSValueIterator* o) const { return o->name(); } + Q_INVOKABLE bool Mnext(QJSValueIterator* o) { return o->next(); } + Q_INVOKABLE QJSValue Mvalue(QJSValueIterator* o) const { return o->value(); } +}; + +class N154 : public QObject { // QQmlAbstractUrlInterceptor + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LQmlAbstractUrlInterceptor(u); } + Q_INVOKABLE QUrl Mintercept(QQmlAbstractUrlInterceptor* o, const QUrl& x1, QQmlAbstractUrlInterceptor::DataType x2) { return o->intercept(x1, x2); } +}; + +class N155 : public QObject { // QQmlError + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LQmlError(u); } + Q_INVOKABLE void* C(uint u, const QQmlError& x1) { return new LQmlError(u, x1); } + Q_INVOKABLE int Mcolumn(QQmlError* o) const { return o->column(); } + Q_INVOKABLE QString Mdescription(QQmlError* o) const { return o->description(); } + Q_INVOKABLE bool MisValid(QQmlError* o) const { return o->isValid(); } + Q_INVOKABLE int Mline(QQmlError* o) const { return o->line(); } + Q_INVOKABLE QObject* Mobject(QQmlError* o) const { return o->object(); } + Q_INVOKABLE void MsetColumn(QQmlError* o, int x1) { o->setColumn(x1); } + Q_INVOKABLE void MsetDescription(QQmlError* o, const QString& x1) { o->setDescription(x1); } + Q_INVOKABLE void MsetLine(QQmlError* o, int x1) { o->setLine(x1); } + Q_INVOKABLE void MsetObject(QQmlError* o, QObject* x1) { o->setObject(x1); } + Q_INVOKABLE void MsetUrl(QQmlError* o, const QUrl& x1) { o->setUrl(x1); } + Q_INVOKABLE QString MtoString(QQmlError* o) const { return o->toString(); } + Q_INVOKABLE QUrl Murl(QQmlError* o) const { return o->url(); } +}; + +class N156 : public QObject { // QQmlImageProviderBase + Q_OBJECT +public: + Q_INVOKABLE int Mflags(QQmlImageProviderBase* o) const { return o->flags(); } + Q_INVOKABLE int MimageType(QQmlImageProviderBase* o) const { return o->imageType(); } +}; + +class N157 : public QObject { // QQmlIncubationController + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LQmlIncubationController(u); } + Q_INVOKABLE void MincubateFor(QQmlIncubationController* o, int x1) { o->incubateFor(x1); } + Q_INVOKABLE int MincubatingObjectCount(QQmlIncubationController* o) const { return o->incubatingObjectCount(); } +}; + +class N158 : public QObject { // QQmlIncubator + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QQmlIncubator::IncubationMode x1 = QQmlIncubator::Asynchronous) { return new LQmlIncubator(u, x1); } + Q_INVOKABLE void Mclear(QQmlIncubator* o) { o->clear(); } + Q_INVOKABLE QList Merrors(QQmlIncubator* o) const { return o->errors(); } + Q_INVOKABLE void MforceCompletion(QQmlIncubator* o) { o->forceCompletion(); } + Q_INVOKABLE int MincubationMode(QQmlIncubator* o) const { return o->incubationMode(); } + Q_INVOKABLE bool MisError(QQmlIncubator* o) const { return o->isError(); } + Q_INVOKABLE bool MisLoading(QQmlIncubator* o) const { return o->isLoading(); } + Q_INVOKABLE bool MisNull(QQmlIncubator* o) const { return o->isNull(); } + Q_INVOKABLE bool MisReady(QQmlIncubator* o) const { return o->isReady(); } + Q_INVOKABLE QObject* Mobject(QQmlIncubator* o) const { return o->object(); } + Q_INVOKABLE int Mstatus(QQmlIncubator* o) const { return o->status(); } +}; + +class N159 : public QObject { // QQmlNetworkAccessManagerFactory + Q_OBJECT +public: + Q_INVOKABLE QNetworkAccessManager* Mcreate(QQmlNetworkAccessManagerFactory* o, QObject* x1) { return o->create(x1); } +}; + +class N160 : public QObject { // QQmlParserStatus + Q_OBJECT +public: + Q_INVOKABLE void MclassBegin(QQmlParserStatus* o) { o->classBegin(); } + Q_INVOKABLE void McomponentComplete(QQmlParserStatus* o) { o->componentComplete(); } +}; + +class N161 : public QObject { // QQmlProperty + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LQmlProperty(u); } + Q_INVOKABLE void* C(uint u, QObject* x1) { return new LQmlProperty(u, x1); } + Q_INVOKABLE void* C(uint u, QObject* x1, QQmlContext* x2) { return new LQmlProperty(u, x1, x2); } + Q_INVOKABLE void* C(uint u, QObject* x1, const QString& x2) { return new LQmlProperty(u, x1, x2); } + Q_INVOKABLE void* C(uint u, QObject* x1, const QString& x2, QQmlContext* x3) { return new LQmlProperty(u, x1, x2, x3); } + Q_INVOKABLE void* C(uint u, const QQmlProperty& x1) { return new LQmlProperty(u, x1); } + Q_INVOKABLE bool MconnectNotifySignal(QQmlProperty* o, QObject* x1, const char* x2) const { return o->connectNotifySignal(x1, x2); } + Q_INVOKABLE bool MconnectNotifySignal(QQmlProperty* o, QObject* x1, int x2) const { return o->connectNotifySignal(x1, x2); } + Q_INVOKABLE bool MhasNotifySignal(QQmlProperty* o) const { return o->hasNotifySignal(); } + Q_INVOKABLE int Mindex(QQmlProperty* o) const { return o->index(); } + Q_INVOKABLE bool MisDesignable(QQmlProperty* o) const { return o->isDesignable(); } + Q_INVOKABLE bool MisProperty(QQmlProperty* o) const { return o->isProperty(); } + Q_INVOKABLE bool MisResettable(QQmlProperty* o) const { return o->isResettable(); } + Q_INVOKABLE bool MisSignalProperty(QQmlProperty* o) const { return o->isSignalProperty(); } + Q_INVOKABLE bool MisValid(QQmlProperty* o) const { return o->isValid(); } + Q_INVOKABLE bool MisWritable(QQmlProperty* o) const { return o->isWritable(); } + Q_INVOKABLE QString Mname(QQmlProperty* o) const { return o->name(); } + Q_INVOKABLE bool MneedsNotifySignal(QQmlProperty* o) const { return o->needsNotifySignal(); } + Q_INVOKABLE QObject* Mobject(QQmlProperty* o) const { return o->object(); } + Q_INVOKABLE int MpropertyType(QQmlProperty* o) const { return o->propertyType(); } + Q_INVOKABLE int MpropertyTypeCategory(QQmlProperty* o) const { return o->propertyTypeCategory(); } + Q_INVOKABLE const char* MpropertyTypeName(QQmlProperty* o) const { return o->propertyTypeName(); } + Q_INVOKABLE QVariant Mread(QQmlProperty* o) const { return o->read(); } + Q_INVOKABLE bool Mreset(QQmlProperty* o) const { return o->reset(); } + Q_INVOKABLE int Mtype(QQmlProperty* o) const { return o->type(); } + Q_INVOKABLE bool Mwrite(QQmlProperty* o, const QVariant& x1) const { return o->write(x1); } + Q_INVOKABLE QVariant Sread(const QObject* x1, const QString& x2) { return QQmlProperty::read(x1, x2); } + Q_INVOKABLE QVariant Sread(const QObject* x1, const QString& x2, QQmlContext* x3) { return QQmlProperty::read(x1, x2, x3); } + Q_INVOKABLE bool Swrite(QObject* x1, const QString& x2, const QVariant& x3) { return QQmlProperty::write(x1, x2, x3); } + Q_INVOKABLE bool Swrite(QObject* x1, const QString& x2, const QVariant& x3, QQmlContext* x4) { return QQmlProperty::write(x1, x2, x3, x4); } +}; + +class N162 : public QObject { // QQmlPropertyValueSource + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LQmlPropertyValueSource(u); } + Q_INVOKABLE void MsetTarget(QQmlPropertyValueSource* o, const QQmlProperty& x1) { o->setTarget(x1); } +}; + +class N163 : public QObject { // QQmlScriptString + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LQmlScriptString(u); } + Q_INVOKABLE void* C(uint u, const QQmlScriptString& x1) { return new LQmlScriptString(u, x1); } + Q_INVOKABLE bool MbooleanLiteral(QQmlScriptString* o, bool* x1) const { return o->booleanLiteral(x1); } + Q_INVOKABLE bool MisEmpty(QQmlScriptString* o) const { return o->isEmpty(); } + Q_INVOKABLE bool MisNullLiteral(QQmlScriptString* o) const { return o->isNullLiteral(); } + Q_INVOKABLE bool MisUndefinedLiteral(QQmlScriptString* o) const { return o->isUndefinedLiteral(); } + Q_INVOKABLE qreal MnumberLiteral(QQmlScriptString* o, bool* x1) const { return o->numberLiteral(x1); } + Q_INVOKABLE QString MstringLiteral(QQmlScriptString* o) const { return o->stringLiteral(); } +}; + +class N176 : public QObject { // QSGGeometry + Q_OBJECT +public: + Q_INVOKABLE void Mallocate(QSGGeometry* o, int x1, int x2 = 0) { o->allocate(x1, x2); } + Q_INVOKABLE int MattributeCount(QSGGeometry* o) const { return o->attributeCount(); } + Q_INVOKABLE GLenum MdrawingMode(QSGGeometry* o) const { return o->drawingMode(); } + Q_INVOKABLE int MindexCount(QSGGeometry* o) const { return o->indexCount(); } + Q_INVOKABLE quint16* MindexDataAsUShort(QSGGeometry* o) { return o->indexDataAsUShort(); } + Q_INVOKABLE const quint16* MindexDataAsUShort(QSGGeometry* o) const { return o->indexDataAsUShort(); } + Q_INVOKABLE int MindexDataPattern(QSGGeometry* o) const { return o->indexDataPattern(); } + Q_INVOKABLE int MindexType(QSGGeometry* o) const { return o->indexType(); } + Q_INVOKABLE float MlineWidth(QSGGeometry* o) const { return o->lineWidth(); } + Q_INVOKABLE void MmarkIndexDataDirty(QSGGeometry* o) { o->markIndexDataDirty(); } + Q_INVOKABLE void MmarkVertexDataDirty(QSGGeometry* o) { o->markVertexDataDirty(); } + Q_INVOKABLE void MsetDrawingMode(QSGGeometry* o, GLenum x1) { o->setDrawingMode(x1); } + Q_INVOKABLE void MsetIndexDataPattern(QSGGeometry* o, QSGGeometry::DataPattern x1) { o->setIndexDataPattern(x1); } + Q_INVOKABLE void MsetLineWidth(QSGGeometry* o, float x1) { o->setLineWidth(x1); } + Q_INVOKABLE void MsetVertexDataPattern(QSGGeometry* o, QSGGeometry::DataPattern x1) { o->setVertexDataPattern(x1); } + Q_INVOKABLE int MsizeOfIndex(QSGGeometry* o) const { return o->sizeOfIndex(); } + Q_INVOKABLE int MsizeOfVertex(QSGGeometry* o) const { return o->sizeOfVertex(); } + Q_INVOKABLE int MvertexCount(QSGGeometry* o) const { return o->vertexCount(); } + Q_INVOKABLE int MvertexDataPattern(QSGGeometry* o) const { return o->vertexDataPattern(); } + Q_INVOKABLE void SupdateRectGeometry(QSGGeometry* x1, const QRectF& x2) { QSGGeometry::updateRectGeometry(x1, x2); } + Q_INVOKABLE void SupdateTexturedRectGeometry(QSGGeometry* x1, const QRectF& x2, const QRectF& x3) { QSGGeometry::updateTexturedRectGeometry(x1, x2, x3); } +}; + +class N178 : public QObject { // QSGMaterial + Q_OBJECT +public: + Q_INVOKABLE int Mcompare(QSGMaterial* o, const QSGMaterial* x1) const { return o->compare(x1); } + Q_INVOKABLE QSGMaterialShader* McreateShader(QSGMaterial* o) const { return o->createShader(); } + Q_INVOKABLE int Mflags(QSGMaterial* o) const { return o->flags(); } + Q_INVOKABLE void MsetFlag(QSGMaterial* o, QSGMaterial::Flags x1, bool x2 = true) { o->setFlag(x1, x2); } + Q_INVOKABLE QSGMaterialType* Mtype(QSGMaterial* o) const { return o->type(); } +}; + +class N179 : public QObject { // QSGMaterialShader + Q_OBJECT +public: + Q_INVOKABLE void Mactivate(QSGMaterialShader* o) { o->activate(); } + Q_INVOKABLE void Mdeactivate(QSGMaterialShader* o) { o->deactivate(); } + Q_INVOKABLE QOpenGLShaderProgram* Mprogram(QSGMaterialShader* o) { return o->program(); } + Q_INVOKABLE void MupdateState(QSGMaterialShader* o, const QSGMaterialShader::RenderState& x1, QSGMaterial* x2, QSGMaterial* x3) { o->updateState(x1, x2, x3); } +}; + +class N180 : public QObject { // QSGMaterialType + Q_OBJECT +public: +}; + +class N181 : public QObject { // QSGNode + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LSGNode(u); } + Q_INVOKABLE void MappendChildNode(QSGNode* o, QSGNode* x1) { o->appendChildNode(x1); } + Q_INVOKABLE QSGNode* MchildAtIndex(QSGNode* o, int x1) const { return o->childAtIndex(x1); } + Q_INVOKABLE int MchildCount(QSGNode* o) const { return o->childCount(); } + Q_INVOKABLE QSGNode* MfirstChild(QSGNode* o) const { return o->firstChild(); } + Q_INVOKABLE int Mflags(QSGNode* o) const { return o->flags(); } + Q_INVOKABLE void MinsertChildNodeAfter(QSGNode* o, QSGNode* x1, QSGNode* x2) { o->insertChildNodeAfter(x1, x2); } + Q_INVOKABLE void MinsertChildNodeBefore(QSGNode* o, QSGNode* x1, QSGNode* x2) { o->insertChildNodeBefore(x1, x2); } + Q_INVOKABLE bool MisSubtreeBlocked(QSGNode* o) const { return o->isSubtreeBlocked(); } + Q_INVOKABLE QSGNode* MlastChild(QSGNode* o) const { return o->lastChild(); } + Q_INVOKABLE void MmarkDirty(QSGNode* o, QSGNode::DirtyState x1) { o->markDirty(x1); } + Q_INVOKABLE QSGNode* MnextSibling(QSGNode* o) const { return o->nextSibling(); } + Q_INVOKABLE QSGNode* Mparent(QSGNode* o) const { return o->parent(); } + Q_INVOKABLE void MprependChildNode(QSGNode* o, QSGNode* x1) { o->prependChildNode(x1); } + Q_INVOKABLE void Mpreprocess(QSGNode* o) { o->preprocess(); } + Q_INVOKABLE QSGNode* MpreviousSibling(QSGNode* o) const { return o->previousSibling(); } + Q_INVOKABLE void MremoveAllChildNodes(QSGNode* o) { o->removeAllChildNodes(); } + Q_INVOKABLE void MremoveChildNode(QSGNode* o, QSGNode* x1) { o->removeChildNode(x1); } + Q_INVOKABLE void MsetFlag(QSGNode* o, QSGNode::Flag x1, bool x2 = true) { o->setFlag(x1, x2); } + Q_INVOKABLE void MsetFlags(QSGNode* o, QSGNode::Flags x1, bool x2 = true) { o->setFlags(x1, x2); } + Q_INVOKABLE int Mtype(QSGNode* o) const { return o->type(); } +}; + +class N166 : public N156 { // QQuickImageProvider + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QQuickImageProvider::ImageType x1, QQuickImageProvider::Flags x2 = 0) { return new LQuickImageProvider(u, x1, x2); } + Q_INVOKABLE int Mflags(QQuickImageProvider* o) const { return o->flags(); } + Q_INVOKABLE int MimageType(QQuickImageProvider* o) const { return o->imageType(); } + Q_INVOKABLE QImage MrequestImage(QQuickImageProvider* o, const QString& x1, QSize* x2, const QSize& x3) { return o->requestImage(x1, x2, x3); } + Q_INVOKABLE QPixmap MrequestPixmap(QQuickImageProvider* o, const QString& x1, QSize* x2, const QSize& x3) { return o->requestPixmap(x1, x2, x3); } + Q_INVOKABLE QQuickTextureFactory* MrequestTexture(QQuickImageProvider* o, const QString& x1, QSize* x2, const QSize& x3) { return o->requestTexture(x1, x2, x3); } +}; + +class N173 : public N181 { // QSGBasicGeometryNode + Q_OBJECT +public: + Q_INVOKABLE const QSGGeometry* Mgeometry(QSGBasicGeometryNode* o) const { return o->geometry(); } + Q_INVOKABLE QSGGeometry* Mgeometry(QSGBasicGeometryNode* o) { return o->geometry(); } + Q_INVOKABLE void MsetGeometry(QSGBasicGeometryNode* o, QSGGeometry* x1) { o->setGeometry(x1); } +}; + +class N174 : public N173 { // QSGClipNode + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LSGClipNode(u); } + Q_INVOKABLE QRectF MclipRect(QSGClipNode* o) const { return o->clipRect(); } + Q_INVOKABLE bool MisRectangular(QSGClipNode* o) const { return o->isRectangular(); } + Q_INVOKABLE void MsetClipRect(QSGClipNode* o, const QRectF& x1) { o->setClipRect(x1); } + Q_INVOKABLE void MsetIsRectangular(QSGClipNode* o, bool x1) { o->setIsRectangular(x1); } +}; + +class N175 : public N178 { // QSGFlatColorMaterial + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LSGFlatColorMaterial(u); } + Q_INVOKABLE QColor Mcolor(QSGFlatColorMaterial* o) const { return o->color(); } + Q_INVOKABLE void MsetColor(QSGFlatColorMaterial* o, const QColor& x1) { o->setColor(x1); } +}; + +class N177 : public N173 { // QSGGeometryNode + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LSGGeometryNode(u); } + Q_INVOKABLE QSGMaterial* Mmaterial(QSGGeometryNode* o) const { return o->material(); } + Q_INVOKABLE QSGMaterial* MopaqueMaterial(QSGGeometryNode* o) const { return o->opaqueMaterial(); } + Q_INVOKABLE void MsetMaterial(QSGGeometryNode* o, QSGMaterial* x1) { o->setMaterial(x1); } + Q_INVOKABLE void MsetOpaqueMaterial(QSGGeometryNode* o, QSGMaterial* x1) { o->setOpaqueMaterial(x1); } +}; + +class N182 : public N181 { // QSGOpacityNode + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LSGOpacityNode(u); } + Q_INVOKABLE qreal Mopacity(QSGOpacityNode* o) const { return o->opacity(); } + Q_INVOKABLE void MsetOpacity(QSGOpacityNode* o, qreal x1) { o->setOpacity(x1); } +}; + +class N183 : public N178 { // QSGOpaqueTextureMaterial + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LSGOpaqueTextureMaterial(u); } + Q_INVOKABLE int Mfiltering(QSGOpaqueTextureMaterial* o) const { return o->filtering(); } + Q_INVOKABLE int MhorizontalWrapMode(QSGOpaqueTextureMaterial* o) const { return o->horizontalWrapMode(); } + Q_INVOKABLE int MmipmapFiltering(QSGOpaqueTextureMaterial* o) const { return o->mipmapFiltering(); } + Q_INVOKABLE void MsetFiltering(QSGOpaqueTextureMaterial* o, QSGTexture::Filtering x1) { o->setFiltering(x1); } + Q_INVOKABLE void MsetHorizontalWrapMode(QSGOpaqueTextureMaterial* o, QSGTexture::WrapMode x1) { o->setHorizontalWrapMode(x1); } + Q_INVOKABLE void MsetMipmapFiltering(QSGOpaqueTextureMaterial* o, QSGTexture::Filtering x1) { o->setMipmapFiltering(x1); } + Q_INVOKABLE void MsetTexture(QSGOpaqueTextureMaterial* o, QSGTexture* x1) { o->setTexture(x1); } + Q_INVOKABLE void MsetVerticalWrapMode(QSGOpaqueTextureMaterial* o, QSGTexture::WrapMode x1) { o->setVerticalWrapMode(x1); } + Q_INVOKABLE QSGTexture* Mtexture(QSGOpaqueTextureMaterial* o) const { return o->texture(); } + Q_INVOKABLE int MverticalWrapMode(QSGOpaqueTextureMaterial* o) const { return o->verticalWrapMode(); } +}; + +class N184 : public N177 { // QSGSimpleRectNode + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, const QRectF& x1, const QColor& x2) { return new LSGSimpleRectNode(u, x1, x2); } + Q_INVOKABLE void* C(uint u) { return new LSGSimpleRectNode(u); } + Q_INVOKABLE QColor Mcolor(QSGSimpleRectNode* o) const { return o->color(); } + Q_INVOKABLE QRectF Mrect(QSGSimpleRectNode* o) const { return o->rect(); } + Q_INVOKABLE void MsetColor(QSGSimpleRectNode* o, const QColor& x1) { o->setColor(x1); } + Q_INVOKABLE void MsetRect(QSGSimpleRectNode* o, const QRectF& x1) { o->setRect(x1); } + Q_INVOKABLE void MsetRect(QSGSimpleRectNode* o, qreal x1, qreal x2, qreal x3, qreal x4) { o->setRect(x1, x2, x3, x4); } +}; + +class N185 : public N177 { // QSGSimpleTextureNode + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LSGSimpleTextureNode(u); } + Q_INVOKABLE int Mfiltering(QSGSimpleTextureNode* o) const { return o->filtering(); } + Q_INVOKABLE bool MownsTexture(QSGSimpleTextureNode* o) const { return o->ownsTexture(); } + Q_INVOKABLE QRectF Mrect(QSGSimpleTextureNode* o) const { return o->rect(); } + Q_INVOKABLE void MsetFiltering(QSGSimpleTextureNode* o, QSGTexture::Filtering x1) { o->setFiltering(x1); } + Q_INVOKABLE void MsetOwnsTexture(QSGSimpleTextureNode* o, bool x1) { o->setOwnsTexture(x1); } + Q_INVOKABLE void MsetRect(QSGSimpleTextureNode* o, const QRectF& x1) { o->setRect(x1); } + Q_INVOKABLE void MsetRect(QSGSimpleTextureNode* o, qreal x1, qreal x2, qreal x3, qreal x4) { o->setRect(x1, x2, x3, x4); } + Q_INVOKABLE void MsetSourceRect(QSGSimpleTextureNode* o, const QRectF& x1) { o->setSourceRect(x1); } + Q_INVOKABLE void MsetSourceRect(QSGSimpleTextureNode* o, qreal x1, qreal x2, qreal x3, qreal x4) { o->setSourceRect(x1, x2, x3, x4); } + Q_INVOKABLE void MsetTexture(QSGSimpleTextureNode* o, QSGTexture* x1) { o->setTexture(x1); } + Q_INVOKABLE void MsetTextureCoordinatesTransform(QSGSimpleTextureNode* o, QSGSimpleTextureNode::TextureCoordinatesTransformMode x1) { o->setTextureCoordinatesTransform(x1); } + Q_INVOKABLE QRectF MsourceRect(QSGSimpleTextureNode* o) const { return o->sourceRect(); } + Q_INVOKABLE QSGTexture* Mtexture(QSGSimpleTextureNode* o) const { return o->texture(); } + Q_INVOKABLE int MtextureCoordinatesTransform(QSGSimpleTextureNode* o) const { return o->textureCoordinatesTransform(); } +}; + +class N186 : public N183 { // QSGTextureMaterial + Q_OBJECT +public: +}; + +class N187 : public N181 { // QSGTransformNode + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LSGTransformNode(u); } + Q_INVOKABLE QMatrix4x4 Mmatrix(QSGTransformNode* o) const { return o->matrix(); } + Q_INVOKABLE void MsetMatrix(QSGTransformNode* o, const QMatrix4x4& x1) { o->setMatrix(x1); } +}; + +class N188 : public N178 { // QSGVertexColorMaterial + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LSGVertexColorMaterial(u); } +}; + +class N165 : public N166 { // QQuickAsyncImageProvider + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LQuickAsyncImageProvider(u); } + Q_INVOKABLE QQuickImageResponse* MrequestImageResponse(QQuickAsyncImageProvider* o, const QString& x1, const QSize& x2) { return o->requestImageResponse(x1, x2); } +}; + +QT_END_NAMESPACE + +#endif diff --git a/src/gen/quick/_q_classes.h b/src/gen/quick/_q_classes.h new file mode 100644 index 0000000..be71a7e --- /dev/null +++ b/src/gen/quick/_q_classes.h @@ -0,0 +1,535 @@ +// THIS FILE IS GENERATED (see helper/) + +#ifndef Q_CLASSES_H +#define Q_CLASSES_H + +#include "_ini.h" +#include "../../ecl_fun.h" +#include "../_lobjects.h" +#include +#include + +QT_BEGIN_NAMESPACE + +class LJSEngine : public QJSEngine { + Q_OBJECT + friend class Q112; +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 = QJSEngine::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)) { QJSEngine::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)) { QJSEngine::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)) { QJSEngine::timerEvent(x1); }} +}; + +class LQmlApplicationEngine : public QQmlApplicationEngine { + Q_OBJECT + friend class Q168; +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 = QQmlApplicationEngine::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)) { QQmlApplicationEngine::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)) { QQmlApplicationEngine::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)) { QQmlApplicationEngine::timerEvent(x1); }} +}; + +class LQmlComponent : public QQmlComponent { + Q_OBJECT + friend class Q169; +public: + + static NumList overrideIds; + uint unique; + + QObject* beginCreate(QQmlContext* x1) { quint64 id = LObjects::override_id(unique, 322); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QObject*)callOverrideFun(fun, 322, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQmlComponent::beginCreate(x1); } return ret; } + void completeCreate() { quint64 id = LObjects::override_id(unique, 323); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 323, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQmlComponent::completeCreate(); }} + QObject* create(QQmlContext* x1 = 0) { quint64 id = LObjects::override_id(unique, 324); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QObject*)callOverrideFun(fun, 324, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQmlComponent::create(x1); } 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 = QQmlComponent::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)) { QQmlComponent::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)) { QQmlComponent::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)) { QQmlComponent::timerEvent(x1); }} +}; + +class LQmlContext : public QQmlContext { + Q_OBJECT + friend class Q170; +public: + LQmlContext(uint u, QQmlContext* x1, QObject* x2 = 0) : QQmlContext(x1, x2), unique(u) {} + + 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 = QQmlContext::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)) { QQmlContext::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)) { QQmlContext::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)) { QQmlContext::timerEvent(x1); }} +}; + +class LQmlEngine : public QQmlEngine { + Q_OBJECT + friend class Q171; +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 = QQmlEngine::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)) { QQmlEngine::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)) { QQmlEngine::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)) { QQmlEngine::timerEvent(x1); }} +}; + +class LQmlExpression : public QQmlExpression { + Q_OBJECT + friend class Q172; +public: + LQmlExpression(uint u) : unique(u) {} + LQmlExpression(uint u, QQmlContext* x1, QObject* x2, const QString& x3, QObject* x4 = 0) : QQmlExpression(x1, x2, x3, x4), unique(u) {} + LQmlExpression(uint u, const QQmlScriptString& x1, QQmlContext* x2 = 0, QObject* x3 = 0, QObject* x4 = 0) : QQmlExpression(x1, x2, x3, x4), unique(u) {} + + 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 = QQmlExpression::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)) { QQmlExpression::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)) { QQmlExpression::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)) { QQmlExpression::timerEvent(x1); }} +}; + +class LQmlExtensionPlugin : public QQmlExtensionPlugin { + Q_OBJECT + friend class Q173; +public: + LQmlExtensionPlugin(uint u, QObject* x1 = 0) : QQmlExtensionPlugin(x1), unique(u) {} + + static NumList overrideIds; + uint unique; + + void registerTypes(const char* x1) { quint64 id = LObjects::override_id(unique, 325); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 325, 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 = QQmlExtensionPlugin::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)) { QQmlExtensionPlugin::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)) { QQmlExtensionPlugin::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)) { QQmlExtensionPlugin::timerEvent(x1); }} +}; + +class LQmlFileSelector : public QQmlFileSelector { + Q_OBJECT + friend class Q174; +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 = QQmlFileSelector::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)) { QQmlFileSelector::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)) { QQmlFileSelector::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)) { QQmlFileSelector::timerEvent(x1); }} +}; + +class LQmlPropertyMap : public QQmlPropertyMap { + Q_OBJECT + friend class Q175; +public: + LQmlPropertyMap(uint u, QObject* x1 = 0) : QQmlPropertyMap(x1), unique(u) {} + + static NumList overrideIds; + uint unique; + + QVariant updateValue(const QString& x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 326); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 326, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQmlPropertyMap::updateValue(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 = QQmlPropertyMap::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)) { QQmlPropertyMap::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)) { QQmlPropertyMap::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)) { QQmlPropertyMap::timerEvent(x1); }} +}; + +class LQuickImageResponse : public QQuickImageResponse { + Q_OBJECT + friend class Q177; +public: + LQuickImageResponse(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; + + QString errorString() const { quint64 id = LObjects::override_id(unique, 327); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 327, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageResponse::errorString(); } return ret; } + QQuickTextureFactory* textureFactory() const { quint64 id = LObjects::override_id(unique, 328); void* fun = LObjects::overrideFun(id); QQuickTextureFactory* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QQuickTextureFactory*)callOverrideFun(fun, 328, 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 = QQuickImageResponse::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)) { QQuickImageResponse::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)) { QQuickImageResponse::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)) { QQuickImageResponse::timerEvent(x1); }} +}; + +class LQuickItem : public QQuickItem { + Q_OBJECT + friend class Q178; +public: + LQuickItem(uint u, QQuickItem* x1 = 0) : QQuickItem(x1), unique(u) {} + + static NumList overrideIds; + uint unique; + + 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 = QQuickItem::contains(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 = QQuickItem::inputMethodQuery(x1); } return ret; } + bool isTextureProvider() const { quint64 id = LObjects::override_id(unique, 329); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 329, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickItem::isTextureProvider(); } return ret; } + QSGTextureProvider* textureProvider() const { quint64 id = LObjects::override_id(unique, 330); void* fun = LObjects::overrideFun(id); QSGTextureProvider* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGTextureProvider*)callOverrideFun(fun, 330, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickItem::textureProvider(); } return ret; } + bool childMouseEventFilter(QQuickItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 331); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 331, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickItem::childMouseEventFilter(x1, x2); } return ret; } + void dragEnterEvent(QDragEnterEvent* x1) { quint64 id = LObjects::override_id(unique, 29); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 29, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::dragEnterEvent(x1); }} + void dragLeaveEvent(QDragLeaveEvent* x1) { quint64 id = LObjects::override_id(unique, 30); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 30, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::dragLeaveEvent(x1); }} + void dragMoveEvent(QDragMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 31); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 31, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::dragMoveEvent(x1); }} + 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)) { QQuickItem::dropEvent(x1); }} + void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::focusInEvent(x1); }} + void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::focusOutEvent(x1); }} + void geometryChanged(const QRectF& x1, const QRectF& x2) { quint64 id = LObjects::override_id(unique, 332); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 332, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::geometryChanged(x1, x2); }} + void hoverEnterEvent(QHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 333); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 333, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::hoverEnterEvent(x1); }} + void hoverLeaveEvent(QHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 334); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 334, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::hoverLeaveEvent(x1); }} + void hoverMoveEvent(QHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 335); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 335, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::hoverMoveEvent(x1); }} + void inputMethodEvent(QInputMethodEvent* x1) { quint64 id = LObjects::override_id(unique, 36); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 36, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::inputMethodEvent(x1); }} + void itemChange(ItemChange x1, const ItemChangeData& x2) { quint64 id = LObjects::override_id(unique, 336); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 336, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::itemChange(x1, x2); }} + void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::keyPressEvent(x1); }} + void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::keyReleaseEvent(x1); }} + void mouseDoubleClickEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 38); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 38, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::mouseDoubleClickEvent(x1); }} + void mouseMoveEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 17); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 17, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::mouseMoveEvent(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)) { QQuickItem::mousePressEvent(x1); }} + void mouseReleaseEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 19); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 19, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::mouseReleaseEvent(x1); }} + void mouseUngrabEvent() { quint64 id = LObjects::override_id(unique, 337); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 337, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::mouseUngrabEvent(); }} + void releaseResources() { quint64 id = LObjects::override_id(unique, 338); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 338, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::releaseResources(); }} + void touchEvent(QTouchEvent* x1) { quint64 id = LObjects::override_id(unique, 310); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 310, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::touchEvent(x1); }} + void touchUngrabEvent() { quint64 id = LObjects::override_id(unique, 339); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 339, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::touchUngrabEvent(); }} + QSGNode* updatePaintNode(QSGNode* x1, UpdatePaintNodeData* x2) { quint64 id = LObjects::override_id(unique, 340); void* fun = LObjects::overrideFun(id); QSGNode* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QSGNode*)callOverrideFun(fun, 340, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickItem::updatePaintNode(x1, x2); } return ret; } + void updatePolish() { quint64 id = LObjects::override_id(unique, 341); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 341, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::updatePolish(); }} + void wheelEvent(QWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 43); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 43, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::wheelEvent(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 = QQuickItem::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)) { QQuickItem::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)) { QQuickItem::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)) { QQuickItem::timerEvent(x1); }} +}; + +class LQuickItemGrabResult : public QQuickItemGrabResult { + Q_OBJECT + friend class Q179; +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 = QQuickItemGrabResult::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)) { QQuickItemGrabResult::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)) { QQuickItemGrabResult::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)) { QQuickItemGrabResult::timerEvent(x1); }} +}; + +class LQuickPaintedItem : public QQuickPaintedItem { + Q_OBJECT + friend class Q180; +public: + LQuickPaintedItem(uint u, QQuickItem* x1 = 0) : QQuickPaintedItem(x1), unique(u) {} + + static NumList overrideIds; + uint unique; + + void paint(QPainter* x1) { quint64 id = LObjects::override_id(unique, 342); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 342, args, id); }} + bool isTextureProvider() const { quint64 id = LObjects::override_id(unique, 329); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 329, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickPaintedItem::isTextureProvider(); } return ret; } + QSGTextureProvider* textureProvider() const { quint64 id = LObjects::override_id(unique, 330); void* fun = LObjects::overrideFun(id); QSGTextureProvider* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGTextureProvider*)callOverrideFun(fun, 330, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickPaintedItem::textureProvider(); } return ret; } + void releaseResources() { quint64 id = LObjects::override_id(unique, 338); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 338, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::releaseResources(); }} + QSGNode* updatePaintNode(QSGNode* x1, UpdatePaintNodeData* x2) { quint64 id = LObjects::override_id(unique, 340); void* fun = LObjects::overrideFun(id); QSGNode* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QSGNode*)callOverrideFun(fun, 340, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickPaintedItem::updatePaintNode(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 = QQuickPaintedItem::contains(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 = QQuickPaintedItem::inputMethodQuery(x1); } return ret; } + bool childMouseEventFilter(QQuickItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 331); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 331, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickPaintedItem::childMouseEventFilter(x1, x2); } return ret; } + void dragEnterEvent(QDragEnterEvent* x1) { quint64 id = LObjects::override_id(unique, 29); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 29, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::dragEnterEvent(x1); }} + void dragLeaveEvent(QDragLeaveEvent* x1) { quint64 id = LObjects::override_id(unique, 30); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 30, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::dragLeaveEvent(x1); }} + void dragMoveEvent(QDragMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 31); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 31, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::dragMoveEvent(x1); }} + 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)) { QQuickPaintedItem::dropEvent(x1); }} + void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::focusInEvent(x1); }} + void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::focusOutEvent(x1); }} + void geometryChanged(const QRectF& x1, const QRectF& x2) { quint64 id = LObjects::override_id(unique, 332); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 332, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::geometryChanged(x1, x2); }} + void hoverEnterEvent(QHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 333); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 333, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::hoverEnterEvent(x1); }} + void hoverLeaveEvent(QHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 334); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 334, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::hoverLeaveEvent(x1); }} + void hoverMoveEvent(QHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 335); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 335, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::hoverMoveEvent(x1); }} + void inputMethodEvent(QInputMethodEvent* x1) { quint64 id = LObjects::override_id(unique, 36); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 36, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::inputMethodEvent(x1); }} + void itemChange(ItemChange x1, const ItemChangeData& x2) { quint64 id = LObjects::override_id(unique, 336); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 336, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::itemChange(x1, x2); }} + void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::keyPressEvent(x1); }} + void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::keyReleaseEvent(x1); }} + void mouseDoubleClickEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 38); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 38, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::mouseDoubleClickEvent(x1); }} + void mouseMoveEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 17); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 17, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::mouseMoveEvent(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)) { QQuickPaintedItem::mousePressEvent(x1); }} + void mouseReleaseEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 19); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 19, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::mouseReleaseEvent(x1); }} + void mouseUngrabEvent() { quint64 id = LObjects::override_id(unique, 337); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 337, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::mouseUngrabEvent(); }} + void touchEvent(QTouchEvent* x1) { quint64 id = LObjects::override_id(unique, 310); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 310, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::touchEvent(x1); }} + void touchUngrabEvent() { quint64 id = LObjects::override_id(unique, 339); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 339, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::touchUngrabEvent(); }} + void updatePolish() { quint64 id = LObjects::override_id(unique, 341); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 341, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::updatePolish(); }} + void wheelEvent(QWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 43); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 43, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::wheelEvent(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 = QQuickPaintedItem::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)) { QQuickPaintedItem::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)) { QQuickPaintedItem::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)) { QQuickPaintedItem::timerEvent(x1); }} +}; + +class LQuickRenderControl : public QQuickRenderControl { + Q_OBJECT + friend class Q181; +public: + LQuickRenderControl(uint u, QObject* x1 = 0) : QQuickRenderControl(x1), unique(u) {} + + 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 = QQuickRenderControl::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)) { QQuickRenderControl::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)) { QQuickRenderControl::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)) { QQuickRenderControl::timerEvent(x1); }} +}; + +class LQuickTextDocument : public QQuickTextDocument { + Q_OBJECT + friend class Q182; +public: + LQuickTextDocument(uint u, QQuickItem* x1) : QQuickTextDocument(x1), unique(u) {} + + 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 = QQuickTextDocument::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)) { QQuickTextDocument::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)) { QQuickTextDocument::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)) { QQuickTextDocument::timerEvent(x1); }} +}; + +class LQuickTextureFactory : public QQuickTextureFactory { + Q_OBJECT + friend class Q183; +public: + LQuickTextureFactory(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; + + QSGTexture* createTexture(QQuickWindow* x1) const { quint64 id = LObjects::override_id(unique, 343); void* fun = LObjects::overrideFun(id); QSGTexture* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QSGTexture*)callOverrideFun(fun, 343, args, id).value(); } return ret; } + QImage image() const { quint64 id = LObjects::override_id(unique, 344); void* fun = LObjects::overrideFun(id); QImage ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 344, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickTextureFactory::image(); } return ret; } + int textureByteCount() const { quint64 id = LObjects::override_id(unique, 345); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 345, 0, id).toInt(); } return ret; } + QSize textureSize() const { quint64 id = LObjects::override_id(unique, 346); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 346, 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 = QQuickTextureFactory::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)) { QQuickTextureFactory::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)) { QQuickTextureFactory::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)) { QQuickTextureFactory::timerEvent(x1); }} +}; + +class LQuickView : public QQuickView { + Q_OBJECT + friend class Q184; +public: + LQuickView(uint u, QWindow* x1 = 0) : QQuickView(x1), unique(u) {} + LQuickView(uint u, const QUrl& x1, QWindow* x2 = 0) : QQuickView(x1, x2), unique(u) {} + + static NumList overrideIds; + uint unique; + + QObject* focusObject() const { quint64 id = LObjects::override_id(unique, 308); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 308, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickView::focusObject(); } return ret; } + void exposeEvent(QExposeEvent* x1) { quint64 id = LObjects::override_id(unique, 309); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 309, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::exposeEvent(x1); }} + void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::focusInEvent(x1); }} + void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::focusOutEvent(x1); }} + void hideEvent(QHideEvent* x1) { quint64 id = LObjects::override_id(unique, 35); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 35, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::hideEvent(x1); }} + void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::keyPressEvent(x1); }} + void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::keyReleaseEvent(x1); }} + void mouseDoubleClickEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 38); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 38, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::mouseDoubleClickEvent(x1); }} + void mouseMoveEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 17); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 17, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::mouseMoveEvent(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)) { QQuickView::mousePressEvent(x1); }} + void mouseReleaseEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 19); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 19, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::mouseReleaseEvent(x1); }} + void moveEvent(QMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 39); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 39, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::moveEvent(x1); }} + void resizeEvent(QResizeEvent* x1) { quint64 id = LObjects::override_id(unique, 40); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 40, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::resizeEvent(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)) { QQuickView::showEvent(x1); }} + void tabletEvent(QTabletEvent* x1) { quint64 id = LObjects::override_id(unique, 42); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 42, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::tabletEvent(x1); }} + void touchEvent(QTouchEvent* x1) { quint64 id = LObjects::override_id(unique, 310); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 310, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::touchEvent(x1); }} + void wheelEvent(QWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 43); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 43, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::wheelEvent(x1); }} + QSurfaceFormat format() const { quint64 id = LObjects::override_id(unique, 311); void* fun = LObjects::overrideFun(id); QSurfaceFormat ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 311, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickView::format(); } return ret; } + QSize size() const { quint64 id = LObjects::override_id(unique, 141); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 141, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickView::size(); } return ret; } + SurfaceType surfaceType() const { quint64 id = LObjects::override_id(unique, 312); void* fun = LObjects::overrideFun(id); SurfaceType ret = (SurfaceType)0; if(fun && (LObjects::calling != id)) { ret = (SurfaceType)callOverrideFun(fun, 312, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickView::surfaceType(); } 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 = QQuickView::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)) { QQuickView::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)) { QQuickView::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)) { QQuickView::timerEvent(x1); }} +}; + +class LQuickWidget : public QQuickWidget { + Q_OBJECT + friend class Q185; +public: + LQuickWidget(uint u, QWidget* x1 = 0) : QQuickWidget(x1), unique(u) {} + LQuickWidget(uint u, const QUrl& x1, QWidget* x2 = 0) : QQuickWidget(x1, x2), unique(u) {} + + static NumList overrideIds; + uint unique; + + void dragEnterEvent(QDragEnterEvent* x1) { quint64 id = LObjects::override_id(unique, 29); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 29, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::dragEnterEvent(x1); }} + void dragLeaveEvent(QDragLeaveEvent* x1) { quint64 id = LObjects::override_id(unique, 30); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 30, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::dragLeaveEvent(x1); }} + void dragMoveEvent(QDragMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 31); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 31, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::dragMoveEvent(x1); }} + 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)) { QQuickWidget::dropEvent(x1); }} + void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::focusInEvent(x1); }} + void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::focusOutEvent(x1); }} + void hideEvent(QHideEvent* x1) { quint64 id = LObjects::override_id(unique, 35); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 35, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::hideEvent(x1); }} + void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::keyPressEvent(x1); }} + void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::keyReleaseEvent(x1); }} + void mouseDoubleClickEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 38); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 38, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::mouseDoubleClickEvent(x1); }} + void mouseMoveEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 17); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 17, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::mouseMoveEvent(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)) { QQuickWidget::mousePressEvent(x1); }} + void mouseReleaseEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 19); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 19, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::mouseReleaseEvent(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)) { QQuickWidget::showEvent(x1); }} + void wheelEvent(QWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 43); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 43, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::wheelEvent(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 = QQuickWidget::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 = QQuickWidget::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 = QQuickWidget::inputMethodQuery(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 = QQuickWidget::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 = QQuickWidget::sizeHint(); } return ret; } + void actionEvent(QActionEvent* x1) { quint64 id = LObjects::override_id(unique, 26); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 26, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::actionEvent(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)) { QQuickWidget::changeEvent(x1); }} + void closeEvent(QCloseEvent* x1) { quint64 id = LObjects::override_id(unique, 27); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 27, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::closeEvent(x1); }} + void contextMenuEvent(QContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 28); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 28, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::contextMenuEvent(x1); }} + void enterEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 33); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 33, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::enterEvent(x1); }} + bool focusNextPrevChild(bool x1) { quint64 id = LObjects::override_id(unique, 34); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 34, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickWidget::focusNextPrevChild(x1); } return ret; } + void inputMethodEvent(QInputMethodEvent* x1) { quint64 id = LObjects::override_id(unique, 36); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 36, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::inputMethodEvent(x1); }} + void leaveEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 37); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 37, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::leaveEvent(x1); }} + void moveEvent(QMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 39); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 39, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::moveEvent(x1); }} + void paintEvent(QPaintEvent* x1) { quint64 id = LObjects::override_id(unique, 20); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 20, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::paintEvent(x1); }} + void resizeEvent(QResizeEvent* x1) { quint64 id = LObjects::override_id(unique, 40); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 40, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::resizeEvent(x1); }} + void tabletEvent(QTabletEvent* x1) { quint64 id = LObjects::override_id(unique, 42); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 42, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::tabletEvent(x1); }} + void initPainter(QPainter* x1) const { quint64 id = LObjects::override_id(unique, 44); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 44, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::initPainter(x1); }} + 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 = QQuickWidget::metric(x1); } 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 = QQuickWidget::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)) { QQuickWidget::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)) { QQuickWidget::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)) { QQuickWidget::timerEvent(x1); }} +}; + +class LQuickWindow : public QQuickWindow { + Q_OBJECT + friend class Q186; +public: + LQuickWindow(uint u, QWindow* x1 = 0) : QQuickWindow(x1), unique(u) {} + + static NumList overrideIds; + uint unique; + + QObject* focusObject() const { quint64 id = LObjects::override_id(unique, 308); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 308, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickWindow::focusObject(); } return ret; } + void exposeEvent(QExposeEvent* x1) { quint64 id = LObjects::override_id(unique, 309); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 309, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::exposeEvent(x1); }} + void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::focusInEvent(x1); }} + void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::focusOutEvent(x1); }} + void hideEvent(QHideEvent* x1) { quint64 id = LObjects::override_id(unique, 35); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 35, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::hideEvent(x1); }} + void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::keyPressEvent(x1); }} + void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::keyReleaseEvent(x1); }} + void mouseDoubleClickEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 38); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 38, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::mouseDoubleClickEvent(x1); }} + void mouseMoveEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 17); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 17, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::mouseMoveEvent(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)) { QQuickWindow::mousePressEvent(x1); }} + void mouseReleaseEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 19); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 19, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::mouseReleaseEvent(x1); }} + void moveEvent(QMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 39); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 39, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::moveEvent(x1); }} + void resizeEvent(QResizeEvent* x1) { quint64 id = LObjects::override_id(unique, 40); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 40, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::resizeEvent(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)) { QQuickWindow::showEvent(x1); }} + void tabletEvent(QTabletEvent* x1) { quint64 id = LObjects::override_id(unique, 42); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 42, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::tabletEvent(x1); }} + void touchEvent(QTouchEvent* x1) { quint64 id = LObjects::override_id(unique, 310); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 310, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::touchEvent(x1); }} + void wheelEvent(QWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 43); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 43, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWindow::wheelEvent(x1); }} + QSurfaceFormat format() const { quint64 id = LObjects::override_id(unique, 311); void* fun = LObjects::overrideFun(id); QSurfaceFormat ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 311, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickWindow::format(); } return ret; } + QSize size() const { quint64 id = LObjects::override_id(unique, 141); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 141, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickWindow::size(); } return ret; } + SurfaceType surfaceType() const { quint64 id = LObjects::override_id(unique, 312); void* fun = LObjects::overrideFun(id); SurfaceType ret = (SurfaceType)0; if(fun && (LObjects::calling != id)) { ret = (SurfaceType)callOverrideFun(fun, 312, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickWindow::surfaceType(); } 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 = QQuickWindow::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)) { QQuickWindow::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)) { QQuickWindow::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)) { QQuickWindow::timerEvent(x1); }} +}; + +class LSGAbstractRenderer : public QSGAbstractRenderer { + Q_OBJECT + friend class Q191; +public: + + static NumList overrideIds; + uint unique; + + void renderScene(GLuint x1 = 0) { quint64 id = LObjects::override_id(unique, 347); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 347, 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 = QSGAbstractRenderer::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)) { QSGAbstractRenderer::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)) { QSGAbstractRenderer::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)) { QSGAbstractRenderer::timerEvent(x1); }} +}; + +class LSGDynamicTexture : public QSGDynamicTexture { + Q_OBJECT + friend class Q192; +public: + + static NumList overrideIds; + uint unique; + + bool updateTexture() { quint64 id = LObjects::override_id(unique, 348); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 348, 0, id).toBool(); } return ret; } + void bind() { quint64 id = LObjects::override_id(unique, 349); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 349, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGDynamicTexture::bind(); }} + bool hasAlphaChannel() const { quint64 id = LObjects::override_id(unique, 350); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 350, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGDynamicTexture::hasAlphaChannel(); } return ret; } + bool hasMipmaps() const { quint64 id = LObjects::override_id(unique, 351); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 351, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGDynamicTexture::hasMipmaps(); } return ret; } + bool isAtlasTexture() const { quint64 id = LObjects::override_id(unique, 352); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 352, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGDynamicTexture::isAtlasTexture(); } return ret; } + QRectF normalizedTextureSubRect() const { quint64 id = LObjects::override_id(unique, 353); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 353, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGDynamicTexture::normalizedTextureSubRect(); } return ret; } + QSGTexture* removedFromAtlas() const { quint64 id = LObjects::override_id(unique, 354); void* fun = LObjects::overrideFun(id); QSGTexture* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGTexture*)callOverrideFun(fun, 354, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGDynamicTexture::removedFromAtlas(); } return ret; } + int textureId() const { quint64 id = LObjects::override_id(unique, 355); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 355, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGDynamicTexture::textureId(); } return ret; } + QSize textureSize() const { quint64 id = LObjects::override_id(unique, 346); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 346, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGDynamicTexture::textureSize(); } 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 = QSGDynamicTexture::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)) { QSGDynamicTexture::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)) { QSGDynamicTexture::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)) { QSGDynamicTexture::timerEvent(x1); }} +}; + +class LSGEngine : public QSGEngine { + Q_OBJECT + friend class Q193; +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 = QSGEngine::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)) { QSGEngine::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)) { QSGEngine::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)) { QSGEngine::timerEvent(x1); }} +}; + +class LSGTexture : public QSGTexture { + Q_OBJECT + friend class Q194; +public: + LSGTexture(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; + + void bind() { quint64 id = LObjects::override_id(unique, 349); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 349, 0, id); }} + bool hasAlphaChannel() const { quint64 id = LObjects::override_id(unique, 350); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 350, 0, id).toBool(); } return ret; } + bool hasMipmaps() const { quint64 id = LObjects::override_id(unique, 351); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 351, 0, id).toBool(); } return ret; } + bool isAtlasTexture() const { quint64 id = LObjects::override_id(unique, 352); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 352, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGTexture::isAtlasTexture(); } return ret; } + QRectF normalizedTextureSubRect() const { quint64 id = LObjects::override_id(unique, 353); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 353, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGTexture::normalizedTextureSubRect(); } return ret; } + QSGTexture* removedFromAtlas() const { quint64 id = LObjects::override_id(unique, 354); void* fun = LObjects::overrideFun(id); QSGTexture* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGTexture*)callOverrideFun(fun, 354, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGTexture::removedFromAtlas(); } return ret; } + int textureId() const { quint64 id = LObjects::override_id(unique, 355); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 355, 0, id).toInt(); } return ret; } + QSize textureSize() const { quint64 id = LObjects::override_id(unique, 346); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 346, 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 = QSGTexture::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)) { QSGTexture::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)) { QSGTexture::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)) { QSGTexture::timerEvent(x1); }} +}; + +class LSGTextureProvider : public QSGTextureProvider { + Q_OBJECT + friend class Q195; +public: + + static NumList overrideIds; + uint unique; + + QSGTexture* texture() const { quint64 id = LObjects::override_id(unique, 356); void* fun = LObjects::overrideFun(id); QSGTexture* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGTexture*)callOverrideFun(fun, 356, 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 = QSGTextureProvider::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)) { QSGTextureProvider::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)) { QSGTextureProvider::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)) { QSGTextureProvider::timerEvent(x1); }} +}; + +QT_END_NAMESPACE + +#endif diff --git a/src/gen/quick/_q_methods.h b/src/gen/quick/_q_methods.h new file mode 100644 index 0000000..b7d06d7 --- /dev/null +++ b/src/gen/quick/_q_methods.h @@ -0,0 +1,502 @@ +// THIS FILE IS GENERATED (see helper/) + +#ifndef Q_METHODS_H +#define Q_METHODS_H + +#include "_q_classes.h" +#include "../_main_q_methods.h" +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Q112 : public Q142 { // QJSEngine + Q_OBJECT +public: + Q_INVOKABLE void McollectGarbage(QJSEngine* o) { o->collectGarbage(); } + Q_INVOKABLE QJSValue Mevaluate(QJSEngine* o, const QString& x1, const QString& x2 = QString(), int x3 = 1) { return o->evaluate(x1, x2, x3); } + Q_INVOKABLE QJSValue MglobalObject(QJSEngine* o) const { return o->globalObject(); } + Q_INVOKABLE void MinstallTranslatorFunctions(QJSEngine* o, const QJSValue& x1 = QJSValue()) { o->installTranslatorFunctions(x1); } + Q_INVOKABLE QJSValue MnewArray(QJSEngine* o, uint x1 = 0) { return o->newArray(x1); } + Q_INVOKABLE QJSValue MnewObject(QJSEngine* o) { return o->newObject(); } + Q_INVOKABLE QJSValue MnewQObject(QJSEngine* o, QObject* x1) { return o->newQObject(x1); } +}; + +class Q169 : public Q142 { // QQmlComponent + Q_OBJECT +public: + Q_INVOKABLE QObject* MbeginCreate(QQmlComponent* o, QQmlContext* x1) { return o->beginCreate(x1); } + Q_INVOKABLE void McompleteCreate(QQmlComponent* o) { o->completeCreate(); } + Q_INVOKABLE QObject* Mcreate(QQmlComponent* o, QQmlContext* x1 = 0) { return o->create(x1); } + Q_INVOKABLE void Mcreate(QQmlComponent* o, QQmlIncubator& x1, QQmlContext* x2 = 0, QQmlContext* x3 = 0) { o->create(x1, x2, x3); } + Q_INVOKABLE QQmlContext* McreationContext(QQmlComponent* o) const { return o->creationContext(); } + Q_INVOKABLE QList Merrors(QQmlComponent* o) const { return o->errors(); } + Q_INVOKABLE bool MisError(QQmlComponent* o) const { return o->isError(); } + Q_INVOKABLE bool MisLoading(QQmlComponent* o) const { return o->isLoading(); } + Q_INVOKABLE bool MisNull(QQmlComponent* o) const { return o->isNull(); } + Q_INVOKABLE bool MisReady(QQmlComponent* o) const { return o->isReady(); } + Q_INVOKABLE qreal Mprogress(QQmlComponent* o) const { return o->progress(); } + Q_INVOKABLE int Mstatus(QQmlComponent* o) const { return o->status(); } + Q_INVOKABLE QUrl Murl(QQmlComponent* o) const { return o->url(); } +}; + +class Q170 : public Q142 { // QQmlContext + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QQmlContext* x1, QObject* x2 = 0) { return new LQmlContext(u, x1, x2); } + Q_INVOKABLE QUrl MbaseUrl(QQmlContext* o) const { return o->baseUrl(); } + Q_INVOKABLE QObject* McontextObject(QQmlContext* o) const { return o->contextObject(); } + Q_INVOKABLE QVariant McontextProperty(QQmlContext* o, const QString& x1) const { return o->contextProperty(x1); } + Q_INVOKABLE bool MisValid(QQmlContext* o) const { return o->isValid(); } + Q_INVOKABLE QString MnameForObject(QQmlContext* o, QObject* x1) const { return o->nameForObject(x1); } + Q_INVOKABLE QQmlContext* MparentContext(QQmlContext* o) const { return o->parentContext(); } + Q_INVOKABLE QUrl MresolvedUrl(QQmlContext* o, const QUrl& x1) { return o->resolvedUrl(x1); } + Q_INVOKABLE void MsetBaseUrl(QQmlContext* o, const QUrl& x1) { o->setBaseUrl(x1); } + Q_INVOKABLE void MsetContextObject(QQmlContext* o, QObject* x1) { o->setContextObject(x1); } + Q_INVOKABLE void MsetContextProperty(QQmlContext* o, const QString& x1, QObject* x2) { o->setContextProperty(x1, x2); } + Q_INVOKABLE void MsetContextProperty(QQmlContext* o, const QString& x1, const QVariant& x2) { o->setContextProperty(x1, x2); } +}; + +class Q171 : public Q112 { // QQmlEngine + Q_OBJECT +public: + Q_INVOKABLE void MaddImageProvider(QQmlEngine* o, const QString& x1, QQmlImageProviderBase* x2) { o->addImageProvider(x1, x2); } + Q_INVOKABLE void MaddImportPath(QQmlEngine* o, const QString& x1) { o->addImportPath(x1); } + Q_INVOKABLE void MaddPluginPath(QQmlEngine* o, const QString& x1) { o->addPluginPath(x1); } + Q_INVOKABLE QUrl MbaseUrl(QQmlEngine* o) const { return o->baseUrl(); } + Q_INVOKABLE void MclearComponentCache(QQmlEngine* o) { o->clearComponentCache(); } + Q_INVOKABLE QQmlImageProviderBase* MimageProvider(QQmlEngine* o, const QString& x1) const { return o->imageProvider(x1); } + Q_INVOKABLE QStringList MimportPathList(QQmlEngine* o) const { return o->importPathList(); } + Q_INVOKABLE bool MimportPlugin(QQmlEngine* o, const QString& x1, const QString& x2, QList* x3) { return o->importPlugin(x1, x2, x3); } + Q_INVOKABLE QQmlIncubationController* MincubationController(QQmlEngine* o) const { return o->incubationController(); } + Q_INVOKABLE QNetworkAccessManager* MnetworkAccessManager(QQmlEngine* o) const { return o->networkAccessManager(); } + Q_INVOKABLE QQmlNetworkAccessManagerFactory* MnetworkAccessManagerFactory(QQmlEngine* o) const { return o->networkAccessManagerFactory(); } + Q_INVOKABLE QString MofflineStoragePath(QQmlEngine* o) const { return o->offlineStoragePath(); } + Q_INVOKABLE bool MoutputWarningsToStandardError(QQmlEngine* o) const { return o->outputWarningsToStandardError(); } + Q_INVOKABLE QStringList MpluginPathList(QQmlEngine* o) const { return o->pluginPathList(); } + Q_INVOKABLE void MremoveImageProvider(QQmlEngine* o, const QString& x1) { o->removeImageProvider(x1); } + Q_INVOKABLE QQmlContext* MrootContext(QQmlEngine* o) const { return o->rootContext(); } + Q_INVOKABLE void MsetBaseUrl(QQmlEngine* o, const QUrl& x1) { o->setBaseUrl(x1); } + Q_INVOKABLE void MsetImportPathList(QQmlEngine* o, const QStringList& x1) { o->setImportPathList(x1); } + Q_INVOKABLE void MsetIncubationController(QQmlEngine* o, QQmlIncubationController* x1) { o->setIncubationController(x1); } + Q_INVOKABLE void MsetNetworkAccessManagerFactory(QQmlEngine* o, QQmlNetworkAccessManagerFactory* x1) { o->setNetworkAccessManagerFactory(x1); } + Q_INVOKABLE void MsetOfflineStoragePath(QQmlEngine* o, const QString& x1) { o->setOfflineStoragePath(x1); } + Q_INVOKABLE void MsetOutputWarningsToStandardError(QQmlEngine* o, bool x1) { o->setOutputWarningsToStandardError(x1); } + Q_INVOKABLE void MsetPluginPathList(QQmlEngine* o, const QStringList& x1) { o->setPluginPathList(x1); } + Q_INVOKABLE void MtrimComponentCache(QQmlEngine* o) { o->trimComponentCache(); } + Q_INVOKABLE QQmlContext* ScontextForObject(const QObject* x1) { return QQmlEngine::contextForObject(x1); } + Q_INVOKABLE int SobjectOwnership(QObject* x1) { return QQmlEngine::objectOwnership(x1); } + Q_INVOKABLE void SsetContextForObject(QObject* x1, QQmlContext* x2) { QQmlEngine::setContextForObject(x1, x2); } + Q_INVOKABLE void SsetObjectOwnership(QObject* x1, QQmlEngine::ObjectOwnership x2) { QQmlEngine::setObjectOwnership(x1, x2); } +}; + +class Q172 : public Q142 { // QQmlExpression + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LQmlExpression(u); } + Q_INVOKABLE void* C(uint u, QQmlContext* x1, QObject* x2, const QString& x3, QObject* x4 = 0) { return new LQmlExpression(u, x1, x2, x3, x4); } + Q_INVOKABLE void* C(uint u, const QQmlScriptString& x1, QQmlContext* x2 = 0, QObject* x3 = 0, QObject* x4 = 0) { return new LQmlExpression(u, x1, x2, x3, x4); } + Q_INVOKABLE void MclearError(QQmlExpression* o) { o->clearError(); } + Q_INVOKABLE int McolumnNumber(QQmlExpression* o) const { return o->columnNumber(); } + Q_INVOKABLE QQmlContext* Mcontext(QQmlExpression* o) const { return o->context(); } + Q_INVOKABLE QQmlError Merror(QQmlExpression* o) const { return o->error(); } + Q_INVOKABLE QVariant Mevaluate(QQmlExpression* o, bool* x1 = 0) { return o->evaluate(x1); } + Q_INVOKABLE QString Mexpression(QQmlExpression* o) const { return o->expression(); } + Q_INVOKABLE bool MhasError(QQmlExpression* o) const { return o->hasError(); } + Q_INVOKABLE int MlineNumber(QQmlExpression* o) const { return o->lineNumber(); } + Q_INVOKABLE bool MnotifyOnValueChanged(QQmlExpression* o) const { return o->notifyOnValueChanged(); } + Q_INVOKABLE QObject* MscopeObject(QQmlExpression* o) const { return o->scopeObject(); } + Q_INVOKABLE void MsetExpression(QQmlExpression* o, const QString& x1) { o->setExpression(x1); } + Q_INVOKABLE void MsetNotifyOnValueChanged(QQmlExpression* o, bool x1) { o->setNotifyOnValueChanged(x1); } + Q_INVOKABLE void MsetSourceLocation(QQmlExpression* o, const QString& x1, int x2, int x3 = 0) { o->setSourceLocation(x1, x2, x3); } + Q_INVOKABLE QString MsourceFile(QQmlExpression* o) const { return o->sourceFile(); } +}; + +class Q173 : public Q142 { // QQmlExtensionPlugin + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LQmlExtensionPlugin(u, x1); } + Q_INVOKABLE QUrl MbaseUrl(QQmlExtensionPlugin* o) const { return o->baseUrl(); } + Q_INVOKABLE void MregisterTypes(QQmlExtensionPlugin* o, const char* x1) { o->registerTypes(x1); } +}; + +class Q174 : public Q142 { // QQmlFileSelector + Q_OBJECT +public: + Q_INVOKABLE void MsetExtraSelectors(QQmlFileSelector* o, QStringList& x1) { o->setExtraSelectors(x1); } + Q_INVOKABLE void MsetExtraSelectors(QQmlFileSelector* o, const QStringList& x1) { o->setExtraSelectors(x1); } + Q_INVOKABLE void MsetSelector(QQmlFileSelector* o, QFileSelector* x1) { o->setSelector(x1); } +}; + +class Q175 : public Q142 { // QQmlPropertyMap + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LQmlPropertyMap(u, x1); } + Q_INVOKABLE void Mclear(QQmlPropertyMap* o, const QString& x1) { o->clear(x1); } + Q_INVOKABLE bool Mcontains(QQmlPropertyMap* o, const QString& x1) const { return o->contains(x1); } + Q_INVOKABLE int Mcount(QQmlPropertyMap* o) const { return o->count(); } + Q_INVOKABLE void Minsert(QQmlPropertyMap* o, const QString& x1, const QVariant& x2) { o->insert(x1, x2); } + Q_INVOKABLE bool MisEmpty(QQmlPropertyMap* o) const { return o->isEmpty(); } + Q_INVOKABLE QStringList Mkeys(QQmlPropertyMap* o) const { return o->keys(); } + Q_INVOKABLE int Msize(QQmlPropertyMap* o) const { return o->size(); } + Q_INVOKABLE QVariant Mvalue(QQmlPropertyMap* o, const QString& x1) const { return o->value(x1); } +}; + +class Q177 : public Q142 { // QQuickImageResponse + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LQuickImageResponse(u); } + Q_INVOKABLE QString MerrorString(QQuickImageResponse* o) const { return o->errorString(); } + Q_INVOKABLE QQuickTextureFactory* MtextureFactory(QQuickImageResponse* o) const { return o->textureFactory(); } +}; + +class Q178 : public Q142 { // QQuickItem + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QQuickItem* x1 = 0) { return new LQuickItem(u, x1); } + Q_INVOKABLE bool MacceptHoverEvents(QQuickItem* o) const { return o->acceptHoverEvents(); } + Q_INVOKABLE int MacceptedMouseButtons(QQuickItem* o) const { return o->acceptedMouseButtons(); } + Q_INVOKABLE bool MactiveFocusOnTab(QQuickItem* o) const { return o->activeFocusOnTab(); } + Q_INVOKABLE bool Mantialiasing(QQuickItem* o) const { return o->antialiasing(); } + Q_INVOKABLE qreal MbaselineOffset(QQuickItem* o) const { return o->baselineOffset(); } + Q_INVOKABLE QQuickItem* MchildAt(QQuickItem* o, qreal x1, qreal x2) const { return o->childAt(x1, x2); } + Q_INVOKABLE QList MchildItems(QQuickItem* o) const { return o->childItems(); } + Q_INVOKABLE QRectF MchildrenRect(QQuickItem* o) { return o->childrenRect(); } + Q_INVOKABLE bool Mclip(QQuickItem* o) const { return o->clip(); } + Q_INVOKABLE bool Mcontains(QQuickItem* o, const QPointF& x1) const { return o->contains(x1); } + Q_INVOKABLE QCursor Mcursor(QQuickItem* o) const { return o->cursor(); } + Q_INVOKABLE bool MfiltersChildMouseEvents(QQuickItem* o) const { return o->filtersChildMouseEvents(); } + Q_INVOKABLE int Mflags(QQuickItem* o) const { return o->flags(); } + Q_INVOKABLE void MforceActiveFocus(QQuickItem* o) { o->forceActiveFocus(); } + Q_INVOKABLE void MforceActiveFocus(QQuickItem* o, Qt::FocusReason x1) { o->forceActiveFocus(x1); } + Q_INVOKABLE void MgrabMouse(QQuickItem* o) { o->grabMouse(); } + Q_INVOKABLE QSharedPointer MgrabToImage(QQuickItem* o, const QSize& x1 = QSize()) { return o->grabToImage(x1); } + Q_INVOKABLE void MgrabTouchPoints(QQuickItem* o, const QVector& x1) { o->grabTouchPoints(x1); } + Q_INVOKABLE bool MhasActiveFocus(QQuickItem* o) const { return o->hasActiveFocus(); } + Q_INVOKABLE bool MhasFocus(QQuickItem* o) const { return o->hasFocus(); } + Q_INVOKABLE qreal Mheight(QQuickItem* o) const { return o->height(); } + Q_INVOKABLE qreal MimplicitHeight(QQuickItem* o) const { return o->implicitHeight(); } + Q_INVOKABLE qreal MimplicitWidth(QQuickItem* o) const { return o->implicitWidth(); } + Q_INVOKABLE QVariant MinputMethodQuery(QQuickItem* o, Qt::InputMethodQuery x1) const { return o->inputMethodQuery(x1); } + Q_INVOKABLE bool MisEnabled(QQuickItem* o) const { return o->isEnabled(); } + Q_INVOKABLE bool MisFocusScope(QQuickItem* o) const { return o->isFocusScope(); } + Q_INVOKABLE bool MisTextureProvider(QQuickItem* o) const { return o->isTextureProvider(); } + Q_INVOKABLE bool MisVisible(QQuickItem* o) const { return o->isVisible(); } + Q_INVOKABLE bool MkeepMouseGrab(QQuickItem* o) const { return o->keepMouseGrab(); } + Q_INVOKABLE bool MkeepTouchGrab(QQuickItem* o) const { return o->keepTouchGrab(); } + Q_INVOKABLE QPointF MmapFromItem(QQuickItem* o, const QQuickItem* x1, const QPointF& x2) const { return o->mapFromItem(x1, x2); } + Q_INVOKABLE QPointF MmapFromScene(QQuickItem* o, const QPointF& x1) const { return o->mapFromScene(x1); } + Q_INVOKABLE QRectF MmapRectFromItem(QQuickItem* o, const QQuickItem* x1, const QRectF& x2) const { return o->mapRectFromItem(x1, x2); } + Q_INVOKABLE QRectF MmapRectFromScene(QQuickItem* o, const QRectF& x1) const { return o->mapRectFromScene(x1); } + Q_INVOKABLE QRectF MmapRectToItem(QQuickItem* o, const QQuickItem* x1, const QRectF& x2) const { return o->mapRectToItem(x1, x2); } + Q_INVOKABLE QRectF MmapRectToScene(QQuickItem* o, const QRectF& x1) const { return o->mapRectToScene(x1); } + Q_INVOKABLE QPointF MmapToItem(QQuickItem* o, const QQuickItem* x1, const QPointF& x2) const { return o->mapToItem(x1, x2); } + Q_INVOKABLE QPointF MmapToScene(QQuickItem* o, const QPointF& x1) const { return o->mapToScene(x1); } + Q_INVOKABLE QQuickItem* MnextItemInFocusChain(QQuickItem* o, bool x1 = true) { return o->nextItemInFocusChain(x1); } + Q_INVOKABLE qreal Mopacity(QQuickItem* o) const { return o->opacity(); } + Q_INVOKABLE QQuickItem* MparentItem(QQuickItem* o) const { return o->parentItem(); } + Q_INVOKABLE void Mpolish(QQuickItem* o) { o->polish(); } + Q_INVOKABLE void MresetAntialiasing(QQuickItem* o) { o->resetAntialiasing(); } + Q_INVOKABLE void MresetHeight(QQuickItem* o) { o->resetHeight(); } + Q_INVOKABLE void MresetWidth(QQuickItem* o) { o->resetWidth(); } + Q_INVOKABLE qreal Mrotation(QQuickItem* o) const { return o->rotation(); } + Q_INVOKABLE qreal Mscale(QQuickItem* o) const { return o->scale(); } + Q_INVOKABLE QQuickItem* MscopedFocusItem(QQuickItem* o) const { return o->scopedFocusItem(); } + Q_INVOKABLE void MsetAcceptHoverEvents(QQuickItem* o, bool x1) { o->setAcceptHoverEvents(x1); } + Q_INVOKABLE void MsetAcceptedMouseButtons(QQuickItem* o, Qt::MouseButtons x1) { o->setAcceptedMouseButtons(x1); } + Q_INVOKABLE void MsetActiveFocusOnTab(QQuickItem* o, bool x1) { o->setActiveFocusOnTab(x1); } + Q_INVOKABLE void MsetAntialiasing(QQuickItem* o, bool x1) { o->setAntialiasing(x1); } + Q_INVOKABLE void MsetBaselineOffset(QQuickItem* o, qreal x1) { o->setBaselineOffset(x1); } + Q_INVOKABLE void MsetClip(QQuickItem* o, bool x1) { o->setClip(x1); } + Q_INVOKABLE void MsetCursor(QQuickItem* o, const QCursor& x1) { o->setCursor(x1); } + Q_INVOKABLE void MsetEnabled(QQuickItem* o, bool x1) { o->setEnabled(x1); } + Q_INVOKABLE void MsetFiltersChildMouseEvents(QQuickItem* o, bool x1) { o->setFiltersChildMouseEvents(x1); } + Q_INVOKABLE void MsetFlag(QQuickItem* o, QQuickItem::Flag x1, bool x2 = true) { o->setFlag(x1, x2); } + Q_INVOKABLE void MsetFlags(QQuickItem* o, QQuickItem::Flags x1) { o->setFlags(x1); } + Q_INVOKABLE void MsetFocus(QQuickItem* o, bool x1) { o->setFocus(x1); } + Q_INVOKABLE void MsetFocus(QQuickItem* o, bool x1, Qt::FocusReason x2) { o->setFocus(x1, x2); } + Q_INVOKABLE void MsetHeight(QQuickItem* o, qreal x1) { o->setHeight(x1); } + Q_INVOKABLE void MsetImplicitHeight(QQuickItem* o, qreal x1) { o->setImplicitHeight(x1); } + Q_INVOKABLE void MsetImplicitWidth(QQuickItem* o, qreal x1) { o->setImplicitWidth(x1); } + Q_INVOKABLE void MsetKeepMouseGrab(QQuickItem* o, bool x1) { o->setKeepMouseGrab(x1); } + Q_INVOKABLE void MsetKeepTouchGrab(QQuickItem* o, bool x1) { o->setKeepTouchGrab(x1); } + Q_INVOKABLE void MsetOpacity(QQuickItem* o, qreal x1) { o->setOpacity(x1); } + Q_INVOKABLE void MsetParentItem(QQuickItem* o, QQuickItem* x1) { o->setParentItem(x1); } + Q_INVOKABLE void MsetRotation(QQuickItem* o, qreal x1) { o->setRotation(x1); } + Q_INVOKABLE void MsetScale(QQuickItem* o, qreal x1) { o->setScale(x1); } + Q_INVOKABLE void MsetSmooth(QQuickItem* o, bool x1) { o->setSmooth(x1); } + Q_INVOKABLE void MsetState(QQuickItem* o, const QString& x1) { o->setState(x1); } + Q_INVOKABLE void MsetTransformOrigin(QQuickItem* o, QQuickItem::TransformOrigin x1) { o->setTransformOrigin(x1); } + Q_INVOKABLE void MsetVisible(QQuickItem* o, bool x1) { o->setVisible(x1); } + Q_INVOKABLE void MsetWidth(QQuickItem* o, qreal x1) { o->setWidth(x1); } + Q_INVOKABLE void MsetX(QQuickItem* o, qreal x1) { o->setX(x1); } + Q_INVOKABLE void MsetY(QQuickItem* o, qreal x1) { o->setY(x1); } + Q_INVOKABLE void MsetZ(QQuickItem* o, qreal x1) { o->setZ(x1); } + Q_INVOKABLE bool Msmooth(QQuickItem* o) const { return o->smooth(); } + Q_INVOKABLE void MstackAfter(QQuickItem* o, const QQuickItem* x1) { o->stackAfter(x1); } + Q_INVOKABLE void MstackBefore(QQuickItem* o, const QQuickItem* x1) { o->stackBefore(x1); } + Q_INVOKABLE QString Mstate(QQuickItem* o) const { return o->state(); } + Q_INVOKABLE QSGTextureProvider* MtextureProvider(QQuickItem* o) const { return o->textureProvider(); } + Q_INVOKABLE int MtransformOrigin(QQuickItem* o) const { return o->transformOrigin(); } + Q_INVOKABLE void MungrabMouse(QQuickItem* o) { o->ungrabMouse(); } + Q_INVOKABLE void MungrabTouchPoints(QQuickItem* o) { o->ungrabTouchPoints(); } + Q_INVOKABLE void MunsetCursor(QQuickItem* o) { o->unsetCursor(); } + Q_INVOKABLE qreal Mwidth(QQuickItem* o) const { return o->width(); } + Q_INVOKABLE QQuickWindow* Mwindow(QQuickItem* o) const { return o->window(); } + Q_INVOKABLE qreal Mx(QQuickItem* o) const { return o->x(); } + Q_INVOKABLE qreal My(QQuickItem* o) const { return o->y(); } + Q_INVOKABLE qreal Mz(QQuickItem* o) const { return o->z(); } + Q_INVOKABLE void MclassBegin(QQuickItem* o) { ((LQuickItem*)o)->classBegin(); } + Q_INVOKABLE void McomponentComplete(QQuickItem* o) { ((LQuickItem*)o)->componentComplete(); } + Q_INVOKABLE bool Mevent(QQuickItem* o, QEvent* x1) { return ((LQuickItem*)o)->event(x1); } + Q_INVOKABLE bool MheightValid(QQuickItem* o) const { return ((LQuickItem*)o)->heightValid(); } + Q_INVOKABLE bool MisComponentComplete(QQuickItem* o) const { return ((LQuickItem*)o)->isComponentComplete(); } + Q_INVOKABLE void MupdateInputMethod(QQuickItem* o, Qt::InputMethodQueries x1 = Qt::ImQueryInput) { ((LQuickItem*)o)->updateInputMethod(x1); } + Q_INVOKABLE bool MwidthValid(QQuickItem* o) const { return ((LQuickItem*)o)->widthValid(); } +}; + +class Q179 : public Q142 { // QQuickItemGrabResult + Q_OBJECT +public: + Q_INVOKABLE QImage Mimage(QQuickItemGrabResult* o) const { return o->image(); } + Q_INVOKABLE bool MsaveToFile(QQuickItemGrabResult* o, const QString& x1) { return o->saveToFile(x1); } + Q_INVOKABLE QUrl Murl(QQuickItemGrabResult* o) const { return o->url(); } +}; + +class Q180 : public Q178 { // QQuickPaintedItem + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QQuickItem* x1 = 0) { return new LQuickPaintedItem(u, x1); } + Q_INVOKABLE bool Mantialiasing(QQuickPaintedItem* o) const { return o->antialiasing(); } + Q_INVOKABLE QRectF McontentsBoundingRect(QQuickPaintedItem* o) const { return o->contentsBoundingRect(); } + Q_INVOKABLE qreal McontentsScale(QQuickPaintedItem* o) const { return o->contentsScale(); } + Q_INVOKABLE QSize McontentsSize(QQuickPaintedItem* o) const { return o->contentsSize(); } + Q_INVOKABLE QColor MfillColor(QQuickPaintedItem* o) const { return o->fillColor(); } + Q_INVOKABLE bool Mmipmap(QQuickPaintedItem* o) const { return o->mipmap(); } + Q_INVOKABLE bool MopaquePainting(QQuickPaintedItem* o) const { return o->opaquePainting(); } + Q_INVOKABLE void Mpaint(QQuickPaintedItem* o, QPainter* x1) { o->paint(x1); } + Q_INVOKABLE int MperformanceHints(QQuickPaintedItem* o) const { return o->performanceHints(); } + Q_INVOKABLE int MrenderTarget(QQuickPaintedItem* o) const { return o->renderTarget(); } + Q_INVOKABLE void MresetContentsSize(QQuickPaintedItem* o) { o->resetContentsSize(); } + Q_INVOKABLE void MsetAntialiasing(QQuickPaintedItem* o, bool x1) { o->setAntialiasing(x1); } + Q_INVOKABLE void MsetContentsScale(QQuickPaintedItem* o, qreal x1) { o->setContentsScale(x1); } + Q_INVOKABLE void MsetContentsSize(QQuickPaintedItem* o, const QSize& x1) { o->setContentsSize(x1); } + Q_INVOKABLE void MsetFillColor(QQuickPaintedItem* o, const QColor& x1) { o->setFillColor(x1); } + Q_INVOKABLE void MsetMipmap(QQuickPaintedItem* o, bool x1) { o->setMipmap(x1); } + Q_INVOKABLE void MsetOpaquePainting(QQuickPaintedItem* o, bool x1) { o->setOpaquePainting(x1); } + Q_INVOKABLE void MsetPerformanceHint(QQuickPaintedItem* o, QQuickPaintedItem::PerformanceHint x1, bool x2 = true) { o->setPerformanceHint(x1, x2); } + Q_INVOKABLE void MsetPerformanceHints(QQuickPaintedItem* o, QQuickPaintedItem::PerformanceHints x1) { o->setPerformanceHints(x1); } + Q_INVOKABLE void MsetRenderTarget(QQuickPaintedItem* o, QQuickPaintedItem::RenderTarget x1) { o->setRenderTarget(x1); } + Q_INVOKABLE void Mupdate(QQuickPaintedItem* o, const QRect& x1 = QRect()) { o->update(x1); } + Q_INVOKABLE bool MisTextureProvider(QQuickPaintedItem* o) const { return o->isTextureProvider(); } + Q_INVOKABLE QSGTextureProvider* MtextureProvider(QQuickPaintedItem* o) const { return o->textureProvider(); } +}; + +class Q181 : public Q142 { // QQuickRenderControl + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LQuickRenderControl(u, x1); } + Q_INVOKABLE QImage Mgrab(QQuickRenderControl* o) { return o->grab(); } + Q_INVOKABLE void Minitialize(QQuickRenderControl* o, QOpenGLContext* x1) { o->initialize(x1); } + Q_INVOKABLE void Minvalidate(QQuickRenderControl* o) { o->invalidate(); } + Q_INVOKABLE void MpolishItems(QQuickRenderControl* o) { o->polishItems(); } + Q_INVOKABLE void MprepareThread(QQuickRenderControl* o, QThread* x1) { o->prepareThread(x1); } + Q_INVOKABLE void Mrender(QQuickRenderControl* o) { o->render(); } + Q_INVOKABLE bool Msync(QQuickRenderControl* o) { return o->sync(); } +}; + +class Q182 : public Q142 { // QQuickTextDocument + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QQuickItem* x1) { return new LQuickTextDocument(u, x1); } + Q_INVOKABLE QTextDocument* MtextDocument(QQuickTextDocument* o) const { return o->textDocument(); } +}; + +class Q183 : public Q142 { // QQuickTextureFactory + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LQuickTextureFactory(u); } + Q_INVOKABLE QSGTexture* McreateTexture(QQuickTextureFactory* o, QQuickWindow* x1) const { return o->createTexture(x1); } + Q_INVOKABLE QImage Mimage(QQuickTextureFactory* o) const { return o->image(); } + Q_INVOKABLE int MtextureByteCount(QQuickTextureFactory* o) const { return o->textureByteCount(); } + Q_INVOKABLE QSize MtextureSize(QQuickTextureFactory* o) const { return o->textureSize(); } + Q_INVOKABLE QQuickTextureFactory* StextureFactoryForImage(const QImage& x1) { return QQuickTextureFactory::textureFactoryForImage(x1); } +}; + +class Q191 : public Q142 { // QSGAbstractRenderer + Q_OBJECT +public: + Q_INVOKABLE QColor MclearColor(QSGAbstractRenderer* o) const { return o->clearColor(); } + Q_INVOKABLE int MclearMode(QSGAbstractRenderer* o) const { return o->clearMode(); } + Q_INVOKABLE QRect MdeviceRect(QSGAbstractRenderer* o) const { return o->deviceRect(); } + Q_INVOKABLE QMatrix4x4 MprojectionMatrix(QSGAbstractRenderer* o) const { return o->projectionMatrix(); } + Q_INVOKABLE void MrenderScene(QSGAbstractRenderer* o, GLuint x1 = 0) { o->renderScene(x1); } + Q_INVOKABLE QSGRootNode* MrootNode(QSGAbstractRenderer* o) const { return o->rootNode(); } + Q_INVOKABLE void MsetClearColor(QSGAbstractRenderer* o, const QColor& x1) { o->setClearColor(x1); } + Q_INVOKABLE void MsetClearMode(QSGAbstractRenderer* o, QSGAbstractRenderer::ClearMode x1) { o->setClearMode(x1); } + Q_INVOKABLE void MsetDeviceRect(QSGAbstractRenderer* o, const QRect& x1) { o->setDeviceRect(x1); } + Q_INVOKABLE void MsetDeviceRect(QSGAbstractRenderer* o, const QSize& x1) { o->setDeviceRect(x1); } + Q_INVOKABLE void MsetProjectionMatrix(QSGAbstractRenderer* o, const QMatrix4x4& x1) { o->setProjectionMatrix(x1); } + Q_INVOKABLE void MsetProjectionMatrixToRect(QSGAbstractRenderer* o, const QRectF& x1) { o->setProjectionMatrixToRect(x1); } + Q_INVOKABLE void MsetRootNode(QSGAbstractRenderer* o, QSGRootNode* x1) { o->setRootNode(x1); } + Q_INVOKABLE void MsetViewportRect(QSGAbstractRenderer* o, const QRect& x1) { o->setViewportRect(x1); } + Q_INVOKABLE void MsetViewportRect(QSGAbstractRenderer* o, const QSize& x1) { o->setViewportRect(x1); } + Q_INVOKABLE QRect MviewportRect(QSGAbstractRenderer* o) const { return o->viewportRect(); } +}; + +class Q193 : public Q142 { // QSGEngine + Q_OBJECT +public: + Q_INVOKABLE QSGTexture* McreateTextureFromId(QSGEngine* o, uint x1, const QSize& x2, QSGEngine::CreateTextureOptions x3 = 0) const { return o->createTextureFromId(x1, x2, x3); } + Q_INVOKABLE QSGTexture* McreateTextureFromImage(QSGEngine* o, const QImage& x1, QSGEngine::CreateTextureOptions x2 = 0) const { return o->createTextureFromImage(x1, x2); } + Q_INVOKABLE void Minitialize(QSGEngine* o, QOpenGLContext* x1) { o->initialize(x1); } + Q_INVOKABLE void Minvalidate(QSGEngine* o) { o->invalidate(); } +}; + +class Q194 : public Q142 { // QSGTexture + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LSGTexture(u); } + Q_INVOKABLE void Mbind(QSGTexture* o) { o->bind(); } + Q_INVOKABLE QRectF MconvertToNormalizedSourceRect(QSGTexture* o, const QRectF& x1) const { return o->convertToNormalizedSourceRect(x1); } + Q_INVOKABLE int Mfiltering(QSGTexture* o) const { return o->filtering(); } + Q_INVOKABLE bool MhasAlphaChannel(QSGTexture* o) const { return o->hasAlphaChannel(); } + Q_INVOKABLE bool MhasMipmaps(QSGTexture* o) const { return o->hasMipmaps(); } + Q_INVOKABLE int MhorizontalWrapMode(QSGTexture* o) const { return o->horizontalWrapMode(); } + Q_INVOKABLE bool MisAtlasTexture(QSGTexture* o) const { return o->isAtlasTexture(); } + Q_INVOKABLE int MmipmapFiltering(QSGTexture* o) const { return o->mipmapFiltering(); } + Q_INVOKABLE QRectF MnormalizedTextureSubRect(QSGTexture* o) const { return o->normalizedTextureSubRect(); } + Q_INVOKABLE QSGTexture* MremovedFromAtlas(QSGTexture* o) const { return o->removedFromAtlas(); } + Q_INVOKABLE void MsetFiltering(QSGTexture* o, QSGTexture::Filtering x1) { o->setFiltering(x1); } + Q_INVOKABLE void MsetHorizontalWrapMode(QSGTexture* o, QSGTexture::WrapMode x1) { o->setHorizontalWrapMode(x1); } + Q_INVOKABLE void MsetMipmapFiltering(QSGTexture* o, QSGTexture::Filtering x1) { o->setMipmapFiltering(x1); } + Q_INVOKABLE void MsetVerticalWrapMode(QSGTexture* o, QSGTexture::WrapMode x1) { o->setVerticalWrapMode(x1); } + Q_INVOKABLE int MtextureId(QSGTexture* o) const { return o->textureId(); } + Q_INVOKABLE QSize MtextureSize(QSGTexture* o) const { return o->textureSize(); } + Q_INVOKABLE void MupdateBindOptions(QSGTexture* o, bool x1 = false) { o->updateBindOptions(x1); } + Q_INVOKABLE int MverticalWrapMode(QSGTexture* o) const { return o->verticalWrapMode(); } +}; + +class Q195 : public Q142 { // QSGTextureProvider + Q_OBJECT +public: + Q_INVOKABLE QSGTexture* Mtexture(QSGTextureProvider* o) const { return o->texture(); } +}; + +class Q168 : public Q171 { // QQmlApplicationEngine + Q_OBJECT +public: + Q_INVOKABLE QList MrootObjects(QQmlApplicationEngine* o) { return o->rootObjects(); } +}; + +class Q176 : public Q178 { // QQuickFramebufferObject + Q_OBJECT +public: + Q_INVOKABLE void MsetTextureFollowsItemSize(QQuickFramebufferObject* o, bool x1) { o->setTextureFollowsItemSize(x1); } + Q_INVOKABLE bool MtextureFollowsItemSize(QQuickFramebufferObject* o) const { return o->textureFollowsItemSize(); } + Q_INVOKABLE bool MisTextureProvider(QQuickFramebufferObject* o) const { return o->isTextureProvider(); } + Q_INVOKABLE void MreleaseResources(QQuickFramebufferObject* o) { o->releaseResources(); } + Q_INVOKABLE QSGTextureProvider* MtextureProvider(QQuickFramebufferObject* o) const { return o->textureProvider(); } +}; + +class Q185 : public Q272 { // QQuickWidget + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LQuickWidget(u, x1); } + Q_INVOKABLE void* C(uint u, const QUrl& x1, QWidget* x2 = 0) { return new LQuickWidget(u, x1, x2); } + Q_INVOKABLE QList Merrors(QQuickWidget* o) const { return o->errors(); } + Q_INVOKABLE QSurfaceFormat Mformat(QQuickWidget* o) const { return o->format(); } + Q_INVOKABLE QImage MgrabFramebuffer(QQuickWidget* o) const { return o->grabFramebuffer(); } + Q_INVOKABLE QSize MinitialSize(QQuickWidget* o) const { return o->initialSize(); } + Q_INVOKABLE QQuickWindow* MquickWindow(QQuickWidget* o) const { return o->quickWindow(); } + Q_INVOKABLE int MresizeMode(QQuickWidget* o) const { return o->resizeMode(); } + Q_INVOKABLE QQmlContext* MrootContext(QQuickWidget* o) const { return o->rootContext(); } + Q_INVOKABLE QQuickItem* MrootObject(QQuickWidget* o) const { return o->rootObject(); } + Q_INVOKABLE void MsetClearColor(QQuickWidget* o, const QColor& x1) { o->setClearColor(x1); } + Q_INVOKABLE void MsetFormat(QQuickWidget* o, const QSurfaceFormat& x1) { o->setFormat(x1); } + Q_INVOKABLE void MsetResizeMode(QQuickWidget* o, QQuickWidget::ResizeMode x1) { o->setResizeMode(x1); } + Q_INVOKABLE QUrl Msource(QQuickWidget* o) const { return o->source(); } + Q_INVOKABLE int Mstatus(QQuickWidget* o) const { return o->status(); } + Q_INVOKABLE bool Mevent(QQuickWidget* o, QEvent* x1) { return ((LQuickWidget*)o)->event(x1); } +}; + +class Q186 : public Q274 { // QQuickWindow + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QWindow* x1 = 0) { return new LQuickWindow(u, x1); } + Q_INVOKABLE QAccessibleInterface* MaccessibleRoot(QQuickWindow* o) const { return o->accessibleRoot(); } + Q_INVOKABLE QQuickItem* MactiveFocusItem(QQuickWindow* o) const { return o->activeFocusItem(); } + Q_INVOKABLE bool MclearBeforeRendering(QQuickWindow* o) const { return o->clearBeforeRendering(); } + Q_INVOKABLE QColor Mcolor(QQuickWindow* o) const { return o->color(); } + Q_INVOKABLE QQuickItem* McontentItem(QQuickWindow* o) const { return o->contentItem(); } + Q_INVOKABLE QSGTexture* McreateTextureFromId(QQuickWindow* o, uint x1, const QSize& x2, QQuickWindow::CreateTextureOptions x3 = 0) const { return o->createTextureFromId(x1, x2, x3); } + Q_INVOKABLE QSGTexture* McreateTextureFromImage(QQuickWindow* o, const QImage& x1, QQuickWindow::CreateTextureOptions x2) const { return o->createTextureFromImage(x1, x2); } + Q_INVOKABLE QSGTexture* McreateTextureFromImage(QQuickWindow* o, const QImage& x1) const { return o->createTextureFromImage(x1); } + Q_INVOKABLE qreal MeffectiveDevicePixelRatio(QQuickWindow* o) const { return o->effectiveDevicePixelRatio(); } + Q_INVOKABLE QImage MgrabWindow(QQuickWindow* o) { return o->grabWindow(); } + Q_INVOKABLE QQmlIncubationController* MincubationController(QQuickWindow* o) const { return o->incubationController(); } + Q_INVOKABLE bool MisPersistentOpenGLContext(QQuickWindow* o) const { return o->isPersistentOpenGLContext(); } + Q_INVOKABLE bool MisPersistentSceneGraph(QQuickWindow* o) const { return o->isPersistentSceneGraph(); } + Q_INVOKABLE bool MisSceneGraphInitialized(QQuickWindow* o) const { return o->isSceneGraphInitialized(); } + Q_INVOKABLE QQuickItem* MmouseGrabberItem(QQuickWindow* o) const { return o->mouseGrabberItem(); } + Q_INVOKABLE QOpenGLContext* MopenglContext(QQuickWindow* o) const { return o->openglContext(); } + Q_INVOKABLE QOpenGLFramebufferObject* MrenderTarget(QQuickWindow* o) const { return o->renderTarget(); } + Q_INVOKABLE uint MrenderTargetId(QQuickWindow* o) const { return o->renderTargetId(); } + Q_INVOKABLE QSize MrenderTargetSize(QQuickWindow* o) const { return o->renderTargetSize(); } + Q_INVOKABLE void MresetOpenGLState(QQuickWindow* o) { o->resetOpenGLState(); } + Q_INVOKABLE void MscheduleRenderJob(QQuickWindow* o, QRunnable* x1, QQuickWindow::RenderStage x2) { o->scheduleRenderJob(x1, x2); } + Q_INVOKABLE bool MsendEvent(QQuickWindow* o, QQuickItem* x1, QEvent* x2) { return o->sendEvent(x1, x2); } + Q_INVOKABLE void MsetClearBeforeRendering(QQuickWindow* o, bool x1) { o->setClearBeforeRendering(x1); } + Q_INVOKABLE void MsetColor(QQuickWindow* o, const QColor& x1) { o->setColor(x1); } + Q_INVOKABLE void MsetPersistentOpenGLContext(QQuickWindow* o, bool x1) { o->setPersistentOpenGLContext(x1); } + Q_INVOKABLE void MsetPersistentSceneGraph(QQuickWindow* o, bool x1) { o->setPersistentSceneGraph(x1); } + Q_INVOKABLE void MsetRenderTarget(QQuickWindow* o, QOpenGLFramebufferObject* x1) { o->setRenderTarget(x1); } + Q_INVOKABLE void MsetRenderTarget(QQuickWindow* o, uint x1, const QSize& x2) { o->setRenderTarget(x1, x2); } + Q_INVOKABLE bool Mevent(QQuickWindow* o, QEvent* x1) { return ((LQuickWindow*)o)->event(x1); } + Q_INVOKABLE void MexposeEvent(QQuickWindow* o, QExposeEvent* x1) { ((LQuickWindow*)o)->exposeEvent(x1); } + Q_INVOKABLE void MfocusInEvent(QQuickWindow* o, QFocusEvent* x1) { ((LQuickWindow*)o)->focusInEvent(x1); } + Q_INVOKABLE void MfocusOutEvent(QQuickWindow* o, QFocusEvent* x1) { ((LQuickWindow*)o)->focusOutEvent(x1); } + Q_INVOKABLE void MhideEvent(QQuickWindow* o, QHideEvent* x1) { ((LQuickWindow*)o)->hideEvent(x1); } + Q_INVOKABLE void MkeyPressEvent(QQuickWindow* o, QKeyEvent* x1) { ((LQuickWindow*)o)->keyPressEvent(x1); } + Q_INVOKABLE void MkeyReleaseEvent(QQuickWindow* o, QKeyEvent* x1) { ((LQuickWindow*)o)->keyReleaseEvent(x1); } + Q_INVOKABLE void MmouseDoubleClickEvent(QQuickWindow* o, QMouseEvent* x1) { ((LQuickWindow*)o)->mouseDoubleClickEvent(x1); } + Q_INVOKABLE void MmouseMoveEvent(QQuickWindow* o, QMouseEvent* x1) { ((LQuickWindow*)o)->mouseMoveEvent(x1); } + Q_INVOKABLE void MmousePressEvent(QQuickWindow* o, QMouseEvent* x1) { ((LQuickWindow*)o)->mousePressEvent(x1); } + Q_INVOKABLE void MmouseReleaseEvent(QQuickWindow* o, QMouseEvent* x1) { ((LQuickWindow*)o)->mouseReleaseEvent(x1); } + Q_INVOKABLE void MresizeEvent(QQuickWindow* o, QResizeEvent* x1) { ((LQuickWindow*)o)->resizeEvent(x1); } + Q_INVOKABLE void MshowEvent(QQuickWindow* o, QShowEvent* x1) { ((LQuickWindow*)o)->showEvent(x1); } + Q_INVOKABLE void MwheelEvent(QQuickWindow* o, QWheelEvent* x1) { ((LQuickWindow*)o)->wheelEvent(x1); } + Q_INVOKABLE bool ShasDefaultAlphaBuffer() { return QQuickWindow::hasDefaultAlphaBuffer(); } + Q_INVOKABLE void SsetDefaultAlphaBuffer(bool x1) { QQuickWindow::setDefaultAlphaBuffer(x1); } +}; + +class Q192 : public Q194 { // QSGDynamicTexture + Q_OBJECT +public: + Q_INVOKABLE bool MupdateTexture(QSGDynamicTexture* o) { return o->updateTexture(); } +}; + +class Q184 : public Q186 { // QQuickView + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QWindow* x1 = 0) { return new LQuickView(u, x1); } + Q_INVOKABLE void* C(uint u, const QUrl& x1, QWindow* x2 = 0) { return new LQuickView(u, x1, x2); } + Q_INVOKABLE QList Merrors(QQuickView* o) const { return o->errors(); } + Q_INVOKABLE QSize MinitialSize(QQuickView* o) const { return o->initialSize(); } + Q_INVOKABLE int MresizeMode(QQuickView* o) const { return o->resizeMode(); } + Q_INVOKABLE QQmlContext* MrootContext(QQuickView* o) const { return o->rootContext(); } + Q_INVOKABLE QQuickItem* MrootObject(QQuickView* o) const { return o->rootObject(); } + Q_INVOKABLE void MsetResizeMode(QQuickView* o, QQuickView::ResizeMode x1) { o->setResizeMode(x1); } + Q_INVOKABLE QUrl Msource(QQuickView* o) const { return o->source(); } + Q_INVOKABLE int Mstatus(QQuickView* o) const { return o->status(); } + Q_INVOKABLE void MkeyPressEvent(QQuickView* o, QKeyEvent* x1) { ((LQuickView*)o)->keyPressEvent(x1); } + Q_INVOKABLE void MkeyReleaseEvent(QQuickView* o, QKeyEvent* x1) { ((LQuickView*)o)->keyReleaseEvent(x1); } + Q_INVOKABLE void MmouseMoveEvent(QQuickView* o, QMouseEvent* x1) { ((LQuickView*)o)->mouseMoveEvent(x1); } + Q_INVOKABLE void MmousePressEvent(QQuickView* o, QMouseEvent* x1) { ((LQuickView*)o)->mousePressEvent(x1); } + Q_INVOKABLE void MmouseReleaseEvent(QQuickView* o, QMouseEvent* x1) { ((LQuickView*)o)->mouseReleaseEvent(x1); } +}; + +QT_END_NAMESPACE + +#endif diff --git a/src/gen/sql/_ini.cpp b/src/gen/sql/_ini.cpp index b46269f..83bfb16 100644 --- a/src/gen/sql/_ini.cpp +++ b/src/gen/sql/_ini.cpp @@ -6,11 +6,11 @@ QT_BEGIN_NAMESPACE -NumList LSqlDriver::overrideIds = NumList() << 327 << 130 << 328 << 329 << 330 << 331 << 332 << 333 << 334 << 335 << 336 << 337 << 338 << 339 << 340 << 341 << 342 << 343 << 344 << 345 << 346 << 347 << 348; -NumList LSqlQueryModel::overrideIds = NumList() << 219 << 349 << 350 << 57 << 59 << 61 << 64 << 66 << 74 << 76 << 78; +NumList LSqlDriver::overrideIds = NumList() << 362 << 130 << 363 << 364 << 365 << 366 << 367 << 368 << 369 << 370 << 371 << 372 << 373 << 374 << 375 << 376 << 377 << 378 << 379 << 380 << 381 << 382 << 383; +NumList LSqlQueryModel::overrideIds = NumList() << 219 << 384 << 385 << 57 << 59 << 61 << 64 << 66 << 74 << 76 << 78; NumList LSqlRelationalDelegate::overrideIds = NumList() << 46 << 52; -NumList LSqlRelationalTableModel::overrideIds = NumList() << 351 << 352 << 219 << 59 << 74 << 353 << 77 << 354 << 355 << 356 << 357 << 358; -NumList LSqlTableModel::overrideIds = NumList() << 359 << 360 << 361 << 362 << 354 << 363 << 355 << 356 << 357 << 358 << 219 << 59 << 62 << 64 << 67 << 74 << 75 << 76 << 77 << 80 << 349; +NumList LSqlRelationalTableModel::overrideIds = NumList() << 386 << 387 << 219 << 59 << 74 << 388 << 77 << 389 << 390 << 391 << 392 << 393; +NumList LSqlTableModel::overrideIds = NumList() << 394 << 395 << 396 << 397 << 389 << 398 << 390 << 391 << 392 << 393 << 219 << 59 << 62 << 64 << 67 << 74 << 75 << 76 << 77 << 80 << 384; NumList LSqlDatabase::overrideIds = NumList(); NumList LSqlError::overrideIds = NumList(); NumList LSqlField::overrideIds = NumList(); @@ -18,67 +18,67 @@ NumList LSqlIndex::overrideIds = NumList(); NumList LSqlQuery::overrideIds = NumList(); NumList LSqlRecord::overrideIds = NumList(); NumList LSqlRelation::overrideIds = NumList(); -NumList LSqlResult::overrideIds = NumList() << 332 << 488 << 489 << 479 << 107 << 490 << 491 << 492 << 493 << 494 << 495 << 496 << 497 << 498 << 499 << 500 << 501 << 502 << 503 << 504 << 346 << 505 << 506 << 141; +NumList LSqlResult::overrideIds = NumList() << 367 << 541 << 542 << 514 << 107 << 543 << 544 << 545 << 546 << 547 << 548 << 549 << 550 << 551 << 552 << 553 << 554 << 555 << 556 << 557 << 381 << 558 << 559 << 141; void ini() { static bool _ = false; if(_) return; _ = true; ini2(); - LObjects::Q[185] = new Q186; - LObjects::Q[186] = new Q187; - LObjects::Q[187] = new Q188; - LObjects::Q[188] = new Q189; - LObjects::Q[189] = new Q190; - LObjects::N[165] = new N166; - LObjects::N[166] = new N167; - LObjects::N[167] = new N168; - LObjects::N[168] = new N169; - LObjects::N[169] = new N170; - LObjects::N[170] = new N171; - LObjects::N[171] = new N172; - LObjects::N[172] = new N173; } + LObjects::Q[211] = new Q212; + LObjects::Q[212] = new Q213; + LObjects::Q[213] = new Q214; + LObjects::Q[214] = new Q215; + LObjects::Q[215] = new Q216; + LObjects::N[195] = new N196; + LObjects::N[196] = new N197; + LObjects::N[197] = new N198; + LObjects::N[198] = new N199; + LObjects::N[199] = new N200; + LObjects::N[200] = new N201; + LObjects::N[201] = new N202; + LObjects::N[202] = new N203; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; switch(n) { - case 186: m = &QSqlDriver::staticMetaObject; break; - case 187: m = &QSqlQueryModel::staticMetaObject; break; - case 188: m = &QSqlRelationalDelegate::staticMetaObject; break; - case 189: m = &QSqlRelationalTableModel::staticMetaObject; break; - case 190: m = &QSqlTableModel::staticMetaObject; break; } + case 212: m = &QSqlDriver::staticMetaObject; break; + case 213: m = &QSqlQueryModel::staticMetaObject; break; + case 214: m = &QSqlRelationalDelegate::staticMetaObject; break; + case 215: m = &QSqlRelationalTableModel::staticMetaObject; break; + case 216: m = &QSqlTableModel::staticMetaObject; break; } return m; } void deleteNObject(int n, void* p, int gc) { switch(n) { - case 166: if(gc) delete (QSqlDatabase*)p; else delete (LSqlDatabase*)p; break; - case 167: if(gc) delete (QSqlError*)p; else delete (LSqlError*)p; break; - case 168: if(gc) delete (QSqlField*)p; else delete (LSqlField*)p; break; - case 169: if(gc) delete (QSqlIndex*)p; else delete (LSqlIndex*)p; break; - case 170: if(gc) delete (QSqlQuery*)p; else delete (LSqlQuery*)p; break; - case 171: if(gc) delete (QSqlRecord*)p; else delete (LSqlRecord*)p; break; - case 172: if(gc) delete (QSqlRelation*)p; else delete (LSqlRelation*)p; break; - case 173: if(gc) delete (QSqlResult*)p; else delete (LSqlResult*)p; break; }} + case 196: if(gc) delete (QSqlDatabase*)p; else delete (LSqlDatabase*)p; break; + case 197: if(gc) delete (QSqlError*)p; else delete (LSqlError*)p; break; + case 198: if(gc) delete (QSqlField*)p; else delete (LSqlField*)p; break; + case 199: if(gc) delete (QSqlIndex*)p; else delete (LSqlIndex*)p; break; + case 200: if(gc) delete (QSqlQuery*)p; else delete (LSqlQuery*)p; break; + case 201: if(gc) delete (QSqlRecord*)p; else delete (LSqlRecord*)p; break; + case 202: if(gc) delete (QSqlRelation*)p; else delete (LSqlRelation*)p; break; + case 203: if(gc) delete (QSqlResult*)p; else delete (LSqlResult*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; int n = LObjects::q_names.value(name, -1); if(n != -1) { switch(n) { - case 186: ids = &LSqlDriver::overrideIds; break; - case 187: ids = &LSqlQueryModel::overrideIds; break; - case 188: ids = &LSqlRelationalDelegate::overrideIds; break; - case 189: ids = &LSqlRelationalTableModel::overrideIds; break; - case 190: ids = &LSqlTableModel::overrideIds; break; }} + case 212: ids = &LSqlDriver::overrideIds; break; + case 213: ids = &LSqlQueryModel::overrideIds; break; + case 214: ids = &LSqlRelationalDelegate::overrideIds; break; + case 215: ids = &LSqlRelationalTableModel::overrideIds; break; + case 216: ids = &LSqlTableModel::overrideIds; break; }} else { n = LObjects::n_names.value(name); switch(n) { - case 166: ids = &LSqlDatabase::overrideIds; break; - case 167: ids = &LSqlError::overrideIds; break; - case 168: ids = &LSqlField::overrideIds; break; - case 169: ids = &LSqlIndex::overrideIds; break; - case 170: ids = &LSqlQuery::overrideIds; break; - case 171: ids = &LSqlRecord::overrideIds; break; - case 172: ids = &LSqlRelation::overrideIds; break; - case 173: ids = &LSqlResult::overrideIds; break; }} + case 196: ids = &LSqlDatabase::overrideIds; break; + case 197: ids = &LSqlError::overrideIds; break; + case 198: ids = &LSqlField::overrideIds; break; + case 199: ids = &LSqlIndex::overrideIds; break; + case 200: ids = &LSqlQuery::overrideIds; break; + case 201: ids = &LSqlRecord::overrideIds; break; + case 202: ids = &LSqlRelation::overrideIds; break; + case 203: ids = &LSqlResult::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/sql/_n_classes.h b/src/gen/sql/_n_classes.h index 01564d6..1c4293e 100644 --- a/src/gen/sql/_n_classes.h +++ b/src/gen/sql/_n_classes.h @@ -12,7 +12,7 @@ QT_BEGIN_NAMESPACE class LSqlDatabase : public QSqlDatabase { - friend class N166; + friend class N196; public: LSqlDatabase(uint u) : unique(u) {} LSqlDatabase(uint u, const QSqlDatabase& x1) : QSqlDatabase(x1), unique(u) {} @@ -22,7 +22,7 @@ public: }; class LSqlError : public QSqlError { - friend class N167; + friend class N197; public: LSqlError(uint u, const QString& x1 = QString(), const QString& x2 = QString(), ErrorType x3 = NoError, const QString& x4 = QString()) : QSqlError(x1, x2, x3, x4), unique(u) {} LSqlError(uint u, const QSqlError& x1) : QSqlError(x1), unique(u) {} @@ -32,7 +32,7 @@ public: }; class LSqlField : public QSqlField { - friend class N168; + friend class N198; public: LSqlField(uint u, const QString& x1 = QString(), QVariant::Type x2 = QVariant::Invalid) : QSqlField(x1, x2), unique(u) {} LSqlField(uint u, const QSqlField& x1) : QSqlField(x1), unique(u) {} @@ -42,7 +42,7 @@ public: }; class LSqlIndex : public QSqlIndex { - friend class N169; + friend class N199; public: LSqlIndex(uint u, const QString& x1 = QString(), const QString& x2 = QString()) : QSqlIndex(x1, x2), unique(u) {} LSqlIndex(uint u, const QSqlIndex& x1) : QSqlIndex(x1), unique(u) {} @@ -52,7 +52,7 @@ public: }; class LSqlQuery : public QSqlQuery { - friend class N170; + friend class N200; public: LSqlQuery(uint u, QSqlResult* x1) : QSqlQuery(x1), unique(u) {} LSqlQuery(uint u, const QString& x1 = QString(), QSqlDatabase x2 = QSqlDatabase()) : QSqlQuery(x1, x2), unique(u) {} @@ -64,7 +64,7 @@ public: }; class LSqlRecord : public QSqlRecord { - friend class N171; + friend class N201; public: LSqlRecord(uint u) : unique(u) {} LSqlRecord(uint u, const QSqlRecord& x1) : QSqlRecord(x1), unique(u) {} @@ -74,7 +74,7 @@ public: }; class LSqlRelation : public QSqlRelation { - friend class N172; + friend class N202; public: LSqlRelation(uint u) : unique(u) {} LSqlRelation(uint u, const QString& x1, const QString& x2, const QString& x3) : QSqlRelation(x1, x2, x3), unique(u) {} @@ -84,34 +84,34 @@ public: }; class LSqlResult : public QSqlResult { - friend class N173; + friend class N203; public: static NumList overrideIds; uint unique; - QVariant handle() const { quint64 id = LObjects::override_id(unique, 332); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 332, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::handle(); } return ret; } - void bindValue(int x1, const QVariant& x2, QSql::ParamType x3) { quint64 id = LObjects::override_id(unique, 488); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 488, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::bindValue(x1, x2, x3); }} - QVariant data(int x1) { 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(); } return ret; } + QVariant handle() const { quint64 id = LObjects::override_id(unique, 367); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 367, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::handle(); } return ret; } + void bindValue(int x1, const QVariant& x2, QSql::ParamType x3) { quint64 id = LObjects::override_id(unique, 541); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 541, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::bindValue(x1, x2, x3); }} + QVariant data(int x1) { 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(); } return ret; } bool exec() { quint64 id = LObjects::override_id(unique, 107); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 107, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::exec(); } return ret; } - bool fetch(int x1) { quint64 id = LObjects::override_id(unique, 490); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 490, args, id).toBool(); } return ret; } - bool fetchFirst() { quint64 id = LObjects::override_id(unique, 491); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 491, 0, id).toBool(); } return ret; } - bool fetchLast() { quint64 id = LObjects::override_id(unique, 492); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 492, 0, id).toBool(); } return ret; } - bool fetchNext() { quint64 id = LObjects::override_id(unique, 493); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 493, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::fetchNext(); } return ret; } - bool fetchPrevious() { quint64 id = LObjects::override_id(unique, 494); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 494, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::fetchPrevious(); } return ret; } - bool isNull(int x1) { quint64 id = LObjects::override_id(unique, 495); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 495, args, id).toBool(); } return ret; } - QVariant lastInsertId() 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(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::lastInsertId(); } return ret; } - int numRowsAffected() { quint64 id = LObjects::override_id(unique, 497); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 497, 0, id).toInt(); } return ret; } - bool prepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 498); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 498, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::prepare(x1); } return ret; } - QSqlRecord record() const { quint64 id = LObjects::override_id(unique, 499); void* fun = LObjects::overrideFun(id); QSqlRecord ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 499, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::record(); } return ret; } - bool reset(const QString& x1) { quint64 id = LObjects::override_id(unique, 500); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 500, args, id).toBool(); } return ret; } - bool savePrepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 501); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 501, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::savePrepare(x1); } return ret; } - void setActive(bool x1) { quint64 id = LObjects::override_id(unique, 502); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 502, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setActive(x1); }} - void setAt(int x1) { quint64 id = LObjects::override_id(unique, 503); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 503, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setAt(x1); }} - void setForwardOnly(bool x1) { quint64 id = LObjects::override_id(unique, 504); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 504, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setForwardOnly(x1); }} - void setLastError(const QSqlError& x1) { quint64 id = LObjects::override_id(unique, 346); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 346, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setLastError(x1); }} - void setQuery(const QString& x1) { quint64 id = LObjects::override_id(unique, 505); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 505, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setQuery(x1); }} - void setSelect(bool 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)) { QSqlResult::setSelect(x1); }} + bool fetch(int x1) { quint64 id = LObjects::override_id(unique, 543); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 543, args, id).toBool(); } return ret; } + bool fetchFirst() { quint64 id = LObjects::override_id(unique, 544); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 544, 0, id).toBool(); } return ret; } + bool fetchLast() { quint64 id = LObjects::override_id(unique, 545); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 545, 0, id).toBool(); } return ret; } + bool fetchNext() { quint64 id = LObjects::override_id(unique, 546); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 546, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::fetchNext(); } return ret; } + bool fetchPrevious() { quint64 id = LObjects::override_id(unique, 547); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 547, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::fetchPrevious(); } return ret; } + bool isNull(int x1) { quint64 id = LObjects::override_id(unique, 548); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 548, args, id).toBool(); } return ret; } + QVariant lastInsertId() const { quint64 id = LObjects::override_id(unique, 549); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 549, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::lastInsertId(); } return ret; } + int numRowsAffected() { quint64 id = LObjects::override_id(unique, 550); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 550, 0, id).toInt(); } return ret; } + bool prepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 551); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 551, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::prepare(x1); } return ret; } + QSqlRecord record() const { quint64 id = LObjects::override_id(unique, 552); void* fun = LObjects::overrideFun(id); QSqlRecord ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 552, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::record(); } return ret; } + bool reset(const QString& x1) { quint64 id = LObjects::override_id(unique, 553); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 553, args, id).toBool(); } return ret; } + bool savePrepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 554); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 554, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::savePrepare(x1); } return ret; } + void setActive(bool x1) { quint64 id = LObjects::override_id(unique, 555); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 555, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setActive(x1); }} + void setAt(int x1) { quint64 id = LObjects::override_id(unique, 556); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 556, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setAt(x1); }} + void setForwardOnly(bool x1) { quint64 id = LObjects::override_id(unique, 557); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 557, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setForwardOnly(x1); }} + void setLastError(const QSqlError& x1) { quint64 id = LObjects::override_id(unique, 381); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 381, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setLastError(x1); }} + void setQuery(const QString& x1) { quint64 id = LObjects::override_id(unique, 558); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 558, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setQuery(x1); }} + void setSelect(bool x1) { quint64 id = LObjects::override_id(unique, 559); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 559, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setSelect(x1); }} int size() { quint64 id = LObjects::override_id(unique, 141); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 141, 0, id).toInt(); } return ret; } }; diff --git a/src/gen/sql/_n_methods.h b/src/gen/sql/_n_methods.h index 090906b..80aa162 100644 --- a/src/gen/sql/_n_methods.h +++ b/src/gen/sql/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N166 : public QObject { // QSqlDatabase +class N196 : public QObject { // QSqlDatabase Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSqlDatabase(u); } @@ -59,7 +59,7 @@ public: Q_INVOKABLE void SremoveDatabase(const QString& x1) { QSqlDatabase::removeDatabase(x1); } }; -class N167 : public QObject { // QSqlError +class N197 : public QObject { // QSqlError Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1 = QString(), const QString& x2 = QString(), QSqlError::ErrorType x3 = QSqlError::NoError, const QString& x4 = QString()) { return new LSqlError(u, x1, x2, x3, x4); } @@ -72,7 +72,7 @@ public: Q_INVOKABLE int Mtype(QSqlError* o) const { return o->type(); } }; -class N168 : public QObject { // QSqlField +class N198 : public QObject { // QSqlField Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1 = QString(), QVariant::Type x2 = QVariant::Invalid) { return new LSqlField(u, x1, x2); } @@ -103,7 +103,7 @@ public: Q_INVOKABLE QVariant Mvalue(QSqlField* o) const { return o->value(); } }; -class N170 : public QObject { // QSqlQuery +class N200 : public QObject { // QSqlQuery Q_OBJECT public: Q_INVOKABLE void* C(uint u, QSqlResult* x1) { return new LSqlQuery(u, x1); } @@ -150,7 +150,7 @@ public: Q_INVOKABLE QVariant Mvalue(QSqlQuery* o, const QString& x1) const { return o->value(x1); } }; -class N171 : public QObject { // QSqlRecord +class N201 : public QObject { // QSqlRecord Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSqlRecord(u); } @@ -183,7 +183,7 @@ public: Q_INVOKABLE QVariant Mvalue(QSqlRecord* o, const QString& x1) const { return o->value(x1); } }; -class N172 : public QObject { // QSqlRelation +class N202 : public QObject { // QSqlRelation Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSqlRelation(u); } @@ -194,7 +194,7 @@ public: Q_INVOKABLE QString MtableName(QSqlRelation* o) const { return o->tableName(); } }; -class N173 : public QObject { // QSqlResult +class N203 : public QObject { // QSqlResult Q_OBJECT public: Q_INVOKABLE QVariant Mhandle(QSqlResult* o) const { return o->handle(); } @@ -221,7 +221,7 @@ public: Q_INVOKABLE void MresetBindCount(QSqlResult* o) { ((LSqlResult*)o)->resetBindCount(); } }; -class N169 : public N171 { // QSqlIndex +class N199 : public N201 { // QSqlIndex Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1 = QString(), const QString& x2 = QString()) { return new LSqlIndex(u, x1, x2); } diff --git a/src/gen/sql/_q_classes.h b/src/gen/sql/_q_classes.h index 31075f7..41ed0cc 100644 --- a/src/gen/sql/_q_classes.h +++ b/src/gen/sql/_q_classes.h @@ -13,36 +13,36 @@ QT_BEGIN_NAMESPACE class LSqlDriver : public QSqlDriver { Q_OBJECT - friend class Q186; + friend class Q212; public: LSqlDriver(uint u, QObject* x1 = 0) : QSqlDriver(x1), unique(u) {} static NumList overrideIds; uint unique; - bool beginTransaction() { quint64 id = LObjects::override_id(unique, 327); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 327, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::beginTransaction(); } return ret; } + bool beginTransaction() { quint64 id = LObjects::override_id(unique, 362); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 362, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::beginTransaction(); } return ret; } void close() { quint64 id = LObjects::override_id(unique, 130); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 130, 0, id); }} - bool commitTransaction() { quint64 id = LObjects::override_id(unique, 328); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 328, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::commitTransaction(); } return ret; } - QSqlResult* createResult() const { quint64 id = LObjects::override_id(unique, 329); void* fun = LObjects::overrideFun(id); QSqlResult* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSqlResult*)callOverrideFun(fun, 329, 0, id).value(); } return ret; } - QString escapeIdentifier(const QString& x1, IdentifierType x2) const { quint64 id = LObjects::override_id(unique, 330); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 330, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::escapeIdentifier(x1, x2); } return ret; } - QString formatValue(const QSqlField& x1, bool x2 = false) const { quint64 id = LObjects::override_id(unique, 331); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 331, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::formatValue(x1, x2); } return ret; } - QVariant handle() const { quint64 id = LObjects::override_id(unique, 332); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 332, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::handle(); } return ret; } - bool hasFeature(DriverFeature x1) const { quint64 id = LObjects::override_id(unique, 333); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 333, args, id).toBool(); } return ret; } - bool isIdentifierEscaped(const QString& x1, IdentifierType x2) const { quint64 id = LObjects::override_id(unique, 334); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 334, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::isIdentifierEscaped(x1, x2); } return ret; } - bool isOpen() const { quint64 id = LObjects::override_id(unique, 335); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 335, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::isOpen(); } return ret; } - bool open(const QString& x1, const QString& x2 = QString(), const QString& x3 = QString(), const QString& x4 = QString(), int x5 = -1, const QString& x6 = QString()) { quint64 id = LObjects::override_id(unique, 336); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4, &x5, &x6 }; ret = callOverrideFun(fun, 336, args, id).toBool(); } return ret; } - QSqlIndex primaryIndex(const QString& x1) const { quint64 id = LObjects::override_id(unique, 337); void* fun = LObjects::overrideFun(id); QSqlIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 337, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::primaryIndex(x1); } return ret; } - QSqlRecord record(const QString& x1) const { quint64 id = LObjects::override_id(unique, 338); void* fun = LObjects::overrideFun(id); QSqlRecord ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 338, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::record(x1); } return ret; } - bool rollbackTransaction() { quint64 id = LObjects::override_id(unique, 339); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 339, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::rollbackTransaction(); } return ret; } - QString sqlStatement(StatementType x1, const QString& x2, const QSqlRecord& x3, bool x4) const { quint64 id = LObjects::override_id(unique, 340); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 340, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::sqlStatement(x1, x2, x3, x4); } return ret; } - QString stripDelimiters(const QString& x1, IdentifierType x2) const { quint64 id = LObjects::override_id(unique, 341); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 341, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::stripDelimiters(x1, x2); } return ret; } - bool subscribeToNotification(const QString& x1) { quint64 id = LObjects::override_id(unique, 342); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 342, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::subscribeToNotification(x1); } return ret; } - QStringList subscribedToNotifications() const { quint64 id = LObjects::override_id(unique, 343); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 343, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::subscribedToNotifications(); } return ret; } - QStringList tables(QSql::TableType x1) const { quint64 id = LObjects::override_id(unique, 344); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 344, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::tables(x1); } return ret; } - bool unsubscribeFromNotification(const QString& x1) { quint64 id = LObjects::override_id(unique, 345); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 345, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::unsubscribeFromNotification(x1); } return ret; } - void setLastError(const QSqlError& x1) { quint64 id = LObjects::override_id(unique, 346); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 346, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlDriver::setLastError(x1); }} - void setOpen(bool x1) { quint64 id = LObjects::override_id(unique, 347); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 347, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlDriver::setOpen(x1); }} - void setOpenError(bool x1) { quint64 id = LObjects::override_id(unique, 348); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 348, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlDriver::setOpenError(x1); }} + bool commitTransaction() { quint64 id = LObjects::override_id(unique, 363); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 363, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::commitTransaction(); } return ret; } + QSqlResult* createResult() const { quint64 id = LObjects::override_id(unique, 364); void* fun = LObjects::overrideFun(id); QSqlResult* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSqlResult*)callOverrideFun(fun, 364, 0, id).value(); } return ret; } + QString escapeIdentifier(const QString& x1, IdentifierType x2) const { quint64 id = LObjects::override_id(unique, 365); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 365, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::escapeIdentifier(x1, x2); } return ret; } + QString formatValue(const QSqlField& x1, bool x2 = false) const { quint64 id = LObjects::override_id(unique, 366); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 366, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::formatValue(x1, x2); } return ret; } + QVariant handle() const { quint64 id = LObjects::override_id(unique, 367); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 367, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::handle(); } return ret; } + bool hasFeature(DriverFeature x1) const { quint64 id = LObjects::override_id(unique, 368); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 368, args, id).toBool(); } return ret; } + bool isIdentifierEscaped(const QString& x1, IdentifierType x2) const { quint64 id = LObjects::override_id(unique, 369); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 369, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::isIdentifierEscaped(x1, x2); } return ret; } + bool isOpen() const { quint64 id = LObjects::override_id(unique, 370); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 370, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::isOpen(); } return ret; } + bool open(const QString& x1, const QString& x2 = QString(), const QString& x3 = QString(), const QString& x4 = QString(), int x5 = -1, const QString& x6 = QString()) { quint64 id = LObjects::override_id(unique, 371); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4, &x5, &x6 }; ret = callOverrideFun(fun, 371, args, id).toBool(); } return ret; } + QSqlIndex primaryIndex(const QString& x1) const { quint64 id = LObjects::override_id(unique, 372); void* fun = LObjects::overrideFun(id); QSqlIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 372, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::primaryIndex(x1); } return ret; } + QSqlRecord record(const QString& x1) const { quint64 id = LObjects::override_id(unique, 373); void* fun = LObjects::overrideFun(id); QSqlRecord ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 373, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::record(x1); } return ret; } + bool rollbackTransaction() { quint64 id = LObjects::override_id(unique, 374); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 374, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::rollbackTransaction(); } return ret; } + QString sqlStatement(StatementType x1, const QString& x2, const QSqlRecord& x3, bool x4) const { quint64 id = LObjects::override_id(unique, 375); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 375, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::sqlStatement(x1, x2, x3, x4); } return ret; } + QString stripDelimiters(const QString& x1, IdentifierType x2) const { quint64 id = LObjects::override_id(unique, 376); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 376, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::stripDelimiters(x1, x2); } return ret; } + bool subscribeToNotification(const QString& x1) { quint64 id = LObjects::override_id(unique, 377); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 377, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::subscribeToNotification(x1); } return ret; } + QStringList subscribedToNotifications() const { quint64 id = LObjects::override_id(unique, 378); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 378, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::subscribedToNotifications(); } return ret; } + QStringList tables(QSql::TableType x1) const { quint64 id = LObjects::override_id(unique, 379); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 379, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::tables(x1); } return ret; } + bool unsubscribeFromNotification(const QString& x1) { quint64 id = LObjects::override_id(unique, 380); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 380, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlDriver::unsubscribeFromNotification(x1); } return ret; } + void setLastError(const QSqlError& x1) { quint64 id = LObjects::override_id(unique, 381); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 381, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlDriver::setLastError(x1); }} + void setOpen(bool x1) { quint64 id = LObjects::override_id(unique, 382); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 382, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlDriver::setOpen(x1); }} + void setOpenError(bool x1) { quint64 id = LObjects::override_id(unique, 383); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 383, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlDriver::setOpenError(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 = QSqlDriver::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)) { QSqlDriver::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)) { QSqlDriver::customEvent(x1); }} @@ -51,7 +51,7 @@ public: class LSqlQueryModel : public QSqlQueryModel { Q_OBJECT - friend class Q187; + friend class Q213; public: LSqlQueryModel(uint u, QObject* x1 = 0) : QSqlQueryModel(x1), unique(u) {} @@ -59,8 +59,8 @@ 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)) { QSqlQueryModel::clear(); }} - QModelIndex indexInQuery(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 349); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 349, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlQueryModel::indexInQuery(x1); } return ret; } - void queryChange() { quint64 id = LObjects::override_id(unique, 350); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 350, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlQueryModel::queryChange(); }} + QModelIndex indexInQuery(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 384); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 384, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlQueryModel::indexInQuery(x1); } return ret; } + void queryChange() { quint64 id = LObjects::override_id(unique, 385); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 385, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlQueryModel::queryChange(); }} bool canFetchMore(const QModelIndex& x1 = QModelIndex()) 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 = QSqlQueryModel::canFetchMore(x1); } return ret; } QVariant data(const QModelIndex& x1, int x2 = Qt::DisplayRole) const { quint64 id = LObjects::override_id(unique, 59); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 59, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlQueryModel::data(x1, x2); } return ret; } void fetchMore(const QModelIndex& x1 = QModelIndex()) { quint64 id = LObjects::override_id(unique, 61); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 61, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlQueryModel::fetchMore(x1); }} @@ -95,7 +95,7 @@ public: class LSqlRelationalDelegate : public QSqlRelationalDelegate { Q_OBJECT - friend class Q188; + friend class Q214; public: LSqlRelationalDelegate(uint u, QObject* x1 = 0) : QSqlRelationalDelegate(x1), unique(u) {} @@ -123,38 +123,38 @@ public: class LSqlRelationalTableModel : public QSqlRelationalTableModel { Q_OBJECT - friend class Q189; + friend class Q215; public: LSqlRelationalTableModel(uint u, QObject* x1 = 0, QSqlDatabase x2 = QSqlDatabase()) : QSqlRelationalTableModel(x1, x2), unique(u) {} static NumList overrideIds; uint unique; - QSqlTableModel* relationModel(int x1) const { quint64 id = LObjects::override_id(unique, 351); void* fun = LObjects::overrideFun(id); QSqlTableModel* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QSqlTableModel*)callOverrideFun(fun, 351, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::relationModel(x1); } return ret; } - void setRelation(int x1, const QSqlRelation& x2) { quint64 id = LObjects::override_id(unique, 352); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 352, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::setRelation(x1, x2); }} + QSqlTableModel* relationModel(int x1) const { quint64 id = LObjects::override_id(unique, 386); void* fun = LObjects::overrideFun(id); QSqlTableModel* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QSqlTableModel*)callOverrideFun(fun, 386, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::relationModel(x1); } return ret; } + void setRelation(int x1, const QSqlRelation& x2) { quint64 id = LObjects::override_id(unique, 387); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 387, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::setRelation(x1, x2); }} 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)) { QSqlRelationalTableModel::clear(); }} QVariant data(const QModelIndex& x1, int x2 = Qt::DisplayRole) const { quint64 id = LObjects::override_id(unique, 59); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 59, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::data(x1, x2); } return ret; } bool removeColumns(int x1, int x2, const QModelIndex& x3 = QModelIndex()) { quint64 id = LObjects::override_id(unique, 74); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 74, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::removeColumns(x1, x2, x3); } return ret; } - bool select() { quint64 id = LObjects::override_id(unique, 353); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 353, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::select(); } return ret; } + bool select() { 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(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::select(); } return ret; } bool setData(const QModelIndex& x1, const QVariant& x2, int x3 = Qt::EditRole) { quint64 id = LObjects::override_id(unique, 77); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 77, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::setData(x1, x2, x3); } return ret; } - void setTable(const QString& x1) { quint64 id = LObjects::override_id(unique, 354); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 354, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::setTable(x1); }} - bool insertRowIntoTable(const QSqlRecord& x1) { quint64 id = LObjects::override_id(unique, 355); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 355, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::insertRowIntoTable(x1); } return ret; } - QString orderByClause() const { quint64 id = LObjects::override_id(unique, 356); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 356, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::orderByClause(); } return ret; } - QString selectStatement() const { quint64 id = LObjects::override_id(unique, 357); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 357, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::selectStatement(); } return ret; } - bool updateRowInTable(int x1, const QSqlRecord& x2) { 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 = QSqlRelationalTableModel::updateRowInTable(x1, x2); } return ret; } - void revertRow(int x1) { quint64 id = LObjects::override_id(unique, 359); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 359, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::revertRow(x1); }} - void setEditStrategy(EditStrategy x1) { quint64 id = LObjects::override_id(unique, 360); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 360, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::setEditStrategy(x1); }} - void setFilter(const QString& 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)) { QSqlRelationalTableModel::setFilter(x1); }} - void setSort(int x1, Qt::SortOrder x2) { quint64 id = LObjects::override_id(unique, 362); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 362, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::setSort(x1, x2); }} - bool deleteRowFromTable(int x1) { quint64 id = LObjects::override_id(unique, 363); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 363, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::deleteRowFromTable(x1); } return ret; } + void setTable(const QString& x1) { quint64 id = LObjects::override_id(unique, 389); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 389, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::setTable(x1); }} + bool insertRowIntoTable(const QSqlRecord& x1) { quint64 id = LObjects::override_id(unique, 390); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 390, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::insertRowIntoTable(x1); } return ret; } + QString orderByClause() const { quint64 id = LObjects::override_id(unique, 391); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 391, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::orderByClause(); } return ret; } + QString selectStatement() const { quint64 id = LObjects::override_id(unique, 392); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 392, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::selectStatement(); } return ret; } + bool updateRowInTable(int x1, const QSqlRecord& x2) { quint64 id = LObjects::override_id(unique, 393); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 393, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::updateRowInTable(x1, x2); } return ret; } + void revertRow(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); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::revertRow(x1); }} + void setEditStrategy(EditStrategy 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); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::setEditStrategy(x1); }} + void setFilter(const QString& x1) { quint64 id = LObjects::override_id(unique, 396); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 396, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::setFilter(x1); }} + void setSort(int x1, Qt::SortOrder x2) { quint64 id = LObjects::override_id(unique, 397); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 397, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::setSort(x1, x2); }} + bool deleteRowFromTable(int x1) { quint64 id = LObjects::override_id(unique, 398); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 398, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::deleteRowFromTable(x1); } return ret; } Qt::ItemFlags flags(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 62); void* fun = LObjects::overrideFun(id); Qt::ItemFlags ret = (Qt::ItemFlags)0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (Qt::ItemFlags)callOverrideFun(fun, 62, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::flags(x1); } return ret; } QVariant headerData(int x1, Qt::Orientation x2, int x3 = Qt::DisplayRole) const { quint64 id = LObjects::override_id(unique, 64); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 64, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::headerData(x1, x2, x3); } return ret; } bool insertRows(int x1, int x2, const QModelIndex& x3 = QModelIndex()) { quint64 id = LObjects::override_id(unique, 67); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 67, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::insertRows(x1, x2, x3); } return ret; } bool removeRows(int x1, int x2, const QModelIndex& x3 = QModelIndex()) { quint64 id = LObjects::override_id(unique, 75); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 75, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::removeRows(x1, x2, x3); } return ret; } int rowCount(const QModelIndex& x1 = QModelIndex()) const { quint64 id = LObjects::override_id(unique, 76); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 76, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::rowCount(x1); } return ret; } void sort(int x1, Qt::SortOrder x2) { quint64 id = LObjects::override_id(unique, 80); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 80, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::sort(x1, x2); }} - QModelIndex indexInQuery(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 349); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 349, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::indexInQuery(x1); } return ret; } - void queryChange() { quint64 id = LObjects::override_id(unique, 350); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 350, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::queryChange(); }} + QModelIndex indexInQuery(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 384); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 384, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::indexInQuery(x1); } return ret; } + void queryChange() { quint64 id = LObjects::override_id(unique, 385); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 385, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::queryChange(); }} bool canFetchMore(const QModelIndex& x1 = QModelIndex()) 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 = QSqlRelationalTableModel::canFetchMore(x1); } return ret; } void fetchMore(const QModelIndex& x1 = QModelIndex()) { quint64 id = LObjects::override_id(unique, 61); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 61, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::fetchMore(x1); }} bool insertColumns(int x1, int x2, const QModelIndex& x3 = QModelIndex()) { quint64 id = LObjects::override_id(unique, 66); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 66, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlRelationalTableModel::insertColumns(x1, x2, x3); } return ret; } @@ -180,23 +180,23 @@ public: class LSqlTableModel : public QSqlTableModel { Q_OBJECT - friend class Q190; + friend class Q216; public: LSqlTableModel(uint u, QObject* x1 = 0, QSqlDatabase x2 = QSqlDatabase()) : QSqlTableModel(x1, x2), unique(u) {} static NumList overrideIds; uint unique; - void revertRow(int x1) { quint64 id = LObjects::override_id(unique, 359); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 359, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::revertRow(x1); }} - void setEditStrategy(EditStrategy x1) { quint64 id = LObjects::override_id(unique, 360); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 360, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::setEditStrategy(x1); }} - void setFilter(const QString& 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)) { QSqlTableModel::setFilter(x1); }} - void setSort(int x1, Qt::SortOrder x2) { quint64 id = LObjects::override_id(unique, 362); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 362, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::setSort(x1, x2); }} - void setTable(const QString& x1) { quint64 id = LObjects::override_id(unique, 354); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 354, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::setTable(x1); }} - bool deleteRowFromTable(int x1) { quint64 id = LObjects::override_id(unique, 363); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 363, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::deleteRowFromTable(x1); } return ret; } - bool insertRowIntoTable(const QSqlRecord& x1) { quint64 id = LObjects::override_id(unique, 355); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 355, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::insertRowIntoTable(x1); } return ret; } - QString orderByClause() const { quint64 id = LObjects::override_id(unique, 356); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 356, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::orderByClause(); } return ret; } - QString selectStatement() const { quint64 id = LObjects::override_id(unique, 357); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 357, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::selectStatement(); } return ret; } - bool updateRowInTable(int x1, const QSqlRecord& x2) { 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 = QSqlTableModel::updateRowInTable(x1, x2); } return ret; } + void revertRow(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); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::revertRow(x1); }} + void setEditStrategy(EditStrategy 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); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::setEditStrategy(x1); }} + void setFilter(const QString& x1) { quint64 id = LObjects::override_id(unique, 396); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 396, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::setFilter(x1); }} + void setSort(int x1, Qt::SortOrder x2) { quint64 id = LObjects::override_id(unique, 397); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 397, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::setSort(x1, x2); }} + void setTable(const QString& x1) { quint64 id = LObjects::override_id(unique, 389); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 389, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::setTable(x1); }} + bool deleteRowFromTable(int x1) { quint64 id = LObjects::override_id(unique, 398); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 398, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::deleteRowFromTable(x1); } return ret; } + bool insertRowIntoTable(const QSqlRecord& x1) { quint64 id = LObjects::override_id(unique, 390); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 390, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::insertRowIntoTable(x1); } return ret; } + QString orderByClause() const { quint64 id = LObjects::override_id(unique, 391); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 391, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::orderByClause(); } return ret; } + QString selectStatement() const { quint64 id = LObjects::override_id(unique, 392); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 392, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::selectStatement(); } return ret; } + bool updateRowInTable(int x1, const QSqlRecord& x2) { quint64 id = LObjects::override_id(unique, 393); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 393, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::updateRowInTable(x1, x2); } return ret; } 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)) { QSqlTableModel::clear(); }} QVariant data(const QModelIndex& x1, int x2 = Qt::DisplayRole) const { quint64 id = LObjects::override_id(unique, 59); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 59, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::data(x1, x2); } return ret; } Qt::ItemFlags flags(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 62); void* fun = LObjects::overrideFun(id); Qt::ItemFlags ret = (Qt::ItemFlags)0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (Qt::ItemFlags)callOverrideFun(fun, 62, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::flags(x1); } return ret; } @@ -207,8 +207,8 @@ public: int rowCount(const QModelIndex& x1 = QModelIndex()) const { quint64 id = LObjects::override_id(unique, 76); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 76, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::rowCount(x1); } return ret; } bool setData(const QModelIndex& x1, const QVariant& x2, int x3 = Qt::EditRole) { quint64 id = LObjects::override_id(unique, 77); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 77, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::setData(x1, x2, x3); } return ret; } void sort(int x1, Qt::SortOrder x2) { quint64 id = LObjects::override_id(unique, 80); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 80, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::sort(x1, x2); }} - QModelIndex indexInQuery(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 349); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 349, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::indexInQuery(x1); } return ret; } - void queryChange() { quint64 id = LObjects::override_id(unique, 350); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 350, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::queryChange(); }} + QModelIndex indexInQuery(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 384); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 384, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::indexInQuery(x1); } return ret; } + void queryChange() { quint64 id = LObjects::override_id(unique, 385); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 385, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::queryChange(); }} bool canFetchMore(const QModelIndex& x1 = QModelIndex()) 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 = QSqlTableModel::canFetchMore(x1); } return ret; } void fetchMore(const QModelIndex& x1 = QModelIndex()) { quint64 id = LObjects::override_id(unique, 61); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 61, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::fetchMore(x1); }} bool insertColumns(int x1, int x2, const QModelIndex& x3 = QModelIndex()) { quint64 id = LObjects::override_id(unique, 66); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 66, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlTableModel::insertColumns(x1, x2, x3); } return ret; } diff --git a/src/gen/sql/_q_methods.h b/src/gen/sql/_q_methods.h index 9fcef06..525be1a 100644 --- a/src/gen/sql/_q_methods.h +++ b/src/gen/sql/_q_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class Q186 : public Q140 { // QSqlDriver +class Q212 : public Q142 { // QSqlDriver Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSqlDriver(u, x1); } @@ -42,7 +42,7 @@ public: Q_INVOKABLE bool MunsubscribeFromNotification(QSqlDriver* o, const QString& x1) { return o->unsubscribeFromNotification(x1); } }; -class Q187 : public Q15 { // QSqlQueryModel +class Q213 : public Q15 { // QSqlQueryModel Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSqlQueryModel(u, x1); } @@ -65,7 +65,7 @@ public: Q_INVOKABLE bool MsetHeaderData(QSqlQueryModel* o, int x1, Qt::Orientation x2, const QVariant& x3, int x4 = Qt::EditRole) { return o->setHeaderData(x1, x2, x3, x4); } }; -class Q188 : public Q110 { // QSqlRelationalDelegate +class Q214 : public Q110 { // QSqlRelationalDelegate Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSqlRelationalDelegate(u, x1); } @@ -73,7 +73,7 @@ public: Q_INVOKABLE void MsetModelData(QSqlRelationalDelegate* o, QWidget* x1, QAbstractItemModel* x2, const QModelIndex& x3) const { o->setModelData(x1, x2, x3); } }; -class Q190 : public Q187 { // QSqlTableModel +class Q216 : public Q213 { // QSqlTableModel Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0, QSqlDatabase x2 = QSqlDatabase()) { return new LSqlTableModel(u, x1, x2); } @@ -109,7 +109,7 @@ public: Q_INVOKABLE void Msort(QSqlTableModel* o, int x1, Qt::SortOrder x2) { o->sort(x1, x2); } }; -class Q189 : public Q190 { // QSqlRelationalTableModel +class Q215 : public Q216 { // QSqlRelationalTableModel Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0, QSqlDatabase x2 = QSqlDatabase()) { return new LSqlRelationalTableModel(u, x1, x2); } diff --git a/src/gen/svg/_ini.cpp b/src/gen/svg/_ini.cpp index 3f1b61f..3ade6a1 100644 --- a/src/gen/svg/_ini.cpp +++ b/src/gen/svg/_ini.cpp @@ -9,27 +9,27 @@ QT_BEGIN_NAMESPACE NumList LGraphicsSvgItem::overrideIds = NumList() << 260 << 231 << 233; NumList LSvgRenderer::overrideIds = NumList(); NumList LSvgWidget::overrideIds = NumList() << 25 << 20; -NumList LSvgGenerator::overrideIds = NumList() << 483; +NumList LSvgGenerator::overrideIds = NumList() << 518; void ini() { static bool _ = false; if(_) return; _ = true; ini2(); LObjects::Q[82] = new Q83; - LObjects::Q[200] = new Q201; - LObjects::Q[201] = new Q202; - LObjects::N[186] = new N187; } + LObjects::Q[226] = new Q227; + LObjects::Q[227] = new Q228; + LObjects::N[216] = new N217; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; switch(n) { case 83: m = &QGraphicsSvgItem::staticMetaObject; break; - case 201: m = &QSvgRenderer::staticMetaObject; break; - case 202: m = &QSvgWidget::staticMetaObject; break; } + case 227: m = &QSvgRenderer::staticMetaObject; break; + case 228: m = &QSvgWidget::staticMetaObject; break; } return m; } void deleteNObject(int n, void* p, int gc) { switch(n) { - case 187: if(gc) delete (QSvgGenerator*)p; else delete (LSvgGenerator*)p; break; }} + case 217: if(gc) delete (QSvgGenerator*)p; else delete (LSvgGenerator*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -37,12 +37,12 @@ NumList* overrideFunctions(const QByteArray& name) { if(n != -1) { switch(n) { case 83: ids = &LGraphicsSvgItem::overrideIds; break; - case 201: ids = &LSvgRenderer::overrideIds; break; - case 202: ids = &LSvgWidget::overrideIds; break; }} + case 227: ids = &LSvgRenderer::overrideIds; break; + case 228: ids = &LSvgWidget::overrideIds; break; }} else { n = LObjects::n_names.value(name); switch(n) { - case 187: ids = &LSvgGenerator::overrideIds; break; }} + case 217: ids = &LSvgGenerator::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/svg/_n_classes.h b/src/gen/svg/_n_classes.h index 4e8c63d..294263d 100644 --- a/src/gen/svg/_n_classes.h +++ b/src/gen/svg/_n_classes.h @@ -12,14 +12,14 @@ QT_BEGIN_NAMESPACE class LSvgGenerator : public QSvgGenerator { - friend class N187; + friend class N217; public: LSvgGenerator(uint u) : unique(u) {} static NumList overrideIds; uint unique; - 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 = QSvgGenerator::metric(x1); } return ret; } + 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 = QSvgGenerator::metric(x1); } return ret; } }; QT_END_NAMESPACE diff --git a/src/gen/svg/_n_methods.h b/src/gen/svg/_n_methods.h index ab3603e..8d91860 100644 --- a/src/gen/svg/_n_methods.h +++ b/src/gen/svg/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N187 : public N138 { // QSvgGenerator +class N217 : public N140 { // QSvgGenerator Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSvgGenerator(u); } diff --git a/src/gen/svg/_q_classes.h b/src/gen/svg/_q_classes.h index abe0783..92b5b4b 100644 --- a/src/gen/svg/_q_classes.h +++ b/src/gen/svg/_q_classes.h @@ -32,7 +32,7 @@ public: class LSvgRenderer : public QSvgRenderer { Q_OBJECT - friend class Q201; + friend class Q227; public: LSvgRenderer(uint u, QObject* x1 = 0) : QSvgRenderer(x1), unique(u) {} LSvgRenderer(uint u, const QString& x1, QObject* x2 = 0) : QSvgRenderer(x1, x2), unique(u) {} @@ -49,7 +49,7 @@ public: class LSvgWidget : public QSvgWidget { Q_OBJECT - friend class Q202; + friend class Q228; public: LSvgWidget(uint u, QWidget* x1 = 0) : QSvgWidget(x1), unique(u) {} LSvgWidget(uint u, const QString& x1, QWidget* x2 = 0) : QSvgWidget(x1, x2), unique(u) {} diff --git a/src/gen/svg/_q_methods.h b/src/gen/svg/_q_methods.h index aab1ff2..8dbd9a3 100644 --- a/src/gen/svg/_q_methods.h +++ b/src/gen/svg/_q_methods.h @@ -18,16 +18,14 @@ public: Q_INVOKABLE void* C(uint u, const QString& x1, QGraphicsItem* x2 = 0) { return new LGraphicsSvgItem(u, x1, x2); } Q_INVOKABLE QString MelementId(QGraphicsSvgItem* o) const { return o->elementId(); } Q_INVOKABLE QSize MmaximumCacheSize(QGraphicsSvgItem* o) const { return o->maximumCacheSize(); } - Q_INVOKABLE QSvgRenderer* Mrenderer(QGraphicsSvgItem* o) const { return o->renderer(); } Q_INVOKABLE void MsetElementId(QGraphicsSvgItem* o, const QString& x1) { o->setElementId(x1); } Q_INVOKABLE void MsetMaximumCacheSize(QGraphicsSvgItem* o, const QSize& x1) { o->setMaximumCacheSize(x1); } - Q_INVOKABLE void MsetSharedRenderer(QGraphicsSvgItem* o, QSvgRenderer* x1) { o->setSharedRenderer(x1); } Q_INVOKABLE QRectF MboundingRect(QGraphicsSvgItem* o) const { return o->boundingRect(); } Q_INVOKABLE void Mpaint(QGraphicsSvgItem* o, QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { o->paint(x1, x2, x3); } Q_INVOKABLE int Mtype(QGraphicsSvgItem* o) const { return o->type(); } }; -class Q201 : public Q140 { // QSvgRenderer +class Q227 : public Q142 { // QSvgRenderer Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSvgRenderer(u, x1); } @@ -47,12 +45,11 @@ public: Q_INVOKABLE QRectF MviewBoxF(QSvgRenderer* o) const { return o->viewBoxF(); } }; -class Q202 : public Q246 { // QSvgWidget +class Q228 : public Q272 { // QSvgWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LSvgWidget(u, x1); } Q_INVOKABLE void* C(uint u, const QString& x1, QWidget* x2 = 0) { return new LSvgWidget(u, x1, x2); } - Q_INVOKABLE QSvgRenderer* Mrenderer(QSvgWidget* o) const { return o->renderer(); } Q_INVOKABLE QSize MsizeHint(QSvgWidget* o) const { return o->sizeHint(); } }; diff --git a/src/gen/webkit/_ini.cpp b/src/gen/webkit/_ini.cpp index 518d3f4..4e0fd62 100644 --- a/src/gen/webkit/_ini.cpp +++ b/src/gen/webkit/_ini.cpp @@ -7,11 +7,11 @@ QT_BEGIN_NAMESPACE NumList LGraphicsWebView::overrideIds = NumList() << 23 << 243 << 231 << 232 << 249 << 263 << 234 << 235 << 236 << 237 << 238 << 13 << 34 << 14 << 241 << 242 << 36 << 15 << 16 << 244 << 245 << 246 << 247 << 262 << 251; -NumList LWebHistoryInterface::overrideIds = NumList() << 397 << 398; +NumList LWebHistoryInterface::overrideIds = NumList() << 432 << 433; NumList LWebInspector::overrideIds = NumList() << 25 << 27 << 35 << 40 << 41; -NumList LWebPage::overrideIds = NumList() << 399 << 400 << 401 << 402 << 403 << 404 << 405 << 406 << 407 << 408 << 409 << 410 << 411; -NumList LWebPluginFactory::overrideIds = NumList() << 412 << 413 << 414; -NumList LWebView::overrideIds = NumList() << 415 << 23 << 25 << 12 << 28 << 29 << 30 << 31 << 32 << 13 << 34 << 14 << 36 << 15 << 16 << 38 << 17 << 18 << 19 << 20 << 40 << 43; +NumList LWebPage::overrideIds = NumList() << 434 << 435 << 436 << 437 << 438 << 439 << 440 << 441 << 442 << 443 << 444 << 445 << 446; +NumList LWebPluginFactory::overrideIds = NumList() << 447 << 448 << 449; +NumList LWebView::overrideIds = NumList() << 450 << 23 << 25 << 12 << 28 << 29 << 30 << 31 << 32 << 13 << 34 << 14 << 36 << 15 << 16 << 38 << 17 << 18 << 19 << 20 << 40 << 43; NumList LWebDatabase::overrideIds = NumList(); NumList LWebElement::overrideIds = NumList(); NumList LWebElementCollection::overrideIds = NumList(); @@ -23,41 +23,41 @@ void ini() { static bool _ = false; if(_) return; _ = true; ini2(); LObjects::Q[87] = new Q88; - LObjects::Q[239] = new Q240; - LObjects::Q[240] = new Q241; - LObjects::Q[241] = new Q242; - LObjects::Q[242] = new Q243; - LObjects::Q[243] = new Q244; - LObjects::Q[244] = new Q245; - LObjects::N[233] = new N234; - LObjects::N[234] = new N235; - LObjects::N[235] = new N236; - LObjects::N[236] = new N237; - LObjects::N[237] = new N238; - LObjects::N[238] = new N239; - LObjects::N[239] = new N240; - LObjects::N[240] = new N241; } + LObjects::Q[265] = new Q266; + LObjects::Q[266] = new Q267; + LObjects::Q[267] = new Q268; + LObjects::Q[268] = new Q269; + LObjects::Q[269] = new Q270; + LObjects::Q[270] = new Q271; + LObjects::N[263] = new N264; + LObjects::N[264] = new N265; + LObjects::N[265] = new N266; + LObjects::N[266] = new N267; + LObjects::N[267] = new N268; + LObjects::N[268] = new N269; + LObjects::N[269] = new N270; + LObjects::N[270] = new N271; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; switch(n) { case 88: m = &QGraphicsWebView::staticMetaObject; break; - case 240: m = &QWebFrame::staticMetaObject; break; - case 241: m = &QWebHistoryInterface::staticMetaObject; break; - case 242: m = &QWebInspector::staticMetaObject; break; - case 243: m = &QWebPage::staticMetaObject; break; - case 244: m = &QWebPluginFactory::staticMetaObject; break; - case 245: m = &QWebView::staticMetaObject; break; } + case 266: m = &QWebFrame::staticMetaObject; break; + case 267: m = &QWebHistoryInterface::staticMetaObject; break; + case 268: m = &QWebInspector::staticMetaObject; break; + case 269: m = &QWebPage::staticMetaObject; break; + case 270: m = &QWebPluginFactory::staticMetaObject; break; + case 271: m = &QWebView::staticMetaObject; break; } return m; } void deleteNObject(int n, void* p, int gc) { switch(n) { - case 234: if(gc) delete (QWebDatabase*)p; else delete (LWebDatabase*)p; break; - case 235: if(gc) delete (QWebElement*)p; else delete (LWebElement*)p; break; - case 236: if(gc) delete (QWebElementCollection*)p; else delete (LWebElementCollection*)p; break; - case 238: if(gc) delete (QWebHistoryItem*)p; else delete (LWebHistoryItem*)p; break; - case 239: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break; - case 240: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }} + case 264: if(gc) delete (QWebDatabase*)p; else delete (LWebDatabase*)p; break; + case 265: if(gc) delete (QWebElement*)p; else delete (LWebElement*)p; break; + case 266: if(gc) delete (QWebElementCollection*)p; else delete (LWebElementCollection*)p; break; + case 268: if(gc) delete (QWebHistoryItem*)p; else delete (LWebHistoryItem*)p; break; + case 269: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break; + case 270: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -65,20 +65,20 @@ NumList* overrideFunctions(const QByteArray& name) { if(n != -1) { switch(n) { case 88: ids = &LGraphicsWebView::overrideIds; break; - case 241: ids = &LWebHistoryInterface::overrideIds; break; - case 242: ids = &LWebInspector::overrideIds; break; - case 243: ids = &LWebPage::overrideIds; break; - case 244: ids = &LWebPluginFactory::overrideIds; break; - case 245: ids = &LWebView::overrideIds; break; }} + case 267: ids = &LWebHistoryInterface::overrideIds; break; + case 268: ids = &LWebInspector::overrideIds; break; + case 269: ids = &LWebPage::overrideIds; break; + case 270: ids = &LWebPluginFactory::overrideIds; break; + case 271: ids = &LWebView::overrideIds; break; }} else { n = LObjects::n_names.value(name); switch(n) { - case 234: ids = &LWebDatabase::overrideIds; break; - case 235: ids = &LWebElement::overrideIds; break; - case 236: ids = &LWebElementCollection::overrideIds; break; - case 238: ids = &LWebHistoryItem::overrideIds; break; - case 239: ids = &LWebHitTestResult::overrideIds; break; - case 240: ids = &LWebSecurityOrigin::overrideIds; break; }} + case 264: ids = &LWebDatabase::overrideIds; break; + case 265: ids = &LWebElement::overrideIds; break; + case 266: ids = &LWebElementCollection::overrideIds; break; + case 268: ids = &LWebHistoryItem::overrideIds; break; + case 269: ids = &LWebHitTestResult::overrideIds; break; + case 270: ids = &LWebSecurityOrigin::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/webkit/_n_classes.h b/src/gen/webkit/_n_classes.h index a3c3f1b..b4a1afe 100644 --- a/src/gen/webkit/_n_classes.h +++ b/src/gen/webkit/_n_classes.h @@ -14,7 +14,7 @@ QT_BEGIN_NAMESPACE typedef QList NumList; class LWebDatabase : public QWebDatabase { - friend class N234; + friend class N264; public: LWebDatabase(uint u, const QWebDatabase& x1) : QWebDatabase(x1), unique(u) {} @@ -23,7 +23,7 @@ public: }; class LWebElement : public QWebElement { - friend class N235; + friend class N265; public: LWebElement(uint u) : unique(u) {} LWebElement(uint u, const QWebElement& x1) : QWebElement(x1), unique(u) {} @@ -33,7 +33,7 @@ public: }; class LWebElementCollection : public QWebElementCollection { - friend class N236; + friend class N266; public: LWebElementCollection(uint u) : unique(u) {} LWebElementCollection(uint u, const QWebElement& x1, const QString& x2) : QWebElementCollection(x1, x2), unique(u) {} @@ -44,7 +44,7 @@ public: }; class LWebHistoryItem : public QWebHistoryItem { - friend class N238; + friend class N268; public: LWebHistoryItem(uint u, const QWebHistoryItem& x1) : QWebHistoryItem(x1), unique(u) {} @@ -53,7 +53,7 @@ public: }; class LWebHitTestResult : public QWebHitTestResult { - friend class N239; + friend class N269; public: LWebHitTestResult(uint u) : unique(u) {} LWebHitTestResult(uint u, const QWebHitTestResult& x1) : QWebHitTestResult(x1), unique(u) {} @@ -63,7 +63,7 @@ public: }; class LWebSecurityOrigin : public QWebSecurityOrigin { - friend class N240; + friend class N270; public: LWebSecurityOrigin(uint u, const QUrl& x1) : QWebSecurityOrigin(x1), unique(u) {} LWebSecurityOrigin(uint u, const QWebSecurityOrigin& x1) : QWebSecurityOrigin(x1), unique(u) {} diff --git a/src/gen/webkit/_n_methods.h b/src/gen/webkit/_n_methods.h index 4b1e441..a94cb32 100644 --- a/src/gen/webkit/_n_methods.h +++ b/src/gen/webkit/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N234 : public QObject { // QWebDatabase +class N264 : public QObject { // QWebDatabase Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QWebDatabase& x1) { return new LWebDatabase(u, x1); } @@ -25,7 +25,7 @@ public: Q_INVOKABLE void SremoveDatabase(const QWebDatabase& x1) { QWebDatabase::removeDatabase(x1); } }; -class N235 : public QObject { // QWebElement +class N265 : public QObject { // QWebElement Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LWebElement(u); } @@ -93,7 +93,7 @@ public: Q_INVOKABLE QWebFrame* MwebFrame(QWebElement* o) const { return o->webFrame(); } }; -class N236 : public QObject { // QWebElementCollection +class N266 : public QObject { // QWebElementCollection Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LWebElementCollection(u); } @@ -107,7 +107,7 @@ public: Q_INVOKABLE QList MtoList(QWebElementCollection* o) const { return o->toList(); } }; -class N237 : public QObject { // QWebHistory +class N267 : public QObject { // QWebHistory Q_OBJECT public: Q_INVOKABLE void Mback(QWebHistory* o) { o->back(); } @@ -129,7 +129,7 @@ public: Q_INVOKABLE void MsetMaximumItemCount(QWebHistory* o, int x1) { o->setMaximumItemCount(x1); } }; -class N238 : public QObject { // QWebHistoryItem +class N268 : public QObject { // QWebHistoryItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QWebHistoryItem& x1) { return new LWebHistoryItem(u, x1); } @@ -143,7 +143,7 @@ public: Q_INVOKABLE QVariant MuserData(QWebHistoryItem* o) const { return o->userData(); } }; -class N239 : public QObject { // QWebHitTestResult +class N269 : public QObject { // QWebHitTestResult Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LWebHitTestResult(u); } @@ -168,7 +168,7 @@ public: Q_INVOKABLE QString Mtitle(QWebHitTestResult* o) const { return o->title(); } }; -class N240 : public QObject { // QWebSecurityOrigin +class N270 : public QObject { // QWebSecurityOrigin Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QUrl& x1) { return new LWebSecurityOrigin(u, x1); } @@ -189,7 +189,7 @@ public: Q_INVOKABLE void SremoveLocalScheme(const QString& x1) { QWebSecurityOrigin::removeLocalScheme(x1); } }; -class N241 : public QObject { // QWebSettings +class N271 : public QObject { // QWebSettings Q_OBJECT public: Q_INVOKABLE QString McssMediaType(QWebSettings* o) const { return o->cssMediaType(); } diff --git a/src/gen/webkit/_q_classes.h b/src/gen/webkit/_q_classes.h index fb7b35b..8455408 100644 --- a/src/gen/webkit/_q_classes.h +++ b/src/gen/webkit/_q_classes.h @@ -73,15 +73,15 @@ public: class LWebHistoryInterface : public QWebHistoryInterface { Q_OBJECT - friend class Q241; + friend class Q267; public: LWebHistoryInterface(uint u, QObject* x1 = 0) : QWebHistoryInterface(x1), unique(u) {} static NumList overrideIds; uint unique; - void addHistoryEntry(const QString& x1) { quint64 id = LObjects::override_id(unique, 397); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 397, args, id); }} - bool historyContains(const QString& x1) const { quint64 id = LObjects::override_id(unique, 398); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 398, args, id).toBool(); } return ret; } + void addHistoryEntry(const QString& x1) { quint64 id = LObjects::override_id(unique, 432); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 432, args, id); }} + bool historyContains(const QString& x1) const { quint64 id = LObjects::override_id(unique, 433); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 433, args, id).toBool(); } 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 = QWebHistoryInterface::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)) { QWebHistoryInterface::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)) { QWebHistoryInterface::customEvent(x1); }} @@ -90,7 +90,7 @@ public: class LWebInspector : public QWebInspector { Q_OBJECT - friend class Q242; + friend class Q268; public: LWebInspector(uint u, QWidget* x1 = 0) : QWebInspector(x1), unique(u) {} @@ -139,26 +139,26 @@ public: class LWebPage : public QWebPage { Q_OBJECT - friend class Q243; + friend class Q269; public: LWebPage(uint u, QObject* x1 = 0) : QWebPage(x1), unique(u) {} static NumList overrideIds; uint unique; - bool extension(Extension x1, const ExtensionOption* x2 = 0, ExtensionReturn* x3 = 0) { quint64 id = LObjects::override_id(unique, 399); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 399, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::extension(x1, x2, x3); } return ret; } - bool shouldInterruptJavaScript() { quint64 id = LObjects::override_id(unique, 400); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 400, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::shouldInterruptJavaScript(); } return ret; } - bool supportsExtension(Extension x1) const { quint64 id = LObjects::override_id(unique, 401); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 401, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::supportsExtension(x1); } return ret; } - void triggerAction(WebAction x1, bool x2 = false) { quint64 id = LObjects::override_id(unique, 402); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 402, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::triggerAction(x1, x2); }} - bool acceptNavigationRequest(QWebFrame* x1, const QNetworkRequest& x2, NavigationType x3) { quint64 id = LObjects::override_id(unique, 403); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 403, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::acceptNavigationRequest(x1, x2, x3); } return ret; } - QString chooseFile(QWebFrame* x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 404); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 404, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::chooseFile(x1, x2); } return ret; } - QObject* createPlugin(const QString& x1, const QUrl& x2, const QStringList& x3, const QStringList& x4) { quint64 id = LObjects::override_id(unique, 405); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = (QObject*)callOverrideFun(fun, 405, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::createPlugin(x1, x2, x3, x4); } return ret; } - QWebPage* createWindow(WebWindowType x1) { quint64 id = LObjects::override_id(unique, 406); void* fun = LObjects::overrideFun(id); QWebPage* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWebPage*)callOverrideFun(fun, 406, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::createWindow(x1); } return ret; } - void javaScriptAlert(QWebFrame* x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 407); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 407, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::javaScriptAlert(x1, x2); }} - bool javaScriptConfirm(QWebFrame* x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 408); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 408, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::javaScriptConfirm(x1, x2); } return ret; } - void javaScriptConsoleMessage(const QString& x1, int x2, const QString& x3) { quint64 id = LObjects::override_id(unique, 409); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 409, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::javaScriptConsoleMessage(x1, x2, x3); }} - bool javaScriptPrompt(QWebFrame* x1, const QString& x2, const QString& x3, QString* x4) { quint64 id = LObjects::override_id(unique, 410); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 410, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::javaScriptPrompt(x1, x2, x3, x4); } return ret; } - QString userAgentForUrl(const QUrl& x1) const { quint64 id = LObjects::override_id(unique, 411); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 411, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::userAgentForUrl(x1); } return ret; } + bool extension(Extension x1, const ExtensionOption* x2 = 0, ExtensionReturn* x3 = 0) { quint64 id = LObjects::override_id(unique, 434); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 434, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::extension(x1, x2, x3); } return ret; } + bool shouldInterruptJavaScript() { quint64 id = LObjects::override_id(unique, 435); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 435, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::shouldInterruptJavaScript(); } return ret; } + bool supportsExtension(Extension x1) const { quint64 id = LObjects::override_id(unique, 436); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 436, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::supportsExtension(x1); } return ret; } + void triggerAction(WebAction x1, bool x2 = false) { quint64 id = LObjects::override_id(unique, 437); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 437, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::triggerAction(x1, x2); }} + bool acceptNavigationRequest(QWebFrame* x1, const QNetworkRequest& x2, NavigationType x3) { quint64 id = LObjects::override_id(unique, 438); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 438, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::acceptNavigationRequest(x1, x2, x3); } return ret; } + QString chooseFile(QWebFrame* x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 439); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 439, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::chooseFile(x1, x2); } return ret; } + QObject* createPlugin(const QString& x1, const QUrl& x2, const QStringList& x3, const QStringList& x4) { quint64 id = LObjects::override_id(unique, 440); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = (QObject*)callOverrideFun(fun, 440, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::createPlugin(x1, x2, x3, x4); } return ret; } + QWebPage* createWindow(WebWindowType x1) { quint64 id = LObjects::override_id(unique, 441); void* fun = LObjects::overrideFun(id); QWebPage* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWebPage*)callOverrideFun(fun, 441, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::createWindow(x1); } return ret; } + void javaScriptAlert(QWebFrame* x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 442); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 442, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::javaScriptAlert(x1, x2); }} + bool javaScriptConfirm(QWebFrame* x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 443); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 443, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::javaScriptConfirm(x1, x2); } return ret; } + void javaScriptConsoleMessage(const QString& x1, int x2, const QString& x3) { quint64 id = LObjects::override_id(unique, 444); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 444, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::javaScriptConsoleMessage(x1, x2, x3); }} + bool javaScriptPrompt(QWebFrame* x1, const QString& x2, const QString& x3, QString* x4) { quint64 id = LObjects::override_id(unique, 445); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 445, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::javaScriptPrompt(x1, x2, x3, x4); } return ret; } + QString userAgentForUrl(const QUrl& x1) const { quint64 id = LObjects::override_id(unique, 446); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 446, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::userAgentForUrl(x1); } 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 = QWebPage::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)) { QWebPage::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)) { QWebPage::customEvent(x1); }} @@ -167,16 +167,16 @@ public: class LWebPluginFactory : public QWebPluginFactory { Q_OBJECT - friend class Q244; + friend class Q270; public: LWebPluginFactory(uint u, QObject* x1 = 0) : QWebPluginFactory(x1), unique(u) {} static NumList overrideIds; uint unique; - QObject* create(const QString& x1, const QUrl& x2, const QStringList& x3, const QStringList& x4) const { quint64 id = LObjects::override_id(unique, 412); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = (QObject*)callOverrideFun(fun, 412, args, id).value(); } return ret; } - QList plugins() const { quint64 id = LObjects::override_id(unique, 413); void* fun = LObjects::overrideFun(id); QList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 413, 0, id).value >(); } return ret; } - void refreshPlugins() { quint64 id = LObjects::override_id(unique, 414); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 414, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPluginFactory::refreshPlugins(); }} + QObject* create(const QString& x1, const QUrl& x2, const QStringList& x3, const QStringList& x4) const { quint64 id = LObjects::override_id(unique, 447); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = (QObject*)callOverrideFun(fun, 447, args, id).value(); } return ret; } + QList plugins() const { quint64 id = LObjects::override_id(unique, 448); void* fun = LObjects::overrideFun(id); QList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 448, 0, id).value >(); } return ret; } + void refreshPlugins() { quint64 id = LObjects::override_id(unique, 449); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 449, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPluginFactory::refreshPlugins(); }} 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 = QWebPluginFactory::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)) { QWebPluginFactory::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)) { QWebPluginFactory::customEvent(x1); }} @@ -185,14 +185,14 @@ public: class LWebView : public QWebView { Q_OBJECT - friend class Q245; + friend class Q271; public: LWebView(uint u, QWidget* x1 = 0) : QWebView(x1), unique(u) {} static NumList overrideIds; uint unique; - QWebView* createWindow(QWebPage::WebWindowType x1) { quint64 id = LObjects::override_id(unique, 415); void* fun = LObjects::overrideFun(id); QWebView* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWebView*)callOverrideFun(fun, 415, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebView::createWindow(x1); } return ret; } + QWebView* createWindow(QWebPage::WebWindowType x1) { quint64 id = LObjects::override_id(unique, 450); void* fun = LObjects::overrideFun(id); QWebView* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWebView*)callOverrideFun(fun, 450, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebView::createWindow(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 = QWebView::inputMethodQuery(x1); } 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 = QWebView::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)) { QWebView::changeEvent(x1); }} diff --git a/src/gen/webkit/_q_methods.h b/src/gen/webkit/_q_methods.h index 2c15163..15d01a8 100644 --- a/src/gen/webkit/_q_methods.h +++ b/src/gen/webkit/_q_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class Q240 : public Q140 { // QWebFrame +class Q266 : public Q142 { // QWebFrame Q_OBJECT public: Q_INVOKABLE void MaddToJavaScriptWindowObject(QWebFrame* o, const QString& x1, QObject* x2, QWebFrame::ValueOwnership x3 = QWebFrame::QtOwnership) { o->addToJavaScriptWindowObject(x1, x2, x3); } @@ -62,7 +62,7 @@ public: Q_INVOKABLE bool Mevent(QWebFrame* o, QEvent* x1) { return o->event(x1); } }; -class Q241 : public Q140 { // QWebHistoryInterface +class Q267 : public Q142 { // QWebHistoryInterface Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebHistoryInterface(u, x1); } @@ -72,7 +72,7 @@ public: Q_INVOKABLE void SsetDefaultInterface(QWebHistoryInterface* x1) { QWebHistoryInterface::setDefaultInterface(x1); } }; -class Q243 : public Q140 { // QWebPage +class Q269 : public Q142 { // QWebPage Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebPage(u, x1); } @@ -126,7 +126,7 @@ public: Q_INVOKABLE bool Mevent(QWebPage* o, QEvent* x1) { return o->event(x1); } }; -class Q244 : public Q140 { // QWebPluginFactory +class Q270 : public Q142 { // QWebPluginFactory Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebPluginFactory(u, x1); } @@ -173,7 +173,7 @@ public: Q_INVOKABLE void MupdateGeometry(QGraphicsWebView* o) { o->updateGeometry(); } }; -class Q242 : public Q246 { // QWebInspector +class Q268 : public Q272 { // QWebInspector Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LWebInspector(u, x1); } @@ -183,7 +183,7 @@ public: Q_INVOKABLE QSize MsizeHint(QWebInspector* o) const { return o->sizeHint(); } }; -class Q245 : public Q246 { // QWebView +class Q271 : public Q272 { // QWebView Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LWebView(u, x1); } diff --git a/src/lisp/all-wrappers-1.lisp b/src/lisp/all-wrappers-1.lisp index a197628..006cbf7 100644 --- a/src/lisp/all-wrappers-1.lisp +++ b/src/lisp/all-wrappers-1.lisp @@ -34,6 +34,7 @@ #:|accessibleInterface.QAccessible| #:|accessibleInterface| #:|accessibleName| + #:|accessibleRoot| #:|accessibleText| #:|acquire| #:|actionAt| @@ -60,6 +61,11 @@ #:|activeAction| #:|activeChanged| #:|activeConfiguration| + #:|activeFocusChanged| + #:|activeFocusItemChanged| + #:|activeFocusItem| + #:|activeFocusOnTabChanged| + #:|activeFocusOnTab| #:|activeGestures| #:|activeModalWidget.QApplication| #:|activePanel| @@ -112,6 +118,8 @@ #:|addEllipse| #:|addFile| #:|addHistoryEntry| + #:|addImageProvider| + #:|addImportPath| #:|addItem(QIcon...)| #:|addItem(QListWidgetItem*)| #:|addItem(QString)| @@ -138,6 +146,7 @@ #:|addPendingConnection| #:|addPermanentWidget| #:|addPixmap| + #:|addPluginPath| #:|addPolygon| #:|addPropertyWatch| #:|addRect| @@ -197,6 +206,9 @@ #:|adjustSize| #:|adjusted| #:|advance| + #:|afterAnimating| + #:|afterRendering| + #:|afterSynchronizing| #:|alert.QApplication| #:|alert| #:|algorithm| @@ -215,6 +227,7 @@ #:|allWidgets.QApplication| #:|allWindows.QGuiApplication| #:|allocateStorage| + #:|allocate| #:|allowedAreasChanged| #:|allowedAreas| #:|allowedNextProtocols| @@ -246,9 +259,12 @@ #:|animations| #:|answerRect| #:|antennaConnectedChanged| + #:|antialiasingChanged| + #:|antialiasing| #:|apertureChanged| #:|apertureRangeChanged| #:|aperture| + #:|appendChildNode| #:|appendColumns| #:|appendColumn| #:|appendHtml| @@ -295,6 +311,7 @@ #:|atEnd| #:|atStart| #:|attachment| + #:|attributeCount| #:|attributeLocation(QByteArray)| #:|attributeLocation(QString)| #:|attributeLocation(const char*)| @@ -383,6 +400,8 @@ #:|baseStyle| #:|baseUrlChanged| #:|baseUrl| + #:|baselineOffsetChanged| + #:|baselineOffset| #:|base| #:|batchSize| #:|bcp47Name| @@ -392,6 +411,8 @@ #:|beep.QApplication| #:|beforeDelete| #:|beforeInsert| + #:|beforeRendering| + #:|beforeSynchronizing| #:|beforeUpdate| #:|before| #:|begin(QImage*)| @@ -400,6 +421,7 @@ #:|begin(QPixmap*)| #:|begin(QPrinter*)| #:|begin(QWidget*)| + #:|beginCreate| #:|beginEditBlock| #:|beginGroup| #:|beginInsertColumns| @@ -462,6 +484,7 @@ #:|blurRadius| #:|bold| #:|boolProperty| + #:|booleanLiteral| #:|borderBrush| #:|borderColor| #:|borderStyle| @@ -554,6 +577,9 @@ #:|caching| #:|calendarPopup| #:|calendarWidget| + #:|callAsConstructor| + #:|callWithInstance| + #:|call| #:|canConvert| #:|canDropMimeData| #:|canEncode(QChar)| @@ -650,6 +676,7 @@ #:|checkedAction| #:|checkedButton| #:|checkedId| + #:|childAtIndex| #:|childAt| #:|childCount| #:|childFrames| @@ -663,11 +690,13 @@ #:|childrenBoundingRect| #:|childrenChanged| #:|childrenCollapsible| + #:|childrenRectChanged| #:|childrenRect| #:|childrenRegion| #:|children| #:|child| #:|ciphers| + #:|classBegin| #:|classInfoCount| #:|classInfoOffset| #:|className| @@ -678,12 +707,16 @@ #:|cleanPath.QDir| #:|cleanText| #:|cleanupPage| + #:|cleanupSceneGraph| #:|clear.QPixmapCache| #:|clearAccessCache| #:|clearAdditionalFormats| #:|clearBackground| + #:|clearBeforeRendering| #:|clearBit| + #:|clearColor| #:|clearColumnWidthConstraints| + #:|clearComponentCache| #:|clearContents| #:|clearCurrentIndex| #:|clearEditText| @@ -703,6 +736,7 @@ #:|clearMinimumDateTime| #:|clearMinimumDate| #:|clearMinimumTime| + #:|clearMode| #:|clearPropertyFlags| #:|clearProperty| #:|clearSelection| @@ -714,9 +748,12 @@ #:|clicked| #:|click| #:|clipBoundingRect| + #:|clipChanged| #:|clipPath| + #:|clipRect| #:|clipRegion| #:|clipboard.QGuiApplication| + #:|clip| #:|clockType.QElapsedTimer| #:|cloneDatabase.QSqlDatabase| #:|clone| @@ -732,6 +769,7 @@ #:|closestLegalPosition| #:|close| #:|closingDown.QCoreApplication| + #:|closing| #:|codecForHtml.QTextCodec| #:|codecForLocale.QTextCodec| #:|codecForMib.QTextCodec| @@ -746,6 +784,7 @@ #:|collapsed| #:|collapse| #:|collateCopies| + #:|collectGarbage| #:|collectionFile| #:|collidesWithItem| #:|collidesWithPath| @@ -799,6 +838,7 @@ #:|commitTransaction| #:|commit| #:|commonAncestorItem| + #:|compare| #:|comparisonFunction| #:|comparisonMode| #:|compileSourceCode(QByteArray)| @@ -808,6 +848,7 @@ #:|compileSourceFile| #:|completeBaseName| #:|completeChanged| + #:|completeCreate| #:|completeSuffix| #:|completer| #:|complete| @@ -817,9 +858,13 @@ #:|completionMode| #:|completionPrefix| #:|completionRole| + #:|componentComplete| #:|compositionMode| #:|configuration| #:|conjugated| + #:|connectNotifySignal(QObject*,const char*)| + #:|connectNotifySignal(QObject*,int)| + #:|connectNotifySignal| #:|connectOptions| #:|connectPath| #:|connectSlotsByName.QMetaObject| @@ -844,22 +889,30 @@ #:|contains.QSqlDatabase| #:|contains| #:|contentItemAt| + #:|contentItem| #:|contentOffset| #:|contentOrientationChanged| #:|contentOrientation| #:|contentPosRange| #:|contentPos| + #:|contentsBoundingRect| #:|contentsChanged| #:|contentsChange| #:|contentsCreated| #:|contentsCreationStarted| #:|contentsMargins| #:|contentsRect| + #:|contentsScaleChanged| + #:|contentsScale| #:|contentsSizeChanged| #:|contentsSize| + #:|contextForObject.QQmlEngine| #:|contextMenuPolicy| #:|contextMenu| + #:|contextObject| + #:|contextProperty| #:|context| + #:|continueExecute| #:|contrastChanged| #:|contrast| #:|controlPointRect| @@ -869,6 +922,7 @@ #:|convertToFormat(QImage::Format,QVector)| #:|convertToFormat(QImage::Format,Qt::ImageConversionFlags)| #:|convertToFormat| + #:|convertToNormalizedSourceRect| #:|convertTo| #:|convert| #:|cookieJar| @@ -885,10 +939,13 @@ #:|countryToString.QLocale| #:|country| #:|count| + #:|create(QQmlContext*)| + #:|create(QQmlIncubator&)| #:|createAction.QWhatsThis| #:|createAlphaMask| #:|createContents| #:|createEditor| + #:|createFramebufferObject| #:|createHeuristicMask| #:|createIndex| #:|createItemGroup| @@ -902,9 +959,13 @@ #:|createRedoAction| #:|createResult| #:|createSeparatedList| + #:|createShader| #:|createStandardContextMenu| #:|createStroke| + #:|createTextureFromId| + #:|createTextureFromImage| #:|createTextureView| + #:|createTexture| #:|createUndoAction| #:|createUuid.QUuid| #:|createUuidV3(QUuid,QByteArray).QUuid| @@ -917,6 +978,7 @@ #:|createdWidgets| #:|created| #:|create| + #:|creationContext| #:|creator| #:|critical.QMessageBox| #:|crossProduct.QVector3D| @@ -1051,6 +1113,7 @@ #:|daysTo| #:|day| #:|dbmsType| + #:|deactivate| #:|decimalPoint| #:|decimalsChanged| #:|decimals| @@ -1100,6 +1163,7 @@ #:|deleteCookie| #:|deleteLater| #:|deletePreviousChar| + #:|deleteProperty| #:|deleteResource| #:|deleteText| #:|delta| @@ -1114,6 +1178,7 @@ #:|desktop.QApplication| #:|desktopSettingsAware.QGuiApplication| #:|destroyEditor| + #:|destroyFramebufferObject| #:|destroyItemGroup| #:|destroyed| #:|destroy| @@ -1122,6 +1187,7 @@ #:|determinant| #:|deviceName| #:|devicePixelRatio| + #:|deviceRect| #:|deviceTransform| #:|devices.QTouchDevice| #:|device| @@ -1133,73 +1199,7 @@ #:|directionChanged| #:|direction| #:|directories| - #:|directoryChanged| - #:|directoryEntered| - #:|directoryLoaded| - #:|directoryUrlEntered| - #:|directoryUrl| - #:|directory| - #:|dirtyRegionOffset| - #:|dir| - #:|disableAttributeArray(const char*)| - #:|disableAttributeArray(int)| - #:|disableAttributeArray| - #:|discardCommand| - #:|disconnectFromHost| - #:|disconnectFromServer| - #:|disconnected| - #:|display(QString)| - #:|display(double)| - #:|display(int)| - #:|displayColumn| - #:|displayFormat| - #:|displayIntegerBase| - #:|displayName(QDateTime)| - #:|displayName(QDateTime...)| - #:|displayName(QTimeZone::TimeType)| - #:|displayName(QTimeZone::TimeType...)| - #:|displayName.QStandardPaths| - #:|displayName| - #:|displayText| - #:|displayedSections| - #:|display| - #:|distanceToLine| - #:|distanceToPlane| - #:|distanceToPoint| - #:|doAction| - #:|doItemsLayout| - #:|docName| - #:|dockLocationChanged| - #:|dockOptions| - #:|dockWidgetArea| - #:|documentElement| - #:|documentLayoutChanged| - #:|documentLayout| - #:|documentMargin| - #:|documentMode| - #:|documentSizeChanged| - #:|documentSize| - #:|documentTitle| - #:|documentationFileName| - #:|document| - #:|domain| - #:|doneCurrent| - #:|done| - #:|dotProduct.QQuaternion| - #:|dotProduct.QVector2D| - #:|dotProduct.QVector3D| - #:|dotProduct.QVector4D| - #:|dotsPerMeterX| - #:|dotsPerMeterY| - #:|doubleClickInterval.QApplication| - #:|doubleClicked| - #:|doubleDecimals| - #:|doubleMaximum| - #:|doubleMinimum| - #:|doubleProperty| - #:|doubleValueChanged| - #:|doubleValueSelected| - #:|doubleValue|)) + #:|directoryChanged|)) (in-package :eql) diff --git a/src/lisp/all-wrappers-10.lisp b/src/lisp/all-wrappers-10.lisp index 2f73477..77b7dea 100644 --- a/src/lisp/all-wrappers-10.lisp +++ b/src/lisp/all-wrappers-10.lisp @@ -1,5 +1,680 @@ (in-package :eql) +(defun |released| (object &rest arguments) + (%qinvoke-method object nil "released" arguments)) + +(defun |release| (object &rest arguments) + (%qinvoke-method object nil "release" arguments)) + +(defun |reload| (object &rest arguments) + (%qinvoke-method object nil "reload" arguments)) + +(defun |remainingTime| (object &rest arguments) + (%qinvoke-method object nil "remainingTime" arguments)) + +(defun |remove.QFile| (&rest arguments) + (%qinvoke-method "QFile" nil "remove" arguments)) + +(defun |remove.QPixmapCache| (&rest arguments) + (%qinvoke-method "QPixmapCache" nil "remove" arguments)) + +(defun |removeAccessWhitelistEntry| (object &rest arguments) + (%qinvoke-method object nil "removeAccessWhitelistEntry" arguments)) + +(defun |removeAction| (object &rest arguments) + (%qinvoke-method object nil "removeAction" arguments)) + +(defun |removeAllApplicationFonts.QFontDatabase| (&rest arguments) + (%qinvoke-method "QFontDatabase" nil "removeAllApplicationFonts" arguments)) + +(defun |removeAllChildNodes| (object &rest arguments) + (%qinvoke-method object nil "removeAllChildNodes" arguments)) + +(defun |removeAllChildren| (object &rest arguments) + (%qinvoke-method object nil "removeAllChildren" arguments)) + +(defun |removeAllDatabases.QWebDatabase| (&rest arguments) + (%qinvoke-method "QWebDatabase" nil "removeAllDatabases" arguments)) + +(defun |removeAllShaders| (object &rest arguments) + (%qinvoke-method object nil "removeAllShaders" arguments)) + +(defun |removeAnimation| (object &rest arguments) + (%qinvoke-method object nil "removeAnimation" arguments)) + +(defun |removeApplicationFont.QFontDatabase| (&rest arguments) + (%qinvoke-method "QFontDatabase" nil "removeApplicationFont" arguments)) + +(defun |removeAttributeNS| (object &rest arguments) + (%qinvoke-method object nil "removeAttributeNS" arguments)) + +(defun |removeAttribute| (object &rest arguments) + (%qinvoke-method object nil "removeAttribute" arguments)) + +(defun |removeAt| (object &rest arguments) + (%qinvoke-method object nil "removeAt" arguments)) + +(defun |removeButton| (object &rest arguments) + (%qinvoke-method object nil "removeButton" arguments)) + +(defun |removeCellWidget| (object &rest arguments) + (%qinvoke-method object nil "removeCellWidget" arguments)) + +(defun |removeChildNode| (object &rest arguments) + (%qinvoke-method object nil "removeChildNode" arguments)) + +(defun |removeChild| (object &rest arguments) + (%qinvoke-method object nil "removeChild" arguments)) + +(defun |removeClass| (object &rest arguments) + (%qinvoke-method object nil "removeClass" arguments)) + +(defun |removeColumns| (object &rest arguments) + (%qinvoke-method object nil "removeColumns" arguments)) + +(defun |removeColumn| (object &rest arguments) + (%qinvoke-method object nil "removeColumn" arguments)) + +(defun |removeCustomFilter| (object &rest arguments) + (%qinvoke-method object nil "removeCustomFilter" arguments)) + +(defun |removeCustomValue| (object &rest arguments) + (%qinvoke-method object nil "removeCustomValue" arguments)) + +(defun |removeDatabase.QSqlDatabase| (&rest arguments) + (%qinvoke-method "QSqlDatabase" nil "removeDatabase" arguments)) + +(defun |removeDatabase.QWebDatabase| (&rest arguments) + (%qinvoke-method "QWebDatabase" nil "removeDatabase" arguments)) + +(defun |removeDefaultAnimation| (object &rest arguments) + (%qinvoke-method object nil "removeDefaultAnimation" arguments)) + +(defun |removeDockWidget| (object &rest arguments) + (%qinvoke-method object nil "removeDockWidget" arguments)) + +(defun |removeEventFilter| (object &rest arguments) + (%qinvoke-method object nil "removeEventFilter" arguments)) + +(defun |removeFactory.QAccessible| (&rest arguments) + (%qinvoke-method "QAccessible" nil "removeFactory" arguments)) + +(defun |removeFormat| (object &rest arguments) + (%qinvoke-method object nil "removeFormat" arguments)) + +(defun |removeFromDocument| (object &rest arguments) + (%qinvoke-method object nil "removeFromDocument" arguments)) + +(defun |removeFromGroup| (object &rest arguments) + (%qinvoke-method object nil "removeFromGroup" arguments)) + +(defun |removeImageProvider| (object &rest arguments) + (%qinvoke-method object nil "removeImageProvider" arguments)) + +(defun |removeItemWidget| (object &rest arguments) + (%qinvoke-method object nil "removeItemWidget" arguments)) + +(defun |removeItem| (object &rest arguments) + (%qinvoke-method object nil "removeItem" arguments)) + +(defun |removeLibraryPath.QCoreApplication| (&rest arguments) + (%qinvoke-method "QCoreApplication" nil "removeLibraryPath" arguments)) + +(defun |removeLocalScheme.QWebSecurityOrigin| (&rest arguments) + (%qinvoke-method "QWebSecurityOrigin" nil "removeLocalScheme" arguments)) + +(defun |removeMappings| (object &rest arguments) + (%qinvoke-method object nil "removeMappings" arguments)) + +(defun |removeMapping| (object &rest arguments) + (%qinvoke-method object nil "removeMapping" arguments)) + +(defun |removeMedia| (object &rest arguments) + (%qinvoke-method object nil "removeMedia" arguments)) + +(defun |removeNativeEventFilter| (object &rest arguments) + (%qinvoke-method object nil "removeNativeEventFilter" arguments)) + +(defun |removePage| (object &rest arguments) + (%qinvoke-method object nil "removePage" arguments)) + +(defun |removePaths| (object &rest arguments) + (%qinvoke-method object nil "removePaths" arguments)) + +(defun |removePath| (object &rest arguments) + (%qinvoke-method object nil "removePath" arguments)) + +(defun |removePostedEvents.QCoreApplication| (&rest arguments) + (%qinvoke-method "QCoreApplication" nil "removePostedEvents" arguments)) + +(defun |removePropertyWatch| (object &rest arguments) + (%qinvoke-method object nil "removePropertyWatch" arguments)) + +(defun |removeRecursively| (object &rest arguments) + (%qinvoke-method object nil "removeRecursively" arguments)) + +(defun |removeRows| (object &rest arguments) + (%qinvoke-method object nil "removeRows" arguments)) + +(defun |removeRow| (object &rest arguments) + (%qinvoke-method object nil "removeRow" arguments)) + +(defun |removeSceneEventFilter| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "removeSceneEventFilter" arguments)) + +(defun |removeSelectedText| (object &rest arguments) + (%qinvoke-method object nil "removeSelectedText" arguments)) + +(defun |removeSelection| (object &rest arguments) + (%qinvoke-method object nil "removeSelection" arguments)) + +(defun |removeServer.QLocalServer| (&rest arguments) + (%qinvoke-method "QLocalServer" nil "removeServer" arguments)) + +(defun |removeShader| (object &rest arguments) + (%qinvoke-method object nil "removeShader" arguments)) + +(defun |removeStack| (object &rest arguments) + (%qinvoke-method object nil "removeStack" arguments)) + +(defun |removeState| (object &rest arguments) + (%qinvoke-method object nil "removeState" arguments)) + +(defun |removeSubWindow| (object &rest arguments) + (%qinvoke-method object nil "removeSubWindow" arguments)) + +(defun |removeSubstitutions.QFont| (&rest arguments) + (%qinvoke-method "QFont" nil "removeSubstitutions" arguments)) + +(defun |removeTab| (object &rest arguments) + (%qinvoke-method object nil "removeTab" arguments)) + +(defun |removeToolBarBreak| (object &rest arguments) + (%qinvoke-method object nil "removeToolBarBreak" arguments)) + +(defun |removeToolBar| (object &rest arguments) + (%qinvoke-method object nil "removeToolBar" arguments)) + +(defun |removeTransition| (object &rest arguments) + (%qinvoke-method object nil "removeTransition" arguments)) + +(defun |removeTranslator.QCoreApplication| (&rest arguments) + (%qinvoke-method "QCoreApplication" nil "removeTranslator" arguments)) + +(defun |removeWidget| (object &rest arguments) + (%qinvoke-method object nil "removeWidget" arguments)) + +(defun |removedFromAtlas| (object &rest arguments) + (%qinvoke-method object nil "removedFromAtlas" arguments)) + +(defun |removed| (object &rest arguments) + (%qinvoke-method object nil "removed" arguments)) + +(defun |remove| (object &rest arguments) + (%qinvoke-method object nil "remove" arguments)) + +(defun |rename.QFile| (&rest arguments) + (%qinvoke-method "QFile" nil "rename" arguments)) + +(defun |rename| (object &rest arguments) + (%qinvoke-method object nil "rename" arguments)) + +(defun |render(QPainter*,QRectF)| (object &rest arguments) + (%qinvoke-method object nil "render(QPainter*,QRectF)" arguments)) + +(defun |render(QPainter*,QRegion)| (object &rest arguments) + (%qinvoke-method object nil "render(QPainter*,QRegion)" arguments)) + +(defun |render(QPainter*,QString)| (object &rest arguments) + (%qinvoke-method object nil "render(QPainter*,QString)" arguments)) + +(defun |render(QPainter*,QWebFrame::RenderLayers)| (object &rest arguments) + (%qinvoke-method object nil "render(QPainter*,QWebFrame::RenderLayers)" arguments)) + +(defun |renderHints| (object &rest arguments) + (%qinvoke-method object nil "renderHints" arguments)) + +(defun |renderRequested| (object &rest arguments) + (%qinvoke-method object nil "renderRequested" arguments)) + +(defun |renderScene| (object &rest arguments) + (%qinvoke-method object nil "renderScene" arguments)) + +(defun |renderTargetChanged| (object &rest arguments) + (%qinvoke-method object nil "renderTargetChanged" arguments)) + +(defun |renderTargetId| (object &rest arguments) + (%qinvoke-method object nil "renderTargetId" arguments)) + +(defun |renderTargetSize| (object &rest arguments) + (%qinvoke-method object nil "renderTargetSize" arguments)) + +(defun |renderTarget| (object &rest arguments) + (%qinvoke-method object nil "renderTarget" arguments)) + +(defun |renderableType| (object &rest arguments) + (%qinvoke-method object nil "renderableType" arguments)) + +(defun |render| (object &rest arguments) + (%qinvoke-method object nil "render" arguments)) + +(defun |repaint(QRect)| (object &rest arguments) + (%qinvoke-method object nil "repaint(QRect)" arguments)) + +(defun |repaint(QRegion)| (object &rest arguments) + (%qinvoke-method object nil "repaint(QRegion)" arguments)) + +(defun |repaintNeeded| (object &rest arguments) + (%qinvoke-method object nil "repaintNeeded" arguments)) + +(defun |repaintRequested| (object &rest arguments) + (%qinvoke-method object nil "repaintRequested" arguments)) + +(defun |repaint| (object &rest arguments) + (%qinvoke-method object nil "repaint" arguments)) + +(defun |repeatAction| (object &rest arguments) + (%qinvoke-method object nil "repeatAction" arguments)) + +(defun |replace(QString)| (object &rest arguments) + (%qinvoke-method object nil "replace(QString)" arguments)) + +(defun |replace(QWebElement)| (object &rest arguments) + (%qinvoke-method object nil "replace(QWebElement)" arguments)) + +(defun |replaceText| (object &rest arguments) + (%qinvoke-method object nil "replaceText" arguments)) + +(defun |replaceWidget| (object &rest arguments) + (%qinvoke-method object nil "replaceWidget" arguments)) + +(defun |replacementLength| (object &rest arguments) + (%qinvoke-method object nil "replacementLength" arguments)) + +(defun |replacementStart| (object &rest arguments) + (%qinvoke-method object nil "replacementStart" arguments)) + +(defun |replace| (object &rest arguments) + (%qinvoke-method object nil "replace" arguments)) + +(defun |reportContentOrientationChange| (object &rest arguments) + (%qinvoke-method object nil "reportContentOrientationChange" arguments)) + +(defun |requestActivate| (object &rest arguments) + (%qinvoke-method object nil "requestActivate" arguments)) + +(defun |requestControl| (object &rest arguments) + (%qinvoke-method object nil "requestControl" arguments)) + +(defun |requestImageResponse| (object &rest arguments) + (%qinvoke-method object nil "requestImageResponse" arguments)) + +(defun |requestImage| (object &rest arguments) + (%qinvoke-method object nil "requestImage" arguments)) + +(defun |requestPhase2| (object &rest arguments) + (%qinvoke-method object nil "requestPhase2" arguments)) + +(defun |requestPixmap| (object &rest arguments) + (%qinvoke-method object nil "requestPixmap" arguments)) + +(defun |requestShowLink| (object &rest arguments) + (%qinvoke-method object nil "requestShowLink" arguments)) + +(defun |requestTexture| (object &rest arguments) + (%qinvoke-method object nil "requestTexture" arguments)) + +(defun |requestUpdate| (object &rest arguments) + (%qinvoke-method object nil "requestUpdate" arguments)) + +(defun |requestWidget| (object &rest arguments) + (%qinvoke-method object nil "requestWidget" arguments)) + +(defun |requestedAperture| (object &rest arguments) + (%qinvoke-method object nil "requestedAperture" arguments)) + +(defun |requestedFormat| (object &rest arguments) + (%qinvoke-method object nil "requestedFormat" arguments)) + +(defun |requestedIsoSensitivity| (object &rest arguments) + (%qinvoke-method object nil "requestedIsoSensitivity" arguments)) + +(defun |requestedLocks| (object &rest arguments) + (%qinvoke-method object nil "requestedLocks" arguments)) + +(defun |requestedShutterSpeed| (object &rest arguments) + (%qinvoke-method object nil "requestedShutterSpeed" arguments)) + +(defun |requestedUrl| (object &rest arguments) + (%qinvoke-method object nil "requestedUrl" arguments)) + +(defun |request| (object &rest arguments) + (%qinvoke-method object nil "request" arguments)) + +(defun |requiredStatus| (object &rest arguments) + (%qinvoke-method object nil "requiredStatus" arguments)) + +(defun |resetAntialiasing| (object &rest arguments) + (%qinvoke-method object nil "resetAntialiasing" arguments)) + +(defun |resetAttribute| (object &rest arguments) + (%qinvoke-method object nil "resetAttribute" arguments)) + +(defun |resetBindCount| (object &rest arguments) + (%qinvoke-method object nil "resetBindCount" arguments)) + +(defun |resetCachedContent| (object &rest arguments) + (%qinvoke-method object nil "resetCachedContent" arguments)) + +(defun |resetContentsSize| (object &rest arguments) + (%qinvoke-method object nil "resetContentsSize" arguments)) + +(defun |resetDefaultSectionSize| (object &rest arguments) + (%qinvoke-method object nil "resetDefaultSectionSize" arguments)) + +(defun |resetFontFamily| (object &rest arguments) + (%qinvoke-method object nil "resetFontFamily" arguments)) + +(defun |resetFontSize| (object &rest arguments) + (%qinvoke-method object nil "resetFontSize" arguments)) + +(defun |resetFormat| (object &rest arguments) + (%qinvoke-method object nil "resetFormat" arguments)) + +(defun |resetHeight| (object &rest arguments) + (%qinvoke-method object nil "resetHeight" arguments)) + +(defun |resetIndentation| (object &rest arguments) + (%qinvoke-method object nil "resetIndentation" arguments)) + +(defun |resetInternalData| (object &rest arguments) + (%qinvoke-method object nil "resetInternalData" arguments)) + +(defun |resetMatrix| (object &rest arguments) + (%qinvoke-method object nil "resetMatrix" arguments)) + +(defun |resetOpenGLState| (object &rest arguments) + (%qinvoke-method object nil "resetOpenGLState" arguments)) + +(defun |resetTransform| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "resetTransform" arguments)) + +(defun |resetWidth| (object &rest arguments) + (%qinvoke-method object nil "resetWidth" arguments)) + +(defun |reset| (object &rest arguments) + (%qinvoke-method object nil "reset" arguments)) + +(defun |resize.QFile| (&rest arguments) + (%qinvoke-method "QFile" nil "resize" arguments)) + +(defun |resizeAnchor| (object &rest arguments) + (%qinvoke-method object nil "resizeAnchor" arguments)) + +(defun |resizeColumnToContents| (object &rest arguments) + (%qinvoke-method object nil "resizeColumnToContents" arguments)) + +(defun |resizeColumnsToContents| (object &rest arguments) + (%qinvoke-method object nil "resizeColumnsToContents" arguments)) + +(defun |resizeContentsPrecision| (object &rest arguments) + (%qinvoke-method object nil "resizeContentsPrecision" arguments)) + +(defun |resizeEvent| (object &rest arguments) + (%qinvoke-method object nil "resizeEvent" arguments)) + +(defun |resizeGripsVisible| (object &rest arguments) + (%qinvoke-method object nil "resizeGripsVisible" arguments)) + +(defun |resizeMode| (object &rest arguments) + (%qinvoke-method object nil "resizeMode" arguments)) + +(defun |resizeRowToContents| (object &rest arguments) + (%qinvoke-method object nil "resizeRowToContents" arguments)) + +(defun |resizeRowsToContents| (object &rest arguments) + (%qinvoke-method object nil "resizeRowsToContents" arguments)) + +(defun |resizeSections| (object &rest arguments) + (%qinvoke-method object nil "resizeSections" arguments)) + +(defun |resizeSection| (object &rest arguments) + (%qinvoke-method object nil "resizeSection" arguments)) + +(defun |resized| (object &rest arguments) + (%qinvoke-method object nil "resized" arguments)) + +(defun |resizesToContents| (object &rest arguments) + (%qinvoke-method object nil "resizesToContents" arguments)) + +(defun |resize| (object &rest arguments) + (%qinvoke-method object nil "resize" arguments)) + +(defun |resolution| (object &rest arguments) + (%qinvoke-method object nil "resolution" arguments)) + +(defun |resolve(QString,QString...).QLibrary| (&rest arguments) + (%qinvoke-method "QLibrary" nil "resolve(QString,QString...)" arguments)) + +(defun |resolve(QString,int...).QLibrary| (&rest arguments) + (%qinvoke-method "QLibrary" nil "resolve(QString,int...)" arguments)) + +(defun |resolve.QLibrary| (&rest arguments) + (%qinvoke-method "QLibrary" nil "resolve" arguments)) + +(defun |resolveSymlinks| (object &rest arguments) + (%qinvoke-method object nil "resolveSymlinks" arguments)) + +(defun |resolvedUrl| (object &rest arguments) + (%qinvoke-method object nil "resolvedUrl" arguments)) + +(defun |resolved| (object &rest arguments) + (%qinvoke-method object nil "resolved" arguments)) + +(defun |resolve| (object &rest arguments) + (%qinvoke-method object nil "resolve" arguments)) + +(defun |resources| (object &rest arguments) + (%qinvoke-method object nil "resources" arguments)) + +(defun |resource| (object &rest arguments) + (%qinvoke-method object nil "resource" arguments)) + +(defun |restartCommand| (object &rest arguments) + (%qinvoke-method object nil "restartCommand" arguments)) + +(defun |restartHint| (object &rest arguments) + (%qinvoke-method object nil "restartHint" arguments)) + +(defun |restart| (object &rest arguments) + (%qinvoke-method object nil "restart" arguments)) + +(defun |restoreDockWidget| (object &rest arguments) + (%qinvoke-method object nil "restoreDockWidget" arguments)) + +(defun |restoreFrameStateRequested| (object &rest arguments) + (%qinvoke-method object nil "restoreFrameStateRequested" arguments)) + +(defun |restoreGeometry| (object &rest arguments) + (%qinvoke-method object nil "restoreGeometry" arguments)) + +(defun |restoreOverrideCursor.QGuiApplication| (&rest arguments) + (%qinvoke-method "QGuiApplication" nil "restoreOverrideCursor" arguments)) + +(defun |restoreState| (object &rest arguments) + (%qinvoke-method object nil "restoreState" arguments)) + +(defun |restore| (object &rest arguments) + (%qinvoke-method object nil "restore" arguments)) + +(defun |resultWidget| (object &rest arguments) + (%qinvoke-method object nil "resultWidget" arguments)) + +(defun |result| (object &rest arguments) + (%qinvoke-method object nil "result" arguments)) + +(defun |resumeAccepting| (object &rest arguments) + (%qinvoke-method object nil "resumeAccepting" arguments)) + +(defun |resume| (object &rest arguments) + (%qinvoke-method object nil "resume" arguments)) + +(defun |retainSizeWhenHidden| (object &rest arguments) + (%qinvoke-method object nil "retainSizeWhenHidden" arguments)) + +(defun |returnPressed| (object &rest arguments) + (%qinvoke-method object nil "returnPressed" arguments)) + +(defun |revertAll| (object &rest arguments) + (%qinvoke-method object nil "revertAll" arguments)) + +(defun |revertRow| (object &rest arguments) + (%qinvoke-method object nil "revertRow" arguments)) + +(defun |revert| (object &rest arguments) + (%qinvoke-method object nil "revert" arguments)) + +(defun |revision| (object &rest arguments) + (%qinvoke-method object nil "revision" arguments)) + +(defun |rgbSwapped| (object &rest arguments) + (%qinvoke-method object nil "rgbSwapped" arguments)) + +(defun |rgba| (object &rest arguments) + (%qinvoke-method object nil "rgba" arguments)) + +(defun |rgb| (object &rest arguments) + (%qinvoke-method object nil "rgb" arguments)) + +(defun |rightBearing| (object &rest arguments) + (%qinvoke-method object nil "rightBearing" arguments)) + +(defun |rightColumn| (object &rest arguments) + (%qinvoke-method object nil "rightColumn" arguments)) + +(defun |rightCursorPosition| (object &rest arguments) + (%qinvoke-method object nil "rightCursorPosition" arguments)) + +(defun |rightMargin| (object &rest arguments) + (%qinvoke-method object nil "rightMargin" arguments)) + +(defun |rightPadding| (object &rest arguments) + (%qinvoke-method object nil "rightPadding" arguments)) + +(defun |right| (object &rest arguments) + (%qinvoke-method object nil "right" arguments)) + +(defun |rmdir| (object &rest arguments) + (%qinvoke-method object nil "rmdir" arguments)) + +(defun |rmpath| (object &rest arguments) + (%qinvoke-method object nil "rmpath" arguments)) + +(defun |role| (object &rest arguments) + (%qinvoke-method object nil "role" arguments)) + +(defun |rollbackTransaction| (object &rest arguments) + (%qinvoke-method object nil "rollbackTransaction" arguments)) + +(defun |rollback| (object &rest arguments) + (%qinvoke-method object nil "rollback" arguments)) + +(defun |root.QDir| (&rest arguments) + (%qinvoke-method "QDir" nil "root" arguments)) + +(defun |root.QStorageInfo| (&rest arguments) + (%qinvoke-method "QStorageInfo" nil "root" arguments)) + +(defun |rootContext| (object &rest arguments) + (%qinvoke-method object nil "rootContext" arguments)) + +(defun |rootDirectory| (object &rest arguments) + (%qinvoke-method object nil "rootDirectory" arguments)) + +(defun |rootFrame| (object &rest arguments) + (%qinvoke-method object nil "rootFrame" arguments)) + +(defun |rootIndex| (object &rest arguments) + (%qinvoke-method object nil "rootIndex" arguments)) + +(defun |rootIsDecorated| (object &rest arguments) + (%qinvoke-method object nil "rootIsDecorated" arguments)) + +(defun |rootModelIndex| (object &rest arguments) + (%qinvoke-method object nil "rootModelIndex" arguments)) + +(defun |rootNode| (object &rest arguments) + (%qinvoke-method object nil "rootNode" arguments)) + +(defun |rootObjects| (object &rest arguments) + (%qinvoke-method object nil "rootObjects" arguments)) + +(defun |rootObject| (object &rest arguments) + (%qinvoke-method object nil "rootObject" arguments)) + +(defun |rootPath.QDir| (&rest arguments) + (%qinvoke-method "QDir" nil "rootPath" arguments)) + +(defun |rootPathChanged| (object &rest arguments) + (%qinvoke-method object nil "rootPathChanged" arguments)) + +(defun |rootPath| (object &rest arguments) + (%qinvoke-method object nil "rootPath" arguments)) + +(defun |rotateRadians| (object &rest arguments) + (%qinvoke-method object nil "rotateRadians" arguments)) + +(defun |rotatedVector| (object &rest arguments) + (%qinvoke-method object nil "rotatedVector" arguments)) + +(defun |rotate| (object &rest arguments) + (%qinvoke-method object nil "rotate" arguments)) + +(defun |rotationAngle| (object &rest arguments) + (%qinvoke-method object nil "rotationAngle" arguments)) + +(defun |rotationChanged| (object &rest arguments) + (%qinvoke-method object nil "rotationChanged" arguments)) + +(defun |rotationTo.QQuaternion| (&rest arguments) + (%qinvoke-method "QQuaternion" nil "rotationTo" arguments)) + +(defun |rotation| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "rotation" arguments)) + +(defun |rowAlignment| (object &rest arguments) + (%qinvoke-method object nil "rowAlignment" arguments)) + +(defun |rowAt| (object &rest arguments) + (%qinvoke-method object nil "rowAt" arguments)) + +(defun |rowCountChanged| (object &rest arguments) + (%qinvoke-method object nil "rowCountChanged" arguments)) + +(defun |rowCount| (object &rest arguments) + (%qinvoke-method object nil "rowCount" arguments)) + +(defun |rowEnd| (object &rest arguments) + (%qinvoke-method object nil "rowEnd" arguments)) + +(defun |rowHeight| (object &rest arguments) + (%qinvoke-method object nil "rowHeight" arguments)) + +(defun |rowIntersectsSelection| (object &rest arguments) + (%qinvoke-method object nil "rowIntersectsSelection" arguments)) + +(defun |rowMaximumHeight| (object &rest arguments) + (%qinvoke-method object nil "rowMaximumHeight" arguments)) + +(defun |rowMinimumHeight| (object &rest arguments) + (%qinvoke-method object nil "rowMinimumHeight" arguments)) + +(defun |rowMoved| (object &rest arguments) + (%qinvoke-method object nil "rowMoved" arguments)) + +(defun |rowPreferredHeight| (object &rest arguments) + (%qinvoke-method object nil "rowPreferredHeight" arguments)) + (defun |rowResized| (object &rest arguments) (%qinvoke-method object nil "rowResized" arguments)) @@ -57,6 +732,9 @@ (defun |rubberBandSelectionMode| (object &rest arguments) (%qinvoke-method object nil "rubberBandSelectionMode" arguments)) +(defun |runJobsAfterSwap| (object &rest arguments) + (%qinvoke-method object nil "runJobsAfterSwap" arguments)) + (defun |runningChanged| (object &rest arguments) (%qinvoke-method object nil "runningChanged" arguments)) @@ -99,6 +777,9 @@ (defun |saveToDisk| (object &rest arguments) (%qinvoke-method object nil "saveToDisk" arguments)) +(defun |saveToFile| (object &rest arguments) + (%qinvoke-method object nil "saveToFile" arguments)) + (defun |save| (object &rest arguments) (%qinvoke-method object nil "save" arguments)) @@ -144,6 +825,24 @@ (defun |sceneBoundingRect| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "sceneBoundingRect" arguments)) +(defun |sceneChanged| (object &rest arguments) + (%qinvoke-method object nil "sceneChanged" arguments)) + +(defun |sceneGraphAboutToStop| (object &rest arguments) + (%qinvoke-method object nil "sceneGraphAboutToStop" arguments)) + +(defun |sceneGraphChanged| (object &rest arguments) + (%qinvoke-method object nil "sceneGraphChanged" arguments)) + +(defun |sceneGraphError| (object &rest arguments) + (%qinvoke-method object nil "sceneGraphError" arguments)) + +(defun |sceneGraphInitialized| (object &rest arguments) + (%qinvoke-method object nil "sceneGraphInitialized" arguments)) + +(defun |sceneGraphInvalidated| (object &rest arguments) + (%qinvoke-method object nil "sceneGraphInvalidated" arguments)) + (defun |scenePos| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "scenePos" arguments)) @@ -162,12 +861,21 @@ (defun |scheduleDelayedItemsLayout| (object &rest arguments) (%qinvoke-method object nil "scheduleDelayedItemsLayout" arguments)) +(defun |scheduleRenderJob| (object &rest arguments) + (%qinvoke-method object nil "scheduleRenderJob" arguments)) + (defun |scheme| (object &rest arguments) (%qinvoke-method object nil "scheme" arguments)) (defun |scopeId| (object &rest arguments) (%qinvoke-method object nil "scopeId" arguments)) +(defun |scopeObject| (object &rest arguments) + (%qinvoke-method object nil "scopeObject" arguments)) + +(defun |scopedFocusItem| (object &rest arguments) + (%qinvoke-method object nil "scopedFocusItem" arguments)) + (defun |scope| (object &rest arguments) (%qinvoke-method object nil "scope" arguments)) @@ -606,6 +1314,9 @@ (defun |setActiveAction| (object &rest arguments) (%qinvoke-method object nil "setActiveAction" arguments)) +(defun |setActiveFocusOnTab| (object &rest arguments) + (%qinvoke-method object nil "setActiveFocusOnTab" arguments)) + (defun |setActivePanel| (object &rest arguments) (%qinvoke-method object nil "setActivePanel" arguments)) @@ -693,6 +1404,9 @@ (defun |setAnimated| (object &rest arguments) (%qinvoke-method object nil "setAnimated" arguments)) +(defun |setAntialiasing| (object &rest arguments) + (%qinvoke-method object nil "setAntialiasing" arguments)) + (defun |setApplicationCacheQuota| (object &rest arguments) (%qinvoke-method object nil "setApplicationCacheQuota" arguments)) @@ -909,6 +1623,9 @@ (defun |setBaseUrl| (object &rest arguments) (%qinvoke-method object nil "setBaseUrl" arguments)) +(defun |setBaselineOffset| (object &rest arguments) + (%qinvoke-method object nil "setBaselineOffset" arguments)) + (defun |setBatchSize| (object &rest arguments) (%qinvoke-method object nil "setBatchSize" arguments)) @@ -1167,9 +1884,18 @@ (defun |setClean| (object &rest arguments) (%qinvoke-method object nil "setClean" arguments)) +(defun |setClearBeforeRendering| (object &rest arguments) + (%qinvoke-method object nil "setClearBeforeRendering" arguments)) + (defun |setClearButtonEnabled| (object &rest arguments) (%qinvoke-method object nil "setClearButtonEnabled" arguments)) +(defun |setClearColor| (object &rest arguments) + (%qinvoke-method object nil "setClearColor" arguments)) + +(defun |setClearMode| (object &rest arguments) + (%qinvoke-method object nil "setClearMode" arguments)) + (defun |setClipPath| (object &rest arguments) (%qinvoke-method object nil "setClipPath" arguments)) @@ -1194,6 +1920,9 @@ (defun |setClipping| (object &rest arguments) (%qinvoke-method object nil "setClipping" arguments)) +(defun |setClip| (object &rest arguments) + (%qinvoke-method object nil "setClip" arguments)) + (defun |setCmykF| (object &rest arguments) (%qinvoke-method object nil "setCmykF" arguments)) @@ -1353,15 +2082,33 @@ (defun |setContentsMargins| (object &rest arguments) (%qinvoke-method object nil "setContentsMargins" arguments)) +(defun |setContentsScale| (object &rest arguments) + (%qinvoke-method object nil "setContentsScale" arguments)) + +(defun |setContentsSize| (object &rest arguments) + (%qinvoke-method object nil "setContentsSize" arguments)) + (defun |setContent| (object &rest arguments) (%qinvoke-method object nil "setContent" arguments)) +(defun |setContextForObject.QQmlEngine| (&rest arguments) + (%qinvoke-method "QQmlEngine" nil "setContextForObject" arguments)) + (defun |setContextMenuPolicy| (object &rest arguments) (%qinvoke-method object nil "setContextMenuPolicy" arguments)) (defun |setContextMenu| (object &rest arguments) (%qinvoke-method object nil "setContextMenu" arguments)) +(defun |setContextObject| (object &rest arguments) + (%qinvoke-method object nil "setContextObject" arguments)) + +(defun |setContextProperty(QString,QObject*)| (object &rest arguments) + (%qinvoke-method object nil "setContextProperty(QString,QObject*)" arguments)) + +(defun |setContextProperty(QString,QVariant)| (object &rest arguments) + (%qinvoke-method object nil "setContextProperty(QString,QVariant)" arguments)) + (defun |setContext| (object &rest arguments) (%qinvoke-method object nil "setContext" arguments)) @@ -1554,6 +2301,9 @@ (defun |setDefaultAlignment| (object &rest arguments) (%qinvoke-method object nil "setDefaultAlignment" arguments)) +(defun |setDefaultAlphaBuffer.QQuickWindow| (&rest arguments) + (%qinvoke-method "QQuickWindow" nil "setDefaultAlphaBuffer" arguments)) + (defun |setDefaultButton(QMessageBox::StandardButton)| (object &rest arguments) (%qinvoke-method object nil "setDefaultButton(QMessageBox::StandardButton)" arguments)) @@ -1653,6 +2403,15 @@ (defun |setDevicePixelRatio| (object &rest arguments) (%qinvoke-method object nil "setDevicePixelRatio" arguments)) +(defun |setDeviceRect(QRect)| (object &rest arguments) + (%qinvoke-method object nil "setDeviceRect(QRect)" arguments)) + +(defun |setDeviceRect(QSize)| (object &rest arguments) + (%qinvoke-method object nil "setDeviceRect(QSize)" arguments)) + +(defun |setDeviceRect| (object &rest arguments) + (%qinvoke-method object nil "setDeviceRect" arguments)) + (defun |setDigitCount| (object &rest arguments) (%qinvoke-method object nil "setDigitCount" arguments)) @@ -1758,6 +2517,9 @@ (defun |setDrawBase| (object &rest arguments) (%qinvoke-method object nil "setDrawBase" arguments)) +(defun |setDrawingMode| (object &rest arguments) + (%qinvoke-method object nil "setDrawingMode" arguments)) + (defun |setDropAction| (object &rest arguments) (%qinvoke-method object nil "setDropAction" arguments)) @@ -1887,9 +2649,18 @@ (defun |setExposureMode| (object &rest arguments) (%qinvoke-method object nil "setExposureMode" arguments)) +(defun |setExpression| (object &rest arguments) + (%qinvoke-method object nil "setExpression" arguments)) + (defun |setExtraSelections| (object &rest arguments) (%qinvoke-method object nil "setExtraSelections" arguments)) +(defun |setExtraSelectors(QStringList&)| (object &rest arguments) + (%qinvoke-method object nil "setExtraSelectors(QStringList&)" arguments)) + +(defun |setExtraSelectors(QStringList)| (object &rest arguments) + (%qinvoke-method object nil "setExtraSelectors(QStringList)" arguments)) + (defun |setExtraSelectors| (object &rest arguments) (%qinvoke-method object nil "setExtraSelectors" arguments)) @@ -1944,6 +2715,9 @@ (defun |setFile| (object &rest arguments) (%qinvoke-method object nil "setFile" arguments)) +(defun |setFillColor| (object &rest arguments) + (%qinvoke-method object nil "setFillColor" arguments)) + (defun |setFillRule| (object &rest arguments) (%qinvoke-method object nil "setFillRule" arguments)) @@ -1974,9 +2748,15 @@ (defun |setFilterWildcard| (object &rest arguments) (%qinvoke-method object nil "setFilterWildcard" arguments)) +(defun |setFiltering| (object &rest arguments) + (%qinvoke-method object nil "setFiltering" arguments)) + (defun |setFiltersChildEvents| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "setFiltersChildEvents" arguments)) +(defun |setFiltersChildMouseEvents| (object &rest arguments) + (%qinvoke-method object nil "setFiltersChildMouseEvents" arguments)) + (defun |setFilter| (object &rest arguments) (%qinvoke-method object nil "setFilter" arguments)) @@ -2349,6 +3129,9 @@ (defun |setHorizontalStretch| (object &rest arguments) (%qinvoke-method object nil "setHorizontalStretch" arguments)) +(defun |setHorizontalWrapMode| (object &rest arguments) + (%qinvoke-method object nil "setHorizontalWrapMode" arguments)) + (defun |setHostName| (object &rest arguments) (%qinvoke-method object nil "setHostName" arguments)) @@ -2412,6 +3195,18 @@ (defun |setImage| (object &rest arguments) (%qinvoke-method object nil "setImage" arguments)) +(defun |setImplicitHeight| (object &rest arguments) + (%qinvoke-method object nil "setImplicitHeight" arguments)) + +(defun |setImplicitWidth| (object &rest arguments) + (%qinvoke-method object nil "setImplicitWidth" arguments)) + +(defun |setImportPathList| (object &rest arguments) + (%qinvoke-method object nil "setImportPathList" arguments)) + +(defun |setIncubationController| (object &rest arguments) + (%qinvoke-method object nil "setIncubationController" arguments)) + (defun |setIndentWidth| (object &rest arguments) (%qinvoke-method object nil "setIndentWidth" arguments)) @@ -2421,6 +3216,9 @@ (defun |setIndent| (object &rest arguments) (%qinvoke-method object nil "setIndent" arguments)) +(defun |setIndexDataPattern| (object &rest arguments) + (%qinvoke-method object nil "setIndexDataPattern" arguments)) + (defun |setIndexWidget| (object &rest arguments) (%qinvoke-method object nil "setIndexWidget" arguments)) @@ -2499,6 +3297,9 @@ (defun |setIp| (object &rest arguments) (%qinvoke-method object nil "setIp" arguments)) +(defun |setIsRectangular| (object &rest arguments) + (%qinvoke-method object nil "setIsRectangular" arguments)) + (defun |setItalic| (object &rest arguments) (%qinvoke-method object nil "setItalic" arguments)) @@ -2553,9 +3354,15 @@ (defun |setJoinStyle| (object &rest arguments) (%qinvoke-method object nil "setJoinStyle" arguments)) +(defun |setKeepMouseGrab| (object &rest arguments) + (%qinvoke-method object nil "setKeepMouseGrab" arguments)) + (defun |setKeepPositionOnInsert| (object &rest arguments) (%qinvoke-method object nil "setKeepPositionOnInsert" arguments)) +(defun |setKeepTouchGrab| (object &rest arguments) + (%qinvoke-method object nil "setKeepTouchGrab" arguments)) + (defun |setKerning| (object &rest arguments) (%qinvoke-method object nil "setKerning" arguments)) @@ -2760,6 +3567,9 @@ (defun |setMask| (object &rest arguments) (%qinvoke-method object nil "setMask" arguments)) +(defun |setMaterial| (object &rest arguments) + (%qinvoke-method object nil "setMaterial" arguments)) + (defun |setMatrix| (object &rest arguments) (%qinvoke-method object nil "setMatrix" arguments)) @@ -2789,813 +3599,3 @@ (defun |setMaximumDate| (object &rest arguments) (%qinvoke-method object nil "setMaximumDate" arguments)) - -(defun |setMaximumFrameRate| (object &rest arguments) - (%qinvoke-method object nil "setMaximumFrameRate" arguments)) - -(defun |setMaximumHeight| (object &rest arguments) - (%qinvoke-method object nil "setMaximumHeight" arguments)) - -(defun |setMaximumItemCount| (object &rest arguments) - (%qinvoke-method object nil "setMaximumItemCount" arguments)) - -(defun |setMaximumLevelOfDetail| (object &rest arguments) - (%qinvoke-method object nil "setMaximumLevelOfDetail" arguments)) - -(defun |setMaximumPagesInCache.QWebSettings| (&rest arguments) - (%qinvoke-method "QWebSettings" nil "setMaximumPagesInCache" arguments)) - -(defun |setMaximumSectionSize| (object &rest arguments) - (%qinvoke-method object nil "setMaximumSectionSize" arguments)) - -(defun |setMaximumSize| (object &rest arguments) - (%qinvoke-method object nil "setMaximumSize" arguments)) - -(defun |setMaximumTime| (object &rest arguments) - (%qinvoke-method object nil "setMaximumTime" arguments)) - -(defun |setMaximumTouchPoints| (object &rest arguments) - (%qinvoke-method object nil "setMaximumTouchPoints" arguments)) - -(defun |setMaximumWidth| (object &rest arguments) - (%qinvoke-method object nil "setMaximumWidth" arguments)) - -(defun |setMaximum| (object &rest arguments) - (%qinvoke-method object nil "setMaximum" arguments)) - -(defun |setMediaObject| (object &rest arguments) - (%qinvoke-method object nil "setMediaObject" arguments)) - -(defun |setMedia| (object &rest arguments) - (%qinvoke-method object nil "setMedia" arguments)) - -(defun |setMenuBar| (object &rest arguments) - (%qinvoke-method object nil "setMenuBar" arguments)) - -(defun |setMenuRole| (object &rest arguments) - (%qinvoke-method object nil "setMenuRole" arguments)) - -(defun |setMenuWidget| (object &rest arguments) - (%qinvoke-method object nil "setMenuWidget" arguments)) - -(defun |setMenu| (object &rest arguments) - (%qinvoke-method object nil "setMenu" arguments)) - -(defun |setMetaData| (object &rest arguments) - (%qinvoke-method object nil "setMetaData" arguments)) - -(defun |setMetaInformation| (object &rest arguments) - (%qinvoke-method object nil "setMetaInformation" arguments)) - -(defun |setMeteringMode| (object &rest arguments) - (%qinvoke-method object nil "setMeteringMode" arguments)) - -(defun |setMidLineWidth| (object &rest arguments) - (%qinvoke-method object nil "setMidLineWidth" arguments)) - -(defun |setMimeData| (object &rest arguments) - (%qinvoke-method object nil "setMimeData" arguments)) - -(defun |setMimeTypeFilters| (object &rest arguments) - (%qinvoke-method object nil "setMimeTypeFilters" arguments)) - -(defun |setMinMagFilters| (object &rest arguments) - (%qinvoke-method object nil "setMinMagFilters" arguments)) - -(defun |setMinMax| (object &rest arguments) - (%qinvoke-method object nil "setMinMax" arguments)) - -(defun |setMinificationFilter| (object &rest arguments) - (%qinvoke-method object nil "setMinificationFilter" arguments)) - -(defun |setMinimal| (object &rest arguments) - (%qinvoke-method object nil "setMinimal" arguments)) - -(defun |setMinimumContentsLength| (object &rest arguments) - (%qinvoke-method object nil "setMinimumContentsLength" arguments)) - -(defun |setMinimumDateTime| (object &rest arguments) - (%qinvoke-method object nil "setMinimumDateTime" arguments)) - -(defun |setMinimumDate| (object &rest arguments) - (%qinvoke-method object nil "setMinimumDate" arguments)) - -(defun |setMinimumDuration| (object &rest arguments) - (%qinvoke-method object nil "setMinimumDuration" arguments)) - -(defun |setMinimumFrameRate| (object &rest arguments) - (%qinvoke-method object nil "setMinimumFrameRate" arguments)) - -(defun |setMinimumHeight| (object &rest arguments) - (%qinvoke-method object nil "setMinimumHeight" arguments)) - -(defun |setMinimumLevelOfDetail| (object &rest arguments) - (%qinvoke-method object nil "setMinimumLevelOfDetail" arguments)) - -(defun |setMinimumMargins| (object &rest arguments) - (%qinvoke-method object nil "setMinimumMargins" arguments)) - -(defun |setMinimumRenderSize| (object &rest arguments) - (%qinvoke-method object nil "setMinimumRenderSize" arguments)) - -(defun |setMinimumSectionSize| (object &rest arguments) - (%qinvoke-method object nil "setMinimumSectionSize" arguments)) - -(defun |setMinimumSize| (object &rest arguments) - (%qinvoke-method object nil "setMinimumSize" arguments)) - -(defun |setMinimumTime| (object &rest arguments) - (%qinvoke-method object nil "setMinimumTime" arguments)) - -(defun |setMinimumWidth| (object &rest arguments) - (%qinvoke-method object nil "setMinimumWidth" arguments)) - -(defun |setMinimum| (object &rest arguments) - (%qinvoke-method object nil "setMinimum" arguments)) - -(defun |setMinorVersion| (object &rest arguments) - (%qinvoke-method object nil "setMinorVersion" arguments)) - -(defun |setMipBaseLevel| (object &rest arguments) - (%qinvoke-method object nil "setMipBaseLevel" arguments)) - -(defun |setMipLevelRange| (object &rest arguments) - (%qinvoke-method object nil "setMipLevelRange" arguments)) - -(defun |setMipLevels| (object &rest arguments) - (%qinvoke-method object nil "setMipLevels" arguments)) - -(defun |setMipMaxLevel| (object &rest arguments) - (%qinvoke-method object nil "setMipMaxLevel" arguments)) - -(defun |setMipmap| (object &rest arguments) - (%qinvoke-method object nil "setMipmap" arguments)) - -(defun |setMiterLimit| (object &rest arguments) - (%qinvoke-method object nil "setMiterLimit" arguments)) - -(defun |setModality| (object &rest arguments) - (%qinvoke-method object nil "setModality" arguments)) - -(defun |setModal| (object &rest arguments) - (%qinvoke-method object nil "setModal" arguments)) - -(defun |setModelColumn| (object &rest arguments) - (%qinvoke-method object nil "setModelColumn" arguments)) - -(defun |setModelData| (object &rest arguments) - (%qinvoke-method object nil "setModelData" arguments)) - -(defun |setModelSorting| (object &rest arguments) - (%qinvoke-method object nil "setModelSorting" arguments)) - -(defun |setModel| (object &rest arguments) - (%qinvoke-method object nil "setModel" arguments)) - -(defun |setMode| (object &rest arguments) - (%qinvoke-method object nil "setMode" arguments)) - -(defun |setModified| (object &rest arguments) - (%qinvoke-method object nil "setModified" arguments)) - -(defun |setModifierMask| (object &rest arguments) - (%qinvoke-method object nil "setModifierMask" arguments)) - -(defun |setMouseGrabEnabled| (object &rest arguments) - (%qinvoke-method object nil "setMouseGrabEnabled" arguments)) - -(defun |setMouseTracking| (object &rest arguments) - (%qinvoke-method object nil "setMouseTracking" arguments)) - -(defun |setMovable| (object &rest arguments) - (%qinvoke-method object nil "setMovable" arguments)) - -(defun |setMovement| (object &rest arguments) - (%qinvoke-method object nil "setMovement" arguments)) - -(defun |setMovie| (object &rest arguments) - (%qinvoke-method object nil "setMovie" arguments)) - -(defun |setMulticastInterface| (object &rest arguments) - (%qinvoke-method object nil "setMulticastInterface" arguments)) - -(defun |setMuted| (object &rest arguments) - (%qinvoke-method object nil "setMuted" arguments)) - -(defun |setNameFilterDisables| (object &rest arguments) - (%qinvoke-method object nil "setNameFilterDisables" arguments)) - -(defun |setNameFilters| (object &rest arguments) - (%qinvoke-method object nil "setNameFilters" arguments)) - -(defun |setNameFilter| (object &rest arguments) - (%qinvoke-method object nil "setNameFilter" arguments)) - -(defun |setNamedColor| (object &rest arguments) - (%qinvoke-method object nil "setNamedColor" arguments)) - -(defun |setName| (object &rest arguments) - (%qinvoke-method object nil "setName" arguments)) - -(defun |setNativeMenuBar| (object &rest arguments) - (%qinvoke-method object nil "setNativeMenuBar" arguments)) - -(defun |setNavigationBarVisible| (object &rest arguments) - (%qinvoke-method object nil "setNavigationBarVisible" arguments)) - -(defun |setNetmask| (object &rest arguments) - (%qinvoke-method object nil "setNetmask" arguments)) - -(defun |setNetworkAccessManager| (object &rest arguments) - (%qinvoke-method object nil "setNetworkAccessManager" arguments)) - -(defun |setNetworkAccessible| (object &rest arguments) - (%qinvoke-method object nil "setNetworkAccessible" arguments)) - -(defun |setNetworkConfigurations| (object &rest arguments) - (%qinvoke-method object nil "setNetworkConfigurations" arguments)) - -(defun |setNetworkConfiguration| (object &rest arguments) - (%qinvoke-method object nil "setNetworkConfiguration" arguments)) - -(defun |setNonBreakableLines| (object &rest arguments) - (%qinvoke-method object nil "setNonBreakableLines" arguments)) - -(defun |setNotation| (object &rest arguments) - (%qinvoke-method object nil "setNotation" arguments)) - -(defun |setNotchTarget| (object &rest arguments) - (%qinvoke-method object nil "setNotchTarget" arguments)) - -(defun |setNotchesVisible| (object &rest arguments) - (%qinvoke-method object nil "setNotchesVisible" arguments)) - -(defun |setNotifyInterval| (object &rest arguments) - (%qinvoke-method object nil "setNotifyInterval" arguments)) - -(defun |setNull(QString)| (object &rest arguments) - (%qinvoke-method object nil "setNull(QString)" arguments)) - -(defun |setNull(int)| (object &rest arguments) - (%qinvoke-method object nil "setNull(int)" arguments)) - -(defun |setNull| (object &rest arguments) - (%qinvoke-method object nil "setNull" arguments)) - -(defun |setNum(double)| (object &rest arguments) - (%qinvoke-method object nil "setNum(double)" arguments)) - -(defun |setNum(int)| (object &rest arguments) - (%qinvoke-method object nil "setNum(int)" arguments)) - -(defun |setNumColumns| (object &rest arguments) - (%qinvoke-method object nil "setNumColumns" arguments)) - -(defun |setNumberOptions| (object &rest arguments) - (%qinvoke-method object nil "setNumberOptions" arguments)) - -(defun |setNumberPrefix| (object &rest arguments) - (%qinvoke-method object nil "setNumberPrefix" arguments)) - -(defun |setNumberSuffix| (object &rest arguments) - (%qinvoke-method object nil "setNumberSuffix" arguments)) - -(defun |setNumericalPrecisionPolicy| (object &rest arguments) - (%qinvoke-method object nil "setNumericalPrecisionPolicy" arguments)) - -(defun |setNum| (object &rest arguments) - (%qinvoke-method object nil "setNum" arguments)) - -(defun |setObjectCacheCapacities.QWebSettings| (&rest arguments) - (%qinvoke-method "QWebSettings" nil "setObjectCacheCapacities" arguments)) - -(defun |setObjectIndex| (object &rest arguments) - (%qinvoke-method object nil "setObjectIndex" arguments)) - -(defun |setObjectName| (object &rest arguments) - (%qinvoke-method object nil "setObjectName" arguments)) - -(defun |setObjectType| (object &rest arguments) - (%qinvoke-method object nil "setObjectType" arguments)) - -(defun |setOctMode| (object &rest arguments) - (%qinvoke-method object nil "setOctMode" arguments)) - -(defun |setOfflineStorageDefaultQuota.QWebSettings| (&rest arguments) - (%qinvoke-method "QWebSettings" nil "setOfflineStorageDefaultQuota" arguments)) - -(defun |setOfflineStoragePath.QWebSettings| (&rest arguments) - (%qinvoke-method "QWebSettings" nil "setOfflineStoragePath" arguments)) - -(defun |setOfflineWebApplicationCachePath.QWebSettings| (&rest arguments) - (%qinvoke-method "QWebSettings" nil "setOfflineWebApplicationCachePath" arguments)) - -(defun |setOfflineWebApplicationCacheQuota.QWebSettings| (&rest arguments) - (%qinvoke-method "QWebSettings" nil "setOfflineWebApplicationCacheQuota" arguments)) - -(defun |setOffset(QPointF)| (object &rest arguments) - (%qinvoke-method object nil "setOffset(QPointF)" arguments)) - -(defun |setOffset(double)| (object &rest arguments) - (%qinvoke-method object nil "setOffset(double)" arguments)) - -(defun |setOffsetFromUtc| (object &rest arguments) - (%qinvoke-method object nil "setOffsetFromUtc" arguments)) - -(defun |setOffsetToLastSection| (object &rest arguments) - (%qinvoke-method object nil "setOffsetToLastSection" arguments)) - -(defun |setOffsetToSectionPosition| (object &rest arguments) - (%qinvoke-method object nil "setOffsetToSectionPosition" arguments)) - -(defun |setOffset| (object &rest arguments) - (%qinvoke-method object nil "setOffset" arguments)) - -(defun |setOkButtonText| (object &rest arguments) - (%qinvoke-method object nil "setOkButtonText" arguments)) - -(defun |setOpacityMask| (object &rest arguments) - (%qinvoke-method object nil "setOpacityMask" arguments)) - -(defun |setOpacity| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "setOpacity" arguments)) - -(defun |setOpaqueResize| (object &rest arguments) - (%qinvoke-method object nil "setOpaqueResize" arguments)) - -(defun |setOpenExternalLinks| (object &rest arguments) - (%qinvoke-method object nil "setOpenExternalLinks" arguments)) - -(defun |setOpenLinks| (object &rest arguments) - (%qinvoke-method object nil "setOpenLinks" arguments)) - -(defun |setOpenMode| (object &rest arguments) - (%qinvoke-method object nil "setOpenMode" arguments)) - -(defun |setOptimizationFlags| (object &rest arguments) - (%qinvoke-method object nil "setOptimizationFlags" arguments)) - -(defun |setOptimizationFlag| (object &rest arguments) - (%qinvoke-method object nil "setOptimizationFlag" arguments)) - -(defun |setOptionTabs| (object &rest arguments) - (%qinvoke-method object nil "setOptionTabs" arguments)) - -(defun |setOptions| (object &rest arguments) - (%qinvoke-method object nil "setOptions" arguments)) - -(defun |setOption| (object &rest arguments) - (%qinvoke-method object nil "setOption" arguments)) - -(defun |setOrganizationDomain.QCoreApplication| (&rest arguments) - (%qinvoke-method "QCoreApplication" nil "setOrganizationDomain" arguments)) - -(defun |setOrganizationName.QCoreApplication| (&rest arguments) - (%qinvoke-method "QCoreApplication" nil "setOrganizationName" arguments)) - -(defun |setOrientationUpdateMask| (object &rest arguments) - (%qinvoke-method object nil "setOrientationUpdateMask" arguments)) - -(defun |setOrientation| (object &rest arguments) - (%qinvoke-method object nil "setOrientation" arguments)) - -(defun |setOriginCorner| (object &rest arguments) - (%qinvoke-method object nil "setOriginCorner" arguments)) - -(defun |setOriginatingObject| (object &rest arguments) - (%qinvoke-method object nil "setOriginatingObject" arguments)) - -(defun |setOrigin| (object &rest arguments) - (%qinvoke-method object nil "setOrigin" arguments)) - -(defun |setOuterXml| (object &rest arguments) - (%qinvoke-method object nil "setOuterXml" arguments)) - -(defun |setOutputFileName| (object &rest arguments) - (%qinvoke-method object nil "setOutputFileName" arguments)) - -(defun |setOutputFormat| (object &rest arguments) - (%qinvoke-method object nil "setOutputFormat" arguments)) - -(defun |setOutputLocation| (object &rest arguments) - (%qinvoke-method object nil "setOutputLocation" arguments)) - -(defun |setOverline| (object &rest arguments) - (%qinvoke-method object nil "setOverline" arguments)) - -(defun |setOverrideCursor.QGuiApplication| (&rest arguments) - (%qinvoke-method "QGuiApplication" nil "setOverrideCursor" arguments)) - -(defun |setOvershoot| (object &rest arguments) - (%qinvoke-method object nil "setOvershoot" arguments)) - -(defun |setOverwriteMode| (object &rest arguments) - (%qinvoke-method object nil "setOverwriteMode" arguments)) - -(defun |setOwnedByLayout| (object &rest arguments) - (%qinvoke-method object nil "setOwnedByLayout" arguments)) - -(defun |setPadding| (object &rest arguments) - (%qinvoke-method object nil "setPadding" arguments)) - -(defun |setPageBreakPolicy| (object &rest arguments) - (%qinvoke-method object nil "setPageBreakPolicy" arguments)) - -(defun |setPageLayout| (object &rest arguments) - (%qinvoke-method object nil "setPageLayout" arguments)) - -(defun |setPageMargins| (object &rest arguments) - (%qinvoke-method object nil "setPageMargins" arguments)) - -(defun |setPageOrder| (object &rest arguments) - (%qinvoke-method object nil "setPageOrder" arguments)) - -(defun |setPageOrientation| (object &rest arguments) - (%qinvoke-method object nil "setPageOrientation" arguments)) - -(defun |setPageSize(QPageSize)| (object &rest arguments) - (%qinvoke-method object nil "setPageSize(QPageSize)" arguments)) - -(defun |setPageSize(QPagedPaintDevice::PageSize)| (object &rest arguments) - (%qinvoke-method object nil "setPageSize(QPagedPaintDevice::PageSize)" arguments)) - -(defun |setPageSizeMM| (object &rest arguments) - (%qinvoke-method object nil "setPageSizeMM" arguments)) - -(defun |setPageSize| (object &rest arguments) - (%qinvoke-method object nil "setPageSize" arguments)) - -(defun |setPageStep| (object &rest arguments) - (%qinvoke-method object nil "setPageStep" arguments)) - -(defun |setPage| (object &rest arguments) - (%qinvoke-method object nil "setPage" arguments)) - -(defun |setPaintDevice| (object &rest arguments) - (%qinvoke-method object nil "setPaintDevice" arguments)) - -(defun |setPaintFlipped| (object &rest arguments) - (%qinvoke-method object nil "setPaintFlipped" arguments)) - -(defun |setPalette.QApplication| (&rest arguments) - (%qinvoke-method "QApplication" nil "setPalette" arguments)) - -(defun |setPalette.QGuiApplication| (&rest arguments) - (%qinvoke-method "QGuiApplication" nil "setPalette" arguments)) - -(defun |setPalette.QToolTip| (&rest arguments) - (%qinvoke-method "QToolTip" nil "setPalette" arguments)) - -(defun |setPalette| (object &rest arguments) - (%qinvoke-method object nil "setPalette" arguments)) - -(defun |setPanelModality| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "setPanelModality" arguments)) - -(defun |setPaperSource| (object &rest arguments) - (%qinvoke-method object nil "setPaperSource" arguments)) - -(defun |setParentItem| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "setParentItem" arguments)) - -(defun |setParentLayoutItem| (object &rest arguments) - (%qinvoke-method object nil "setParentLayoutItem" arguments)) - -(defun |setParent| (object &rest arguments) - (%qinvoke-method object nil "setParent" arguments)) - -(defun |setPassword| (object &rest arguments) - (%qinvoke-method object nil "setPassword" arguments)) - -(defun |setPatchVertexCount| (object &rest arguments) - (%qinvoke-method object nil "setPatchVertexCount" arguments)) - -(defun |setPath.QSettings| (&rest arguments) - (%qinvoke-method "QSettings" nil "setPath" arguments)) - -(defun |setPath| (object &rest arguments) - (%qinvoke-method object nil "setPath" arguments)) - -(defun |setPatternOptions| (object &rest arguments) - (%qinvoke-method object nil "setPatternOptions" arguments)) - -(defun |setPatternSyntax| (object &rest arguments) - (%qinvoke-method object nil "setPatternSyntax" arguments)) - -(defun |setPattern| (object &rest arguments) - (%qinvoke-method object nil "setPattern" arguments)) - -(defun |setPauseMode| (object &rest arguments) - (%qinvoke-method object nil "setPauseMode" arguments)) - -(defun |setPaused| (object &rest arguments) - (%qinvoke-method object nil "setPaused" arguments)) - -(defun |setPeerAddress| (object &rest arguments) - (%qinvoke-method object nil "setPeerAddress" arguments)) - -(defun |setPeerHostName| (object &rest arguments) - (%qinvoke-method object nil "setPeerHostName" arguments)) - -(defun |setPeerName| (object &rest arguments) - (%qinvoke-method object nil "setPeerName" arguments)) - -(defun |setPeerPort| (object &rest arguments) - (%qinvoke-method object nil "setPeerPort" arguments)) - -(defun |setPeerVerifyDepth| (object &rest arguments) - (%qinvoke-method object nil "setPeerVerifyDepth" arguments)) - -(defun |setPeerVerifyMode| (object &rest arguments) - (%qinvoke-method object nil "setPeerVerifyMode" arguments)) - -(defun |setPen(QColor)| (object &rest arguments) - (%qinvoke-method object nil "setPen(QColor)" arguments)) - -(defun |setPen(QPen)| (object &rest arguments) - (%qinvoke-method object nil "setPen(QPen)" arguments)) - -(defun |setPen(Qt::PenStyle)| (object &rest arguments) - (%qinvoke-method object nil "setPen(Qt::PenStyle)" arguments)) - -(defun |setPen| (object &rest arguments) - (%qinvoke-method object nil "setPen" arguments)) - -(defun |setPeriod| (object &rest arguments) - (%qinvoke-method object nil "setPeriod" arguments)) - -(defun |setPermissions.QFile| (&rest arguments) - (%qinvoke-method "QFile" nil "setPermissions" arguments)) - -(defun |setPermissions| (object &rest arguments) - (%qinvoke-method object nil "setPermissions" arguments)) - -(defun |setPicture| (object &rest arguments) - (%qinvoke-method object nil "setPicture" arguments)) - -(defun |setPixelAspectRatio| (object &rest arguments) - (%qinvoke-method object nil "setPixelAspectRatio" arguments)) - -(defun |setPixelFormat| (object &rest arguments) - (%qinvoke-method object nil "setPixelFormat" arguments)) - -(defun |setPixelSize| (object &rest arguments) - (%qinvoke-method object nil "setPixelSize" arguments)) - -(defun |setPixel| (object &rest arguments) - (%qinvoke-method object nil "setPixel" arguments)) - -(defun |setPixmap| (object &rest arguments) - (%qinvoke-method object nil "setPixmap" arguments)) - -(defun |setPlainText| (object &rest arguments) - (%qinvoke-method object nil "setPlainText" arguments)) - -(defun |setPlaybackMode| (object &rest arguments) - (%qinvoke-method object nil "setPlaybackMode" arguments)) - -(defun |setPlaybackRate| (object &rest arguments) - (%qinvoke-method object nil "setPlaybackRate" arguments)) - -(defun |setPlaylist| (object &rest arguments) - (%qinvoke-method object nil "setPlaylist" arguments)) - -(defun |setPluginFactory| (object &rest arguments) - (%qinvoke-method object nil "setPluginFactory" arguments)) - -(defun |setPointSizeF| (object &rest arguments) - (%qinvoke-method object nil "setPointSizeF" arguments)) - -(defun |setPointSize| (object &rest arguments) - (%qinvoke-method object nil "setPointSize" arguments)) - -(defun |setPolygon| (object &rest arguments) - (%qinvoke-method object nil "setPolygon" arguments)) - -(defun |setPopupMode| (object &rest arguments) - (%qinvoke-method object nil "setPopupMode" arguments)) - -(defun |setPopup| (object &rest arguments) - (%qinvoke-method object nil "setPopup" arguments)) - -(defun |setPortraitOrientation| (object &rest arguments) - (%qinvoke-method object nil "setPortraitOrientation" arguments)) - -(defun |setPort| (object &rest arguments) - (%qinvoke-method object nil "setPort" arguments)) - -(defun |setPos(QScreen*...).QCursor| (&rest arguments) - (%qinvoke-method "QCursor" nil "setPos(QScreen*...)" arguments)) - -(defun |setPos(int...).QCursor| (&rest arguments) - (%qinvoke-method "QCursor" nil "setPos(int...)" arguments)) - -(defun |setPos.QCursor| (&rest arguments) - (%qinvoke-method "QCursor" nil "setPos" arguments)) - -(defun |setPositionForIndex| (object &rest arguments) - (%qinvoke-method object nil "setPositionForIndex" arguments)) - -(defun |setPosition| (object &rest arguments) - (%qinvoke-method object nil "setPosition" arguments)) - -(defun |setPos| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "setPos" arguments)) - -(defun |setPrecision| (object &rest arguments) - (%qinvoke-method object nil "setPrecision" arguments)) - -(defun |setPreeditArea| (object &rest arguments) - (%qinvoke-method object nil "setPreeditArea" arguments)) - -(defun |setPreferredContentsSize| (object &rest arguments) - (%qinvoke-method object nil "setPreferredContentsSize" arguments)) - -(defun |setPreferredHeight| (object &rest arguments) - (%qinvoke-method object nil "setPreferredHeight" arguments)) - -(defun |setPreferredSize| (object &rest arguments) - (%qinvoke-method object nil "setPreferredSize" arguments)) - -(defun |setPreferredWidth| (object &rest arguments) - (%qinvoke-method object nil "setPreferredWidth" arguments)) - -(defun |setPrefixLength| (object &rest arguments) - (%qinvoke-method object nil "setPrefixLength" arguments)) - -(defun |setPrefix| (object &rest arguments) - (%qinvoke-method object nil "setPrefix" arguments)) - -(defun |setPreviewWidget| (object &rest arguments) - (%qinvoke-method object nil "setPreviewWidget" arguments)) - -(defun |setPrimaryKey| (object &rest arguments) - (%qinvoke-method object nil "setPrimaryKey" arguments)) - -(defun |setPrintProgram| (object &rest arguments) - (%qinvoke-method object nil "setPrintProgram" arguments)) - -(defun |setPrintRange| (object &rest arguments) - (%qinvoke-method object nil "setPrintRange" arguments)) - -(defun |setPrinterName| (object &rest arguments) - (%qinvoke-method object nil "setPrinterName" arguments)) - -(defun |setPriority| (object &rest arguments) - (%qinvoke-method object nil "setPriority" arguments)) - -(defun |setPrivateKey| (object &rest arguments) - (%qinvoke-method object nil "setPrivateKey" arguments)) - -(defun |setProcessChannelMode| (object &rest arguments) - (%qinvoke-method object nil "setProcessChannelMode" arguments)) - -(defun |setProcessEnvironment| (object &rest arguments) - (%qinvoke-method object nil "setProcessEnvironment" arguments)) - -(defun |setProcessState| (object &rest arguments) - (%qinvoke-method object nil "setProcessState" arguments)) - -(defun |setProfile| (object &rest arguments) - (%qinvoke-method object nil "setProfile" arguments)) - -(defun |setProgram| (object &rest arguments) - (%qinvoke-method object nil "setProgram" arguments)) - -(defun |setProperty(int,QVariant)| (object &rest arguments) - (%qinvoke-method object nil "setProperty(int,QVariant)" arguments)) - -(defun |setProperty(int,QVector)| (object &rest arguments) - (%qinvoke-method object nil "setProperty(int,QVector)" arguments)) - -(defun |setPropertyName| (object &rest arguments) - (%qinvoke-method object nil "setPropertyName" arguments)) - -(defun |setProperty| (object &rest arguments) - (%qinvoke-method object nil "setProperty" arguments)) - -(defun |setProtocolTag| (object &rest arguments) - (%qinvoke-method object nil "setProtocolTag" arguments)) - -(defun |setProtocol| (object &rest arguments) - (%qinvoke-method object nil "setProtocol" arguments)) - -(defun |setProxyFactory| (object &rest arguments) - (%qinvoke-method object nil "setProxyFactory" arguments)) - -(defun |setProxyModel| (object &rest arguments) - (%qinvoke-method object nil "setProxyModel" arguments)) - -(defun |setProxy| (object &rest arguments) - (%qinvoke-method object nil "setProxy" arguments)) - -(defun |setQuality| (object &rest arguments) - (%qinvoke-method object nil "setQuality" arguments)) - -(defun |setQuery(QSqlQuery)| (object &rest arguments) - (%qinvoke-method object nil "setQuery(QSqlQuery)" arguments)) - -(defun |setQuery(QString)| (object &rest arguments) - (%qinvoke-method object nil "setQuery(QString)" arguments)) - -(defun |setQuery(QUrlQuery)| (object &rest arguments) - (%qinvoke-method object nil "setQuery(QUrlQuery)" arguments)) - -(defun |setQueryType| (object &rest arguments) - (%qinvoke-method object nil "setQueryType" arguments)) - -(defun |setQuery| (object &rest arguments) - (%qinvoke-method object nil "setQuery" arguments)) - -(defun |setQuitLockEnabled.QCoreApplication| (&rest arguments) - (%qinvoke-method "QCoreApplication" nil "setQuitLockEnabled" arguments)) - -(defun |setQuitOnLastWindowClosed.QGuiApplication| (&rest arguments) - (%qinvoke-method "QGuiApplication" nil "setQuitOnLastWindowClosed" arguments)) - -(defun |setRadius| (object &rest arguments) - (%qinvoke-method object nil "setRadius" arguments)) - -(defun |setRangeSelected| (object &rest arguments) - (%qinvoke-method object nil "setRangeSelected" arguments)) - -(defun |setRange| (object &rest arguments) - (%qinvoke-method object nil "setRange" arguments)) - -(defun |setRawHeader| (object &rest arguments) - (%qinvoke-method object nil "setRawHeader" arguments)) - -(defun |setReadBufferSize| (object &rest arguments) - (%qinvoke-method object nil "setReadBufferSize" arguments)) - -(defun |setReadChannel| (object &rest arguments) - (%qinvoke-method object nil "setReadChannel" arguments)) - -(defun |setReadOnly| (object &rest arguments) - (%qinvoke-method object nil "setReadOnly" arguments)) - -(defun |setRecord| (object &rest arguments) - (%qinvoke-method object nil "setRecord" arguments)) - -(defun |setRects| (object &rest arguments) - (%qinvoke-method object nil "setRects" arguments)) - -(defun |setRect| (object &rest arguments) - (%qinvoke-method object nil "setRect" arguments)) - -(defun |setRedBufferSize| (object &rest arguments) - (%qinvoke-method object nil "setRedBufferSize" arguments)) - -(defun |setRedF| (object &rest arguments) - (%qinvoke-method object nil "setRedF" arguments)) - -(defun |setRed| (object &rest arguments) - (%qinvoke-method object nil "setRed" arguments)) - -(defun |setRegExp| (object &rest arguments) - (%qinvoke-method object nil "setRegExp" arguments)) - -(defun |setRelation| (object &rest arguments) - (%qinvoke-method object nil "setRelation" arguments)) - -(defun |setRenderHints| (object &rest arguments) - (%qinvoke-method object nil "setRenderHints" arguments)) - -(defun |setRenderHint| (object &rest arguments) - (%qinvoke-method object nil "setRenderHint" arguments)) - -(defun |setRenderableType| (object &rest arguments) - (%qinvoke-method object nil "setRenderableType" arguments)) - -(defun |setRepeatAction| (object &rest arguments) - (%qinvoke-method object nil "setRepeatAction" arguments)) - -(defun |setRequiredStatus| (object &rest arguments) - (%qinvoke-method object nil "setRequiredStatus" arguments)) - -(defun |setRequired| (object &rest arguments) - (%qinvoke-method object nil "setRequired" arguments)) - -(defun |setResizeAnchor| (object &rest arguments) - (%qinvoke-method object nil "setResizeAnchor" arguments)) - -(defun |setResizeContentsPrecision| (object &rest arguments) - (%qinvoke-method object nil "setResizeContentsPrecision" arguments)) - -(defun |setResizeGripsVisible| (object &rest arguments) - (%qinvoke-method object nil "setResizeGripsVisible" arguments)) - -(defun |setResizeMode| (object &rest arguments) - (%qinvoke-method object nil "setResizeMode" arguments)) - -(defun |setResizesToContents| (object &rest arguments) - (%qinvoke-method object nil "setResizesToContents" arguments)) - -(defun |setResolution| (object &rest arguments) - (%qinvoke-method object nil "setResolution" arguments)) - -(defun |setResolveSymlinks| (object &rest arguments) - (%qinvoke-method object nil "setResolveSymlinks" arguments)) - -(defun |setRestartCommand| (object &rest arguments) - (%qinvoke-method object nil "setRestartCommand" arguments)) diff --git a/src/lisp/all-wrappers-11.lisp b/src/lisp/all-wrappers-11.lisp index acad1f6..d2949f8 100644 --- a/src/lisp/all-wrappers-11.lisp +++ b/src/lisp/all-wrappers-11.lisp @@ -1,5 +1,878 @@ (in-package :eql) +(defun |setMaximumFrameRate| (object &rest arguments) + (%qinvoke-method object nil "setMaximumFrameRate" arguments)) + +(defun |setMaximumHeight| (object &rest arguments) + (%qinvoke-method object nil "setMaximumHeight" arguments)) + +(defun |setMaximumItemCount| (object &rest arguments) + (%qinvoke-method object nil "setMaximumItemCount" arguments)) + +(defun |setMaximumLevelOfDetail| (object &rest arguments) + (%qinvoke-method object nil "setMaximumLevelOfDetail" arguments)) + +(defun |setMaximumPagesInCache.QWebSettings| (&rest arguments) + (%qinvoke-method "QWebSettings" nil "setMaximumPagesInCache" arguments)) + +(defun |setMaximumSectionSize| (object &rest arguments) + (%qinvoke-method object nil "setMaximumSectionSize" arguments)) + +(defun |setMaximumSize| (object &rest arguments) + (%qinvoke-method object nil "setMaximumSize" arguments)) + +(defun |setMaximumTime| (object &rest arguments) + (%qinvoke-method object nil "setMaximumTime" arguments)) + +(defun |setMaximumTouchPoints| (object &rest arguments) + (%qinvoke-method object nil "setMaximumTouchPoints" arguments)) + +(defun |setMaximumWidth| (object &rest arguments) + (%qinvoke-method object nil "setMaximumWidth" arguments)) + +(defun |setMaximum| (object &rest arguments) + (%qinvoke-method object nil "setMaximum" arguments)) + +(defun |setMediaObject| (object &rest arguments) + (%qinvoke-method object nil "setMediaObject" arguments)) + +(defun |setMedia| (object &rest arguments) + (%qinvoke-method object nil "setMedia" arguments)) + +(defun |setMenuBar| (object &rest arguments) + (%qinvoke-method object nil "setMenuBar" arguments)) + +(defun |setMenuRole| (object &rest arguments) + (%qinvoke-method object nil "setMenuRole" arguments)) + +(defun |setMenuWidget| (object &rest arguments) + (%qinvoke-method object nil "setMenuWidget" arguments)) + +(defun |setMenu| (object &rest arguments) + (%qinvoke-method object nil "setMenu" arguments)) + +(defun |setMetaData| (object &rest arguments) + (%qinvoke-method object nil "setMetaData" arguments)) + +(defun |setMetaInformation| (object &rest arguments) + (%qinvoke-method object nil "setMetaInformation" arguments)) + +(defun |setMeteringMode| (object &rest arguments) + (%qinvoke-method object nil "setMeteringMode" arguments)) + +(defun |setMidLineWidth| (object &rest arguments) + (%qinvoke-method object nil "setMidLineWidth" arguments)) + +(defun |setMimeData| (object &rest arguments) + (%qinvoke-method object nil "setMimeData" arguments)) + +(defun |setMimeTypeFilters| (object &rest arguments) + (%qinvoke-method object nil "setMimeTypeFilters" arguments)) + +(defun |setMinMagFilters| (object &rest arguments) + (%qinvoke-method object nil "setMinMagFilters" arguments)) + +(defun |setMinMax| (object &rest arguments) + (%qinvoke-method object nil "setMinMax" arguments)) + +(defun |setMinificationFilter| (object &rest arguments) + (%qinvoke-method object nil "setMinificationFilter" arguments)) + +(defun |setMinimal| (object &rest arguments) + (%qinvoke-method object nil "setMinimal" arguments)) + +(defun |setMinimumContentsLength| (object &rest arguments) + (%qinvoke-method object nil "setMinimumContentsLength" arguments)) + +(defun |setMinimumDateTime| (object &rest arguments) + (%qinvoke-method object nil "setMinimumDateTime" arguments)) + +(defun |setMinimumDate| (object &rest arguments) + (%qinvoke-method object nil "setMinimumDate" arguments)) + +(defun |setMinimumDuration| (object &rest arguments) + (%qinvoke-method object nil "setMinimumDuration" arguments)) + +(defun |setMinimumFrameRate| (object &rest arguments) + (%qinvoke-method object nil "setMinimumFrameRate" arguments)) + +(defun |setMinimumHeight| (object &rest arguments) + (%qinvoke-method object nil "setMinimumHeight" arguments)) + +(defun |setMinimumLevelOfDetail| (object &rest arguments) + (%qinvoke-method object nil "setMinimumLevelOfDetail" arguments)) + +(defun |setMinimumMargins| (object &rest arguments) + (%qinvoke-method object nil "setMinimumMargins" arguments)) + +(defun |setMinimumRenderSize| (object &rest arguments) + (%qinvoke-method object nil "setMinimumRenderSize" arguments)) + +(defun |setMinimumSectionSize| (object &rest arguments) + (%qinvoke-method object nil "setMinimumSectionSize" arguments)) + +(defun |setMinimumSize| (object &rest arguments) + (%qinvoke-method object nil "setMinimumSize" arguments)) + +(defun |setMinimumTime| (object &rest arguments) + (%qinvoke-method object nil "setMinimumTime" arguments)) + +(defun |setMinimumWidth| (object &rest arguments) + (%qinvoke-method object nil "setMinimumWidth" arguments)) + +(defun |setMinimum| (object &rest arguments) + (%qinvoke-method object nil "setMinimum" arguments)) + +(defun |setMinorVersion| (object &rest arguments) + (%qinvoke-method object nil "setMinorVersion" arguments)) + +(defun |setMipBaseLevel| (object &rest arguments) + (%qinvoke-method object nil "setMipBaseLevel" arguments)) + +(defun |setMipLevelRange| (object &rest arguments) + (%qinvoke-method object nil "setMipLevelRange" arguments)) + +(defun |setMipLevels| (object &rest arguments) + (%qinvoke-method object nil "setMipLevels" arguments)) + +(defun |setMipMaxLevel| (object &rest arguments) + (%qinvoke-method object nil "setMipMaxLevel" arguments)) + +(defun |setMipmapFiltering| (object &rest arguments) + (%qinvoke-method object nil "setMipmapFiltering" arguments)) + +(defun |setMipmap| (object &rest arguments) + (%qinvoke-method object nil "setMipmap" arguments)) + +(defun |setMiterLimit| (object &rest arguments) + (%qinvoke-method object nil "setMiterLimit" arguments)) + +(defun |setModality| (object &rest arguments) + (%qinvoke-method object nil "setModality" arguments)) + +(defun |setModal| (object &rest arguments) + (%qinvoke-method object nil "setModal" arguments)) + +(defun |setModelColumn| (object &rest arguments) + (%qinvoke-method object nil "setModelColumn" arguments)) + +(defun |setModelData| (object &rest arguments) + (%qinvoke-method object nil "setModelData" arguments)) + +(defun |setModelSorting| (object &rest arguments) + (%qinvoke-method object nil "setModelSorting" arguments)) + +(defun |setModel| (object &rest arguments) + (%qinvoke-method object nil "setModel" arguments)) + +(defun |setMode| (object &rest arguments) + (%qinvoke-method object nil "setMode" arguments)) + +(defun |setModified| (object &rest arguments) + (%qinvoke-method object nil "setModified" arguments)) + +(defun |setModifierMask| (object &rest arguments) + (%qinvoke-method object nil "setModifierMask" arguments)) + +(defun |setMouseGrabEnabled| (object &rest arguments) + (%qinvoke-method object nil "setMouseGrabEnabled" arguments)) + +(defun |setMouseTracking| (object &rest arguments) + (%qinvoke-method object nil "setMouseTracking" arguments)) + +(defun |setMovable| (object &rest arguments) + (%qinvoke-method object nil "setMovable" arguments)) + +(defun |setMovement| (object &rest arguments) + (%qinvoke-method object nil "setMovement" arguments)) + +(defun |setMovie| (object &rest arguments) + (%qinvoke-method object nil "setMovie" arguments)) + +(defun |setMulticastInterface| (object &rest arguments) + (%qinvoke-method object nil "setMulticastInterface" arguments)) + +(defun |setMuted| (object &rest arguments) + (%qinvoke-method object nil "setMuted" arguments)) + +(defun |setNameFilterDisables| (object &rest arguments) + (%qinvoke-method object nil "setNameFilterDisables" arguments)) + +(defun |setNameFilters| (object &rest arguments) + (%qinvoke-method object nil "setNameFilters" arguments)) + +(defun |setNameFilter| (object &rest arguments) + (%qinvoke-method object nil "setNameFilter" arguments)) + +(defun |setNamedColor| (object &rest arguments) + (%qinvoke-method object nil "setNamedColor" arguments)) + +(defun |setName| (object &rest arguments) + (%qinvoke-method object nil "setName" arguments)) + +(defun |setNativeMenuBar| (object &rest arguments) + (%qinvoke-method object nil "setNativeMenuBar" arguments)) + +(defun |setNavigationBarVisible| (object &rest arguments) + (%qinvoke-method object nil "setNavigationBarVisible" arguments)) + +(defun |setNetmask| (object &rest arguments) + (%qinvoke-method object nil "setNetmask" arguments)) + +(defun |setNetworkAccessManagerFactory| (object &rest arguments) + (%qinvoke-method object nil "setNetworkAccessManagerFactory" arguments)) + +(defun |setNetworkAccessManager| (object &rest arguments) + (%qinvoke-method object nil "setNetworkAccessManager" arguments)) + +(defun |setNetworkAccessible| (object &rest arguments) + (%qinvoke-method object nil "setNetworkAccessible" arguments)) + +(defun |setNetworkConfigurations| (object &rest arguments) + (%qinvoke-method object nil "setNetworkConfigurations" arguments)) + +(defun |setNetworkConfiguration| (object &rest arguments) + (%qinvoke-method object nil "setNetworkConfiguration" arguments)) + +(defun |setNonBreakableLines| (object &rest arguments) + (%qinvoke-method object nil "setNonBreakableLines" arguments)) + +(defun |setNotation| (object &rest arguments) + (%qinvoke-method object nil "setNotation" arguments)) + +(defun |setNotchTarget| (object &rest arguments) + (%qinvoke-method object nil "setNotchTarget" arguments)) + +(defun |setNotchesVisible| (object &rest arguments) + (%qinvoke-method object nil "setNotchesVisible" arguments)) + +(defun |setNotifyInterval| (object &rest arguments) + (%qinvoke-method object nil "setNotifyInterval" arguments)) + +(defun |setNotifyOnValueChanged| (object &rest arguments) + (%qinvoke-method object nil "setNotifyOnValueChanged" arguments)) + +(defun |setNull(QString)| (object &rest arguments) + (%qinvoke-method object nil "setNull(QString)" arguments)) + +(defun |setNull(int)| (object &rest arguments) + (%qinvoke-method object nil "setNull(int)" arguments)) + +(defun |setNull| (object &rest arguments) + (%qinvoke-method object nil "setNull" arguments)) + +(defun |setNum(double)| (object &rest arguments) + (%qinvoke-method object nil "setNum(double)" arguments)) + +(defun |setNum(int)| (object &rest arguments) + (%qinvoke-method object nil "setNum(int)" arguments)) + +(defun |setNumColumns| (object &rest arguments) + (%qinvoke-method object nil "setNumColumns" arguments)) + +(defun |setNumberOptions| (object &rest arguments) + (%qinvoke-method object nil "setNumberOptions" arguments)) + +(defun |setNumberPrefix| (object &rest arguments) + (%qinvoke-method object nil "setNumberPrefix" arguments)) + +(defun |setNumberSuffix| (object &rest arguments) + (%qinvoke-method object nil "setNumberSuffix" arguments)) + +(defun |setNumericalPrecisionPolicy| (object &rest arguments) + (%qinvoke-method object nil "setNumericalPrecisionPolicy" arguments)) + +(defun |setNum| (object &rest arguments) + (%qinvoke-method object nil "setNum" arguments)) + +(defun |setObjectCacheCapacities.QWebSettings| (&rest arguments) + (%qinvoke-method "QWebSettings" nil "setObjectCacheCapacities" arguments)) + +(defun |setObjectIndex| (object &rest arguments) + (%qinvoke-method object nil "setObjectIndex" arguments)) + +(defun |setObjectName| (object &rest arguments) + (%qinvoke-method object nil "setObjectName" arguments)) + +(defun |setObjectOwnership.QQmlEngine| (&rest arguments) + (%qinvoke-method "QQmlEngine" nil "setObjectOwnership" arguments)) + +(defun |setObjectType| (object &rest arguments) + (%qinvoke-method object nil "setObjectType" arguments)) + +(defun |setObject| (object &rest arguments) + (%qinvoke-method object nil "setObject" arguments)) + +(defun |setOctMode| (object &rest arguments) + (%qinvoke-method object nil "setOctMode" arguments)) + +(defun |setOfflineStorageDefaultQuota.QWebSettings| (&rest arguments) + (%qinvoke-method "QWebSettings" nil "setOfflineStorageDefaultQuota" arguments)) + +(defun |setOfflineStoragePath.QWebSettings| (&rest arguments) + (%qinvoke-method "QWebSettings" nil "setOfflineStoragePath" arguments)) + +(defun |setOfflineStoragePath| (object &rest arguments) + (%qinvoke-method object nil "setOfflineStoragePath" arguments)) + +(defun |setOfflineWebApplicationCachePath.QWebSettings| (&rest arguments) + (%qinvoke-method "QWebSettings" nil "setOfflineWebApplicationCachePath" arguments)) + +(defun |setOfflineWebApplicationCacheQuota.QWebSettings| (&rest arguments) + (%qinvoke-method "QWebSettings" nil "setOfflineWebApplicationCacheQuota" arguments)) + +(defun |setOffset(QPointF)| (object &rest arguments) + (%qinvoke-method object nil "setOffset(QPointF)" arguments)) + +(defun |setOffset(double)| (object &rest arguments) + (%qinvoke-method object nil "setOffset(double)" arguments)) + +(defun |setOffsetFromUtc| (object &rest arguments) + (%qinvoke-method object nil "setOffsetFromUtc" arguments)) + +(defun |setOffsetToLastSection| (object &rest arguments) + (%qinvoke-method object nil "setOffsetToLastSection" arguments)) + +(defun |setOffsetToSectionPosition| (object &rest arguments) + (%qinvoke-method object nil "setOffsetToSectionPosition" arguments)) + +(defun |setOffset| (object &rest arguments) + (%qinvoke-method object nil "setOffset" arguments)) + +(defun |setOkButtonText| (object &rest arguments) + (%qinvoke-method object nil "setOkButtonText" arguments)) + +(defun |setOpacityMask| (object &rest arguments) + (%qinvoke-method object nil "setOpacityMask" arguments)) + +(defun |setOpacity| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "setOpacity" arguments)) + +(defun |setOpaqueMaterial| (object &rest arguments) + (%qinvoke-method object nil "setOpaqueMaterial" arguments)) + +(defun |setOpaquePainting| (object &rest arguments) + (%qinvoke-method object nil "setOpaquePainting" arguments)) + +(defun |setOpaqueResize| (object &rest arguments) + (%qinvoke-method object nil "setOpaqueResize" arguments)) + +(defun |setOpenExternalLinks| (object &rest arguments) + (%qinvoke-method object nil "setOpenExternalLinks" arguments)) + +(defun |setOpenLinks| (object &rest arguments) + (%qinvoke-method object nil "setOpenLinks" arguments)) + +(defun |setOpenMode| (object &rest arguments) + (%qinvoke-method object nil "setOpenMode" arguments)) + +(defun |setOptimizationFlags| (object &rest arguments) + (%qinvoke-method object nil "setOptimizationFlags" arguments)) + +(defun |setOptimizationFlag| (object &rest arguments) + (%qinvoke-method object nil "setOptimizationFlag" arguments)) + +(defun |setOptionTabs| (object &rest arguments) + (%qinvoke-method object nil "setOptionTabs" arguments)) + +(defun |setOptions| (object &rest arguments) + (%qinvoke-method object nil "setOptions" arguments)) + +(defun |setOption| (object &rest arguments) + (%qinvoke-method object nil "setOption" arguments)) + +(defun |setOrganizationDomain.QCoreApplication| (&rest arguments) + (%qinvoke-method "QCoreApplication" nil "setOrganizationDomain" arguments)) + +(defun |setOrganizationName.QCoreApplication| (&rest arguments) + (%qinvoke-method "QCoreApplication" nil "setOrganizationName" arguments)) + +(defun |setOrientationUpdateMask| (object &rest arguments) + (%qinvoke-method object nil "setOrientationUpdateMask" arguments)) + +(defun |setOrientation| (object &rest arguments) + (%qinvoke-method object nil "setOrientation" arguments)) + +(defun |setOriginCorner| (object &rest arguments) + (%qinvoke-method object nil "setOriginCorner" arguments)) + +(defun |setOriginatingObject| (object &rest arguments) + (%qinvoke-method object nil "setOriginatingObject" arguments)) + +(defun |setOrigin| (object &rest arguments) + (%qinvoke-method object nil "setOrigin" arguments)) + +(defun |setOuterXml| (object &rest arguments) + (%qinvoke-method object nil "setOuterXml" arguments)) + +(defun |setOutputFileName| (object &rest arguments) + (%qinvoke-method object nil "setOutputFileName" arguments)) + +(defun |setOutputFormat| (object &rest arguments) + (%qinvoke-method object nil "setOutputFormat" arguments)) + +(defun |setOutputLocation| (object &rest arguments) + (%qinvoke-method object nil "setOutputLocation" arguments)) + +(defun |setOutputWarningsToStandardError| (object &rest arguments) + (%qinvoke-method object nil "setOutputWarningsToStandardError" arguments)) + +(defun |setOverline| (object &rest arguments) + (%qinvoke-method object nil "setOverline" arguments)) + +(defun |setOverrideCursor.QGuiApplication| (&rest arguments) + (%qinvoke-method "QGuiApplication" nil "setOverrideCursor" arguments)) + +(defun |setOvershoot| (object &rest arguments) + (%qinvoke-method object nil "setOvershoot" arguments)) + +(defun |setOverwriteMode| (object &rest arguments) + (%qinvoke-method object nil "setOverwriteMode" arguments)) + +(defun |setOwnedByLayout| (object &rest arguments) + (%qinvoke-method object nil "setOwnedByLayout" arguments)) + +(defun |setOwnsTexture| (object &rest arguments) + (%qinvoke-method object nil "setOwnsTexture" arguments)) + +(defun |setPadding| (object &rest arguments) + (%qinvoke-method object nil "setPadding" arguments)) + +(defun |setPageBreakPolicy| (object &rest arguments) + (%qinvoke-method object nil "setPageBreakPolicy" arguments)) + +(defun |setPageLayout| (object &rest arguments) + (%qinvoke-method object nil "setPageLayout" arguments)) + +(defun |setPageMargins| (object &rest arguments) + (%qinvoke-method object nil "setPageMargins" arguments)) + +(defun |setPageOrder| (object &rest arguments) + (%qinvoke-method object nil "setPageOrder" arguments)) + +(defun |setPageOrientation| (object &rest arguments) + (%qinvoke-method object nil "setPageOrientation" arguments)) + +(defun |setPageSize(QPageSize)| (object &rest arguments) + (%qinvoke-method object nil "setPageSize(QPageSize)" arguments)) + +(defun |setPageSize(QPagedPaintDevice::PageSize)| (object &rest arguments) + (%qinvoke-method object nil "setPageSize(QPagedPaintDevice::PageSize)" arguments)) + +(defun |setPageSizeMM| (object &rest arguments) + (%qinvoke-method object nil "setPageSizeMM" arguments)) + +(defun |setPageSize| (object &rest arguments) + (%qinvoke-method object nil "setPageSize" arguments)) + +(defun |setPageStep| (object &rest arguments) + (%qinvoke-method object nil "setPageStep" arguments)) + +(defun |setPage| (object &rest arguments) + (%qinvoke-method object nil "setPage" arguments)) + +(defun |setPaintDevice| (object &rest arguments) + (%qinvoke-method object nil "setPaintDevice" arguments)) + +(defun |setPaintFlipped| (object &rest arguments) + (%qinvoke-method object nil "setPaintFlipped" arguments)) + +(defun |setPalette.QApplication| (&rest arguments) + (%qinvoke-method "QApplication" nil "setPalette" arguments)) + +(defun |setPalette.QGuiApplication| (&rest arguments) + (%qinvoke-method "QGuiApplication" nil "setPalette" arguments)) + +(defun |setPalette.QToolTip| (&rest arguments) + (%qinvoke-method "QToolTip" nil "setPalette" arguments)) + +(defun |setPalette| (object &rest arguments) + (%qinvoke-method object nil "setPalette" arguments)) + +(defun |setPanelModality| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "setPanelModality" arguments)) + +(defun |setPaperSource| (object &rest arguments) + (%qinvoke-method object nil "setPaperSource" arguments)) + +(defun |setParentItem| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "setParentItem" arguments)) + +(defun |setParentLayoutItem| (object &rest arguments) + (%qinvoke-method object nil "setParentLayoutItem" arguments)) + +(defun |setParent| (object &rest arguments) + (%qinvoke-method object nil "setParent" arguments)) + +(defun |setPassword| (object &rest arguments) + (%qinvoke-method object nil "setPassword" arguments)) + +(defun |setPatchVertexCount| (object &rest arguments) + (%qinvoke-method object nil "setPatchVertexCount" arguments)) + +(defun |setPath.QSettings| (&rest arguments) + (%qinvoke-method "QSettings" nil "setPath" arguments)) + +(defun |setPath| (object &rest arguments) + (%qinvoke-method object nil "setPath" arguments)) + +(defun |setPatternOptions| (object &rest arguments) + (%qinvoke-method object nil "setPatternOptions" arguments)) + +(defun |setPatternSyntax| (object &rest arguments) + (%qinvoke-method object nil "setPatternSyntax" arguments)) + +(defun |setPattern| (object &rest arguments) + (%qinvoke-method object nil "setPattern" arguments)) + +(defun |setPauseMode| (object &rest arguments) + (%qinvoke-method object nil "setPauseMode" arguments)) + +(defun |setPaused| (object &rest arguments) + (%qinvoke-method object nil "setPaused" arguments)) + +(defun |setPeerAddress| (object &rest arguments) + (%qinvoke-method object nil "setPeerAddress" arguments)) + +(defun |setPeerHostName| (object &rest arguments) + (%qinvoke-method object nil "setPeerHostName" arguments)) + +(defun |setPeerName| (object &rest arguments) + (%qinvoke-method object nil "setPeerName" arguments)) + +(defun |setPeerPort| (object &rest arguments) + (%qinvoke-method object nil "setPeerPort" arguments)) + +(defun |setPeerVerifyDepth| (object &rest arguments) + (%qinvoke-method object nil "setPeerVerifyDepth" arguments)) + +(defun |setPeerVerifyMode| (object &rest arguments) + (%qinvoke-method object nil "setPeerVerifyMode" arguments)) + +(defun |setPen(QColor)| (object &rest arguments) + (%qinvoke-method object nil "setPen(QColor)" arguments)) + +(defun |setPen(QPen)| (object &rest arguments) + (%qinvoke-method object nil "setPen(QPen)" arguments)) + +(defun |setPen(Qt::PenStyle)| (object &rest arguments) + (%qinvoke-method object nil "setPen(Qt::PenStyle)" arguments)) + +(defun |setPen| (object &rest arguments) + (%qinvoke-method object nil "setPen" arguments)) + +(defun |setPerformanceHints| (object &rest arguments) + (%qinvoke-method object nil "setPerformanceHints" arguments)) + +(defun |setPerformanceHint| (object &rest arguments) + (%qinvoke-method object nil "setPerformanceHint" arguments)) + +(defun |setPeriod| (object &rest arguments) + (%qinvoke-method object nil "setPeriod" arguments)) + +(defun |setPermissions.QFile| (&rest arguments) + (%qinvoke-method "QFile" nil "setPermissions" arguments)) + +(defun |setPermissions| (object &rest arguments) + (%qinvoke-method object nil "setPermissions" arguments)) + +(defun |setPersistentOpenGLContext| (object &rest arguments) + (%qinvoke-method object nil "setPersistentOpenGLContext" arguments)) + +(defun |setPersistentSceneGraph| (object &rest arguments) + (%qinvoke-method object nil "setPersistentSceneGraph" arguments)) + +(defun |setPicture| (object &rest arguments) + (%qinvoke-method object nil "setPicture" arguments)) + +(defun |setPixelAspectRatio| (object &rest arguments) + (%qinvoke-method object nil "setPixelAspectRatio" arguments)) + +(defun |setPixelFormat| (object &rest arguments) + (%qinvoke-method object nil "setPixelFormat" arguments)) + +(defun |setPixelSize| (object &rest arguments) + (%qinvoke-method object nil "setPixelSize" arguments)) + +(defun |setPixel| (object &rest arguments) + (%qinvoke-method object nil "setPixel" arguments)) + +(defun |setPixmap| (object &rest arguments) + (%qinvoke-method object nil "setPixmap" arguments)) + +(defun |setPlainText| (object &rest arguments) + (%qinvoke-method object nil "setPlainText" arguments)) + +(defun |setPlaybackMode| (object &rest arguments) + (%qinvoke-method object nil "setPlaybackMode" arguments)) + +(defun |setPlaybackRate| (object &rest arguments) + (%qinvoke-method object nil "setPlaybackRate" arguments)) + +(defun |setPlaylist| (object &rest arguments) + (%qinvoke-method object nil "setPlaylist" arguments)) + +(defun |setPluginFactory| (object &rest arguments) + (%qinvoke-method object nil "setPluginFactory" arguments)) + +(defun |setPluginPathList| (object &rest arguments) + (%qinvoke-method object nil "setPluginPathList" arguments)) + +(defun |setPointSizeF| (object &rest arguments) + (%qinvoke-method object nil "setPointSizeF" arguments)) + +(defun |setPointSize| (object &rest arguments) + (%qinvoke-method object nil "setPointSize" arguments)) + +(defun |setPolygon| (object &rest arguments) + (%qinvoke-method object nil "setPolygon" arguments)) + +(defun |setPopupMode| (object &rest arguments) + (%qinvoke-method object nil "setPopupMode" arguments)) + +(defun |setPopup| (object &rest arguments) + (%qinvoke-method object nil "setPopup" arguments)) + +(defun |setPortraitOrientation| (object &rest arguments) + (%qinvoke-method object nil "setPortraitOrientation" arguments)) + +(defun |setPort| (object &rest arguments) + (%qinvoke-method object nil "setPort" arguments)) + +(defun |setPos(QScreen*...).QCursor| (&rest arguments) + (%qinvoke-method "QCursor" nil "setPos(QScreen*...)" arguments)) + +(defun |setPos(int...).QCursor| (&rest arguments) + (%qinvoke-method "QCursor" nil "setPos(int...)" arguments)) + +(defun |setPos.QCursor| (&rest arguments) + (%qinvoke-method "QCursor" nil "setPos" arguments)) + +(defun |setPositionForIndex| (object &rest arguments) + (%qinvoke-method object nil "setPositionForIndex" arguments)) + +(defun |setPosition| (object &rest arguments) + (%qinvoke-method object nil "setPosition" arguments)) + +(defun |setPos| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "setPos" arguments)) + +(defun |setPrecision| (object &rest arguments) + (%qinvoke-method object nil "setPrecision" arguments)) + +(defun |setPreeditArea| (object &rest arguments) + (%qinvoke-method object nil "setPreeditArea" arguments)) + +(defun |setPreferredContentsSize| (object &rest arguments) + (%qinvoke-method object nil "setPreferredContentsSize" arguments)) + +(defun |setPreferredHeight| (object &rest arguments) + (%qinvoke-method object nil "setPreferredHeight" arguments)) + +(defun |setPreferredSize| (object &rest arguments) + (%qinvoke-method object nil "setPreferredSize" arguments)) + +(defun |setPreferredWidth| (object &rest arguments) + (%qinvoke-method object nil "setPreferredWidth" arguments)) + +(defun |setPrefixLength| (object &rest arguments) + (%qinvoke-method object nil "setPrefixLength" arguments)) + +(defun |setPrefix| (object &rest arguments) + (%qinvoke-method object nil "setPrefix" arguments)) + +(defun |setPreviewWidget| (object &rest arguments) + (%qinvoke-method object nil "setPreviewWidget" arguments)) + +(defun |setPrimaryKey| (object &rest arguments) + (%qinvoke-method object nil "setPrimaryKey" arguments)) + +(defun |setPrintProgram| (object &rest arguments) + (%qinvoke-method object nil "setPrintProgram" arguments)) + +(defun |setPrintRange| (object &rest arguments) + (%qinvoke-method object nil "setPrintRange" arguments)) + +(defun |setPrinterName| (object &rest arguments) + (%qinvoke-method object nil "setPrinterName" arguments)) + +(defun |setPriority| (object &rest arguments) + (%qinvoke-method object nil "setPriority" arguments)) + +(defun |setPrivateKey| (object &rest arguments) + (%qinvoke-method object nil "setPrivateKey" arguments)) + +(defun |setProcessChannelMode| (object &rest arguments) + (%qinvoke-method object nil "setProcessChannelMode" arguments)) + +(defun |setProcessEnvironment| (object &rest arguments) + (%qinvoke-method object nil "setProcessEnvironment" arguments)) + +(defun |setProcessState| (object &rest arguments) + (%qinvoke-method object nil "setProcessState" arguments)) + +(defun |setProfile| (object &rest arguments) + (%qinvoke-method object nil "setProfile" arguments)) + +(defun |setProgram| (object &rest arguments) + (%qinvoke-method object nil "setProgram" arguments)) + +(defun |setProjectionMatrixToRect| (object &rest arguments) + (%qinvoke-method object nil "setProjectionMatrixToRect" arguments)) + +(defun |setProjectionMatrix| (object &rest arguments) + (%qinvoke-method object nil "setProjectionMatrix" arguments)) + +(defun |setProperty(QString...)| (object &rest arguments) + (%qinvoke-method object nil "setProperty(QString...)" arguments)) + +(defun |setProperty(int,QVariant)| (object &rest arguments) + (%qinvoke-method object nil "setProperty(int,QVariant)" arguments)) + +(defun |setProperty(int,QVector)| (object &rest arguments) + (%qinvoke-method object nil "setProperty(int,QVector)" arguments)) + +(defun |setProperty(uint...)| (object &rest arguments) + (%qinvoke-method object nil "setProperty(uint...)" arguments)) + +(defun |setPropertyName| (object &rest arguments) + (%qinvoke-method object nil "setPropertyName" arguments)) + +(defun |setProperty| (object &rest arguments) + (%qinvoke-method object nil "setProperty" arguments)) + +(defun |setProtocolTag| (object &rest arguments) + (%qinvoke-method object nil "setProtocolTag" arguments)) + +(defun |setProtocol| (object &rest arguments) + (%qinvoke-method object nil "setProtocol" arguments)) + +(defun |setPrototype| (object &rest arguments) + (%qinvoke-method object nil "setPrototype" arguments)) + +(defun |setProxyFactory| (object &rest arguments) + (%qinvoke-method object nil "setProxyFactory" arguments)) + +(defun |setProxyModel| (object &rest arguments) + (%qinvoke-method object nil "setProxyModel" arguments)) + +(defun |setProxy| (object &rest arguments) + (%qinvoke-method object nil "setProxy" arguments)) + +(defun |setQuality| (object &rest arguments) + (%qinvoke-method object nil "setQuality" arguments)) + +(defun |setQuery(QSqlQuery)| (object &rest arguments) + (%qinvoke-method object nil "setQuery(QSqlQuery)" arguments)) + +(defun |setQuery(QString)| (object &rest arguments) + (%qinvoke-method object nil "setQuery(QString)" arguments)) + +(defun |setQuery(QUrlQuery)| (object &rest arguments) + (%qinvoke-method object nil "setQuery(QUrlQuery)" arguments)) + +(defun |setQueryType| (object &rest arguments) + (%qinvoke-method object nil "setQueryType" arguments)) + +(defun |setQuery| (object &rest arguments) + (%qinvoke-method object nil "setQuery" arguments)) + +(defun |setQuitLockEnabled.QCoreApplication| (&rest arguments) + (%qinvoke-method "QCoreApplication" nil "setQuitLockEnabled" arguments)) + +(defun |setQuitOnLastWindowClosed.QGuiApplication| (&rest arguments) + (%qinvoke-method "QGuiApplication" nil "setQuitOnLastWindowClosed" arguments)) + +(defun |setRadius| (object &rest arguments) + (%qinvoke-method object nil "setRadius" arguments)) + +(defun |setRangeSelected| (object &rest arguments) + (%qinvoke-method object nil "setRangeSelected" arguments)) + +(defun |setRange| (object &rest arguments) + (%qinvoke-method object nil "setRange" arguments)) + +(defun |setRawHeader| (object &rest arguments) + (%qinvoke-method object nil "setRawHeader" arguments)) + +(defun |setReadBufferSize| (object &rest arguments) + (%qinvoke-method object nil "setReadBufferSize" arguments)) + +(defun |setReadChannel| (object &rest arguments) + (%qinvoke-method object nil "setReadChannel" arguments)) + +(defun |setReadOnly| (object &rest arguments) + (%qinvoke-method object nil "setReadOnly" arguments)) + +(defun |setRecord| (object &rest arguments) + (%qinvoke-method object nil "setRecord" arguments)) + +(defun |setRects| (object &rest arguments) + (%qinvoke-method object nil "setRects" arguments)) + +(defun |setRect| (object &rest arguments) + (%qinvoke-method object nil "setRect" arguments)) + +(defun |setRedBufferSize| (object &rest arguments) + (%qinvoke-method object nil "setRedBufferSize" arguments)) + +(defun |setRedF| (object &rest arguments) + (%qinvoke-method object nil "setRedF" arguments)) + +(defun |setRed| (object &rest arguments) + (%qinvoke-method object nil "setRed" arguments)) + +(defun |setRegExp| (object &rest arguments) + (%qinvoke-method object nil "setRegExp" arguments)) + +(defun |setRelation| (object &rest arguments) + (%qinvoke-method object nil "setRelation" arguments)) + +(defun |setRenderHints| (object &rest arguments) + (%qinvoke-method object nil "setRenderHints" arguments)) + +(defun |setRenderHint| (object &rest arguments) + (%qinvoke-method object nil "setRenderHint" arguments)) + +(defun |setRenderTarget| (object &rest arguments) + (%qinvoke-method object nil "setRenderTarget" arguments)) + +(defun |setRenderableType| (object &rest arguments) + (%qinvoke-method object nil "setRenderableType" arguments)) + +(defun |setRepeatAction| (object &rest arguments) + (%qinvoke-method object nil "setRepeatAction" arguments)) + +(defun |setRequiredStatus| (object &rest arguments) + (%qinvoke-method object nil "setRequiredStatus" arguments)) + +(defun |setRequired| (object &rest arguments) + (%qinvoke-method object nil "setRequired" arguments)) + +(defun |setResizeAnchor| (object &rest arguments) + (%qinvoke-method object nil "setResizeAnchor" arguments)) + +(defun |setResizeContentsPrecision| (object &rest arguments) + (%qinvoke-method object nil "setResizeContentsPrecision" arguments)) + +(defun |setResizeGripsVisible| (object &rest arguments) + (%qinvoke-method object nil "setResizeGripsVisible" arguments)) + +(defun |setResizeMode| (object &rest arguments) + (%qinvoke-method object nil "setResizeMode" arguments)) + +(defun |setResizesToContents| (object &rest arguments) + (%qinvoke-method object nil "setResizesToContents" arguments)) + +(defun |setResolution| (object &rest arguments) + (%qinvoke-method object nil "setResolution" arguments)) + +(defun |setResolveSymlinks| (object &rest arguments) + (%qinvoke-method object nil "setResolveSymlinks" arguments)) + +(defun |setRestartCommand| (object &rest arguments) + (%qinvoke-method object nil "setRestartCommand" arguments)) + (defun |setRestartHint| (object &rest arguments) (%qinvoke-method object nil "setRestartHint" arguments)) @@ -39,6 +912,9 @@ (defun |setRootModelIndex| (object &rest arguments) (%qinvoke-method object nil "setRootModelIndex" arguments)) +(defun |setRootNode| (object &rest arguments) + (%qinvoke-method object nil "setRootNode" arguments)) + (defun |setRootObject.QAccessible| (&rest arguments) (%qinvoke-method "QAccessible" nil "setRootObject" arguments)) @@ -231,6 +1107,9 @@ (defun |setSelection| (object &rest arguments) (%qinvoke-method object nil "setSelection" arguments)) +(defun |setSelector| (object &rest arguments) + (%qinvoke-method object nil "setSelector" arguments)) + (defun |setSenderObject| (object &rest arguments) (%qinvoke-method object nil "setSenderObject" arguments)) @@ -258,9 +1137,6 @@ (defun |setShareContext| (object &rest arguments) (%qinvoke-method object nil "setShareContext" arguments)) -(defun |setSharedRenderer| (object &rest arguments) - (%qinvoke-method object nil "setSharedRenderer" arguments)) - (defun |setSharpeningLevel| (object &rest arguments) (%qinvoke-method object nil "setSharpeningLevel" arguments)) @@ -336,6 +1212,9 @@ (defun |setSmallDecimalPoint| (object &rest arguments) (%qinvoke-method object nil "setSmallDecimalPoint" arguments)) +(defun |setSmooth| (object &rest arguments) + (%qinvoke-method object nil "setSmooth" arguments)) + (defun |setSocketError| (object &rest arguments) (%qinvoke-method object nil "setSocketError" arguments)) @@ -372,9 +1251,15 @@ (defun |setSort| (object &rest arguments) (%qinvoke-method object nil "setSort" arguments)) +(defun |setSourceLocation| (object &rest arguments) + (%qinvoke-method object nil "setSourceLocation" arguments)) + (defun |setSourceModel| (object &rest arguments) (%qinvoke-method object nil "setSourceModel" arguments)) +(defun |setSourceRect| (object &rest arguments) + (%qinvoke-method object nil "setSourceRect" arguments)) + (defun |setSource| (object &rest arguments) (%qinvoke-method object nil "setSource" arguments)) @@ -642,6 +1527,9 @@ (defun |setTargetState| (object &rest arguments) (%qinvoke-method object nil "setTargetState" arguments)) +(defun |setTarget| (object &rest arguments) + (%qinvoke-method object nil "setTarget" arguments)) + (defun |setTearOffEnabled| (object &rest arguments) (%qinvoke-method object nil "setTearOffEnabled" arguments)) @@ -702,6 +1590,12 @@ (defun |setTextWidth| (object &rest arguments) (%qinvoke-method object nil "setTextWidth" arguments)) +(defun |setTextureCoordinatesTransform| (object &rest arguments) + (%qinvoke-method object nil "setTextureCoordinatesTransform" arguments)) + +(defun |setTextureFollowsItemSize| (object &rest arguments) + (%qinvoke-method object nil "setTextureFollowsItemSize" arguments)) + (defun |setTextureImage| (object &rest arguments) (%qinvoke-method object nil "setTextureImage" arguments)) @@ -801,6 +1695,9 @@ (defun |setTransformOriginPoint| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "setTransformOriginPoint" arguments)) +(defun |setTransformOrigin| (object &rest arguments) + (%qinvoke-method object nil "setTransformOrigin" arguments)) + (defun |setTransformationAnchor| (object &rest arguments) (%qinvoke-method object nil "setTransformationAnchor" arguments)) @@ -810,6 +1707,9 @@ (defun |setTransform| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "setTransform" arguments)) +(defun |setTransientParent_helper| (object &rest arguments) + (%qinvoke-method object nil "setTransientParent_helper" arguments)) + (defun |setTransientParent| (object &rest arguments) (%qinvoke-method object nil "setTransientParent" arguments)) @@ -999,6 +1899,9 @@ (defun |setVersion| (object &rest arguments) (%qinvoke-method object nil "setVersion" arguments)) +(defun |setVertexDataPattern| (object &rest arguments) + (%qinvoke-method object nil "setVertexDataPattern" arguments)) + (defun |setVerticalAlignment| (object &rest arguments) (%qinvoke-method object nil "setVerticalAlignment" arguments)) @@ -1035,6 +1938,9 @@ (defun |setVerticalStretch| (object &rest arguments) (%qinvoke-method object nil "setVerticalStretch" arguments)) +(defun |setVerticalWrapMode| (object &rest arguments) + (%qinvoke-method object nil "setVerticalWrapMode" arguments)) + (defun |setVideoBitRate| (object &rest arguments) (%qinvoke-method object nil "setVideoBitRate" arguments)) @@ -1089,6 +1995,12 @@ (defun |setViewportMargins| (object &rest arguments) (%qinvoke-method object nil "setViewportMargins" arguments)) +(defun |setViewportRect(QRect)| (object &rest arguments) + (%qinvoke-method object nil "setViewportRect(QRect)" arguments)) + +(defun |setViewportRect(QSize)| (object &rest arguments) + (%qinvoke-method object nil "setViewportRect(QSize)" arguments)) + (defun |setViewportSize| (object &rest arguments) (%qinvoke-method object nil "setViewportSize" arguments)) @@ -1284,6 +2196,9 @@ (defun |setupViewport| (object &rest arguments) (%qinvoke-method object nil "setupViewport" arguments)) +(defun |setup| (object &rest arguments) + (%qinvoke-method object nil "setup" arguments)) + (defun |shaderDestroyed| (object &rest arguments) (%qinvoke-method object nil "shaderDestroyed" arguments)) @@ -1344,6 +2259,9 @@ (defun |showDropIndicator| (object &rest arguments) (%qinvoke-method object nil "showDropIndicator" arguments)) +(defun |showEvent| (object &rest arguments) + (%qinvoke-method object nil "showEvent" arguments)) + (defun |showExtension| (object &rest arguments) (%qinvoke-method object nil "showExtension" arguments)) @@ -1494,6 +2412,12 @@ (defun |sizeIncrement| (object &rest arguments) (%qinvoke-method object nil "sizeIncrement" arguments)) +(defun |sizeOfIndex| (object &rest arguments) + (%qinvoke-method object nil "sizeOfIndex" arguments)) + +(defun |sizeOfVertex| (object &rest arguments) + (%qinvoke-method object nil "sizeOfVertex" arguments)) + (defun |sizePixels.QPageSize| (&rest arguments) (%qinvoke-method "QPageSize" nil "sizePixels" arguments)) @@ -1542,12 +2466,18 @@ (defun |smallDecimalPoint| (object &rest arguments) (%qinvoke-method object nil "smallDecimalPoint" arguments)) +(defun |smoothChanged| (object &rest arguments) + (%qinvoke-method object nil "smoothChanged" arguments)) + (defun |smoothScaled| (object &rest arguments) (%qinvoke-method object nil "smoothScaled" arguments)) (defun |smoothSizes| (object &rest arguments) (%qinvoke-method object nil "smoothSizes" arguments)) +(defun |smooth| (object &rest arguments) + (%qinvoke-method object nil "smooth" arguments)) + (defun |socketOptions| (object &rest arguments) (%qinvoke-method object nil "socketOptions" arguments)) @@ -1602,6 +2532,9 @@ (defun |sourceCode| (object &rest arguments) (%qinvoke-method object nil "sourceCode" arguments)) +(defun |sourceFile| (object &rest arguments) + (%qinvoke-method object nil "sourceFile" arguments)) + (defun |sourceIsPixmap| (object &rest arguments) (%qinvoke-method object nil "sourceIsPixmap" arguments)) @@ -1611,6 +2544,9 @@ (defun |sourceModel| (object &rest arguments) (%qinvoke-method object nil "sourceModel" arguments)) +(defun |sourceRect| (object &rest arguments) + (%qinvoke-method object nil "sourceRect" arguments)) + (defun |sourceState| (object &rest arguments) (%qinvoke-method object nil "sourceState" arguments)) @@ -1674,6 +2610,9 @@ (defun |sslErrors| (object &rest arguments) (%qinvoke-method object nil "sslErrors" arguments)) +(defun |stackAfter| (object &rest arguments) + (%qinvoke-method object nil "stackAfter" arguments)) + (defun |stackBefore| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "stackBefore" arguments)) @@ -1878,6 +2817,9 @@ (defun |stretch| (object &rest arguments) (%qinvoke-method object nil "stretch" arguments)) +(defun |strictlyEquals| (object &rest arguments) + (%qinvoke-method object nil "strictlyEquals" arguments)) + (defun |strikeOutPos| (object &rest arguments) (%qinvoke-method object nil "strikeOutPos" arguments)) @@ -1887,6 +2829,9 @@ (defun |stringList| (object &rest arguments) (%qinvoke-method object nil "stringList" arguments)) +(defun |stringLiteral| (object &rest arguments) + (%qinvoke-method object nil "stringLiteral" arguments)) + (defun |stringProperty| (object &rest arguments) (%qinvoke-method object nil "stringProperty" arguments)) @@ -2448,6 +3393,9 @@ (defun |textDirection| (object &rest arguments) (%qinvoke-method object nil "textDirection" arguments)) +(defun |textDocument| (object &rest arguments) + (%qinvoke-method object nil "textDocument" arguments)) + (defun |textEchoMode| (object &rest arguments) (%qinvoke-method object nil "textEchoMode" arguments)) @@ -2517,12 +3465,39 @@ (defun |textWidth| (object &rest arguments) (%qinvoke-method object nil "textWidth" arguments)) +(defun |textureByteCount| (object &rest arguments) + (%qinvoke-method object nil "textureByteCount" arguments)) + +(defun |textureChanged| (object &rest arguments) + (%qinvoke-method object nil "textureChanged" arguments)) + +(defun |textureCoordinatesTransform| (object &rest arguments) + (%qinvoke-method object nil "textureCoordinatesTransform" arguments)) + +(defun |textureFactoryForImage.QQuickTextureFactory| (&rest arguments) + (%qinvoke-method "QQuickTextureFactory" nil "textureFactoryForImage" arguments)) + +(defun |textureFactory| (object &rest arguments) + (%qinvoke-method object nil "textureFactory" arguments)) + +(defun |textureFollowsItemSizeChanged| (object &rest arguments) + (%qinvoke-method object nil "textureFollowsItemSizeChanged" arguments)) + +(defun |textureFollowsItemSize| (object &rest arguments) + (%qinvoke-method object nil "textureFollowsItemSize" arguments)) + (defun |textureId| (object &rest arguments) (%qinvoke-method object nil "textureId" arguments)) (defun |textureImage| (object &rest arguments) (%qinvoke-method object nil "textureImage" arguments)) +(defun |textureProvider| (object &rest arguments) + (%qinvoke-method object nil "textureProvider" arguments)) + +(defun |textureSize| (object &rest arguments) + (%qinvoke-method object nil "textureSize" arguments)) + (defun |textureTarget| (object &rest arguments) (%qinvoke-method object nil "textureTarget" arguments)) @@ -2624,978 +3599,3 @@ (defun |toCharFormat| (object &rest arguments) (%qinvoke-method object nil "toCharFormat" arguments)) - -(defun |toChar| (object &rest arguments) - (%qinvoke-method object nil "toChar" arguments)) - -(defun |toCmyk| (object &rest arguments) - (%qinvoke-method object nil "toCmyk" arguments)) - -(defun |toCubicSpline| (object &rest arguments) - (%qinvoke-method object nil "toCubicSpline" arguments)) - -(defun |toCurrencyString(double)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(double)" arguments)) - -(defun |toCurrencyString(double...)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(double...)" arguments)) - -(defun |toCurrencyString(float)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(float)" arguments)) - -(defun |toCurrencyString(float...)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(float...)" arguments)) - -(defun |toCurrencyString(int)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(int)" arguments)) - -(defun |toCurrencyString(int...)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(int...)" arguments)) - -(defun |toCurrencyString(qlonglong)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(qlonglong)" arguments)) - -(defun |toCurrencyString(qlonglong...)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(qlonglong...)" arguments)) - -(defun |toCurrencyString(qulonglong)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(qulonglong)" arguments)) - -(defun |toCurrencyString(qulonglong...)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(qulonglong...)" arguments)) - -(defun |toCurrencyString(short)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(short)" arguments)) - -(defun |toCurrencyString(short...)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(short...)" arguments)) - -(defun |toCurrencyString(uint)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(uint)" arguments)) - -(defun |toCurrencyString(uint...)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(uint...)" arguments)) - -(defun |toCurrencyString(ushort)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(ushort)" arguments)) - -(defun |toCurrencyString(ushort...)| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString(ushort...)" arguments)) - -(defun |toCurrencyString| (object &rest arguments) - (%qinvoke-method object nil "toCurrencyString" arguments)) - -(defun |toDate(QString,QLocale::FormatType)| (object &rest arguments) - (%qinvoke-method object nil "toDate(QString,QLocale::FormatType)" arguments)) - -(defun |toDate(QString,QString)| (object &rest arguments) - (%qinvoke-method object nil "toDate(QString,QString)" arguments)) - -(defun |toDateTime(QString,QLocale::FormatType)| (object &rest arguments) - (%qinvoke-method object nil "toDateTime(QString,QLocale::FormatType)" arguments)) - -(defun |toDateTime(QString,QString)| (object &rest arguments) - (%qinvoke-method object nil "toDateTime(QString,QString)" arguments)) - -(defun |toDateTime| (object &rest arguments) - (%qinvoke-method object nil "toDateTime" arguments)) - -(defun |toDate| (object &rest arguments) - (%qinvoke-method object nil "toDate" arguments)) - -(defun |toDer| (object &rest arguments) - (%qinvoke-method object nil "toDer" arguments)) - -(defun |toDisplayString| (object &rest arguments) - (%qinvoke-method object nil "toDisplayString" arguments)) - -(defun |toDouble(QString)| (object &rest arguments) - (%qinvoke-method object nil "toDouble(QString)" arguments)) - -(defun |toDouble(QString...)| (object &rest arguments) - (%qinvoke-method object nil "toDouble(QString...)" arguments)) - -(defun |toDouble(QStringRef)| (object &rest arguments) - (%qinvoke-method object nil "toDouble(QStringRef)" arguments)) - -(defun |toDouble(QStringRef...)| (object &rest arguments) - (%qinvoke-method object nil "toDouble(QStringRef...)" arguments)) - -(defun |toDouble| (object &rest arguments) - (%qinvoke-method object nil "toDouble" arguments)) - -(defun |toEasingCurve| (object &rest arguments) - (%qinvoke-method object nil "toEasingCurve" arguments)) - -(defun |toEncoded| (object &rest arguments) - (%qinvoke-method object nil "toEncoded" arguments)) - -(defun |toEnd| (object &rest arguments) - (%qinvoke-method object nil "toEnd" arguments)) - -(defun |toEulerAngles| (object &rest arguments) - (%qinvoke-method object nil "toEulerAngles" arguments)) - -(defun |toFillPolygon(QMatrix)| (object &rest arguments) - (%qinvoke-method object nil "toFillPolygon(QMatrix)" arguments)) - -(defun |toFillPolygon(QTransform)| (object &rest arguments) - (%qinvoke-method object nil "toFillPolygon(QTransform)" arguments)) - -(defun |toFillPolygons(QMatrix)| (object &rest arguments) - (%qinvoke-method object nil "toFillPolygons(QMatrix)" arguments)) - -(defun |toFillPolygons(QTransform)| (object &rest arguments) - (%qinvoke-method object nil "toFillPolygons(QTransform)" arguments)) - -(defun |toFillPolygons| (object &rest arguments) - (%qinvoke-method object nil "toFillPolygons" arguments)) - -(defun |toFillPolygon| (object &rest arguments) - (%qinvoke-method object nil "toFillPolygon" arguments)) - -(defun |toFirst| (object &rest arguments) - (%qinvoke-method object nil "toFirst" arguments)) - -(defun |toFloat(QString)| (object &rest arguments) - (%qinvoke-method object nil "toFloat(QString)" arguments)) - -(defun |toFloat(QString...)| (object &rest arguments) - (%qinvoke-method object nil "toFloat(QString...)" arguments)) - -(defun |toFloat(QStringRef)| (object &rest arguments) - (%qinvoke-method object nil "toFloat(QStringRef)" arguments)) - -(defun |toFloat(QStringRef...)| (object &rest arguments) - (%qinvoke-method object nil "toFloat(QStringRef...)" arguments)) - -(defun |toFloat| (object &rest arguments) - (%qinvoke-method object nil "toFloat" arguments)) - -(defun |toFrameFormat| (object &rest arguments) - (%qinvoke-method object nil "toFrameFormat" arguments)) - -(defun |toGraphicsObject| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "toGraphicsObject" arguments)) - -(defun |toHsl| (object &rest arguments) - (%qinvoke-method object nil "toHsl" arguments)) - -(defun |toHsv| (object &rest arguments) - (%qinvoke-method object nil "toHsv" arguments)) - -(defun |toHtml| (object &rest arguments) - (%qinvoke-method object nil "toHtml" arguments)) - -(defun |toIPv4Address| (object &rest arguments) - (%qinvoke-method object nil "toIPv4Address" arguments)) - -(defun |toImageFormat.QImage| (&rest arguments) - (%qinvoke-method "QImage" nil "toImageFormat" arguments)) - -(defun |toImageFormat| (object &rest arguments) - (%qinvoke-method object nil "toImageFormat" arguments)) - -(defun |toImage| (object &rest arguments) - (%qinvoke-method object nil "toImage" arguments)) - -(defun |toInnerXml| (object &rest arguments) - (%qinvoke-method object nil "toInnerXml" arguments)) - -(defun |toInt(QString)| (object &rest arguments) - (%qinvoke-method object nil "toInt(QString)" arguments)) - -(defun |toInt(QString...)| (object &rest arguments) - (%qinvoke-method object nil "toInt(QString...)" arguments)) - -(defun |toInt(QStringRef)| (object &rest arguments) - (%qinvoke-method object nil "toInt(QStringRef)" arguments)) - -(defun |toInt(QStringRef...)| (object &rest arguments) - (%qinvoke-method object nil "toInt(QStringRef...)" arguments)) - -(defun |toInt| (object &rest arguments) - (%qinvoke-method object nil "toInt" arguments)) - -(defun |toJsonArray| (object &rest arguments) - (%qinvoke-method object nil "toJsonArray" arguments)) - -(defun |toJsonDocument| (object &rest arguments) - (%qinvoke-method object nil "toJsonDocument" arguments)) - -(defun |toJsonObject| (object &rest arguments) - (%qinvoke-method object nil "toJsonObject" arguments)) - -(defun |toJsonValue| (object &rest arguments) - (%qinvoke-method object nil "toJsonValue" arguments)) - -(defun |toJulianDay| (object &rest arguments) - (%qinvoke-method object nil "toJulianDay" arguments)) - -(defun |toLast| (object &rest arguments) - (%qinvoke-method object nil "toLast" arguments)) - -(defun |toLineF| (object &rest arguments) - (%qinvoke-method object nil "toLineF" arguments)) - -(defun |toLine| (object &rest arguments) - (%qinvoke-method object nil "toLine" arguments)) - -(defun |toListFormat| (object &rest arguments) - (%qinvoke-method object nil "toListFormat" arguments)) - -(defun |toList| (object &rest arguments) - (%qinvoke-method object nil "toList" arguments)) - -(defun |toLocalFile| (object &rest arguments) - (%qinvoke-method object nil "toLocalFile" arguments)) - -(defun |toLocalTime| (object &rest arguments) - (%qinvoke-method object nil "toLocalTime" arguments)) - -(defun |toLocale| (object &rest arguments) - (%qinvoke-method object nil "toLocale" arguments)) - -(defun |toLongLong(QString)| (object &rest arguments) - (%qinvoke-method object nil "toLongLong(QString)" arguments)) - -(defun |toLongLong(QString...)| (object &rest arguments) - (%qinvoke-method object nil "toLongLong(QString...)" arguments)) - -(defun |toLongLong(QStringRef)| (object &rest arguments) - (%qinvoke-method object nil "toLongLong(QStringRef)" arguments)) - -(defun |toLongLong(QStringRef...)| (object &rest arguments) - (%qinvoke-method object nil "toLongLong(QStringRef...)" arguments)) - -(defun |toLongLong| (object &rest arguments) - (%qinvoke-method object nil "toLongLong" arguments)) - -(defun |toLower| (object &rest arguments) - (%qinvoke-method object nil "toLower" arguments)) - -(defun |toMSecsSinceEpoch| (object &rest arguments) - (%qinvoke-method object nil "toMSecsSinceEpoch" arguments)) - -(defun |toMargins| (object &rest arguments) - (%qinvoke-method object nil "toMargins" arguments)) - -(defun |toModelIndex| (object &rest arguments) - (%qinvoke-method object nil "toModelIndex" arguments)) - -(defun |toNativeSeparators.QDir| (&rest arguments) - (%qinvoke-method "QDir" nil "toNativeSeparators" arguments)) - -(defun |toNextBoundary| (object &rest arguments) - (%qinvoke-method object nil "toNextBoundary" arguments)) - -(defun |toNext| (object &rest arguments) - (%qinvoke-method object nil "toNext" arguments)) - -(defun |toOffsetFromUtc| (object &rest arguments) - (%qinvoke-method object nil "toOffsetFromUtc" arguments)) - -(defun |toOuterXml| (object &rest arguments) - (%qinvoke-method object nil "toOuterXml" arguments)) - -(defun |toPage| (object &rest arguments) - (%qinvoke-method object nil "toPage" arguments)) - -(defun |toPem| (object &rest arguments) - (%qinvoke-method object nil "toPem" arguments)) - -(defun |toPercentEncoding.QUrl| (&rest arguments) - (%qinvoke-method "QUrl" nil "toPercentEncoding" arguments)) - -(defun |toPersistentModelIndex| (object &rest arguments) - (%qinvoke-method object nil "toPersistentModelIndex" arguments)) - -(defun |toPixelFormat.QImage| (&rest arguments) - (%qinvoke-method "QImage" nil "toPixelFormat" arguments)) - -(defun |toPlainText| (object &rest arguments) - (%qinvoke-method object nil "toPlainText" arguments)) - -(defun |toPointF| (object &rest arguments) - (%qinvoke-method object nil "toPointF" arguments)) - -(defun |toPoint| (object &rest arguments) - (%qinvoke-method object nil "toPoint" arguments)) - -(defun |toPreviousBoundary| (object &rest arguments) - (%qinvoke-method object nil "toPreviousBoundary" arguments)) - -(defun |toPrevious| (object &rest arguments) - (%qinvoke-method object nil "toPrevious" arguments)) - -(defun |toRawForm| (object &rest arguments) - (%qinvoke-method object nil "toRawForm" arguments)) - -(defun |toReal| (object &rest arguments) - (%qinvoke-method object nil "toReal" arguments)) - -(defun |toRectF| (object &rest arguments) - (%qinvoke-method object nil "toRectF" arguments)) - -(defun |toRect| (object &rest arguments) - (%qinvoke-method object nil "toRect" arguments)) - -(defun |toRegExp| (object &rest arguments) - (%qinvoke-method object nil "toRegExp" arguments)) - -(defun |toRegularExpression| (object &rest arguments) - (%qinvoke-method object nil "toRegularExpression" arguments)) - -(defun |toReversed| (object &rest arguments) - (%qinvoke-method object nil "toReversed" arguments)) - -(defun |toRfc4122| (object &rest arguments) - (%qinvoke-method object nil "toRfc4122" arguments)) - -(defun |toRgb| (object &rest arguments) - (%qinvoke-method object nil "toRgb" arguments)) - -(defun |toShort(QString)| (object &rest arguments) - (%qinvoke-method object nil "toShort(QString)" arguments)) - -(defun |toShort(QString...)| (object &rest arguments) - (%qinvoke-method object nil "toShort(QString...)" arguments)) - -(defun |toShort(QStringRef)| (object &rest arguments) - (%qinvoke-method object nil "toShort(QStringRef)" arguments)) - -(defun |toShort(QStringRef...)| (object &rest arguments) - (%qinvoke-method object nil "toShort(QStringRef...)" arguments)) - -(defun |toShort| (object &rest arguments) - (%qinvoke-method object nil "toShort" arguments)) - -(defun |toSizeF| (object &rest arguments) - (%qinvoke-method object nil "toSizeF" arguments)) - -(defun |toSize| (object &rest arguments) - (%qinvoke-method object nil "toSize" arguments)) - -(defun |toStart| (object &rest arguments) - (%qinvoke-method object nil "toStart" arguments)) - -(defun |toString(QDate)| (object &rest arguments) - (%qinvoke-method object nil "toString(QDate)" arguments)) - -(defun |toString(QDate,QLocale::FormatType)| (object &rest arguments) - (%qinvoke-method object nil "toString(QDate,QLocale::FormatType)" arguments)) - -(defun |toString(QDate,QString)| (object &rest arguments) - (%qinvoke-method object nil "toString(QDate,QString)" arguments)) - -(defun |toString(QDate...)| (object &rest arguments) - (%qinvoke-method object nil "toString(QDate...)" arguments)) - -(defun |toString(QDateTime)| (object &rest arguments) - (%qinvoke-method object nil "toString(QDateTime)" arguments)) - -(defun |toString(QDateTime,QLocale::FormatType)| (object &rest arguments) - (%qinvoke-method object nil "toString(QDateTime,QLocale::FormatType)" arguments)) - -(defun |toString(QDateTime,QString)| (object &rest arguments) - (%qinvoke-method object nil "toString(QDateTime,QString)" arguments)) - -(defun |toString(QDateTime...)| (object &rest arguments) - (%qinvoke-method object nil "toString(QDateTime...)" arguments)) - -(defun |toString(QString)| (object &rest arguments) - (%qinvoke-method object nil "toString(QString)" arguments)) - -(defun |toString(QTime)| (object &rest arguments) - (%qinvoke-method object nil "toString(QTime)" arguments)) - -(defun |toString(QTime,QLocale::FormatType)| (object &rest arguments) - (%qinvoke-method object nil "toString(QTime,QLocale::FormatType)" arguments)) - -(defun |toString(QTime,QString)| (object &rest arguments) - (%qinvoke-method object nil "toString(QTime,QString)" arguments)) - -(defun |toString(QTime...)| (object &rest arguments) - (%qinvoke-method object nil "toString(QTime...)" arguments)) - -(defun |toString(Qt::DateFormat)| (object &rest arguments) - (%qinvoke-method object nil "toString(Qt::DateFormat)" arguments)) - -(defun |toString(double)| (object &rest arguments) - (%qinvoke-method object nil "toString(double)" arguments)) - -(defun |toString(double...)| (object &rest arguments) - (%qinvoke-method object nil "toString(double...)" arguments)) - -(defun |toString(float)| (object &rest arguments) - (%qinvoke-method object nil "toString(float)" arguments)) - -(defun |toString(float...)| (object &rest arguments) - (%qinvoke-method object nil "toString(float...)" arguments)) - -(defun |toString(int)| (object &rest arguments) - (%qinvoke-method object nil "toString(int)" arguments)) - -(defun |toString(qlonglong)| (object &rest arguments) - (%qinvoke-method object nil "toString(qlonglong)" arguments)) - -(defun |toString(qulonglong)| (object &rest arguments) - (%qinvoke-method object nil "toString(qulonglong)" arguments)) - -(defun |toString(short)| (object &rest arguments) - (%qinvoke-method object nil "toString(short)" arguments)) - -(defun |toString(uint)| (object &rest arguments) - (%qinvoke-method object nil "toString(uint)" arguments)) - -(defun |toString(ushort)| (object &rest arguments) - (%qinvoke-method object nil "toString(ushort)" arguments)) - -(defun |toStringList.QUrl| (&rest arguments) - (%qinvoke-method "QUrl" nil "toStringList" arguments)) - -(defun |toStringList| (object &rest arguments) - (%qinvoke-method object nil "toStringList" arguments)) - -(defun |toString| (object &rest arguments) - (%qinvoke-method object nil "toString" arguments)) - -(defun |toSubpathPolygons(QMatrix)| (object &rest arguments) - (%qinvoke-method object nil "toSubpathPolygons(QMatrix)" arguments)) - -(defun |toSubpathPolygons(QTransform)| (object &rest arguments) - (%qinvoke-method object nil "toSubpathPolygons(QTransform)" arguments)) - -(defun |toSubpathPolygons| (object &rest arguments) - (%qinvoke-method object nil "toSubpathPolygons" arguments)) - -(defun |toTableCellFormat| (object &rest arguments) - (%qinvoke-method object nil "toTableCellFormat" arguments)) - -(defun |toTableFormat| (object &rest arguments) - (%qinvoke-method object nil "toTableFormat" arguments)) - -(defun |toText| (object &rest arguments) - (%qinvoke-method object nil "toText" arguments)) - -(defun |toTime(QString,QLocale::FormatType)| (object &rest arguments) - (%qinvoke-method object nil "toTime(QString,QLocale::FormatType)" arguments)) - -(defun |toTime(QString,QString)| (object &rest arguments) - (%qinvoke-method object nil "toTime(QString,QString)" arguments)) - -(defun |toTimeSpec| (object &rest arguments) - (%qinvoke-method object nil "toTimeSpec" arguments)) - -(defun |toTimeZone| (object &rest arguments) - (%qinvoke-method object nil "toTimeZone" arguments)) - -(defun |toTime_t| (object &rest arguments) - (%qinvoke-method object nil "toTime_t" arguments)) - -(defun |toTime| (object &rest arguments) - (%qinvoke-method object nil "toTime" arguments)) - -(defun |toTransform| (object &rest arguments) - (%qinvoke-method object nil "toTransform" arguments)) - -(defun |toUInt(QString)| (object &rest arguments) - (%qinvoke-method object nil "toUInt(QString)" arguments)) - -(defun |toUInt(QString...)| (object &rest arguments) - (%qinvoke-method object nil "toUInt(QString...)" arguments)) - -(defun |toUInt(QStringRef)| (object &rest arguments) - (%qinvoke-method object nil "toUInt(QStringRef)" arguments)) - -(defun |toUInt(QStringRef...)| (object &rest arguments) - (%qinvoke-method object nil "toUInt(QStringRef...)" arguments)) - -(defun |toUInt| (object &rest arguments) - (%qinvoke-method object nil "toUInt" arguments)) - -(defun |toULongLong(QString)| (object &rest arguments) - (%qinvoke-method object nil "toULongLong(QString)" arguments)) - -(defun |toULongLong(QString...)| (object &rest arguments) - (%qinvoke-method object nil "toULongLong(QString...)" arguments)) - -(defun |toULongLong(QStringRef)| (object &rest arguments) - (%qinvoke-method object nil "toULongLong(QStringRef)" arguments)) - -(defun |toULongLong(QStringRef...)| (object &rest arguments) - (%qinvoke-method object nil "toULongLong(QStringRef...)" arguments)) - -(defun |toULongLong| (object &rest arguments) - (%qinvoke-method object nil "toULongLong" arguments)) - -(defun |toUShort(QString)| (object &rest arguments) - (%qinvoke-method object nil "toUShort(QString)" arguments)) - -(defun |toUShort(QString...)| (object &rest arguments) - (%qinvoke-method object nil "toUShort(QString...)" arguments)) - -(defun |toUShort(QStringRef)| (object &rest arguments) - (%qinvoke-method object nil "toUShort(QStringRef)" arguments)) - -(defun |toUShort(QStringRef...)| (object &rest arguments) - (%qinvoke-method object nil "toUShort(QStringRef...)" arguments)) - -(defun |toUShort| (object &rest arguments) - (%qinvoke-method object nil "toUShort" arguments)) - -(defun |toUTC| (object &rest arguments) - (%qinvoke-method object nil "toUTC" arguments)) - -(defun |toUnicode(QByteArray)| (object &rest arguments) - (%qinvoke-method object nil "toUnicode(QByteArray)" arguments)) - -(defun |toUnicode(const char*)| (object &rest arguments) - (%qinvoke-method object nil "toUnicode(const char*)" arguments)) - -(defun |toUnicode| (object &rest arguments) - (%qinvoke-method object nil "toUnicode" arguments)) - -(defun |toUpper| (object &rest arguments) - (%qinvoke-method object nil "toUpper" arguments)) - -(defun |toUrl| (object &rest arguments) - (%qinvoke-method object nil "toUrl" arguments)) - -(defun |toUuid| (object &rest arguments) - (%qinvoke-method object nil "toUuid" arguments)) - -(defun |toVector2DAffine| (object &rest arguments) - (%qinvoke-method object nil "toVector2DAffine" arguments)) - -(defun |toVector2D| (object &rest arguments) - (%qinvoke-method object nil "toVector2D" arguments)) - -(defun |toVector3DAffine| (object &rest arguments) - (%qinvoke-method object nil "toVector3DAffine" arguments)) - -(defun |toVector3D| (object &rest arguments) - (%qinvoke-method object nil "toVector3D" arguments)) - -(defun |toVector4D| (object &rest arguments) - (%qinvoke-method object nil "toVector4D" arguments)) - -(defun |toggleBit| (object &rest arguments) - (%qinvoke-method object nil "toggleBit" arguments)) - -(defun |toggleClass| (object &rest arguments) - (%qinvoke-method object nil "toggleClass" arguments)) - -(defun |toggleDirection| (object &rest arguments) - (%qinvoke-method object nil "toggleDirection" arguments)) - -(defun |toggleViewAction| (object &rest arguments) - (%qinvoke-method object nil "toggleViewAction" arguments)) - -(defun |toggled| (object &rest arguments) - (%qinvoke-method object nil "toggled" arguments)) - -(defun |toggle| (object &rest arguments) - (%qinvoke-method object nil "toggle" arguments)) - -(defun |toolBarArea| (object &rest arguments) - (%qinvoke-method object nil "toolBarArea" arguments)) - -(defun |toolBarBreak| (object &rest arguments) - (%qinvoke-method object nil "toolBarBreak" arguments)) - -(defun |toolBarVisibilityChangeRequested| (object &rest arguments) - (%qinvoke-method object nil "toolBarVisibilityChangeRequested" arguments)) - -(defun |toolButtonStyleChanged| (object &rest arguments) - (%qinvoke-method object nil "toolButtonStyleChanged" arguments)) - -(defun |toolButtonStyle| (object &rest arguments) - (%qinvoke-method object nil "toolButtonStyle" arguments)) - -(defun |toolTipBase| (object &rest arguments) - (%qinvoke-method object nil "toolTipBase" arguments)) - -(defun |toolTipDuration| (object &rest arguments) - (%qinvoke-method object nil "toolTipDuration" arguments)) - -(defun |toolTipText| (object &rest arguments) - (%qinvoke-method object nil "toolTipText" arguments)) - -(defun |toolTipsVisible| (object &rest arguments) - (%qinvoke-method object nil "toolTipsVisible" arguments)) - -(defun |toolTip| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "toolTip" arguments)) - -(defun |topChanged| (object &rest arguments) - (%qinvoke-method object nil "topChanged" arguments)) - -(defun |topLeft| (object &rest arguments) - (%qinvoke-method object nil "topLeft" arguments)) - -(defun |topLevelAt.QApplication| (&rest arguments) - (%qinvoke-method "QApplication" nil "topLevelAt" arguments)) - -(defun |topLevelAt.QGuiApplication| (&rest arguments) - (%qinvoke-method "QGuiApplication" nil "topLevelAt" arguments)) - -(defun |topLevelChanged| (object &rest arguments) - (%qinvoke-method object nil "topLevelChanged" arguments)) - -(defun |topLevelDomain| (object &rest arguments) - (%qinvoke-method object nil "topLevelDomain" arguments)) - -(defun |topLevelItemCount| (object &rest arguments) - (%qinvoke-method object nil "topLevelItemCount" arguments)) - -(defun |topLevelItem| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "topLevelItem" arguments)) - -(defun |topLevelWidgets.QApplication| (&rest arguments) - (%qinvoke-method "QApplication" nil "topLevelWidgets" arguments)) - -(defun |topLevelWidget| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "topLevelWidget" arguments)) - -(defun |topLevelWindows.QGuiApplication| (&rest arguments) - (%qinvoke-method "QGuiApplication" nil "topLevelWindows" arguments)) - -(defun |topMargin| (object &rest arguments) - (%qinvoke-method object nil "topMargin" arguments)) - -(defun |topPadding| (object &rest arguments) - (%qinvoke-method object nil "topPadding" arguments)) - -(defun |topRow| (object &rest arguments) - (%qinvoke-method object nil "topRow" arguments)) - -(defun |top| (object &rest arguments) - (%qinvoke-method object nil "top" arguments)) - -(defun |totalBytes| (object &rest arguments) - (%qinvoke-method object nil "totalBytes" arguments)) - -(defun |totalChangeFlags| (object &rest arguments) - (%qinvoke-method object nil "totalChangeFlags" arguments)) - -(defun |totalDuration| (object &rest arguments) - (%qinvoke-method object nil "totalDuration" arguments)) - -(defun |totalRotationAngle| (object &rest arguments) - (%qinvoke-method object nil "totalRotationAngle" arguments)) - -(defun |totalScaleFactor| (object &rest arguments) - (%qinvoke-method object nil "totalScaleFactor" arguments)) - -(defun |touchPointStates| (object &rest arguments) - (%qinvoke-method object nil "touchPointStates" arguments)) - -(defun |touchPoints| (object &rest arguments) - (%qinvoke-method object nil "touchPoints" arguments)) - -(defun |tr.QObject| (&rest arguments) - (%qinvoke-method "QObject" nil "tr" arguments)) - -(defun |transaction| (object &rest arguments) - (%qinvoke-method object nil "transaction" arguments)) - -(defun |transformBetween| (object &rest arguments) - (%qinvoke-method object nil "transformBetween" arguments)) - -(defun |transformOriginPoint| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "transformOriginPoint" arguments)) - -(defun |transformationAnchor| (object &rest arguments) - (%qinvoke-method object nil "transformationAnchor" arguments)) - -(defun |transformationMode| (object &rest arguments) - (%qinvoke-method object nil "transformationMode" arguments)) - -(defun |transformed(QMatrix)| (object &rest arguments) - (%qinvoke-method object nil "transformed(QMatrix)" arguments)) - -(defun |transformed(QMatrix...)| (object &rest arguments) - (%qinvoke-method object nil "transformed(QMatrix...)" arguments)) - -(defun |transformed(QTransform)| (object &rest arguments) - (%qinvoke-method object nil "transformed(QTransform)" arguments)) - -(defun |transformed(QTransform...)| (object &rest arguments) - (%qinvoke-method object nil "transformed(QTransform...)" arguments)) - -(defun |transformed| (object &rest arguments) - (%qinvoke-method object nil "transformed" arguments)) - -(defun |transform| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "transform" arguments)) - -(defun |transientParent| (object &rest arguments) - (%qinvoke-method object nil "transientParent" arguments)) - -(defun |transitionType| (object &rest arguments) - (%qinvoke-method object nil "transitionType" arguments)) - -(defun |transitions| (object &rest arguments) - (%qinvoke-method object nil "transitions" arguments)) - -(defun |translate(QPoint)| (object &rest arguments) - (%qinvoke-method object nil "translate(QPoint)" arguments)) - -(defun |translate(QPointF)| (object &rest arguments) - (%qinvoke-method object nil "translate(QPointF)" arguments)) - -(defun |translate.QCoreApplication| (&rest arguments) - (%qinvoke-method "QCoreApplication" nil "translate" arguments)) - -(defun |translated| (object &rest arguments) - (%qinvoke-method object nil "translated" arguments)) - -(defun |translate| (object &rest arguments) - (%qinvoke-method object nil "translate" arguments)) - -(defun |transposed| (object &rest arguments) - (%qinvoke-method object nil "transposed" arguments)) - -(defun |transpose| (object &rest arguments) - (%qinvoke-method object nil "transpose" arguments)) - -(defun |treePosition| (object &rest arguments) - (%qinvoke-method object nil "treePosition" arguments)) - -(defun |treeWidget| (object &rest arguments) - (%qinvoke-method object nil "treeWidget" arguments)) - -(defun |triggerAction| (object &rest arguments) - (%qinvoke-method object nil "triggerAction" arguments)) - -(defun |triggerPageAction| (object &rest arguments) - (%qinvoke-method object nil "triggerPageAction" arguments)) - -(defun |triggered| (object &rest arguments) - (%qinvoke-method object nil "triggered" arguments)) - -(defun |trigger| (object &rest arguments) - (%qinvoke-method object nil "trigger" arguments)) - -(defun |trueMatrix(QMatrix...).QImage| (&rest arguments) - (%qinvoke-method "QImage" nil "trueMatrix(QMatrix...)" arguments)) - -(defun |trueMatrix(QMatrix...).QPixmap| (&rest arguments) - (%qinvoke-method "QPixmap" nil "trueMatrix(QMatrix...)" arguments)) - -(defun |trueMatrix(QTransform...).QImage| (&rest arguments) - (%qinvoke-method "QImage" nil "trueMatrix(QTransform...)" arguments)) - -(defun |trueMatrix(QTransform...).QPixmap| (&rest arguments) - (%qinvoke-method "QPixmap" nil "trueMatrix(QTransform...)" arguments)) - -(defun |trueMatrix.QImage| (&rest arguments) - (%qinvoke-method "QImage" nil "trueMatrix" arguments)) - -(defun |trueMatrix.QPixmap| (&rest arguments) - (%qinvoke-method "QPixmap" nil "trueMatrix" arguments)) - -(defun |truncate| (object &rest arguments) - (%qinvoke-method object nil "truncate" arguments)) - -(defun |tryAcquire| (object &rest arguments) - (%qinvoke-method object nil "tryAcquire" arguments)) - -(defun |typeName| (object &rest arguments) - (%qinvoke-method object nil "typeName" arguments)) - -(defun |typeToName.QVariant| (&rest arguments) - (%qinvoke-method "QVariant" nil "typeToName" arguments)) - -(defun |type| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "type" arguments)) - -(defun |uiLanguages| (object &rest arguments) - (%qinvoke-method object nil "uiLanguages" arguments)) - -(defun |unbind| (object &rest arguments) - (%qinvoke-method object nil "unbind" arguments)) - -(defun |underMouse| (object &rest arguments) - (%qinvoke-method object nil "underMouse" arguments)) - -(defun |underlineColor| (object &rest arguments) - (%qinvoke-method object nil "underlineColor" arguments)) - -(defun |underlinePos| (object &rest arguments) - (%qinvoke-method object nil "underlinePos" arguments)) - -(defun |underlineStyle| (object &rest arguments) - (%qinvoke-method object nil "underlineStyle" arguments)) - -(defun |underline| (object &rest arguments) - (%qinvoke-method object nil "underline" arguments)) - -(defun |undoAvailable| (object &rest arguments) - (%qinvoke-method object nil "undoAvailable" arguments)) - -(defun |undoCommandAdded| (object &rest arguments) - (%qinvoke-method object nil "undoCommandAdded" arguments)) - -(defun |undoLimit| (object &rest arguments) - (%qinvoke-method object nil "undoLimit" arguments)) - -(defun |undoStack| (object &rest arguments) - (%qinvoke-method object nil "undoStack" arguments)) - -(defun |undoTextChanged| (object &rest arguments) - (%qinvoke-method object nil "undoTextChanged" arguments)) - -(defun |undoText| (object &rest arguments) - (%qinvoke-method object nil "undoText" arguments)) - -(defun |undo| (object &rest arguments) - (%qinvoke-method object nil "undo" arguments)) - -(defun |ungetChar| (object &rest arguments) - (%qinvoke-method object nil "ungetChar" arguments)) - -(defun |ungrabGesture| (object &rest arguments) - (%qinvoke-method object nil "ungrabGesture" arguments)) - -(defun |ungrabKeyboard| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "ungrabKeyboard" arguments)) - -(defun |ungrabMouse| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "ungrabMouse" arguments)) - -(defun |unifiedTitleAndToolBarOnMac| (object &rest arguments) - (%qinvoke-method object nil "unifiedTitleAndToolBarOnMac" arguments)) - -(defun |uniformItemSizes| (object &rest arguments) - (%qinvoke-method object nil "uniformItemSizes" arguments)) - -(defun |uniformLocation(QByteArray)| (object &rest arguments) - (%qinvoke-method object nil "uniformLocation(QByteArray)" arguments)) - -(defun |uniformLocation(QString)| (object &rest arguments) - (%qinvoke-method object nil "uniformLocation(QString)" arguments)) - -(defun |uniformLocation(const char*)| (object &rest arguments) - (%qinvoke-method object nil "uniformLocation(const char*)" arguments)) - -(defun |uniformLocation| (object &rest arguments) - (%qinvoke-method object nil "uniformLocation" arguments)) - -(defun |uniformRowHeights| (object &rest arguments) - (%qinvoke-method object nil "uniformRowHeights" arguments)) - -(defun |uniqueId.QAccessible| (&rest arguments) - (%qinvoke-method "QAccessible" nil "uniqueId" arguments)) - -(defun |uniqueId| (object &rest arguments) - (%qinvoke-method object nil "uniqueId" arguments)) - -(defun |united(QRect)| (object &rest arguments) - (%qinvoke-method object nil "united(QRect)" arguments)) - -(defun |united(QRegion)| (object &rest arguments) - (%qinvoke-method object nil "united(QRegion)" arguments)) - -(defun |united| (object &rest arguments) - (%qinvoke-method object nil "united" arguments)) - -(defun |units| (object &rest arguments) - (%qinvoke-method object nil "units" arguments)) - -(defun |unload| (object &rest arguments) - (%qinvoke-method object nil "unload" arguments)) - -(defun |unlock| (object &rest arguments) - (%qinvoke-method object nil "unlock" arguments)) - -(defun |unmap| (object &rest arguments) - (%qinvoke-method object nil "unmap" arguments)) - -(defun |unpolish(QApplication*)| (object &rest arguments) - (%qinvoke-method object nil "unpolish(QApplication*)" arguments)) - -(defun |unpolish(QWidget*)| (object &rest arguments) - (%qinvoke-method object nil "unpolish(QWidget*)" arguments)) - -(defun |unpolish| (object &rest arguments) - (%qinvoke-method object nil "unpolish" arguments)) - -(defun |unproject| (object &rest arguments) - (%qinvoke-method object nil "unproject" arguments)) - -(defun |unregisterDocumentation| (object &rest arguments) - (%qinvoke-method object nil "unregisterDocumentation" arguments)) - -(defun |unsetCursor| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "unsetCursor" arguments)) - -(defun |unsetError| (object &rest arguments) - (%qinvoke-method object nil "unsetError" arguments)) - -(defun |unsetHotSpot| (object &rest arguments) - (%qinvoke-method object nil "unsetHotSpot" arguments)) - -(defun |unsetLayoutDirection| (object &rest arguments) - (%qinvoke-method object nil "unsetLayoutDirection" arguments)) - -(defun |unsetLocale| (object &rest arguments) - (%qinvoke-method object nil "unsetLocale" arguments)) - -(defun |unsetSpacing| (object &rest arguments) - (%qinvoke-method object nil "unsetSpacing" arguments)) - -(defun |unsetWindowFrameMargins| (object &rest arguments) - (%qinvoke-method object nil "unsetWindowFrameMargins" arguments)) - -(defun |unsubscribeFromNotification| (object &rest arguments) - (%qinvoke-method object nil "unsubscribeFromNotification" arguments)) - -(defun |unsupportedContent| (object &rest arguments) - (%qinvoke-method object nil "unsupportedContent" arguments)) - -(defun |update(QRect)| (object &rest arguments) - (%qinvoke-method object nil "update(QRect)" arguments)) - -(defun |update(QRegion)| (object &rest arguments) - (%qinvoke-method object nil "update(QRegion)" arguments)) - -(defun |updateAccessibility.QAccessible| (&rest arguments) - (%qinvoke-method "QAccessible" nil "updateAccessibility" arguments)) - -(defun |updateBehavior| (object &rest arguments) - (%qinvoke-method object nil "updateBehavior" arguments)) - -(defun |updateBlock| (object &rest arguments) - (%qinvoke-method object nil "updateBlock" arguments)) - -(defun |updateBoundingRect| (object &rest arguments) - (%qinvoke-method object nil "updateBoundingRect" arguments)) - -(defun |updateCells| (object &rest arguments) - (%qinvoke-method object nil "updateCells" arguments)) - -(defun |updateCell| (object &rest arguments) - (%qinvoke-method object nil "updateCell" arguments)) - -(defun |updateCookie| (object &rest arguments) - (%qinvoke-method object nil "updateCookie" arguments)) - -(defun |updateEditorData| (object &rest arguments) - (%qinvoke-method object nil "updateEditorData" arguments)) - -(defun |updateEditorGeometries| (object &rest arguments) - (%qinvoke-method object nil "updateEditorGeometries" arguments)) - -(defun |updateEditorGeometry| (object &rest arguments) - (%qinvoke-method object nil "updateEditorGeometry" arguments)) - -(defun |updateGeometries| (object &rest arguments) - (%qinvoke-method object nil "updateGeometries" arguments)) - -(defun |updateGeometry| (object &rest arguments) - (%qinvoke-method object nil "updateGeometry" arguments)) - -(defun |updateInterval| (object &rest arguments) - (%qinvoke-method object nil "updateInterval" arguments)) diff --git a/src/lisp/all-wrappers-12.lisp b/src/lisp/all-wrappers-12.lisp index 4f5d290..bf425ec 100644 --- a/src/lisp/all-wrappers-12.lisp +++ b/src/lisp/all-wrappers-12.lisp @@ -1,5 +1,1010 @@ (in-package :eql) +(defun |toChar| (object &rest arguments) + (%qinvoke-method object nil "toChar" arguments)) + +(defun |toCmyk| (object &rest arguments) + (%qinvoke-method object nil "toCmyk" arguments)) + +(defun |toCubicSpline| (object &rest arguments) + (%qinvoke-method object nil "toCubicSpline" arguments)) + +(defun |toCurrencyString(double)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(double)" arguments)) + +(defun |toCurrencyString(double...)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(double...)" arguments)) + +(defun |toCurrencyString(float)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(float)" arguments)) + +(defun |toCurrencyString(float...)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(float...)" arguments)) + +(defun |toCurrencyString(int)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(int)" arguments)) + +(defun |toCurrencyString(int...)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(int...)" arguments)) + +(defun |toCurrencyString(qlonglong)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(qlonglong)" arguments)) + +(defun |toCurrencyString(qlonglong...)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(qlonglong...)" arguments)) + +(defun |toCurrencyString(qulonglong)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(qulonglong)" arguments)) + +(defun |toCurrencyString(qulonglong...)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(qulonglong...)" arguments)) + +(defun |toCurrencyString(short)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(short)" arguments)) + +(defun |toCurrencyString(short...)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(short...)" arguments)) + +(defun |toCurrencyString(uint)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(uint)" arguments)) + +(defun |toCurrencyString(uint...)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(uint...)" arguments)) + +(defun |toCurrencyString(ushort)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(ushort)" arguments)) + +(defun |toCurrencyString(ushort...)| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString(ushort...)" arguments)) + +(defun |toCurrencyString| (object &rest arguments) + (%qinvoke-method object nil "toCurrencyString" arguments)) + +(defun |toDate(QString,QLocale::FormatType)| (object &rest arguments) + (%qinvoke-method object nil "toDate(QString,QLocale::FormatType)" arguments)) + +(defun |toDate(QString,QString)| (object &rest arguments) + (%qinvoke-method object nil "toDate(QString,QString)" arguments)) + +(defun |toDateTime(QString,QLocale::FormatType)| (object &rest arguments) + (%qinvoke-method object nil "toDateTime(QString,QLocale::FormatType)" arguments)) + +(defun |toDateTime(QString,QString)| (object &rest arguments) + (%qinvoke-method object nil "toDateTime(QString,QString)" arguments)) + +(defun |toDateTime| (object &rest arguments) + (%qinvoke-method object nil "toDateTime" arguments)) + +(defun |toDate| (object &rest arguments) + (%qinvoke-method object nil "toDate" arguments)) + +(defun |toDer| (object &rest arguments) + (%qinvoke-method object nil "toDer" arguments)) + +(defun |toDisplayString| (object &rest arguments) + (%qinvoke-method object nil "toDisplayString" arguments)) + +(defun |toDouble(QString)| (object &rest arguments) + (%qinvoke-method object nil "toDouble(QString)" arguments)) + +(defun |toDouble(QString...)| (object &rest arguments) + (%qinvoke-method object nil "toDouble(QString...)" arguments)) + +(defun |toDouble(QStringRef)| (object &rest arguments) + (%qinvoke-method object nil "toDouble(QStringRef)" arguments)) + +(defun |toDouble(QStringRef...)| (object &rest arguments) + (%qinvoke-method object nil "toDouble(QStringRef...)" arguments)) + +(defun |toDouble| (object &rest arguments) + (%qinvoke-method object nil "toDouble" arguments)) + +(defun |toEasingCurve| (object &rest arguments) + (%qinvoke-method object nil "toEasingCurve" arguments)) + +(defun |toEncoded| (object &rest arguments) + (%qinvoke-method object nil "toEncoded" arguments)) + +(defun |toEnd| (object &rest arguments) + (%qinvoke-method object nil "toEnd" arguments)) + +(defun |toEulerAngles| (object &rest arguments) + (%qinvoke-method object nil "toEulerAngles" arguments)) + +(defun |toFillPolygon(QMatrix)| (object &rest arguments) + (%qinvoke-method object nil "toFillPolygon(QMatrix)" arguments)) + +(defun |toFillPolygon(QTransform)| (object &rest arguments) + (%qinvoke-method object nil "toFillPolygon(QTransform)" arguments)) + +(defun |toFillPolygons(QMatrix)| (object &rest arguments) + (%qinvoke-method object nil "toFillPolygons(QMatrix)" arguments)) + +(defun |toFillPolygons(QTransform)| (object &rest arguments) + (%qinvoke-method object nil "toFillPolygons(QTransform)" arguments)) + +(defun |toFillPolygons| (object &rest arguments) + (%qinvoke-method object nil "toFillPolygons" arguments)) + +(defun |toFillPolygon| (object &rest arguments) + (%qinvoke-method object nil "toFillPolygon" arguments)) + +(defun |toFirst| (object &rest arguments) + (%qinvoke-method object nil "toFirst" arguments)) + +(defun |toFloat(QString)| (object &rest arguments) + (%qinvoke-method object nil "toFloat(QString)" arguments)) + +(defun |toFloat(QString...)| (object &rest arguments) + (%qinvoke-method object nil "toFloat(QString...)" arguments)) + +(defun |toFloat(QStringRef)| (object &rest arguments) + (%qinvoke-method object nil "toFloat(QStringRef)" arguments)) + +(defun |toFloat(QStringRef...)| (object &rest arguments) + (%qinvoke-method object nil "toFloat(QStringRef...)" arguments)) + +(defun |toFloat| (object &rest arguments) + (%qinvoke-method object nil "toFloat" arguments)) + +(defun |toFrameFormat| (object &rest arguments) + (%qinvoke-method object nil "toFrameFormat" arguments)) + +(defun |toGraphicsObject| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "toGraphicsObject" arguments)) + +(defun |toHsl| (object &rest arguments) + (%qinvoke-method object nil "toHsl" arguments)) + +(defun |toHsv| (object &rest arguments) + (%qinvoke-method object nil "toHsv" arguments)) + +(defun |toHtml| (object &rest arguments) + (%qinvoke-method object nil "toHtml" arguments)) + +(defun |toIPv4Address| (object &rest arguments) + (%qinvoke-method object nil "toIPv4Address" arguments)) + +(defun |toImageFormat.QImage| (&rest arguments) + (%qinvoke-method "QImage" nil "toImageFormat" arguments)) + +(defun |toImageFormat| (object &rest arguments) + (%qinvoke-method object nil "toImageFormat" arguments)) + +(defun |toImage| (object &rest arguments) + (%qinvoke-method object nil "toImage" arguments)) + +(defun |toInnerXml| (object &rest arguments) + (%qinvoke-method object nil "toInnerXml" arguments)) + +(defun |toInt(QString)| (object &rest arguments) + (%qinvoke-method object nil "toInt(QString)" arguments)) + +(defun |toInt(QString...)| (object &rest arguments) + (%qinvoke-method object nil "toInt(QString...)" arguments)) + +(defun |toInt(QStringRef)| (object &rest arguments) + (%qinvoke-method object nil "toInt(QStringRef)" arguments)) + +(defun |toInt(QStringRef...)| (object &rest arguments) + (%qinvoke-method object nil "toInt(QStringRef...)" arguments)) + +(defun |toInt| (object &rest arguments) + (%qinvoke-method object nil "toInt" arguments)) + +(defun |toJsonArray| (object &rest arguments) + (%qinvoke-method object nil "toJsonArray" arguments)) + +(defun |toJsonDocument| (object &rest arguments) + (%qinvoke-method object nil "toJsonDocument" arguments)) + +(defun |toJsonObject| (object &rest arguments) + (%qinvoke-method object nil "toJsonObject" arguments)) + +(defun |toJsonValue| (object &rest arguments) + (%qinvoke-method object nil "toJsonValue" arguments)) + +(defun |toJulianDay| (object &rest arguments) + (%qinvoke-method object nil "toJulianDay" arguments)) + +(defun |toLast| (object &rest arguments) + (%qinvoke-method object nil "toLast" arguments)) + +(defun |toLineF| (object &rest arguments) + (%qinvoke-method object nil "toLineF" arguments)) + +(defun |toLine| (object &rest arguments) + (%qinvoke-method object nil "toLine" arguments)) + +(defun |toListFormat| (object &rest arguments) + (%qinvoke-method object nil "toListFormat" arguments)) + +(defun |toList| (object &rest arguments) + (%qinvoke-method object nil "toList" arguments)) + +(defun |toLocalFile| (object &rest arguments) + (%qinvoke-method object nil "toLocalFile" arguments)) + +(defun |toLocalTime| (object &rest arguments) + (%qinvoke-method object nil "toLocalTime" arguments)) + +(defun |toLocale| (object &rest arguments) + (%qinvoke-method object nil "toLocale" arguments)) + +(defun |toLongLong(QString)| (object &rest arguments) + (%qinvoke-method object nil "toLongLong(QString)" arguments)) + +(defun |toLongLong(QString...)| (object &rest arguments) + (%qinvoke-method object nil "toLongLong(QString...)" arguments)) + +(defun |toLongLong(QStringRef)| (object &rest arguments) + (%qinvoke-method object nil "toLongLong(QStringRef)" arguments)) + +(defun |toLongLong(QStringRef...)| (object &rest arguments) + (%qinvoke-method object nil "toLongLong(QStringRef...)" arguments)) + +(defun |toLongLong| (object &rest arguments) + (%qinvoke-method object nil "toLongLong" arguments)) + +(defun |toLower| (object &rest arguments) + (%qinvoke-method object nil "toLower" arguments)) + +(defun |toMSecsSinceEpoch| (object &rest arguments) + (%qinvoke-method object nil "toMSecsSinceEpoch" arguments)) + +(defun |toMargins| (object &rest arguments) + (%qinvoke-method object nil "toMargins" arguments)) + +(defun |toModelIndex| (object &rest arguments) + (%qinvoke-method object nil "toModelIndex" arguments)) + +(defun |toNativeSeparators.QDir| (&rest arguments) + (%qinvoke-method "QDir" nil "toNativeSeparators" arguments)) + +(defun |toNextBoundary| (object &rest arguments) + (%qinvoke-method object nil "toNextBoundary" arguments)) + +(defun |toNext| (object &rest arguments) + (%qinvoke-method object nil "toNext" arguments)) + +(defun |toNumber| (object &rest arguments) + (%qinvoke-method object nil "toNumber" arguments)) + +(defun |toOffsetFromUtc| (object &rest arguments) + (%qinvoke-method object nil "toOffsetFromUtc" arguments)) + +(defun |toOuterXml| (object &rest arguments) + (%qinvoke-method object nil "toOuterXml" arguments)) + +(defun |toPage| (object &rest arguments) + (%qinvoke-method object nil "toPage" arguments)) + +(defun |toPem| (object &rest arguments) + (%qinvoke-method object nil "toPem" arguments)) + +(defun |toPercentEncoding.QUrl| (&rest arguments) + (%qinvoke-method "QUrl" nil "toPercentEncoding" arguments)) + +(defun |toPersistentModelIndex| (object &rest arguments) + (%qinvoke-method object nil "toPersistentModelIndex" arguments)) + +(defun |toPixelFormat.QImage| (&rest arguments) + (%qinvoke-method "QImage" nil "toPixelFormat" arguments)) + +(defun |toPlainText| (object &rest arguments) + (%qinvoke-method object nil "toPlainText" arguments)) + +(defun |toPointF| (object &rest arguments) + (%qinvoke-method object nil "toPointF" arguments)) + +(defun |toPoint| (object &rest arguments) + (%qinvoke-method object nil "toPoint" arguments)) + +(defun |toPreviousBoundary| (object &rest arguments) + (%qinvoke-method object nil "toPreviousBoundary" arguments)) + +(defun |toPrevious| (object &rest arguments) + (%qinvoke-method object nil "toPrevious" arguments)) + +(defun |toQObject| (object &rest arguments) + (%qinvoke-method object nil "toQObject" arguments)) + +(defun |toRawForm| (object &rest arguments) + (%qinvoke-method object nil "toRawForm" arguments)) + +(defun |toReal| (object &rest arguments) + (%qinvoke-method object nil "toReal" arguments)) + +(defun |toRectF| (object &rest arguments) + (%qinvoke-method object nil "toRectF" arguments)) + +(defun |toRect| (object &rest arguments) + (%qinvoke-method object nil "toRect" arguments)) + +(defun |toRegExp| (object &rest arguments) + (%qinvoke-method object nil "toRegExp" arguments)) + +(defun |toRegularExpression| (object &rest arguments) + (%qinvoke-method object nil "toRegularExpression" arguments)) + +(defun |toReversed| (object &rest arguments) + (%qinvoke-method object nil "toReversed" arguments)) + +(defun |toRfc4122| (object &rest arguments) + (%qinvoke-method object nil "toRfc4122" arguments)) + +(defun |toRgb| (object &rest arguments) + (%qinvoke-method object nil "toRgb" arguments)) + +(defun |toShort(QString)| (object &rest arguments) + (%qinvoke-method object nil "toShort(QString)" arguments)) + +(defun |toShort(QString...)| (object &rest arguments) + (%qinvoke-method object nil "toShort(QString...)" arguments)) + +(defun |toShort(QStringRef)| (object &rest arguments) + (%qinvoke-method object nil "toShort(QStringRef)" arguments)) + +(defun |toShort(QStringRef...)| (object &rest arguments) + (%qinvoke-method object nil "toShort(QStringRef...)" arguments)) + +(defun |toShort| (object &rest arguments) + (%qinvoke-method object nil "toShort" arguments)) + +(defun |toSizeF| (object &rest arguments) + (%qinvoke-method object nil "toSizeF" arguments)) + +(defun |toSize| (object &rest arguments) + (%qinvoke-method object nil "toSize" arguments)) + +(defun |toStart| (object &rest arguments) + (%qinvoke-method object nil "toStart" arguments)) + +(defun |toString(QDate)| (object &rest arguments) + (%qinvoke-method object nil "toString(QDate)" arguments)) + +(defun |toString(QDate,QLocale::FormatType)| (object &rest arguments) + (%qinvoke-method object nil "toString(QDate,QLocale::FormatType)" arguments)) + +(defun |toString(QDate,QString)| (object &rest arguments) + (%qinvoke-method object nil "toString(QDate,QString)" arguments)) + +(defun |toString(QDate...)| (object &rest arguments) + (%qinvoke-method object nil "toString(QDate...)" arguments)) + +(defun |toString(QDateTime)| (object &rest arguments) + (%qinvoke-method object nil "toString(QDateTime)" arguments)) + +(defun |toString(QDateTime,QLocale::FormatType)| (object &rest arguments) + (%qinvoke-method object nil "toString(QDateTime,QLocale::FormatType)" arguments)) + +(defun |toString(QDateTime,QString)| (object &rest arguments) + (%qinvoke-method object nil "toString(QDateTime,QString)" arguments)) + +(defun |toString(QDateTime...)| (object &rest arguments) + (%qinvoke-method object nil "toString(QDateTime...)" arguments)) + +(defun |toString(QString)| (object &rest arguments) + (%qinvoke-method object nil "toString(QString)" arguments)) + +(defun |toString(QTime)| (object &rest arguments) + (%qinvoke-method object nil "toString(QTime)" arguments)) + +(defun |toString(QTime,QLocale::FormatType)| (object &rest arguments) + (%qinvoke-method object nil "toString(QTime,QLocale::FormatType)" arguments)) + +(defun |toString(QTime,QString)| (object &rest arguments) + (%qinvoke-method object nil "toString(QTime,QString)" arguments)) + +(defun |toString(QTime...)| (object &rest arguments) + (%qinvoke-method object nil "toString(QTime...)" arguments)) + +(defun |toString(Qt::DateFormat)| (object &rest arguments) + (%qinvoke-method object nil "toString(Qt::DateFormat)" arguments)) + +(defun |toString(double)| (object &rest arguments) + (%qinvoke-method object nil "toString(double)" arguments)) + +(defun |toString(double...)| (object &rest arguments) + (%qinvoke-method object nil "toString(double...)" arguments)) + +(defun |toString(float)| (object &rest arguments) + (%qinvoke-method object nil "toString(float)" arguments)) + +(defun |toString(float...)| (object &rest arguments) + (%qinvoke-method object nil "toString(float...)" arguments)) + +(defun |toString(int)| (object &rest arguments) + (%qinvoke-method object nil "toString(int)" arguments)) + +(defun |toString(qlonglong)| (object &rest arguments) + (%qinvoke-method object nil "toString(qlonglong)" arguments)) + +(defun |toString(qulonglong)| (object &rest arguments) + (%qinvoke-method object nil "toString(qulonglong)" arguments)) + +(defun |toString(short)| (object &rest arguments) + (%qinvoke-method object nil "toString(short)" arguments)) + +(defun |toString(uint)| (object &rest arguments) + (%qinvoke-method object nil "toString(uint)" arguments)) + +(defun |toString(ushort)| (object &rest arguments) + (%qinvoke-method object nil "toString(ushort)" arguments)) + +(defun |toStringList.QUrl| (&rest arguments) + (%qinvoke-method "QUrl" nil "toStringList" arguments)) + +(defun |toStringList| (object &rest arguments) + (%qinvoke-method object nil "toStringList" arguments)) + +(defun |toString| (object &rest arguments) + (%qinvoke-method object nil "toString" arguments)) + +(defun |toSubpathPolygons(QMatrix)| (object &rest arguments) + (%qinvoke-method object nil "toSubpathPolygons(QMatrix)" arguments)) + +(defun |toSubpathPolygons(QTransform)| (object &rest arguments) + (%qinvoke-method object nil "toSubpathPolygons(QTransform)" arguments)) + +(defun |toSubpathPolygons| (object &rest arguments) + (%qinvoke-method object nil "toSubpathPolygons" arguments)) + +(defun |toTableCellFormat| (object &rest arguments) + (%qinvoke-method object nil "toTableCellFormat" arguments)) + +(defun |toTableFormat| (object &rest arguments) + (%qinvoke-method object nil "toTableFormat" arguments)) + +(defun |toText| (object &rest arguments) + (%qinvoke-method object nil "toText" arguments)) + +(defun |toTime(QString,QLocale::FormatType)| (object &rest arguments) + (%qinvoke-method object nil "toTime(QString,QLocale::FormatType)" arguments)) + +(defun |toTime(QString,QString)| (object &rest arguments) + (%qinvoke-method object nil "toTime(QString,QString)" arguments)) + +(defun |toTimeSpec| (object &rest arguments) + (%qinvoke-method object nil "toTimeSpec" arguments)) + +(defun |toTimeZone| (object &rest arguments) + (%qinvoke-method object nil "toTimeZone" arguments)) + +(defun |toTime_t| (object &rest arguments) + (%qinvoke-method object nil "toTime_t" arguments)) + +(defun |toTime| (object &rest arguments) + (%qinvoke-method object nil "toTime" arguments)) + +(defun |toTransform| (object &rest arguments) + (%qinvoke-method object nil "toTransform" arguments)) + +(defun |toUInt(QString)| (object &rest arguments) + (%qinvoke-method object nil "toUInt(QString)" arguments)) + +(defun |toUInt(QString...)| (object &rest arguments) + (%qinvoke-method object nil "toUInt(QString...)" arguments)) + +(defun |toUInt(QStringRef)| (object &rest arguments) + (%qinvoke-method object nil "toUInt(QStringRef)" arguments)) + +(defun |toUInt(QStringRef...)| (object &rest arguments) + (%qinvoke-method object nil "toUInt(QStringRef...)" arguments)) + +(defun |toUInt| (object &rest arguments) + (%qinvoke-method object nil "toUInt" arguments)) + +(defun |toULongLong(QString)| (object &rest arguments) + (%qinvoke-method object nil "toULongLong(QString)" arguments)) + +(defun |toULongLong(QString...)| (object &rest arguments) + (%qinvoke-method object nil "toULongLong(QString...)" arguments)) + +(defun |toULongLong(QStringRef)| (object &rest arguments) + (%qinvoke-method object nil "toULongLong(QStringRef)" arguments)) + +(defun |toULongLong(QStringRef...)| (object &rest arguments) + (%qinvoke-method object nil "toULongLong(QStringRef...)" arguments)) + +(defun |toULongLong| (object &rest arguments) + (%qinvoke-method object nil "toULongLong" arguments)) + +(defun |toUShort(QString)| (object &rest arguments) + (%qinvoke-method object nil "toUShort(QString)" arguments)) + +(defun |toUShort(QString...)| (object &rest arguments) + (%qinvoke-method object nil "toUShort(QString...)" arguments)) + +(defun |toUShort(QStringRef)| (object &rest arguments) + (%qinvoke-method object nil "toUShort(QStringRef)" arguments)) + +(defun |toUShort(QStringRef...)| (object &rest arguments) + (%qinvoke-method object nil "toUShort(QStringRef...)" arguments)) + +(defun |toUShort| (object &rest arguments) + (%qinvoke-method object nil "toUShort" arguments)) + +(defun |toUTC| (object &rest arguments) + (%qinvoke-method object nil "toUTC" arguments)) + +(defun |toUnicode(QByteArray)| (object &rest arguments) + (%qinvoke-method object nil "toUnicode(QByteArray)" arguments)) + +(defun |toUnicode(const char*)| (object &rest arguments) + (%qinvoke-method object nil "toUnicode(const char*)" arguments)) + +(defun |toUnicode| (object &rest arguments) + (%qinvoke-method object nil "toUnicode" arguments)) + +(defun |toUpper| (object &rest arguments) + (%qinvoke-method object nil "toUpper" arguments)) + +(defun |toUrl| (object &rest arguments) + (%qinvoke-method object nil "toUrl" arguments)) + +(defun |toUuid| (object &rest arguments) + (%qinvoke-method object nil "toUuid" arguments)) + +(defun |toVariant| (object &rest arguments) + (%qinvoke-method object nil "toVariant" arguments)) + +(defun |toVector2DAffine| (object &rest arguments) + (%qinvoke-method object nil "toVector2DAffine" arguments)) + +(defun |toVector2D| (object &rest arguments) + (%qinvoke-method object nil "toVector2D" arguments)) + +(defun |toVector3DAffine| (object &rest arguments) + (%qinvoke-method object nil "toVector3DAffine" arguments)) + +(defun |toVector3D| (object &rest arguments) + (%qinvoke-method object nil "toVector3D" arguments)) + +(defun |toVector4D| (object &rest arguments) + (%qinvoke-method object nil "toVector4D" arguments)) + +(defun |toggleBit| (object &rest arguments) + (%qinvoke-method object nil "toggleBit" arguments)) + +(defun |toggleClass| (object &rest arguments) + (%qinvoke-method object nil "toggleClass" arguments)) + +(defun |toggleDirection| (object &rest arguments) + (%qinvoke-method object nil "toggleDirection" arguments)) + +(defun |toggleViewAction| (object &rest arguments) + (%qinvoke-method object nil "toggleViewAction" arguments)) + +(defun |toggled| (object &rest arguments) + (%qinvoke-method object nil "toggled" arguments)) + +(defun |toggle| (object &rest arguments) + (%qinvoke-method object nil "toggle" arguments)) + +(defun |toolBarArea| (object &rest arguments) + (%qinvoke-method object nil "toolBarArea" arguments)) + +(defun |toolBarBreak| (object &rest arguments) + (%qinvoke-method object nil "toolBarBreak" arguments)) + +(defun |toolBarVisibilityChangeRequested| (object &rest arguments) + (%qinvoke-method object nil "toolBarVisibilityChangeRequested" arguments)) + +(defun |toolButtonStyleChanged| (object &rest arguments) + (%qinvoke-method object nil "toolButtonStyleChanged" arguments)) + +(defun |toolButtonStyle| (object &rest arguments) + (%qinvoke-method object nil "toolButtonStyle" arguments)) + +(defun |toolTipBase| (object &rest arguments) + (%qinvoke-method object nil "toolTipBase" arguments)) + +(defun |toolTipDuration| (object &rest arguments) + (%qinvoke-method object nil "toolTipDuration" arguments)) + +(defun |toolTipText| (object &rest arguments) + (%qinvoke-method object nil "toolTipText" arguments)) + +(defun |toolTipsVisible| (object &rest arguments) + (%qinvoke-method object nil "toolTipsVisible" arguments)) + +(defun |toolTip| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "toolTip" arguments)) + +(defun |topChanged| (object &rest arguments) + (%qinvoke-method object nil "topChanged" arguments)) + +(defun |topLeft| (object &rest arguments) + (%qinvoke-method object nil "topLeft" arguments)) + +(defun |topLevelAt.QApplication| (&rest arguments) + (%qinvoke-method "QApplication" nil "topLevelAt" arguments)) + +(defun |topLevelAt.QGuiApplication| (&rest arguments) + (%qinvoke-method "QGuiApplication" nil "topLevelAt" arguments)) + +(defun |topLevelChanged| (object &rest arguments) + (%qinvoke-method object nil "topLevelChanged" arguments)) + +(defun |topLevelDomain| (object &rest arguments) + (%qinvoke-method object nil "topLevelDomain" arguments)) + +(defun |topLevelItemCount| (object &rest arguments) + (%qinvoke-method object nil "topLevelItemCount" arguments)) + +(defun |topLevelItem| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "topLevelItem" arguments)) + +(defun |topLevelWidgets.QApplication| (&rest arguments) + (%qinvoke-method "QApplication" nil "topLevelWidgets" arguments)) + +(defun |topLevelWidget| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "topLevelWidget" arguments)) + +(defun |topLevelWindows.QGuiApplication| (&rest arguments) + (%qinvoke-method "QGuiApplication" nil "topLevelWindows" arguments)) + +(defun |topMargin| (object &rest arguments) + (%qinvoke-method object nil "topMargin" arguments)) + +(defun |topPadding| (object &rest arguments) + (%qinvoke-method object nil "topPadding" arguments)) + +(defun |topRow| (object &rest arguments) + (%qinvoke-method object nil "topRow" arguments)) + +(defun |top| (object &rest arguments) + (%qinvoke-method object nil "top" arguments)) + +(defun |totalBytes| (object &rest arguments) + (%qinvoke-method object nil "totalBytes" arguments)) + +(defun |totalChangeFlags| (object &rest arguments) + (%qinvoke-method object nil "totalChangeFlags" arguments)) + +(defun |totalDuration| (object &rest arguments) + (%qinvoke-method object nil "totalDuration" arguments)) + +(defun |totalRotationAngle| (object &rest arguments) + (%qinvoke-method object nil "totalRotationAngle" arguments)) + +(defun |totalScaleFactor| (object &rest arguments) + (%qinvoke-method object nil "totalScaleFactor" arguments)) + +(defun |touchPointStates| (object &rest arguments) + (%qinvoke-method object nil "touchPointStates" arguments)) + +(defun |touchPoints| (object &rest arguments) + (%qinvoke-method object nil "touchPoints" arguments)) + +(defun |tr.QObject| (&rest arguments) + (%qinvoke-method "QObject" nil "tr" arguments)) + +(defun |transaction| (object &rest arguments) + (%qinvoke-method object nil "transaction" arguments)) + +(defun |transformBetween| (object &rest arguments) + (%qinvoke-method object nil "transformBetween" arguments)) + +(defun |transformOriginChanged| (object &rest arguments) + (%qinvoke-method object nil "transformOriginChanged" arguments)) + +(defun |transformOriginPoint| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "transformOriginPoint" arguments)) + +(defun |transformOrigin| (object &rest arguments) + (%qinvoke-method object nil "transformOrigin" arguments)) + +(defun |transformationAnchor| (object &rest arguments) + (%qinvoke-method object nil "transformationAnchor" arguments)) + +(defun |transformationMode| (object &rest arguments) + (%qinvoke-method object nil "transformationMode" arguments)) + +(defun |transformed(QMatrix)| (object &rest arguments) + (%qinvoke-method object nil "transformed(QMatrix)" arguments)) + +(defun |transformed(QMatrix...)| (object &rest arguments) + (%qinvoke-method object nil "transformed(QMatrix...)" arguments)) + +(defun |transformed(QTransform)| (object &rest arguments) + (%qinvoke-method object nil "transformed(QTransform)" arguments)) + +(defun |transformed(QTransform...)| (object &rest arguments) + (%qinvoke-method object nil "transformed(QTransform...)" arguments)) + +(defun |transformed| (object &rest arguments) + (%qinvoke-method object nil "transformed" arguments)) + +(defun |transform| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "transform" arguments)) + +(defun |transientParent| (object &rest arguments) + (%qinvoke-method object nil "transientParent" arguments)) + +(defun |transitionType| (object &rest arguments) + (%qinvoke-method object nil "transitionType" arguments)) + +(defun |transitions| (object &rest arguments) + (%qinvoke-method object nil "transitions" arguments)) + +(defun |translate(QPoint)| (object &rest arguments) + (%qinvoke-method object nil "translate(QPoint)" arguments)) + +(defun |translate(QPointF)| (object &rest arguments) + (%qinvoke-method object nil "translate(QPointF)" arguments)) + +(defun |translate.QCoreApplication| (&rest arguments) + (%qinvoke-method "QCoreApplication" nil "translate" arguments)) + +(defun |translated| (object &rest arguments) + (%qinvoke-method object nil "translated" arguments)) + +(defun |translate| (object &rest arguments) + (%qinvoke-method object nil "translate" arguments)) + +(defun |transposed| (object &rest arguments) + (%qinvoke-method object nil "transposed" arguments)) + +(defun |transpose| (object &rest arguments) + (%qinvoke-method object nil "transpose" arguments)) + +(defun |treePosition| (object &rest arguments) + (%qinvoke-method object nil "treePosition" arguments)) + +(defun |treeWidget| (object &rest arguments) + (%qinvoke-method object nil "treeWidget" arguments)) + +(defun |triggerAction| (object &rest arguments) + (%qinvoke-method object nil "triggerAction" arguments)) + +(defun |triggerPageAction| (object &rest arguments) + (%qinvoke-method object nil "triggerPageAction" arguments)) + +(defun |triggerUpdate| (object &rest arguments) + (%qinvoke-method object nil "triggerUpdate" arguments)) + +(defun |triggered| (object &rest arguments) + (%qinvoke-method object nil "triggered" arguments)) + +(defun |trigger| (object &rest arguments) + (%qinvoke-method object nil "trigger" arguments)) + +(defun |trimComponentCache| (object &rest arguments) + (%qinvoke-method object nil "trimComponentCache" arguments)) + +(defun |trueMatrix(QMatrix...).QImage| (&rest arguments) + (%qinvoke-method "QImage" nil "trueMatrix(QMatrix...)" arguments)) + +(defun |trueMatrix(QMatrix...).QPixmap| (&rest arguments) + (%qinvoke-method "QPixmap" nil "trueMatrix(QMatrix...)" arguments)) + +(defun |trueMatrix(QTransform...).QImage| (&rest arguments) + (%qinvoke-method "QImage" nil "trueMatrix(QTransform...)" arguments)) + +(defun |trueMatrix(QTransform...).QPixmap| (&rest arguments) + (%qinvoke-method "QPixmap" nil "trueMatrix(QTransform...)" arguments)) + +(defun |trueMatrix.QImage| (&rest arguments) + (%qinvoke-method "QImage" nil "trueMatrix" arguments)) + +(defun |trueMatrix.QPixmap| (&rest arguments) + (%qinvoke-method "QPixmap" nil "trueMatrix" arguments)) + +(defun |truncate| (object &rest arguments) + (%qinvoke-method object nil "truncate" arguments)) + +(defun |tryAcquire| (object &rest arguments) + (%qinvoke-method object nil "tryAcquire" arguments)) + +(defun |typeName| (object &rest arguments) + (%qinvoke-method object nil "typeName" arguments)) + +(defun |typeToName.QVariant| (&rest arguments) + (%qinvoke-method "QVariant" nil "typeToName" arguments)) + +(defun |type| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "type" arguments)) + +(defun |uiLanguages| (object &rest arguments) + (%qinvoke-method object nil "uiLanguages" arguments)) + +(defun |unbind| (object &rest arguments) + (%qinvoke-method object nil "unbind" arguments)) + +(defun |underMouse| (object &rest arguments) + (%qinvoke-method object nil "underMouse" arguments)) + +(defun |underlineColor| (object &rest arguments) + (%qinvoke-method object nil "underlineColor" arguments)) + +(defun |underlinePos| (object &rest arguments) + (%qinvoke-method object nil "underlinePos" arguments)) + +(defun |underlineStyle| (object &rest arguments) + (%qinvoke-method object nil "underlineStyle" arguments)) + +(defun |underline| (object &rest arguments) + (%qinvoke-method object nil "underline" arguments)) + +(defun |undoAvailable| (object &rest arguments) + (%qinvoke-method object nil "undoAvailable" arguments)) + +(defun |undoCommandAdded| (object &rest arguments) + (%qinvoke-method object nil "undoCommandAdded" arguments)) + +(defun |undoLimit| (object &rest arguments) + (%qinvoke-method object nil "undoLimit" arguments)) + +(defun |undoStack| (object &rest arguments) + (%qinvoke-method object nil "undoStack" arguments)) + +(defun |undoTextChanged| (object &rest arguments) + (%qinvoke-method object nil "undoTextChanged" arguments)) + +(defun |undoText| (object &rest arguments) + (%qinvoke-method object nil "undoText" arguments)) + +(defun |undo| (object &rest arguments) + (%qinvoke-method object nil "undo" arguments)) + +(defun |ungetChar| (object &rest arguments) + (%qinvoke-method object nil "ungetChar" arguments)) + +(defun |ungrabGesture| (object &rest arguments) + (%qinvoke-method object nil "ungrabGesture" arguments)) + +(defun |ungrabKeyboard| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "ungrabKeyboard" arguments)) + +(defun |ungrabMouse| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "ungrabMouse" arguments)) + +(defun |ungrabTouchPoints| (object &rest arguments) + (%qinvoke-method object nil "ungrabTouchPoints" arguments)) + +(defun |unifiedTitleAndToolBarOnMac| (object &rest arguments) + (%qinvoke-method object nil "unifiedTitleAndToolBarOnMac" arguments)) + +(defun |uniformItemSizes| (object &rest arguments) + (%qinvoke-method object nil "uniformItemSizes" arguments)) + +(defun |uniformLocation(QByteArray)| (object &rest arguments) + (%qinvoke-method object nil "uniformLocation(QByteArray)" arguments)) + +(defun |uniformLocation(QString)| (object &rest arguments) + (%qinvoke-method object nil "uniformLocation(QString)" arguments)) + +(defun |uniformLocation(const char*)| (object &rest arguments) + (%qinvoke-method object nil "uniformLocation(const char*)" arguments)) + +(defun |uniformLocation| (object &rest arguments) + (%qinvoke-method object nil "uniformLocation" arguments)) + +(defun |uniformRowHeights| (object &rest arguments) + (%qinvoke-method object nil "uniformRowHeights" arguments)) + +(defun |uniqueId.QAccessible| (&rest arguments) + (%qinvoke-method "QAccessible" nil "uniqueId" arguments)) + +(defun |uniqueId| (object &rest arguments) + (%qinvoke-method object nil "uniqueId" arguments)) + +(defun |united(QRect)| (object &rest arguments) + (%qinvoke-method object nil "united(QRect)" arguments)) + +(defun |united(QRegion)| (object &rest arguments) + (%qinvoke-method object nil "united(QRegion)" arguments)) + +(defun |united| (object &rest arguments) + (%qinvoke-method object nil "united" arguments)) + +(defun |units| (object &rest arguments) + (%qinvoke-method object nil "units" arguments)) + +(defun |unload| (object &rest arguments) + (%qinvoke-method object nil "unload" arguments)) + +(defun |unlock| (object &rest arguments) + (%qinvoke-method object nil "unlock" arguments)) + +(defun |unmap| (object &rest arguments) + (%qinvoke-method object nil "unmap" arguments)) + +(defun |unpolish(QApplication*)| (object &rest arguments) + (%qinvoke-method object nil "unpolish(QApplication*)" arguments)) + +(defun |unpolish(QWidget*)| (object &rest arguments) + (%qinvoke-method object nil "unpolish(QWidget*)" arguments)) + +(defun |unpolish| (object &rest arguments) + (%qinvoke-method object nil "unpolish" arguments)) + +(defun |unproject| (object &rest arguments) + (%qinvoke-method object nil "unproject" arguments)) + +(defun |unregisterDocumentation| (object &rest arguments) + (%qinvoke-method object nil "unregisterDocumentation" arguments)) + +(defun |unsetCursor| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "unsetCursor" arguments)) + +(defun |unsetError| (object &rest arguments) + (%qinvoke-method object nil "unsetError" arguments)) + +(defun |unsetHotSpot| (object &rest arguments) + (%qinvoke-method object nil "unsetHotSpot" arguments)) + +(defun |unsetLayoutDirection| (object &rest arguments) + (%qinvoke-method object nil "unsetLayoutDirection" arguments)) + +(defun |unsetLocale| (object &rest arguments) + (%qinvoke-method object nil "unsetLocale" arguments)) + +(defun |unsetSpacing| (object &rest arguments) + (%qinvoke-method object nil "unsetSpacing" arguments)) + +(defun |unsetWindowFrameMargins| (object &rest arguments) + (%qinvoke-method object nil "unsetWindowFrameMargins" arguments)) + +(defun |unsubscribeFromNotification| (object &rest arguments) + (%qinvoke-method object nil "unsubscribeFromNotification" arguments)) + +(defun |unsupportedContent| (object &rest arguments) + (%qinvoke-method object nil "unsupportedContent" arguments)) + +(defun |update(QRect)| (object &rest arguments) + (%qinvoke-method object nil "update(QRect)" arguments)) + +(defun |update(QRegion)| (object &rest arguments) + (%qinvoke-method object nil "update(QRegion)" arguments)) + +(defun |updateAccessibility.QAccessible| (&rest arguments) + (%qinvoke-method "QAccessible" nil "updateAccessibility" arguments)) + +(defun |updateBehavior| (object &rest arguments) + (%qinvoke-method object nil "updateBehavior" arguments)) + +(defun |updateBindOptions| (object &rest arguments) + (%qinvoke-method object nil "updateBindOptions" arguments)) + +(defun |updateBlock| (object &rest arguments) + (%qinvoke-method object nil "updateBlock" arguments)) + +(defun |updateBoundingRect| (object &rest arguments) + (%qinvoke-method object nil "updateBoundingRect" arguments)) + +(defun |updateCells| (object &rest arguments) + (%qinvoke-method object nil "updateCells" arguments)) + +(defun |updateCell| (object &rest arguments) + (%qinvoke-method object nil "updateCell" arguments)) + +(defun |updateCookie| (object &rest arguments) + (%qinvoke-method object nil "updateCookie" arguments)) + +(defun |updateEditorData| (object &rest arguments) + (%qinvoke-method object nil "updateEditorData" arguments)) + +(defun |updateEditorGeometries| (object &rest arguments) + (%qinvoke-method object nil "updateEditorGeometries" arguments)) + +(defun |updateEditorGeometry| (object &rest arguments) + (%qinvoke-method object nil "updateEditorGeometry" arguments)) + +(defun |updateGeometries| (object &rest arguments) + (%qinvoke-method object nil "updateGeometries" arguments)) + +(defun |updateGeometry| (object &rest arguments) + (%qinvoke-method object nil "updateGeometry" arguments)) + +(defun |updateInputMethod| (object &rest arguments) + (%qinvoke-method object nil "updateInputMethod" arguments)) + +(defun |updateInterval| (object &rest arguments) + (%qinvoke-method object nil "updateInterval" arguments)) + (defun |updateMetaData| (object &rest arguments) (%qinvoke-method object nil "updateMetaData" arguments)) @@ -15,6 +1020,9 @@ (defun |updatePreview| (object &rest arguments) (%qinvoke-method object nil "updatePreview" arguments)) +(defun |updateRectGeometry.QSGGeometry| (&rest arguments) + (%qinvoke-method "QSGGeometry" nil "updateRectGeometry" arguments)) + (defun |updateRequest| (object &rest arguments) (%qinvoke-method object nil "updateRequest" arguments)) @@ -27,6 +1035,15 @@ (defun |updateSection| (object &rest arguments) (%qinvoke-method object nil "updateSection" arguments)) +(defun |updateState| (object &rest arguments) + (%qinvoke-method object nil "updateState" arguments)) + +(defun |updateTexturedRectGeometry.QSGGeometry| (&rest arguments) + (%qinvoke-method "QSGGeometry" nil "updateTexturedRectGeometry" arguments)) + +(defun |updateTexture| (object &rest arguments) + (%qinvoke-method object nil "updateTexture" arguments)) + (defun |updated| (object &rest arguments) (%qinvoke-method object nil "updated" arguments)) @@ -162,6 +1179,12 @@ (defun |version| (object &rest arguments) (%qinvoke-method object nil "version" arguments)) +(defun |vertexCount| (object &rest arguments) + (%qinvoke-method object nil "vertexCount" arguments)) + +(defun |vertexDataPattern| (object &rest arguments) + (%qinvoke-method object nil "vertexDataPattern" arguments)) + (defun |verticalAlignment| (object &rest arguments) (%qinvoke-method object nil "verticalAlignment" arguments)) @@ -204,6 +1227,9 @@ (defun |verticalStretch| (object &rest arguments) (%qinvoke-method object nil "verticalStretch" arguments)) +(defun |verticalWrapMode| (object &rest arguments) + (%qinvoke-method object nil "verticalWrapMode" arguments)) + (defun |videoAvailableChanged| (object &rest arguments) (%qinvoke-method object nil "videoAvailableChanged" arguments)) @@ -246,6 +1272,9 @@ (defun |viewportMargins| (object &rest arguments) (%qinvoke-method object nil "viewportMargins" arguments)) +(defun |viewportRect| (object &rest arguments) + (%qinvoke-method object nil "viewportRect" arguments)) + (defun |viewportSize| (object &rest arguments) (%qinvoke-method object nil "viewportSize" arguments)) @@ -288,6 +1317,9 @@ (defun |visibleChanged| (object &rest arguments) (%qinvoke-method object nil "visibleChanged" arguments)) +(defun |visibleChildrenChanged| (object &rest arguments) + (%qinvoke-method object nil "visibleChildrenChanged" arguments)) + (defun |visibleRegion| (object &rest arguments) (%qinvoke-method object nil "visibleRegion" arguments)) @@ -357,6 +1389,9 @@ (defun |warning.QMessageBox| (&rest arguments) (%qinvoke-method "QMessageBox" nil "warning" arguments)) +(defun |warnings| (object &rest arguments) + (%qinvoke-method object nil "warnings" arguments)) + (defun |warning| (object &rest arguments) (%qinvoke-method object nil "warning" arguments)) @@ -381,6 +1416,9 @@ (defun |whatsThis| (object &rest arguments) (%qinvoke-method object nil "whatsThis" arguments)) +(defun |wheelEvent| (object &rest arguments) + (%qinvoke-method object nil "wheelEvent" arguments)) + (defun |wheelScrollLines.QApplication| (&rest arguments) (%qinvoke-method "QApplication" nil "wheelScrollLines" arguments)) @@ -420,12 +1458,18 @@ (defun |widthMM| (object &rest arguments) (%qinvoke-method object nil "widthMM" arguments)) +(defun |widthValid| (object &rest arguments) + (%qinvoke-method object nil "widthValid" arguments)) + (defun |width| (object &rest arguments) (%qinvoke-method object nil "width" arguments)) (defun |winId| (object &rest arguments) (%qinvoke-method object nil "winId" arguments)) +(defun |windowChanged| (object &rest arguments) + (%qinvoke-method object nil "windowChanged" arguments)) + (defun |windowCloseRequested| (object &rest arguments) (%qinvoke-method object nil "windowCloseRequested" arguments)) @@ -558,6 +1602,9 @@ (defun |write(const char*)| (object &rest arguments) (%qinvoke-method object nil "write(const char*)" arguments)) +(defun |write.QQmlProperty| (&rest arguments) + (%qinvoke-method "QQmlProperty" nil "write" arguments)) + (defun |writeDatagram| (object &rest arguments) (%qinvoke-method object nil "writeDatagram" arguments)) diff --git a/src/lisp/all-wrappers-2.lisp b/src/lisp/all-wrappers-2.lisp index 69efa8c..f0bf304 100644 --- a/src/lisp/all-wrappers-2.lisp +++ b/src/lisp/all-wrappers-2.lisp @@ -1,5 +1,71 @@ (defpackage :eql (:export + #:|directoryEntered| + #:|directoryLoaded| + #:|directoryUrlEntered| + #:|directoryUrl| + #:|directory| + #:|dirtyRegionOffset| + #:|dir| + #:|disableAttributeArray(const char*)| + #:|disableAttributeArray(int)| + #:|disableAttributeArray| + #:|discardCommand| + #:|disconnectFromHost| + #:|disconnectFromServer| + #:|disconnected| + #:|display(QString)| + #:|display(double)| + #:|display(int)| + #:|displayColumn| + #:|displayFormat| + #:|displayIntegerBase| + #:|displayName(QDateTime)| + #:|displayName(QDateTime...)| + #:|displayName(QTimeZone::TimeType)| + #:|displayName(QTimeZone::TimeType...)| + #:|displayName.QStandardPaths| + #:|displayName| + #:|displayText| + #:|displayedSections| + #:|display| + #:|distanceToLine| + #:|distanceToPlane| + #:|distanceToPoint| + #:|doAction| + #:|doItemsLayout| + #:|docName| + #:|dockLocationChanged| + #:|dockOptions| + #:|dockWidgetArea| + #:|documentElement| + #:|documentLayoutChanged| + #:|documentLayout| + #:|documentMargin| + #:|documentMode| + #:|documentSizeChanged| + #:|documentSize| + #:|documentTitle| + #:|documentationFileName| + #:|document| + #:|domain| + #:|doneCurrent| + #:|done| + #:|dotProduct.QQuaternion| + #:|dotProduct.QVector2D| + #:|dotProduct.QVector3D| + #:|dotProduct.QVector4D| + #:|dotsPerMeterX| + #:|dotsPerMeterY| + #:|doubleClickInterval.QApplication| + #:|doubleClicked| + #:|doubleDecimals| + #:|doubleMaximum| + #:|doubleMinimum| + #:|doubleProperty| + #:|doubleValueChanged| + #:|doubleValueSelected| + #:|doubleValue| #:|downloadProgress| #:|downloadRequested| #:|dragCursor| @@ -106,6 +172,7 @@ #:|drawTiledPixmap(QRectF...)| #:|drawTiledPixmap| #:|drawTree| + #:|drawingMode| #:|draw| #:|driverName| #:|driverText| @@ -139,6 +206,7 @@ #:|editorEvent| #:|edit| #:|effectiveDate| + #:|effectiveDevicePixelRatio| #:|effectiveOpacity| #:|effectiveSizeHint| #:|effectiveWinId| @@ -214,18 +282,21 @@ #:|entryList| #:|enumeratorCount| #:|enumeratorOffset| + #:|equals| #:|eraseRect(QRect)| #:|eraseRect(QRectF)| #:|eraseRect| #:|errorStateChanged| #:|errorState| #:|errorString| + #:|errors| #:|error| #:|escape.QRegExp| #:|escape.QRegularExpression| #:|escapeButton| #:|escapeIdentifier| #:|evaluateJavaScript| + #:|evaluate| #:|eventDispatcher.QCoreApplication| #:|eventFilter| #:|eventSource| @@ -263,10 +334,12 @@ #:|expirationDate| #:|expiryDate| #:|exponential| + #:|exposeEvent| #:|exposureCompensationChanged| #:|exposureCompensation| #:|exposureMode| #:|exposure| + #:|expression| #:|extensions| #:|extension| #:|extraSelections| @@ -304,6 +377,8 @@ #:|fill(QColor)| #:|fill(Qt::GlobalColor)| #:|fill(uint)| + #:|fillColorChanged| + #:|fillColor| #:|fillPath| #:|fillRect(QRect,QBrush)| #:|fillRect(QRect,QColor)| @@ -331,7 +406,9 @@ #:|filterRegExp| #:|filterRole| #:|filterSelected| + #:|filtering| #:|filtersChildEvents| + #:|filtersChildMouseEvents| #:|filter| #:|finalStop| #:|find(QRegExp)| @@ -396,6 +473,7 @@ #:|focalRadius| #:|focusChanged| #:|focusChild| + #:|focusInEvent| #:|focusItemChanged| #:|focusItem| #:|focusMode| @@ -404,6 +482,7 @@ #:|focusObject.QGuiApplication| #:|focusObjectChanged| #:|focusObject| + #:|focusOutEvent| #:|focusPointMode| #:|focusPolicy| #:|focusPreviousChild| @@ -447,6 +526,9 @@ #:|fontWeight| #:|fontWordSpacing| #:|font| + #:|forceActiveFocus| + #:|forceCompletion| + #:|forcePolish| #:|forceShow| #:|foregroundBrush| #:|foregroundColor| @@ -589,6 +671,7 @@ #:|globalMatch(QStringRef)| #:|globalMatch(QStringRef...)| #:|globalMatch| + #:|globalObject| #:|globalPosF| #:|globalPos| #:|globalRestorePolicy| @@ -605,6 +688,8 @@ #:|grabKeyboard| #:|grabMouse| #:|grabShortcut| + #:|grabToImage| + #:|grabTouchPoints| #:|grabWindow| #:|grab| #:|gradient| @@ -623,6 +708,7 @@ #:|handle| #:|hardwareAddress| #:|hasAcceptableInput| + #:|hasActiveFocus| #:|hasAlphaChannel| #:|hasAlpha| #:|hasAttributeNS| @@ -636,6 +722,8 @@ #:|hasComplexSelection| #:|hasCursor| #:|hasDaylightTime| + #:|hasDefaultAlphaBuffer.QQuickWindow| + #:|hasError| #:|hasExpired| #:|hasExtension| #:|hasFeature.QOpenGLTexture| @@ -649,13 +737,16 @@ #:|hasHtml| #:|hasImage| #:|hasIndex| + #:|hasMipmaps| #:|hasMouseTracking| #:|hasNext| + #:|hasNotifySignal| #:|hasOpenGLFramebufferBlit.QOpenGLFramebufferObject| #:|hasOpenGLFramebufferObjects.QOpenGLFramebufferObject| #:|hasOpenGLShaderPrograms.QOpenGLShaderProgram| #:|hasOpenGLShaders.QOpenGLShader| #:|hasOutValues| + #:|hasOwnProperty| #:|hasPendingConnections| #:|hasPendingDatagrams| #:|hasProperty| @@ -686,6 +777,7 @@ #:|heightChanged| #:|heightForWidth| #:|heightMM| + #:|heightValid| #:|height| #:|helpEvent| #:|helpRequested| @@ -693,6 +785,7 @@ #:|hiResGlobalY| #:|hiddenSectionCount| #:|hideColumn| + #:|hideEvent| #:|hideOrShow| #:|hidePopup| #:|hideRow| @@ -738,6 +831,7 @@ #:|horizontalScrollbarValueChanged| #:|horizontalSpacing| #:|horizontalStretch| + #:|horizontalWrapMode| #:|hostFound| #:|hostName| #:|host| @@ -792,12 +886,24 @@ #:|imageFormatFromPixelFormat.QVideoFrame| #:|imageMetadataAvailable| #:|imageProcessing| + #:|imageProvider| #:|imageSaved| + #:|imageType| #:|imageUrl| #:|image| + #:|implicitHeightChanged| + #:|implicitHeight| + #:|implicitWidthChanged| + #:|implicitWidth| + #:|importPathList| + #:|importPlugin| #:|inFontUcs4| #:|inFont| #:|inWhatsThisMode.QWhatsThis| + #:|incubateFor| + #:|incubatingObjectCount| + #:|incubationController| + #:|incubationMode| #:|indentWidth| #:|indentation| #:|indent| @@ -808,8 +914,11 @@ #:|indexBelow| #:|indexChanged| #:|indexColumn| + #:|indexCount| #:|indexCreated| #:|indexCreationStarted| + #:|indexDataAsUShort| + #:|indexDataPattern| #:|indexDocumentation| #:|indexFromItem| #:|indexIn| @@ -825,6 +934,7 @@ #:|indexOfTopLevelItem| #:|indexOf| #:|indexRowSizeHint| + #:|indexType| #:|indexWidget| #:|indexesMoved| #:|indexes| @@ -838,10 +948,12 @@ #:|initFrom| #:|initStyleOption| #:|initialLayoutCompleted| + #:|initialSize| #:|initialStateChanged| #:|initialState| #:|initializeColumn| #:|initializePage| + #:|initialize| #:|inputChannelMode| #:|inputDirectionChanged| #:|inputDirection| @@ -857,6 +969,8 @@ #:|insertAction| #:|insertAnimation| #:|insertBlock| + #:|insertChildNodeAfter| + #:|insertChildNodeBefore| #:|insertChildren| #:|insertChild| #:|insertColumn(int,QList)| @@ -930,6 +1044,7 @@ #:|installNativeEventFilter| #:|installSceneEventFilter| #:|installTranslator.QCoreApplication| + #:|installTranslatorFunctions| #:|instance.QCoreApplication| #:|instance| #:|intMaximum| @@ -939,6 +1054,7 @@ #:|intValueChanged| #:|intValueSelected| #:|intValue| + #:|intercept| #:|interfaceFromIndex.QNetworkInterface| #:|interfaceFromName.QNetworkInterface| #:|internalDelayedPopup| @@ -956,6 +1072,7 @@ #:|invalidateContents| #:|invalidateFilter| #:|invalidateIndex| + #:|invalidateSceneGraph| #:|invalidateScene| #:|invalidate| #:|invertPixels| @@ -983,7 +1100,9 @@ #:|isAnimating| #:|isAntennaConnected| #:|isAreaAllowed| + #:|isArray| #:|isAtBoundary| + #:|isAtlasTexture| #:|isAudioAvailable| #:|isAutoMipMapGenerationEnabled| #:|isAutoRepeat| @@ -994,10 +1113,12 @@ #:|isBitmapScalable| #:|isBlacklisted| #:|isBlockFormat| + #:|isBool| #:|isBound| #:|isBrushSet| #:|isBundle| #:|isCachingProxy| + #:|isCallable| #:|isCaptureDestinationSupported| #:|isCaptureModeSupported| #:|isCharFormat| @@ -1015,6 +1136,7 @@ #:|isCompactMode| #:|isCompiled| #:|isComplete| + #:|isComponentComplete| #:|isContentEditable| #:|isContentSelected| #:|isCopyOf| @@ -1024,11 +1146,13 @@ #:|isCreatingContents| #:|isCreatingIndex| #:|isDateEditEnabled| + #:|isDate| #:|isDaylightTime| #:|isDebugBuild.QLibraryInfo| #:|isDefaultUp| #:|isDefault| #:|isDescending| + #:|isDesignable| #:|isDirty| #:|isDir| #:|isDisabled| @@ -1044,6 +1168,7 @@ #:|isEnabled| #:|isEqual| #:|isEquivalentTo| + #:|isError| #:|isExclusive| #:|isExecutable| #:|isExpanded| @@ -1063,6 +1188,7 @@ #:|isFloating| #:|isFocusModeSupported| #:|isFocusPointModeSupported| + #:|isFocusScope| #:|isFormatSupported| #:|isForwardAvailable| #:|isForwardOnly| @@ -1073,130 +1199,4 @@ #:|isGenerated| #:|isGrayscale| #:|isGridVisible| - #:|isGroupSeparatorShown| - #:|isHeaderHidden| - #:|isHidden| - #:|isHttpOnly| - #:|isIconVisibleInMenu| - #:|isIdentifierEscaped| - #:|isIdentity| - #:|isImageFormat| - #:|isInSubnet| - #:|isInteractive| - #:|isInvertible| - #:|isItemEnabled| - #:|isLandscape| - #:|isLayout| - #:|isLeapYear.QDate| - #:|isLeftToRight.QGuiApplication| - #:|isLibrary.QLibrary| - #:|isLinked| - #:|isListFormat| - #:|isListening| - #:|isLoaded| - #:|isLocalFile| - #:|isLoopback| - #:|isMapped| - #:|isMaximized| - #:|isMetaDataAvailable| - #:|isMetaDataWritable| - #:|isMeteringModeSupported| - #:|isMinimal| - #:|isMinimized| - #:|isModal| - #:|isModified| - #:|isMonotonic.QElapsedTimer| - #:|isMovable| - #:|isMuted| - #:|isNativeMenuBar| - #:|isNativePath| - #:|isNavigationBarVisible| - #:|isNull(QString)| - #:|isNull(int)| - #:|isNull| - #:|isObscuredBy| - #:|isObscured| - #:|isOpaque| - #:|isOpenError| - #:|isOpenGLES| - #:|isOpen| - #:|isPanel| - #:|isParentOf| - #:|isPhase2| - #:|isPortrait| - #:|isPrivateFamily| - #:|isQBitmap| - #:|isQuitLockEnabled.QCoreApplication| - #:|isReadOnly| - #:|isReadable| - #:|isReadyForCapture| - #:|isReady| - #:|isRedoAvailable| - #:|isRelativePath.QDir| - #:|isRelative| - #:|isRemote| - #:|isRightToLeft.QGuiApplication| - #:|isRoamingAvailable| - #:|isRoot| - #:|isRotating| - #:|isRowHidden| - #:|isRowSelected| - #:|isRunning| - #:|isSavingSession| - #:|isScalable| - #:|isScaling| - #:|isSearching| - #:|isSectionHidden| - #:|isSecure| - #:|isSeekable| - #:|isSelectable| - #:|isSelected| - #:|isSelectionRectVisible| - #:|isSelect| - #:|isSelfSigned| - #:|isSeparator| - #:|isSequential| - #:|isSessionCookie| - #:|isSessionRestored| - #:|isSetuidAllowed.QCoreApplication| - #:|isShaded| - #:|isSingleShot| - #:|isSizeGripEnabled| - #:|isSliderDown| - #:|isSmoothlyScalable| - #:|isSolid| - #:|isSortIndicatorShown| - #:|isSortLocaleAware| - #:|isSortingEnabled| - #:|isStereo| - #:|isStorageAllocated| - #:|isSymLink| - #:|isSystemTrayAvailable.QSystemTrayIcon| - #:|isTabEnabled| - #:|isTableCellFormat| - #:|isTableFormat| - #:|isTearOffEnabled| - #:|isTearOffMenuVisible| - #:|isTextModeEnabled| - #:|isTextVisible| - #:|isTextureView| - #:|isTiledBackingStoreFrozen| - #:|isTimeZoneIdAvailable.QTimeZone| - #:|isTopLevel| - #:|isTransformed| - #:|isTranslating| - #:|isTransparentProxy| - #:|isTristate| - #:|isUnderMouse| - #:|isUndoAvailable| - #:|isUndoRedoEnabled| - #:|isValid.QDate| - #:|isValid.QTime| - #:|isValidColor.QColor| - #:|isValidCursorPosition| - #:|isValid| - #:|isVideoAvailable| - #:|isVirtualDesktop| - #:|isVisible.QToolTip| - #:|isVisibleTo| - #:|isVisible|)) + #:|isGroupSeparatorShown|)) diff --git a/src/lisp/all-wrappers-3.lisp b/src/lisp/all-wrappers-3.lisp index c6ccf46..1dba784 100644 --- a/src/lisp/all-wrappers-3.lisp +++ b/src/lisp/all-wrappers-3.lisp @@ -1,5 +1,150 @@ (defpackage :eql (:export + #:|isHeaderHidden| + #:|isHidden| + #:|isHttpOnly| + #:|isIconVisibleInMenu| + #:|isIdentifierEscaped| + #:|isIdentity| + #:|isImageFormat| + #:|isInSubnet| + #:|isInteractive| + #:|isInvertible| + #:|isItemEnabled| + #:|isLandscape| + #:|isLayout| + #:|isLeapYear.QDate| + #:|isLeftToRight.QGuiApplication| + #:|isLibrary.QLibrary| + #:|isLinked| + #:|isListFormat| + #:|isListening| + #:|isLoaded| + #:|isLoading| + #:|isLocalFile| + #:|isLoopback| + #:|isMapped| + #:|isMaximized| + #:|isMetaDataAvailable| + #:|isMetaDataWritable| + #:|isMeteringModeSupported| + #:|isMinimal| + #:|isMinimized| + #:|isModal| + #:|isModified| + #:|isMonotonic.QElapsedTimer| + #:|isMovable| + #:|isMuted| + #:|isNativeMenuBar| + #:|isNativePath| + #:|isNavigationBarVisible| + #:|isNull(QString)| + #:|isNull(int)| + #:|isNullLiteral| + #:|isNull| + #:|isNumber| + #:|isObject| + #:|isObscuredBy| + #:|isObscured| + #:|isOpaque| + #:|isOpenError| + #:|isOpenGLES| + #:|isOpen| + #:|isPanel| + #:|isParentOf| + #:|isPersistentOpenGLContext| + #:|isPersistentSceneGraph| + #:|isPhase2| + #:|isPortrait| + #:|isPrivateFamily| + #:|isProperty| + #:|isQBitmap| + #:|isQObject| + #:|isQuitLockEnabled.QCoreApplication| + #:|isReadOnly| + #:|isReadable| + #:|isReadyForCapture| + #:|isReady| + #:|isRectangular| + #:|isRedoAvailable| + #:|isRegExp| + #:|isRelativePath.QDir| + #:|isRelative| + #:|isRemote| + #:|isResettable| + #:|isRightToLeft.QGuiApplication| + #:|isRoamingAvailable| + #:|isRoot| + #:|isRotating| + #:|isRowHidden| + #:|isRowSelected| + #:|isRunning| + #:|isSavingSession| + #:|isScalable| + #:|isScaling| + #:|isSceneGraphInitialized| + #:|isSearching| + #:|isSectionHidden| + #:|isSecure| + #:|isSeekable| + #:|isSelectable| + #:|isSelected| + #:|isSelectionRectVisible| + #:|isSelect| + #:|isSelfSigned| + #:|isSeparator| + #:|isSequential| + #:|isSessionCookie| + #:|isSessionRestored| + #:|isSetuidAllowed.QCoreApplication| + #:|isShaded| + #:|isSignalProperty| + #:|isSingleShot| + #:|isSizeGripEnabled| + #:|isSliderDown| + #:|isSmoothlyScalable| + #:|isSolid| + #:|isSortIndicatorShown| + #:|isSortLocaleAware| + #:|isSortingEnabled| + #:|isStereo| + #:|isStorageAllocated| + #:|isString| + #:|isSubtreeBlocked| + #:|isSymLink| + #:|isSystemTrayAvailable.QSystemTrayIcon| + #:|isTabEnabled| + #:|isTableCellFormat| + #:|isTableFormat| + #:|isTearOffEnabled| + #:|isTearOffMenuVisible| + #:|isTextModeEnabled| + #:|isTextVisible| + #:|isTextureProvider| + #:|isTextureView| + #:|isTiledBackingStoreFrozen| + #:|isTimeZoneIdAvailable.QTimeZone| + #:|isTopLevel| + #:|isTransformed| + #:|isTranslating| + #:|isTransparentProxy| + #:|isTristate| + #:|isUndefinedLiteral| + #:|isUndefined| + #:|isUnderMouse| + #:|isUndoAvailable| + #:|isUndoRedoEnabled| + #:|isValid.QDate| + #:|isValid.QTime| + #:|isValidColor.QColor| + #:|isValidCursorPosition| + #:|isValid| + #:|isVariant| + #:|isVideoAvailable| + #:|isVirtualDesktop| + #:|isVisible.QToolTip| + #:|isVisibleTo| + #:|isVisible| #:|isWhiteBalanceModeSupported| #:|isWidgetType| #:|isWidget| @@ -71,7 +216,9 @@ #:|joinStyle| #:|jumpToFrame| #:|jumpToNextFrame| + #:|keepMouseGrab| #:|keepPositionOnInsert| + #:|keepTouchGrab| #:|kernelType.QSysInfo| #:|kernelVersion.QSysInfo| #:|kerning| @@ -79,6 +226,8 @@ #:|keyBindings.QKeySequence| #:|keyBindingsForAction| #:|keyExchangeMethod| + #:|keyPressEvent| + #:|keyReleaseEvent| #:|keyValueAt| #:|keyValues| #:|keyboardAutoRepeatRate| @@ -202,6 +351,7 @@ #:|load(QUrl)| #:|load(QUrl...)| #:|load(QXmlStreamReader*)| + #:|loadData| #:|loadFailed| #:|loadFinished| #:|loadFromData| @@ -209,6 +359,7 @@ #:|loadProgress| #:|loadResource| #:|loadStarted| + #:|loadUrl| #:|loaded| #:|load| #:|localAddress| @@ -356,6 +507,9 @@ #:|margins| #:|margin| #:|markContentsDirty| + #:|markDirty| + #:|markIndexDataDirty| + #:|markVertexDataDirty| #:|mask| #:|match(QString)| #:|match(QString...).QDir| @@ -368,6 +522,7 @@ #:|matches| #:|matchingLocales.QLocale| #:|match| + #:|material| #:|matrixForElement| #:|matrix| #:|maxCount| @@ -404,6 +559,7 @@ #:|maximumWidthChanged| #:|maximumWidth| #:|maximum| + #:|maybeUpdate| #:|mdiArea| #:|measurementSystem| #:|mediaAboutToBeInserted| @@ -482,6 +638,7 @@ #:|mipBaseLevel| #:|mipLevels| #:|mipMaxLevel| + #:|mipmapFiltering| #:|mipmap| #:|mirrored| #:|miterLimit| @@ -507,11 +664,15 @@ #:|mountedVolumes.QStorageInfo| #:|mouseButtons.QGuiApplication| #:|mouseButtons| + #:|mouseDoubleClickEvent| #:|mouseDoubleClickIntervalChanged| #:|mouseDoubleClickInterval| #:|mouseGrabber.QWidget| #:|mouseGrabberItem| + #:|mouseMoveEvent| #:|mousePressAndHoldInterval| + #:|mousePressEvent| + #:|mouseReleaseEvent| #:|movableChanged| #:|moveBy| #:|moveColumns| @@ -539,6 +700,7 @@ #:|name.QPageSize| #:|nameFilterDisables| #:|nameFilters| + #:|nameForObject| #:|nameToType.QVariant| #:|namedCaptureGroups| #:|namespaceName.QHelpEngineCore| @@ -559,24 +721,30 @@ #:|naturalTextRect| #:|naturalTextWidth| #:|nearestFormat| + #:|needsNotifySignal| #:|negativeSign| #:|netmask| + #:|networkAccessManagerFactory| #:|networkAccessManager| #:|networkAccessibleChanged| #:|networkAccessible| #:|networkConfigurationChanged| #:|networkConfiguration| #:|networkSessionConnected| + #:|newArray| #:|newConnection| + #:|newObject| #:|newPage| #:|newPos| #:|newProxyWidget| + #:|newQObject| #:|newSize| #:|nextCursorPosition| #:|nextFrameDelay| #:|nextId| #:|nextInFocusChain| #:|nextIndex| + #:|nextItemInFocusChain| #:|nextNegotiatedProtocol| #:|nextPendingConnection| #:|nextProtocolNegotiationStatus| @@ -588,6 +756,7 @@ #:|normal.QVector3D| #:|normalGeometry| #:|normalizedSignature.QMetaObject| + #:|normalizedTextureSubRect| #:|normalizedType.QMetaObject| #:|normalized| #:|normalize| @@ -599,23 +768,28 @@ #:|notification| #:|notifyIntervalChanged| #:|notifyInterval| + #:|notifyOnValueChanged| #:|notify| #:|nsecsElapsed| #:|nullDevice.QProcess| #:|numRowsAffected| + #:|numberLiteral| #:|numberOptions| #:|numberPrefix| #:|numberSuffix| #:|numericalPrecisionPolicy| + #:|objectCreated| #:|objectDestroyed| #:|objectForFormat| #:|objectIndex| #:|objectNameChanged| #:|objectName| + #:|objectOwnership.QQmlEngine| #:|objectType| #:|object| #:|offlineStorageDefaultQuota.QWebSettings| #:|offlineStoragePath.QWebSettings| + #:|offlineStoragePath| #:|offlineWebApplicationCachePath.QWebSettings| #:|offlineWebApplicationCacheQuota.QWebSettings| #:|offsetAtPoint| @@ -632,6 +806,8 @@ #:|opacityMask| #:|opacity| #:|opaqueArea| + #:|opaqueMaterial| + #:|opaquePainting| #:|opaqueResize| #:|openExternalLinks| #:|openGLModuleType.QOpenGLContext| @@ -639,6 +815,8 @@ #:|openMode| #:|openPersistentEditor| #:|openUrl.QDesktopServices| + #:|openglContextCreated| + #:|openglContext| #:|open| #:|operation| #:|opticalZoomChanged| @@ -666,6 +844,7 @@ #:|outputFileName| #:|outputFormat| #:|outputLocation| + #:|outputWarningsToStandardError| #:|overflow| #:|overlinePos| #:|overline| @@ -680,6 +859,7 @@ #:|ownsClipboard| #:|ownsFindBuffer| #:|ownsSelection| + #:|ownsTexture| #:|padding| #:|pageAction| #:|pageAdded| @@ -719,6 +899,7 @@ #:|paperRect| #:|paperSource| #:|parentChanged| + #:|parentContext| #:|parentFrame| #:|parentItem| #:|parentLayoutItem| @@ -755,6 +936,7 @@ #:|pen| #:|percentAtLength| #:|percent| + #:|performanceHints| #:|periodSize| #:|period| #:|permissions.QFile| @@ -801,6 +983,7 @@ #:|playlist| #:|play| #:|pluginFactory| + #:|pluginPathList| #:|plugins| #:|pmText| #:|pointAtPercent| @@ -811,6 +994,7 @@ #:|polish(QApplication*)| #:|polish(QPalette&)| #:|polish(QWidget*)| + #:|polishItems| #:|polished| #:|polish| #:|polygon| @@ -844,13 +1028,16 @@ #:|prefixLength| #:|prefix| #:|prepareGeometryChange| + #:|prepareThread| #:|prepare| + #:|prependChildNode| #:|prependInside(QString)| #:|prependInside(QWebElement)| #:|prependInside| #:|prependOutside(QString)| #:|prependOutside(QWebElement)| #:|prependOutside| + #:|preprocess| #:|present| #:|pressed| #:|pressure| @@ -892,17 +1079,26 @@ #:|profile| #:|programId| #:|program| + #:|progressChanged| + #:|progress| + #:|projectionMatrix| #:|project| #:|propertiesAssigned| + #:|property(QString)| + #:|property(uint)| #:|propertyCount| #:|propertyNames| #:|propertyName| #:|propertyOffset| + #:|propertyTypeCategory| + #:|propertyTypeName| + #:|propertyType| #:|property| #:|proposedAction| #:|protocolString| #:|protocolTag| #:|protocol| + #:|prototype| #:|provisionalLoad| #:|proxyAuthenticationRequired| #:|proxyFactory| @@ -929,6 +1125,7 @@ #:|queryWidget| #:|query| #:|question.QMessageBox| + #:|quickWindow| #:|quitOnLastWindowClosed.QGuiApplication| #:|quit| #:|radioData| @@ -938,6 +1135,7 @@ #:|rawHeaderList| #:|rawHeader| #:|rawValue| + #:|read.QQmlProperty| #:|readAllStandardError| #:|readAllStandardOutput| #:|readAll| @@ -951,6 +1149,7 @@ #:|readyReadStandardError| #:|readyReadStandardOutput| #:|readyRead| + #:|ready| #:|read| #:|realm| #:|reason| @@ -985,6 +1184,7 @@ #:|registerField| #:|registerFormat.QSettings| #:|registerSqlDriver.QSqlDatabase| + #:|registerTypes| #:|registeredDocumentations| #:|rehighlightBlock| #:|rehighlight| @@ -997,206 +1197,6 @@ #:|releaseControl| #:|releaseKeyboard| #:|releaseMouse| + #:|releaseResources| #:|releaseShortcut| - #:|releaseWidget| - #:|released| - #:|release| - #:|reload| - #:|remainingTime| - #:|remove.QFile| - #:|remove.QPixmapCache| - #:|removeAccessWhitelistEntry| - #:|removeAction| - #:|removeAllApplicationFonts.QFontDatabase| - #:|removeAllChildren| - #:|removeAllDatabases.QWebDatabase| - #:|removeAllShaders| - #:|removeAnimation| - #:|removeApplicationFont.QFontDatabase| - #:|removeAttributeNS| - #:|removeAttribute| - #:|removeAt| - #:|removeButton| - #:|removeCellWidget| - #:|removeChild| - #:|removeClass| - #:|removeColumns| - #:|removeColumn| - #:|removeCustomFilter| - #:|removeCustomValue| - #:|removeDatabase.QSqlDatabase| - #:|removeDatabase.QWebDatabase| - #:|removeDefaultAnimation| - #:|removeDockWidget| - #:|removeEventFilter| - #:|removeFactory.QAccessible| - #:|removeFormat| - #:|removeFromDocument| - #:|removeFromGroup| - #:|removeItemWidget| - #:|removeItem| - #:|removeLibraryPath.QCoreApplication| - #:|removeLocalScheme.QWebSecurityOrigin| - #:|removeMappings| - #:|removeMapping| - #:|removeMedia| - #:|removeNativeEventFilter| - #:|removePage| - #:|removePaths| - #:|removePath| - #:|removePostedEvents.QCoreApplication| - #:|removePropertyWatch| - #:|removeRecursively| - #:|removeRows| - #:|removeRow| - #:|removeSceneEventFilter| - #:|removeSelectedText| - #:|removeSelection| - #:|removeServer.QLocalServer| - #:|removeShader| - #:|removeStack| - #:|removeState| - #:|removeSubWindow| - #:|removeSubstitutions.QFont| - #:|removeTab| - #:|removeToolBarBreak| - #:|removeToolBar| - #:|removeTransition| - #:|removeTranslator.QCoreApplication| - #:|removeWidget| - #:|removed| - #:|remove| - #:|rename.QFile| - #:|rename| - #:|render(QPainter*,QRectF)| - #:|render(QPainter*,QRegion)| - #:|render(QPainter*,QString)| - #:|render(QPainter*,QWebFrame::RenderLayers)| - #:|renderHints| - #:|renderableType| - #:|renderer| - #:|render| - #:|repaint(QRect)| - #:|repaint(QRegion)| - #:|repaintNeeded| - #:|repaintRequested| - #:|repaint| - #:|repeatAction| - #:|replace(QString)| - #:|replace(QWebElement)| - #:|replaceText| - #:|replaceWidget| - #:|replacementLength| - #:|replacementStart| - #:|replace| - #:|reportContentOrientationChange| - #:|requestActivate| - #:|requestControl| - #:|requestPhase2| - #:|requestShowLink| - #:|requestUpdate| - #:|requestWidget| - #:|requestedAperture| - #:|requestedFormat| - #:|requestedIsoSensitivity| - #:|requestedLocks| - #:|requestedShutterSpeed| - #:|requestedUrl| - #:|request| - #:|requiredStatus| - #:|resetAttribute| - #:|resetBindCount| - #:|resetCachedContent| - #:|resetDefaultSectionSize| - #:|resetFontFamily| - #:|resetFontSize| - #:|resetFormat| - #:|resetIndentation| - #:|resetInternalData| - #:|resetMatrix| - #:|resetTransform| - #:|reset| - #:|resize.QFile| - #:|resizeAnchor| - #:|resizeColumnToContents| - #:|resizeColumnsToContents| - #:|resizeContentsPrecision| - #:|resizeGripsVisible| - #:|resizeMode| - #:|resizeRowToContents| - #:|resizeRowsToContents| - #:|resizeSections| - #:|resizeSection| - #:|resized| - #:|resizesToContents| - #:|resize| - #:|resolution| - #:|resolve(QString,QString...).QLibrary| - #:|resolve(QString,int...).QLibrary| - #:|resolve.QLibrary| - #:|resolveSymlinks| - #:|resolved| - #:|resolve| - #:|resources| - #:|resource| - #:|restartCommand| - #:|restartHint| - #:|restart| - #:|restoreDockWidget| - #:|restoreFrameStateRequested| - #:|restoreGeometry| - #:|restoreOverrideCursor.QGuiApplication| - #:|restoreState| - #:|restore| - #:|resultWidget| - #:|result| - #:|resumeAccepting| - #:|resume| - #:|retainSizeWhenHidden| - #:|returnPressed| - #:|revertAll| - #:|revertRow| - #:|revert| - #:|revision| - #:|rgbSwapped| - #:|rgba| - #:|rgb| - #:|rightBearing| - #:|rightColumn| - #:|rightCursorPosition| - #:|rightMargin| - #:|rightPadding| - #:|right| - #:|rmdir| - #:|rmpath| - #:|role| - #:|rollbackTransaction| - #:|rollback| - #:|root.QDir| - #:|root.QStorageInfo| - #:|rootDirectory| - #:|rootFrame| - #:|rootIndex| - #:|rootIsDecorated| - #:|rootModelIndex| - #:|rootPath.QDir| - #:|rootPathChanged| - #:|rootPath| - #:|rotateRadians| - #:|rotatedVector| - #:|rotate| - #:|rotationAngle| - #:|rotationChanged| - #:|rotationTo.QQuaternion| - #:|rotation| - #:|rowAlignment| - #:|rowAt| - #:|rowCountChanged| - #:|rowCount| - #:|rowEnd| - #:|rowHeight| - #:|rowIntersectsSelection| - #:|rowMaximumHeight| - #:|rowMinimumHeight| - #:|rowMoved| - #:|rowPreferredHeight|)) + #:|releaseWidget|)) diff --git a/src/lisp/all-wrappers-4.lisp b/src/lisp/all-wrappers-4.lisp index 0d3a6cf..48d19aa 100644 --- a/src/lisp/all-wrappers-4.lisp +++ b/src/lisp/all-wrappers-4.lisp @@ -1,5 +1,230 @@ (defpackage :eql (:export + #:|released| + #:|release| + #:|reload| + #:|remainingTime| + #:|remove.QFile| + #:|remove.QPixmapCache| + #:|removeAccessWhitelistEntry| + #:|removeAction| + #:|removeAllApplicationFonts.QFontDatabase| + #:|removeAllChildNodes| + #:|removeAllChildren| + #:|removeAllDatabases.QWebDatabase| + #:|removeAllShaders| + #:|removeAnimation| + #:|removeApplicationFont.QFontDatabase| + #:|removeAttributeNS| + #:|removeAttribute| + #:|removeAt| + #:|removeButton| + #:|removeCellWidget| + #:|removeChildNode| + #:|removeChild| + #:|removeClass| + #:|removeColumns| + #:|removeColumn| + #:|removeCustomFilter| + #:|removeCustomValue| + #:|removeDatabase.QSqlDatabase| + #:|removeDatabase.QWebDatabase| + #:|removeDefaultAnimation| + #:|removeDockWidget| + #:|removeEventFilter| + #:|removeFactory.QAccessible| + #:|removeFormat| + #:|removeFromDocument| + #:|removeFromGroup| + #:|removeImageProvider| + #:|removeItemWidget| + #:|removeItem| + #:|removeLibraryPath.QCoreApplication| + #:|removeLocalScheme.QWebSecurityOrigin| + #:|removeMappings| + #:|removeMapping| + #:|removeMedia| + #:|removeNativeEventFilter| + #:|removePage| + #:|removePaths| + #:|removePath| + #:|removePostedEvents.QCoreApplication| + #:|removePropertyWatch| + #:|removeRecursively| + #:|removeRows| + #:|removeRow| + #:|removeSceneEventFilter| + #:|removeSelectedText| + #:|removeSelection| + #:|removeServer.QLocalServer| + #:|removeShader| + #:|removeStack| + #:|removeState| + #:|removeSubWindow| + #:|removeSubstitutions.QFont| + #:|removeTab| + #:|removeToolBarBreak| + #:|removeToolBar| + #:|removeTransition| + #:|removeTranslator.QCoreApplication| + #:|removeWidget| + #:|removedFromAtlas| + #:|removed| + #:|remove| + #:|rename.QFile| + #:|rename| + #:|render(QPainter*,QRectF)| + #:|render(QPainter*,QRegion)| + #:|render(QPainter*,QString)| + #:|render(QPainter*,QWebFrame::RenderLayers)| + #:|renderHints| + #:|renderRequested| + #:|renderScene| + #:|renderTargetChanged| + #:|renderTargetId| + #:|renderTargetSize| + #:|renderTarget| + #:|renderableType| + #:|render| + #:|repaint(QRect)| + #:|repaint(QRegion)| + #:|repaintNeeded| + #:|repaintRequested| + #:|repaint| + #:|repeatAction| + #:|replace(QString)| + #:|replace(QWebElement)| + #:|replaceText| + #:|replaceWidget| + #:|replacementLength| + #:|replacementStart| + #:|replace| + #:|reportContentOrientationChange| + #:|requestActivate| + #:|requestControl| + #:|requestImageResponse| + #:|requestImage| + #:|requestPhase2| + #:|requestPixmap| + #:|requestShowLink| + #:|requestTexture| + #:|requestUpdate| + #:|requestWidget| + #:|requestedAperture| + #:|requestedFormat| + #:|requestedIsoSensitivity| + #:|requestedLocks| + #:|requestedShutterSpeed| + #:|requestedUrl| + #:|request| + #:|requiredStatus| + #:|resetAntialiasing| + #:|resetAttribute| + #:|resetBindCount| + #:|resetCachedContent| + #:|resetContentsSize| + #:|resetDefaultSectionSize| + #:|resetFontFamily| + #:|resetFontSize| + #:|resetFormat| + #:|resetHeight| + #:|resetIndentation| + #:|resetInternalData| + #:|resetMatrix| + #:|resetOpenGLState| + #:|resetTransform| + #:|resetWidth| + #:|reset| + #:|resize.QFile| + #:|resizeAnchor| + #:|resizeColumnToContents| + #:|resizeColumnsToContents| + #:|resizeContentsPrecision| + #:|resizeEvent| + #:|resizeGripsVisible| + #:|resizeMode| + #:|resizeRowToContents| + #:|resizeRowsToContents| + #:|resizeSections| + #:|resizeSection| + #:|resized| + #:|resizesToContents| + #:|resize| + #:|resolution| + #:|resolve(QString,QString...).QLibrary| + #:|resolve(QString,int...).QLibrary| + #:|resolve.QLibrary| + #:|resolveSymlinks| + #:|resolvedUrl| + #:|resolved| + #:|resolve| + #:|resources| + #:|resource| + #:|restartCommand| + #:|restartHint| + #:|restart| + #:|restoreDockWidget| + #:|restoreFrameStateRequested| + #:|restoreGeometry| + #:|restoreOverrideCursor.QGuiApplication| + #:|restoreState| + #:|restore| + #:|resultWidget| + #:|result| + #:|resumeAccepting| + #:|resume| + #:|retainSizeWhenHidden| + #:|returnPressed| + #:|revertAll| + #:|revertRow| + #:|revert| + #:|revision| + #:|rgbSwapped| + #:|rgba| + #:|rgb| + #:|rightBearing| + #:|rightColumn| + #:|rightCursorPosition| + #:|rightMargin| + #:|rightPadding| + #:|right| + #:|rmdir| + #:|rmpath| + #:|role| + #:|rollbackTransaction| + #:|rollback| + #:|root.QDir| + #:|root.QStorageInfo| + #:|rootContext| + #:|rootDirectory| + #:|rootFrame| + #:|rootIndex| + #:|rootIsDecorated| + #:|rootModelIndex| + #:|rootNode| + #:|rootObjects| + #:|rootObject| + #:|rootPath.QDir| + #:|rootPathChanged| + #:|rootPath| + #:|rotateRadians| + #:|rotatedVector| + #:|rotate| + #:|rotationAngle| + #:|rotationChanged| + #:|rotationTo.QQuaternion| + #:|rotation| + #:|rowAlignment| + #:|rowAt| + #:|rowCountChanged| + #:|rowCount| + #:|rowEnd| + #:|rowHeight| + #:|rowIntersectsSelection| + #:|rowMaximumHeight| + #:|rowMinimumHeight| + #:|rowMoved| + #:|rowPreferredHeight| #:|rowResized| #:|rowSpacing| #:|rowSpan| @@ -19,6 +244,7 @@ #:|rubberBandChanged| #:|rubberBandRect| #:|rubberBandSelectionMode| + #:|runJobsAfterSwap| #:|runningChanged| #:|run| #:|sampleRate| @@ -33,6 +259,7 @@ #:|saveStateRequest| #:|saveState| #:|saveToDisk| + #:|saveToFile| #:|save| #:|scalar| #:|scale(QVector3D)| @@ -48,14 +275,23 @@ #:|scale| #:|scanLineDirection| #:|sceneBoundingRect| + #:|sceneChanged| + #:|sceneGraphAboutToStop| + #:|sceneGraphChanged| + #:|sceneGraphError| + #:|sceneGraphInitialized| + #:|sceneGraphInvalidated| #:|scenePos| #:|sceneRectChanged| #:|sceneRect| #:|sceneTransform| #:|scene| #:|scheduleDelayedItemsLayout| + #:|scheduleRenderJob| #:|scheme| #:|scopeId| + #:|scopeObject| + #:|scopedFocusItem| #:|scope| #:|screenAdded| #:|screenChanged| @@ -202,6 +438,7 @@ #:|setActionGroup| #:|setActivationOrder| #:|setActiveAction| + #:|setActiveFocusOnTab| #:|setActivePanel| #:|setActiveStack| #:|setActiveSubWindow| @@ -231,6 +468,7 @@ #:|setAnchor| #:|setAngle| #:|setAnimated| + #:|setAntialiasing| #:|setApplicationCacheQuota| #:|setApplicationDisplayName.QGuiApplication| #:|setApplicationName.QCoreApplication| @@ -303,6 +541,7 @@ #:|setBaseSize| #:|setBaseStyle| #:|setBaseUrl| + #:|setBaselineOffset| #:|setBatchSize| #:|setBinMode| #:|setBitRate| @@ -389,7 +628,10 @@ #:|setCiphers| #:|setCleanIcon| #:|setClean| + #:|setClearBeforeRendering| #:|setClearButtonEnabled| + #:|setClearColor| + #:|setClearMode| #:|setClipPath| #:|setClipRect(QRect)| #:|setClipRect(QRect...)| @@ -398,6 +640,7 @@ #:|setClipRect| #:|setClipRegion| #:|setClipping| + #:|setClip| #:|setCmykF| #:|setCmyk| #:|setCodecForLocale.QTextCodec| @@ -451,9 +694,15 @@ #:|setContentPos| #:|setContentType| #:|setContentsMargins| + #:|setContentsScale| + #:|setContentsSize| #:|setContent| + #:|setContextForObject.QQmlEngine| #:|setContextMenuPolicy| #:|setContextMenu| + #:|setContextObject| + #:|setContextProperty(QString,QObject*)| + #:|setContextProperty(QString,QVariant)| #:|setContext| #:|setContrast| #:|setControlType| @@ -518,6 +767,7 @@ #:|setDefault.QLocale| #:|setDefaultAction| #:|setDefaultAlignment| + #:|setDefaultAlphaBuffer.QQuickWindow| #:|setDefaultButton(QMessageBox::StandardButton)| #:|setDefaultButton(QPushButton*)| #:|setDefaultButton| @@ -551,6 +801,9 @@ #:|setDesktopSettingsAware.QGuiApplication| #:|setDetailedText| #:|setDevicePixelRatio| + #:|setDeviceRect(QRect)| + #:|setDeviceRect(QSize)| + #:|setDeviceRect| #:|setDigitCount| #:|setDirection| #:|setDirectory(QDir)| @@ -586,6 +839,7 @@ #:|setDragEnabled| #:|setDragMode| #:|setDrawBase| + #:|setDrawingMode| #:|setDropAction| #:|setDropEnabled| #:|setDropIndicatorShown| @@ -629,7 +883,10 @@ #:|setExpirationDate| #:|setExposureCompensation| #:|setExposureMode| + #:|setExpression| #:|setExtraSelections| + #:|setExtraSelectors(QStringList&)| + #:|setExtraSelectors(QStringList)| #:|setExtraSelectors| #:|setFacingPagesViewMode| #:|setFallbacksEnabled| @@ -648,6 +905,7 @@ #:|setFileName| #:|setFilePath| #:|setFile| + #:|setFillColor| #:|setFillRule| #:|setFilterCaseSensitivity| #:|setFilterFixedString| @@ -658,7 +916,9 @@ #:|setFilterRegExp| #:|setFilterRole| #:|setFilterWildcard| + #:|setFiltering| #:|setFiltersChildEvents| + #:|setFiltersChildMouseEvents| #:|setFilter| #:|setFinalPage| #:|setFinalStop| @@ -783,6 +1043,7 @@ #:|setHorizontalScrollMode| #:|setHorizontalSpacing| #:|setHorizontalStretch| + #:|setHorizontalWrapMode| #:|setHostName| #:|setHost| #:|setHotSpot| @@ -804,9 +1065,14 @@ #:|setId| #:|setImageData| #:|setImage| + #:|setImplicitHeight| + #:|setImplicitWidth| + #:|setImportPathList| + #:|setIncubationController| #:|setIndentWidth| #:|setIndentation| #:|setIndent| + #:|setIndexDataPattern| #:|setIndexWidget| #:|setIndex| #:|setInformativeText| @@ -833,6 +1099,7 @@ #:|setInvertedAppearance| #:|setInvertedControls| #:|setIp| + #:|setIsRectangular| #:|setItalic| #:|setItemData| #:|setItemDelegateForColumn| @@ -851,7 +1118,9 @@ #:|setItem| #:|setJoinMode| #:|setJoinStyle| + #:|setKeepMouseGrab| #:|setKeepPositionOnInsert| + #:|setKeepTouchGrab| #:|setKerning| #:|setKeyboardGrabEnabled| #:|setKeyboardInputInterval.QApplication| @@ -920,6 +1189,7 @@ #:|setMask(QBitmap)| #:|setMask(QRegion)| #:|setMask| + #:|setMaterial| #:|setMatrix| #:|setMaxCount| #:|setMaxLength| @@ -929,274 +1199,4 @@ #:|setMaximumBlockCount| #:|setMaximumCacheSize| #:|setMaximumDateTime| - #:|setMaximumDate| - #:|setMaximumFrameRate| - #:|setMaximumHeight| - #:|setMaximumItemCount| - #:|setMaximumLevelOfDetail| - #:|setMaximumPagesInCache.QWebSettings| - #:|setMaximumSectionSize| - #:|setMaximumSize| - #:|setMaximumTime| - #:|setMaximumTouchPoints| - #:|setMaximumWidth| - #:|setMaximum| - #:|setMediaObject| - #:|setMedia| - #:|setMenuBar| - #:|setMenuRole| - #:|setMenuWidget| - #:|setMenu| - #:|setMetaData| - #:|setMetaInformation| - #:|setMeteringMode| - #:|setMidLineWidth| - #:|setMimeData| - #:|setMimeTypeFilters| - #:|setMinMagFilters| - #:|setMinMax| - #:|setMinificationFilter| - #:|setMinimal| - #:|setMinimumContentsLength| - #:|setMinimumDateTime| - #:|setMinimumDate| - #:|setMinimumDuration| - #:|setMinimumFrameRate| - #:|setMinimumHeight| - #:|setMinimumLevelOfDetail| - #:|setMinimumMargins| - #:|setMinimumRenderSize| - #:|setMinimumSectionSize| - #:|setMinimumSize| - #:|setMinimumTime| - #:|setMinimumWidth| - #:|setMinimum| - #:|setMinorVersion| - #:|setMipBaseLevel| - #:|setMipLevelRange| - #:|setMipLevels| - #:|setMipMaxLevel| - #:|setMipmap| - #:|setMiterLimit| - #:|setModality| - #:|setModal| - #:|setModelColumn| - #:|setModelData| - #:|setModelSorting| - #:|setModel| - #:|setMode| - #:|setModified| - #:|setModifierMask| - #:|setMouseGrabEnabled| - #:|setMouseTracking| - #:|setMovable| - #:|setMovement| - #:|setMovie| - #:|setMulticastInterface| - #:|setMuted| - #:|setNameFilterDisables| - #:|setNameFilters| - #:|setNameFilter| - #:|setNamedColor| - #:|setName| - #:|setNativeMenuBar| - #:|setNavigationBarVisible| - #:|setNetmask| - #:|setNetworkAccessManager| - #:|setNetworkAccessible| - #:|setNetworkConfigurations| - #:|setNetworkConfiguration| - #:|setNonBreakableLines| - #:|setNotation| - #:|setNotchTarget| - #:|setNotchesVisible| - #:|setNotifyInterval| - #:|setNull(QString)| - #:|setNull(int)| - #:|setNull| - #:|setNum(double)| - #:|setNum(int)| - #:|setNumColumns| - #:|setNumberOptions| - #:|setNumberPrefix| - #:|setNumberSuffix| - #:|setNumericalPrecisionPolicy| - #:|setNum| - #:|setObjectCacheCapacities.QWebSettings| - #:|setObjectIndex| - #:|setObjectName| - #:|setObjectType| - #:|setOctMode| - #:|setOfflineStorageDefaultQuota.QWebSettings| - #:|setOfflineStoragePath.QWebSettings| - #:|setOfflineWebApplicationCachePath.QWebSettings| - #:|setOfflineWebApplicationCacheQuota.QWebSettings| - #:|setOffset(QPointF)| - #:|setOffset(double)| - #:|setOffsetFromUtc| - #:|setOffsetToLastSection| - #:|setOffsetToSectionPosition| - #:|setOffset| - #:|setOkButtonText| - #:|setOpacityMask| - #:|setOpacity| - #:|setOpaqueResize| - #:|setOpenExternalLinks| - #:|setOpenLinks| - #:|setOpenMode| - #:|setOptimizationFlags| - #:|setOptimizationFlag| - #:|setOptionTabs| - #:|setOptions| - #:|setOption| - #:|setOrganizationDomain.QCoreApplication| - #:|setOrganizationName.QCoreApplication| - #:|setOrientationUpdateMask| - #:|setOrientation| - #:|setOriginCorner| - #:|setOriginatingObject| - #:|setOrigin| - #:|setOuterXml| - #:|setOutputFileName| - #:|setOutputFormat| - #:|setOutputLocation| - #:|setOverline| - #:|setOverrideCursor.QGuiApplication| - #:|setOvershoot| - #:|setOverwriteMode| - #:|setOwnedByLayout| - #:|setPadding| - #:|setPageBreakPolicy| - #:|setPageLayout| - #:|setPageMargins| - #:|setPageOrder| - #:|setPageOrientation| - #:|setPageSize(QPageSize)| - #:|setPageSize(QPagedPaintDevice::PageSize)| - #:|setPageSizeMM| - #:|setPageSize| - #:|setPageStep| - #:|setPage| - #:|setPaintDevice| - #:|setPaintFlipped| - #:|setPalette.QApplication| - #:|setPalette.QGuiApplication| - #:|setPalette.QToolTip| - #:|setPalette| - #:|setPanelModality| - #:|setPaperSource| - #:|setParentItem| - #:|setParentLayoutItem| - #:|setParent| - #:|setPassword| - #:|setPatchVertexCount| - #:|setPath.QSettings| - #:|setPath| - #:|setPatternOptions| - #:|setPatternSyntax| - #:|setPattern| - #:|setPauseMode| - #:|setPaused| - #:|setPeerAddress| - #:|setPeerHostName| - #:|setPeerName| - #:|setPeerPort| - #:|setPeerVerifyDepth| - #:|setPeerVerifyMode| - #:|setPen(QColor)| - #:|setPen(QPen)| - #:|setPen(Qt::PenStyle)| - #:|setPen| - #:|setPeriod| - #:|setPermissions.QFile| - #:|setPermissions| - #:|setPicture| - #:|setPixelAspectRatio| - #:|setPixelFormat| - #:|setPixelSize| - #:|setPixel| - #:|setPixmap| - #:|setPlainText| - #:|setPlaybackMode| - #:|setPlaybackRate| - #:|setPlaylist| - #:|setPluginFactory| - #:|setPointSizeF| - #:|setPointSize| - #:|setPolygon| - #:|setPopupMode| - #:|setPopup| - #:|setPortraitOrientation| - #:|setPort| - #:|setPos(QScreen*...).QCursor| - #:|setPos(int...).QCursor| - #:|setPos.QCursor| - #:|setPositionForIndex| - #:|setPosition| - #:|setPos| - #:|setPrecision| - #:|setPreeditArea| - #:|setPreferredContentsSize| - #:|setPreferredHeight| - #:|setPreferredSize| - #:|setPreferredWidth| - #:|setPrefixLength| - #:|setPrefix| - #:|setPreviewWidget| - #:|setPrimaryKey| - #:|setPrintProgram| - #:|setPrintRange| - #:|setPrinterName| - #:|setPriority| - #:|setPrivateKey| - #:|setProcessChannelMode| - #:|setProcessEnvironment| - #:|setProcessState| - #:|setProfile| - #:|setProgram| - #:|setProperty(int,QVariant)| - #:|setProperty(int,QVector)| - #:|setPropertyName| - #:|setProperty| - #:|setProtocolTag| - #:|setProtocol| - #:|setProxyFactory| - #:|setProxyModel| - #:|setProxy| - #:|setQuality| - #:|setQuery(QSqlQuery)| - #:|setQuery(QString)| - #:|setQuery(QUrlQuery)| - #:|setQueryType| - #:|setQuery| - #:|setQuitLockEnabled.QCoreApplication| - #:|setQuitOnLastWindowClosed.QGuiApplication| - #:|setRadius| - #:|setRangeSelected| - #:|setRange| - #:|setRawHeader| - #:|setReadBufferSize| - #:|setReadChannel| - #:|setReadOnly| - #:|setRecord| - #:|setRects| - #:|setRect| - #:|setRedBufferSize| - #:|setRedF| - #:|setRed| - #:|setRegExp| - #:|setRelation| - #:|setRenderHints| - #:|setRenderHint| - #:|setRenderableType| - #:|setRepeatAction| - #:|setRequiredStatus| - #:|setRequired| - #:|setResizeAnchor| - #:|setResizeContentsPrecision| - #:|setResizeGripsVisible| - #:|setResizeMode| - #:|setResizesToContents| - #:|setResolution| - #:|setResolveSymlinks| - #:|setRestartCommand|)) + #:|setMaximumDate|)) diff --git a/src/lisp/all-wrappers-5.lisp b/src/lisp/all-wrappers-5.lisp index 155f595..16f5ee3 100644 --- a/src/lisp/all-wrappers-5.lisp +++ b/src/lisp/all-wrappers-5.lisp @@ -1,5 +1,296 @@ (defpackage :eql (:export + #:|setMaximumFrameRate| + #:|setMaximumHeight| + #:|setMaximumItemCount| + #:|setMaximumLevelOfDetail| + #:|setMaximumPagesInCache.QWebSettings| + #:|setMaximumSectionSize| + #:|setMaximumSize| + #:|setMaximumTime| + #:|setMaximumTouchPoints| + #:|setMaximumWidth| + #:|setMaximum| + #:|setMediaObject| + #:|setMedia| + #:|setMenuBar| + #:|setMenuRole| + #:|setMenuWidget| + #:|setMenu| + #:|setMetaData| + #:|setMetaInformation| + #:|setMeteringMode| + #:|setMidLineWidth| + #:|setMimeData| + #:|setMimeTypeFilters| + #:|setMinMagFilters| + #:|setMinMax| + #:|setMinificationFilter| + #:|setMinimal| + #:|setMinimumContentsLength| + #:|setMinimumDateTime| + #:|setMinimumDate| + #:|setMinimumDuration| + #:|setMinimumFrameRate| + #:|setMinimumHeight| + #:|setMinimumLevelOfDetail| + #:|setMinimumMargins| + #:|setMinimumRenderSize| + #:|setMinimumSectionSize| + #:|setMinimumSize| + #:|setMinimumTime| + #:|setMinimumWidth| + #:|setMinimum| + #:|setMinorVersion| + #:|setMipBaseLevel| + #:|setMipLevelRange| + #:|setMipLevels| + #:|setMipMaxLevel| + #:|setMipmapFiltering| + #:|setMipmap| + #:|setMiterLimit| + #:|setModality| + #:|setModal| + #:|setModelColumn| + #:|setModelData| + #:|setModelSorting| + #:|setModel| + #:|setMode| + #:|setModified| + #:|setModifierMask| + #:|setMouseGrabEnabled| + #:|setMouseTracking| + #:|setMovable| + #:|setMovement| + #:|setMovie| + #:|setMulticastInterface| + #:|setMuted| + #:|setNameFilterDisables| + #:|setNameFilters| + #:|setNameFilter| + #:|setNamedColor| + #:|setName| + #:|setNativeMenuBar| + #:|setNavigationBarVisible| + #:|setNetmask| + #:|setNetworkAccessManagerFactory| + #:|setNetworkAccessManager| + #:|setNetworkAccessible| + #:|setNetworkConfigurations| + #:|setNetworkConfiguration| + #:|setNonBreakableLines| + #:|setNotation| + #:|setNotchTarget| + #:|setNotchesVisible| + #:|setNotifyInterval| + #:|setNotifyOnValueChanged| + #:|setNull(QString)| + #:|setNull(int)| + #:|setNull| + #:|setNum(double)| + #:|setNum(int)| + #:|setNumColumns| + #:|setNumberOptions| + #:|setNumberPrefix| + #:|setNumberSuffix| + #:|setNumericalPrecisionPolicy| + #:|setNum| + #:|setObjectCacheCapacities.QWebSettings| + #:|setObjectIndex| + #:|setObjectName| + #:|setObjectOwnership.QQmlEngine| + #:|setObjectType| + #:|setObject| + #:|setOctMode| + #:|setOfflineStorageDefaultQuota.QWebSettings| + #:|setOfflineStoragePath.QWebSettings| + #:|setOfflineStoragePath| + #:|setOfflineWebApplicationCachePath.QWebSettings| + #:|setOfflineWebApplicationCacheQuota.QWebSettings| + #:|setOffset(QPointF)| + #:|setOffset(double)| + #:|setOffsetFromUtc| + #:|setOffsetToLastSection| + #:|setOffsetToSectionPosition| + #:|setOffset| + #:|setOkButtonText| + #:|setOpacityMask| + #:|setOpacity| + #:|setOpaqueMaterial| + #:|setOpaquePainting| + #:|setOpaqueResize| + #:|setOpenExternalLinks| + #:|setOpenLinks| + #:|setOpenMode| + #:|setOptimizationFlags| + #:|setOptimizationFlag| + #:|setOptionTabs| + #:|setOptions| + #:|setOption| + #:|setOrganizationDomain.QCoreApplication| + #:|setOrganizationName.QCoreApplication| + #:|setOrientationUpdateMask| + #:|setOrientation| + #:|setOriginCorner| + #:|setOriginatingObject| + #:|setOrigin| + #:|setOuterXml| + #:|setOutputFileName| + #:|setOutputFormat| + #:|setOutputLocation| + #:|setOutputWarningsToStandardError| + #:|setOverline| + #:|setOverrideCursor.QGuiApplication| + #:|setOvershoot| + #:|setOverwriteMode| + #:|setOwnedByLayout| + #:|setOwnsTexture| + #:|setPadding| + #:|setPageBreakPolicy| + #:|setPageLayout| + #:|setPageMargins| + #:|setPageOrder| + #:|setPageOrientation| + #:|setPageSize(QPageSize)| + #:|setPageSize(QPagedPaintDevice::PageSize)| + #:|setPageSizeMM| + #:|setPageSize| + #:|setPageStep| + #:|setPage| + #:|setPaintDevice| + #:|setPaintFlipped| + #:|setPalette.QApplication| + #:|setPalette.QGuiApplication| + #:|setPalette.QToolTip| + #:|setPalette| + #:|setPanelModality| + #:|setPaperSource| + #:|setParentItem| + #:|setParentLayoutItem| + #:|setParent| + #:|setPassword| + #:|setPatchVertexCount| + #:|setPath.QSettings| + #:|setPath| + #:|setPatternOptions| + #:|setPatternSyntax| + #:|setPattern| + #:|setPauseMode| + #:|setPaused| + #:|setPeerAddress| + #:|setPeerHostName| + #:|setPeerName| + #:|setPeerPort| + #:|setPeerVerifyDepth| + #:|setPeerVerifyMode| + #:|setPen(QColor)| + #:|setPen(QPen)| + #:|setPen(Qt::PenStyle)| + #:|setPen| + #:|setPerformanceHints| + #:|setPerformanceHint| + #:|setPeriod| + #:|setPermissions.QFile| + #:|setPermissions| + #:|setPersistentOpenGLContext| + #:|setPersistentSceneGraph| + #:|setPicture| + #:|setPixelAspectRatio| + #:|setPixelFormat| + #:|setPixelSize| + #:|setPixel| + #:|setPixmap| + #:|setPlainText| + #:|setPlaybackMode| + #:|setPlaybackRate| + #:|setPlaylist| + #:|setPluginFactory| + #:|setPluginPathList| + #:|setPointSizeF| + #:|setPointSize| + #:|setPolygon| + #:|setPopupMode| + #:|setPopup| + #:|setPortraitOrientation| + #:|setPort| + #:|setPos(QScreen*...).QCursor| + #:|setPos(int...).QCursor| + #:|setPos.QCursor| + #:|setPositionForIndex| + #:|setPosition| + #:|setPos| + #:|setPrecision| + #:|setPreeditArea| + #:|setPreferredContentsSize| + #:|setPreferredHeight| + #:|setPreferredSize| + #:|setPreferredWidth| + #:|setPrefixLength| + #:|setPrefix| + #:|setPreviewWidget| + #:|setPrimaryKey| + #:|setPrintProgram| + #:|setPrintRange| + #:|setPrinterName| + #:|setPriority| + #:|setPrivateKey| + #:|setProcessChannelMode| + #:|setProcessEnvironment| + #:|setProcessState| + #:|setProfile| + #:|setProgram| + #:|setProjectionMatrixToRect| + #:|setProjectionMatrix| + #:|setProperty(QString...)| + #:|setProperty(int,QVariant)| + #:|setProperty(int,QVector)| + #:|setProperty(uint...)| + #:|setPropertyName| + #:|setProperty| + #:|setProtocolTag| + #:|setProtocol| + #:|setPrototype| + #:|setProxyFactory| + #:|setProxyModel| + #:|setProxy| + #:|setQuality| + #:|setQuery(QSqlQuery)| + #:|setQuery(QString)| + #:|setQuery(QUrlQuery)| + #:|setQueryType| + #:|setQuery| + #:|setQuitLockEnabled.QCoreApplication| + #:|setQuitOnLastWindowClosed.QGuiApplication| + #:|setRadius| + #:|setRangeSelected| + #:|setRange| + #:|setRawHeader| + #:|setReadBufferSize| + #:|setReadChannel| + #:|setReadOnly| + #:|setRecord| + #:|setRects| + #:|setRect| + #:|setRedBufferSize| + #:|setRedF| + #:|setRed| + #:|setRegExp| + #:|setRelation| + #:|setRenderHints| + #:|setRenderHint| + #:|setRenderTarget| + #:|setRenderableType| + #:|setRepeatAction| + #:|setRequiredStatus| + #:|setRequired| + #:|setResizeAnchor| + #:|setResizeContentsPrecision| + #:|setResizeGripsVisible| + #:|setResizeMode| + #:|setResizesToContents| + #:|setResolution| + #:|setResolveSymlinks| + #:|setRestartCommand| #:|setRestartHint| #:|setResult| #:|setRetainSizeWhenHidden| @@ -13,6 +304,7 @@ #:|setRootIndex| #:|setRootIsDecorated| #:|setRootModelIndex| + #:|setRootNode| #:|setRootObject.QAccessible| #:|setRootPath| #:|setRotationAngle| @@ -77,6 +369,7 @@ #:|setSelectionMode| #:|setSelectionRectVisible| #:|setSelection| + #:|setSelector| #:|setSenderObject| #:|setSeparatorsCollapsible| #:|setSeparator| @@ -86,7 +379,6 @@ #:|setShapeMode| #:|setShape| #:|setShareContext| - #:|setSharedRenderer| #:|setSharpeningLevel| #:|setShortcutAutoRepeat| #:|setShortcutContext| @@ -112,6 +404,7 @@ #:|setSliderDown| #:|setSliderPosition| #:|setSmallDecimalPoint| + #:|setSmooth| #:|setSocketError| #:|setSocketOptions| #:|setSocketOption| @@ -124,7 +417,9 @@ #:|setSortingEnabled| #:|setSorting| #:|setSort| + #:|setSourceLocation| #:|setSourceModel| + #:|setSourceRect| #:|setSource| #:|setSpacing| #:|setSpanAngle| @@ -214,6 +509,7 @@ #:|setTargetObject| #:|setTargetStates| #:|setTargetState| + #:|setTarget| #:|setTearOffEnabled| #:|setTestModeEnabled.QStandardPaths| #:|setTextAlignment| @@ -234,6 +530,8 @@ #:|setTextValue| #:|setTextVisible| #:|setTextWidth| + #:|setTextureCoordinatesTransform| + #:|setTextureFollowsItemSize| #:|setTextureImage| #:|setTextureTarget| #:|setTexture| @@ -267,9 +565,11 @@ #:|setTotalScaleFactor| #:|setTracking| #:|setTransformOriginPoint| + #:|setTransformOrigin| #:|setTransformationAnchor| #:|setTransformationMode| #:|setTransform| + #:|setTransientParent_helper| #:|setTransientParent| #:|setTransitionType| #:|setTreePosition| @@ -333,6 +633,7 @@ #:|setValue| #:|setVector| #:|setVersion| + #:|setVertexDataPattern| #:|setVerticalAlignment| #:|setVerticalHeaderFormat| #:|setVerticalHeaderItem| @@ -345,6 +646,7 @@ #:|setVerticalScrollMode| #:|setVerticalSpacing| #:|setVerticalStretch| + #:|setVerticalWrapMode| #:|setVideoBitRate| #:|setVideoCodec| #:|setVideoOutput(QAbstractVideoSurface*)| @@ -363,6 +665,8 @@ #:|setViewfinderSettings| #:|setViewfinder| #:|setViewportMargins| + #:|setViewportRect(QRect)| + #:|setViewportRect(QSize)| #:|setViewportSize| #:|setViewportUpdateMode| #:|setViewport| @@ -428,6 +732,7 @@ #:|setupFinished| #:|setupStarted| #:|setupViewport| + #:|setup| #:|shaderDestroyed| #:|shaderId| #:|shaderType| @@ -448,6 +753,7 @@ #:|shouldInterruptJavaScript| #:|showColumn| #:|showDropIndicator| + #:|showEvent| #:|showExtension| #:|showFullScreen| #:|showGrid| @@ -498,6 +804,8 @@ #:|sizeHintForRow| #:|sizeHint| #:|sizeIncrement| + #:|sizeOfIndex| + #:|sizeOfVertex| #:|sizePixels.QPageSize| #:|sizePixels| #:|sizePoints.QPageSize| @@ -514,8 +822,10 @@ #:|sliderValueFromPosition.QStyle| #:|slopeAtPercent| #:|smallDecimalPoint| + #:|smoothChanged| #:|smoothScaled| #:|smoothSizes| + #:|smooth| #:|socketOptions| #:|socketOption| #:|socketType| @@ -534,9 +844,11 @@ #:|sourceBoundingRect| #:|sourceChanged| #:|sourceCode| + #:|sourceFile| #:|sourceIsPixmap| #:|sourceModelChanged| #:|sourceModel| + #:|sourceRect| #:|sourceState| #:|source| #:|spacerItem| @@ -558,6 +870,7 @@ #:|squareToQuad.QTransform| #:|sslConfiguration| #:|sslErrors| + #:|stackAfter| #:|stackBefore| #:|stackUnder| #:|stackingMode| @@ -626,9 +939,11 @@ #:|stretchLastSection| #:|stretchSectionCount| #:|stretch| + #:|strictlyEquals| #:|strikeOutPos| #:|strikeOut| #:|stringList| + #:|stringLiteral| #:|stringProperty| #:|string| #:|stripDelimiters| @@ -816,6 +1131,7 @@ #:|textColor| #:|textCursor| #:|textDirection| + #:|textDocument| #:|textEchoMode| #:|textEdited| #:|textElideMode| @@ -839,8 +1155,17 @@ #:|textValueSelected| #:|textValue| #:|textWidth| + #:|textureByteCount| + #:|textureChanged| + #:|textureCoordinatesTransform| + #:|textureFactoryForImage.QQuickTextureFactory| + #:|textureFactory| + #:|textureFollowsItemSizeChanged| + #:|textureFollowsItemSize| #:|textureId| #:|textureImage| + #:|textureProvider| + #:|textureSize| #:|textureTarget| #:|texture| #:|text| @@ -874,329 +1199,4 @@ #:|toBlockFormat| #:|toBool| #:|toByteArray| - #:|toCharFormat| - #:|toChar| - #:|toCmyk| - #:|toCubicSpline| - #:|toCurrencyString(double)| - #:|toCurrencyString(double...)| - #:|toCurrencyString(float)| - #:|toCurrencyString(float...)| - #:|toCurrencyString(int)| - #:|toCurrencyString(int...)| - #:|toCurrencyString(qlonglong)| - #:|toCurrencyString(qlonglong...)| - #:|toCurrencyString(qulonglong)| - #:|toCurrencyString(qulonglong...)| - #:|toCurrencyString(short)| - #:|toCurrencyString(short...)| - #:|toCurrencyString(uint)| - #:|toCurrencyString(uint...)| - #:|toCurrencyString(ushort)| - #:|toCurrencyString(ushort...)| - #:|toCurrencyString| - #:|toDate(QString,QLocale::FormatType)| - #:|toDate(QString,QString)| - #:|toDateTime(QString,QLocale::FormatType)| - #:|toDateTime(QString,QString)| - #:|toDateTime| - #:|toDate| - #:|toDer| - #:|toDisplayString| - #:|toDouble(QString)| - #:|toDouble(QString...)| - #:|toDouble(QStringRef)| - #:|toDouble(QStringRef...)| - #:|toDouble| - #:|toEasingCurve| - #:|toEncoded| - #:|toEnd| - #:|toEulerAngles| - #:|toFillPolygon(QMatrix)| - #:|toFillPolygon(QTransform)| - #:|toFillPolygons(QMatrix)| - #:|toFillPolygons(QTransform)| - #:|toFillPolygons| - #:|toFillPolygon| - #:|toFirst| - #:|toFloat(QString)| - #:|toFloat(QString...)| - #:|toFloat(QStringRef)| - #:|toFloat(QStringRef...)| - #:|toFloat| - #:|toFrameFormat| - #:|toGraphicsObject| - #:|toHsl| - #:|toHsv| - #:|toHtml| - #:|toIPv4Address| - #:|toImageFormat.QImage| - #:|toImageFormat| - #:|toImage| - #:|toInnerXml| - #:|toInt(QString)| - #:|toInt(QString...)| - #:|toInt(QStringRef)| - #:|toInt(QStringRef...)| - #:|toInt| - #:|toJsonArray| - #:|toJsonDocument| - #:|toJsonObject| - #:|toJsonValue| - #:|toJulianDay| - #:|toLast| - #:|toLineF| - #:|toLine| - #:|toListFormat| - #:|toList| - #:|toLocalFile| - #:|toLocalTime| - #:|toLocale| - #:|toLongLong(QString)| - #:|toLongLong(QString...)| - #:|toLongLong(QStringRef)| - #:|toLongLong(QStringRef...)| - #:|toLongLong| - #:|toLower| - #:|toMSecsSinceEpoch| - #:|toMargins| - #:|toModelIndex| - #:|toNativeSeparators.QDir| - #:|toNextBoundary| - #:|toNext| - #:|toOffsetFromUtc| - #:|toOuterXml| - #:|toPage| - #:|toPem| - #:|toPercentEncoding.QUrl| - #:|toPersistentModelIndex| - #:|toPixelFormat.QImage| - #:|toPlainText| - #:|toPointF| - #:|toPoint| - #:|toPreviousBoundary| - #:|toPrevious| - #:|toRawForm| - #:|toReal| - #:|toRectF| - #:|toRect| - #:|toRegExp| - #:|toRegularExpression| - #:|toReversed| - #:|toRfc4122| - #:|toRgb| - #:|toShort(QString)| - #:|toShort(QString...)| - #:|toShort(QStringRef)| - #:|toShort(QStringRef...)| - #:|toShort| - #:|toSizeF| - #:|toSize| - #:|toStart| - #:|toString(QDate)| - #:|toString(QDate,QLocale::FormatType)| - #:|toString(QDate,QString)| - #:|toString(QDate...)| - #:|toString(QDateTime)| - #:|toString(QDateTime,QLocale::FormatType)| - #:|toString(QDateTime,QString)| - #:|toString(QDateTime...)| - #:|toString(QString)| - #:|toString(QTime)| - #:|toString(QTime,QLocale::FormatType)| - #:|toString(QTime,QString)| - #:|toString(QTime...)| - #:|toString(Qt::DateFormat)| - #:|toString(double)| - #:|toString(double...)| - #:|toString(float)| - #:|toString(float...)| - #:|toString(int)| - #:|toString(qlonglong)| - #:|toString(qulonglong)| - #:|toString(short)| - #:|toString(uint)| - #:|toString(ushort)| - #:|toStringList.QUrl| - #:|toStringList| - #:|toString| - #:|toSubpathPolygons(QMatrix)| - #:|toSubpathPolygons(QTransform)| - #:|toSubpathPolygons| - #:|toTableCellFormat| - #:|toTableFormat| - #:|toText| - #:|toTime(QString,QLocale::FormatType)| - #:|toTime(QString,QString)| - #:|toTimeSpec| - #:|toTimeZone| - #:|toTime_t| - #:|toTime| - #:|toTransform| - #:|toUInt(QString)| - #:|toUInt(QString...)| - #:|toUInt(QStringRef)| - #:|toUInt(QStringRef...)| - #:|toUInt| - #:|toULongLong(QString)| - #:|toULongLong(QString...)| - #:|toULongLong(QStringRef)| - #:|toULongLong(QStringRef...)| - #:|toULongLong| - #:|toUShort(QString)| - #:|toUShort(QString...)| - #:|toUShort(QStringRef)| - #:|toUShort(QStringRef...)| - #:|toUShort| - #:|toUTC| - #:|toUnicode(QByteArray)| - #:|toUnicode(const char*)| - #:|toUnicode| - #:|toUpper| - #:|toUrl| - #:|toUuid| - #:|toVector2DAffine| - #:|toVector2D| - #:|toVector3DAffine| - #:|toVector3D| - #:|toVector4D| - #:|toggleBit| - #:|toggleClass| - #:|toggleDirection| - #:|toggleViewAction| - #:|toggled| - #:|toggle| - #:|toolBarArea| - #:|toolBarBreak| - #:|toolBarVisibilityChangeRequested| - #:|toolButtonStyleChanged| - #:|toolButtonStyle| - #:|toolTipBase| - #:|toolTipDuration| - #:|toolTipText| - #:|toolTipsVisible| - #:|toolTip| - #:|topChanged| - #:|topLeft| - #:|topLevelAt.QApplication| - #:|topLevelAt.QGuiApplication| - #:|topLevelChanged| - #:|topLevelDomain| - #:|topLevelItemCount| - #:|topLevelItem| - #:|topLevelWidgets.QApplication| - #:|topLevelWidget| - #:|topLevelWindows.QGuiApplication| - #:|topMargin| - #:|topPadding| - #:|topRow| - #:|top| - #:|totalBytes| - #:|totalChangeFlags| - #:|totalDuration| - #:|totalRotationAngle| - #:|totalScaleFactor| - #:|touchPointStates| - #:|touchPoints| - #:|tr.QObject| - #:|transaction| - #:|transformBetween| - #:|transformOriginPoint| - #:|transformationAnchor| - #:|transformationMode| - #:|transformed(QMatrix)| - #:|transformed(QMatrix...)| - #:|transformed(QTransform)| - #:|transformed(QTransform...)| - #:|transformed| - #:|transform| - #:|transientParent| - #:|transitionType| - #:|transitions| - #:|translate(QPoint)| - #:|translate(QPointF)| - #:|translate.QCoreApplication| - #:|translated| - #:|translate| - #:|transposed| - #:|transpose| - #:|treePosition| - #:|treeWidget| - #:|triggerAction| - #:|triggerPageAction| - #:|triggered| - #:|trigger| - #:|trueMatrix(QMatrix...).QImage| - #:|trueMatrix(QMatrix...).QPixmap| - #:|trueMatrix(QTransform...).QImage| - #:|trueMatrix(QTransform...).QPixmap| - #:|trueMatrix.QImage| - #:|trueMatrix.QPixmap| - #:|truncate| - #:|tryAcquire| - #:|typeName| - #:|typeToName.QVariant| - #:|type| - #:|uiLanguages| - #:|unbind| - #:|underMouse| - #:|underlineColor| - #:|underlinePos| - #:|underlineStyle| - #:|underline| - #:|undoAvailable| - #:|undoCommandAdded| - #:|undoLimit| - #:|undoStack| - #:|undoTextChanged| - #:|undoText| - #:|undo| - #:|ungetChar| - #:|ungrabGesture| - #:|ungrabKeyboard| - #:|ungrabMouse| - #:|unifiedTitleAndToolBarOnMac| - #:|uniformItemSizes| - #:|uniformLocation(QByteArray)| - #:|uniformLocation(QString)| - #:|uniformLocation(const char*)| - #:|uniformLocation| - #:|uniformRowHeights| - #:|uniqueId.QAccessible| - #:|uniqueId| - #:|united(QRect)| - #:|united(QRegion)| - #:|united| - #:|units| - #:|unload| - #:|unlock| - #:|unmap| - #:|unpolish(QApplication*)| - #:|unpolish(QWidget*)| - #:|unpolish| - #:|unproject| - #:|unregisterDocumentation| - #:|unsetCursor| - #:|unsetError| - #:|unsetHotSpot| - #:|unsetLayoutDirection| - #:|unsetLocale| - #:|unsetSpacing| - #:|unsetWindowFrameMargins| - #:|unsubscribeFromNotification| - #:|unsupportedContent| - #:|update(QRect)| - #:|update(QRegion)| - #:|updateAccessibility.QAccessible| - #:|updateBehavior| - #:|updateBlock| - #:|updateBoundingRect| - #:|updateCells| - #:|updateCell| - #:|updateCookie| - #:|updateEditorData| - #:|updateEditorGeometries| - #:|updateEditorGeometry| - #:|updateGeometries| - #:|updateGeometry| - #:|updateInterval|)) + #:|toCharFormat|)) diff --git a/src/lisp/all-wrappers-6.lisp b/src/lisp/all-wrappers-6.lisp index 9bf78d3..ddc0c53 100644 --- a/src/lisp/all-wrappers-6.lisp +++ b/src/lisp/all-wrappers-6.lisp @@ -1,14 +1,353 @@ (defpackage :eql (:export + #:|toChar| + #:|toCmyk| + #:|toCubicSpline| + #:|toCurrencyString(double)| + #:|toCurrencyString(double...)| + #:|toCurrencyString(float)| + #:|toCurrencyString(float...)| + #:|toCurrencyString(int)| + #:|toCurrencyString(int...)| + #:|toCurrencyString(qlonglong)| + #:|toCurrencyString(qlonglong...)| + #:|toCurrencyString(qulonglong)| + #:|toCurrencyString(qulonglong...)| + #:|toCurrencyString(short)| + #:|toCurrencyString(short...)| + #:|toCurrencyString(uint)| + #:|toCurrencyString(uint...)| + #:|toCurrencyString(ushort)| + #:|toCurrencyString(ushort...)| + #:|toCurrencyString| + #:|toDate(QString,QLocale::FormatType)| + #:|toDate(QString,QString)| + #:|toDateTime(QString,QLocale::FormatType)| + #:|toDateTime(QString,QString)| + #:|toDateTime| + #:|toDate| + #:|toDer| + #:|toDisplayString| + #:|toDouble(QString)| + #:|toDouble(QString...)| + #:|toDouble(QStringRef)| + #:|toDouble(QStringRef...)| + #:|toDouble| + #:|toEasingCurve| + #:|toEncoded| + #:|toEnd| + #:|toEulerAngles| + #:|toFillPolygon(QMatrix)| + #:|toFillPolygon(QTransform)| + #:|toFillPolygons(QMatrix)| + #:|toFillPolygons(QTransform)| + #:|toFillPolygons| + #:|toFillPolygon| + #:|toFirst| + #:|toFloat(QString)| + #:|toFloat(QString...)| + #:|toFloat(QStringRef)| + #:|toFloat(QStringRef...)| + #:|toFloat| + #:|toFrameFormat| + #:|toGraphicsObject| + #:|toHsl| + #:|toHsv| + #:|toHtml| + #:|toIPv4Address| + #:|toImageFormat.QImage| + #:|toImageFormat| + #:|toImage| + #:|toInnerXml| + #:|toInt(QString)| + #:|toInt(QString...)| + #:|toInt(QStringRef)| + #:|toInt(QStringRef...)| + #:|toInt| + #:|toJsonArray| + #:|toJsonDocument| + #:|toJsonObject| + #:|toJsonValue| + #:|toJulianDay| + #:|toLast| + #:|toLineF| + #:|toLine| + #:|toListFormat| + #:|toList| + #:|toLocalFile| + #:|toLocalTime| + #:|toLocale| + #:|toLongLong(QString)| + #:|toLongLong(QString...)| + #:|toLongLong(QStringRef)| + #:|toLongLong(QStringRef...)| + #:|toLongLong| + #:|toLower| + #:|toMSecsSinceEpoch| + #:|toMargins| + #:|toModelIndex| + #:|toNativeSeparators.QDir| + #:|toNextBoundary| + #:|toNext| + #:|toNumber| + #:|toOffsetFromUtc| + #:|toOuterXml| + #:|toPage| + #:|toPem| + #:|toPercentEncoding.QUrl| + #:|toPersistentModelIndex| + #:|toPixelFormat.QImage| + #:|toPlainText| + #:|toPointF| + #:|toPoint| + #:|toPreviousBoundary| + #:|toPrevious| + #:|toQObject| + #:|toRawForm| + #:|toReal| + #:|toRectF| + #:|toRect| + #:|toRegExp| + #:|toRegularExpression| + #:|toReversed| + #:|toRfc4122| + #:|toRgb| + #:|toShort(QString)| + #:|toShort(QString...)| + #:|toShort(QStringRef)| + #:|toShort(QStringRef...)| + #:|toShort| + #:|toSizeF| + #:|toSize| + #:|toStart| + #:|toString(QDate)| + #:|toString(QDate,QLocale::FormatType)| + #:|toString(QDate,QString)| + #:|toString(QDate...)| + #:|toString(QDateTime)| + #:|toString(QDateTime,QLocale::FormatType)| + #:|toString(QDateTime,QString)| + #:|toString(QDateTime...)| + #:|toString(QString)| + #:|toString(QTime)| + #:|toString(QTime,QLocale::FormatType)| + #:|toString(QTime,QString)| + #:|toString(QTime...)| + #:|toString(Qt::DateFormat)| + #:|toString(double)| + #:|toString(double...)| + #:|toString(float)| + #:|toString(float...)| + #:|toString(int)| + #:|toString(qlonglong)| + #:|toString(qulonglong)| + #:|toString(short)| + #:|toString(uint)| + #:|toString(ushort)| + #:|toStringList.QUrl| + #:|toStringList| + #:|toString| + #:|toSubpathPolygons(QMatrix)| + #:|toSubpathPolygons(QTransform)| + #:|toSubpathPolygons| + #:|toTableCellFormat| + #:|toTableFormat| + #:|toText| + #:|toTime(QString,QLocale::FormatType)| + #:|toTime(QString,QString)| + #:|toTimeSpec| + #:|toTimeZone| + #:|toTime_t| + #:|toTime| + #:|toTransform| + #:|toUInt(QString)| + #:|toUInt(QString...)| + #:|toUInt(QStringRef)| + #:|toUInt(QStringRef...)| + #:|toUInt| + #:|toULongLong(QString)| + #:|toULongLong(QString...)| + #:|toULongLong(QStringRef)| + #:|toULongLong(QStringRef...)| + #:|toULongLong| + #:|toUShort(QString)| + #:|toUShort(QString...)| + #:|toUShort(QStringRef)| + #:|toUShort(QStringRef...)| + #:|toUShort| + #:|toUTC| + #:|toUnicode(QByteArray)| + #:|toUnicode(const char*)| + #:|toUnicode| + #:|toUpper| + #:|toUrl| + #:|toUuid| + #:|toVariant| + #:|toVector2DAffine| + #:|toVector2D| + #:|toVector3DAffine| + #:|toVector3D| + #:|toVector4D| + #:|toggleBit| + #:|toggleClass| + #:|toggleDirection| + #:|toggleViewAction| + #:|toggled| + #:|toggle| + #:|toolBarArea| + #:|toolBarBreak| + #:|toolBarVisibilityChangeRequested| + #:|toolButtonStyleChanged| + #:|toolButtonStyle| + #:|toolTipBase| + #:|toolTipDuration| + #:|toolTipText| + #:|toolTipsVisible| + #:|toolTip| + #:|topChanged| + #:|topLeft| + #:|topLevelAt.QApplication| + #:|topLevelAt.QGuiApplication| + #:|topLevelChanged| + #:|topLevelDomain| + #:|topLevelItemCount| + #:|topLevelItem| + #:|topLevelWidgets.QApplication| + #:|topLevelWidget| + #:|topLevelWindows.QGuiApplication| + #:|topMargin| + #:|topPadding| + #:|topRow| + #:|top| + #:|totalBytes| + #:|totalChangeFlags| + #:|totalDuration| + #:|totalRotationAngle| + #:|totalScaleFactor| + #:|touchPointStates| + #:|touchPoints| + #:|tr.QObject| + #:|transaction| + #:|transformBetween| + #:|transformOriginChanged| + #:|transformOriginPoint| + #:|transformOrigin| + #:|transformationAnchor| + #:|transformationMode| + #:|transformed(QMatrix)| + #:|transformed(QMatrix...)| + #:|transformed(QTransform)| + #:|transformed(QTransform...)| + #:|transformed| + #:|transform| + #:|transientParent| + #:|transitionType| + #:|transitions| + #:|translate(QPoint)| + #:|translate(QPointF)| + #:|translate.QCoreApplication| + #:|translated| + #:|translate| + #:|transposed| + #:|transpose| + #:|treePosition| + #:|treeWidget| + #:|triggerAction| + #:|triggerPageAction| + #:|triggerUpdate| + #:|triggered| + #:|trigger| + #:|trimComponentCache| + #:|trueMatrix(QMatrix...).QImage| + #:|trueMatrix(QMatrix...).QPixmap| + #:|trueMatrix(QTransform...).QImage| + #:|trueMatrix(QTransform...).QPixmap| + #:|trueMatrix.QImage| + #:|trueMatrix.QPixmap| + #:|truncate| + #:|tryAcquire| + #:|typeName| + #:|typeToName.QVariant| + #:|type| + #:|uiLanguages| + #:|unbind| + #:|underMouse| + #:|underlineColor| + #:|underlinePos| + #:|underlineStyle| + #:|underline| + #:|undoAvailable| + #:|undoCommandAdded| + #:|undoLimit| + #:|undoStack| + #:|undoTextChanged| + #:|undoText| + #:|undo| + #:|ungetChar| + #:|ungrabGesture| + #:|ungrabKeyboard| + #:|ungrabMouse| + #:|ungrabTouchPoints| + #:|unifiedTitleAndToolBarOnMac| + #:|uniformItemSizes| + #:|uniformLocation(QByteArray)| + #:|uniformLocation(QString)| + #:|uniformLocation(const char*)| + #:|uniformLocation| + #:|uniformRowHeights| + #:|uniqueId.QAccessible| + #:|uniqueId| + #:|united(QRect)| + #:|united(QRegion)| + #:|united| + #:|units| + #:|unload| + #:|unlock| + #:|unmap| + #:|unpolish(QApplication*)| + #:|unpolish(QWidget*)| + #:|unpolish| + #:|unproject| + #:|unregisterDocumentation| + #:|unsetCursor| + #:|unsetError| + #:|unsetHotSpot| + #:|unsetLayoutDirection| + #:|unsetLocale| + #:|unsetSpacing| + #:|unsetWindowFrameMargins| + #:|unsubscribeFromNotification| + #:|unsupportedContent| + #:|update(QRect)| + #:|update(QRegion)| + #:|updateAccessibility.QAccessible| + #:|updateBehavior| + #:|updateBindOptions| + #:|updateBlock| + #:|updateBoundingRect| + #:|updateCells| + #:|updateCell| + #:|updateCookie| + #:|updateEditorData| + #:|updateEditorGeometries| + #:|updateEditorGeometry| + #:|updateGeometries| + #:|updateGeometry| + #:|updateInputMethod| + #:|updateInterval| #:|updateMetaData| #:|updateMicroFocus| #:|updatePositionDependentActions| #:|updatePreviewWidget| #:|updatePreview| + #:|updateRectGeometry.QSGGeometry| #:|updateRequest| #:|updateSceneRect| #:|updateScene| #:|updateSection| + #:|updateState| + #:|updateTexturedRectGeometry.QSGGeometry| + #:|updateTexture| #:|updated| #:|updatesEnabled| #:|update| @@ -54,6 +393,8 @@ #:|vector| #:|verify.QSslCertificate| #:|version| + #:|vertexCount| + #:|vertexDataPattern| #:|verticalAlignment| #:|verticalDirection| #:|verticalHeaderFormat| @@ -68,6 +409,7 @@ #:|verticalScrollbarValueChanged| #:|verticalSpacing| #:|verticalStretch| + #:|verticalWrapMode| #:|videoAvailableChanged| #:|videoBitRate| #:|videoCodecDescription| @@ -82,6 +424,7 @@ #:|viewportChangeRequested| #:|viewportEntered| #:|viewportMargins| + #:|viewportRect| #:|viewportSize| #:|viewportTransform| #:|viewportUpdateMode| @@ -96,6 +439,7 @@ #:|visibilityState| #:|visibility| #:|visibleChanged| + #:|visibleChildrenChanged| #:|visibleRegion| #:|visitedPages| #:|visualAlignment.QStyle| @@ -119,6 +463,7 @@ #:|waitForStarted| #:|wakeUp| #:|warning.QMessageBox| + #:|warnings| #:|warning| #:|wasCanceled| #:|webFrame| @@ -127,6 +472,7 @@ #:|weekdays| #:|weight| #:|whatsThis| + #:|wheelEvent| #:|wheelScrollLines.QApplication| #:|whiteBalanceMode| #:|widgetAt.QApplication| @@ -140,8 +486,10 @@ #:|widthChanged| #:|widthF| #:|widthMM| + #:|widthValid| #:|width| #:|winId| + #:|windowChanged| #:|windowCloseRequested| #:|windowFilePath| #:|windowFlags| @@ -186,6 +534,7 @@ #:|write(QTextDocumentFragment)| #:|write(const QTextDocument*)| #:|write(const char*)| + #:|write.QQmlProperty| #:|writeDatagram| #:|write| #:|writingSystemName.QFontDatabase| diff --git a/src/lisp/all-wrappers-7.lisp b/src/lisp/all-wrappers-7.lisp index 57c4b35..93869de 100644 --- a/src/lisp/all-wrappers-7.lisp +++ b/src/lisp/all-wrappers-7.lisp @@ -102,6 +102,9 @@ (defun |accessibleName| (object &rest arguments) (%qinvoke-method object nil "accessibleName" arguments)) +(defun |accessibleRoot| (object &rest arguments) + (%qinvoke-method object nil "accessibleRoot" arguments)) + (defun |accessibleText| (object &rest arguments) (%qinvoke-method object nil "accessibleText" arguments)) @@ -180,6 +183,21 @@ (defun |activeConfiguration| (object &rest arguments) (%qinvoke-method object nil "activeConfiguration" arguments)) +(defun |activeFocusChanged| (object &rest arguments) + (%qinvoke-method object nil "activeFocusChanged" arguments)) + +(defun |activeFocusItemChanged| (object &rest arguments) + (%qinvoke-method object nil "activeFocusItemChanged" arguments)) + +(defun |activeFocusItem| (object &rest arguments) + (%qinvoke-method object nil "activeFocusItem" arguments)) + +(defun |activeFocusOnTabChanged| (object &rest arguments) + (%qinvoke-method object nil "activeFocusOnTabChanged" arguments)) + +(defun |activeFocusOnTab| (object &rest arguments) + (%qinvoke-method object nil "activeFocusOnTab" arguments)) + (defun |activeGestures| (object &rest arguments) (%qinvoke-method object nil "activeGestures" arguments)) @@ -336,6 +354,12 @@ (defun |addHistoryEntry| (object &rest arguments) (%qinvoke-method object nil "addHistoryEntry" arguments)) +(defun |addImageProvider| (object &rest arguments) + (%qinvoke-method object nil "addImageProvider" arguments)) + +(defun |addImportPath| (object &rest arguments) + (%qinvoke-method object nil "addImportPath" arguments)) + (defun |addItem(QIcon...)| (object &rest arguments) (%qinvoke-method object nil "addItem(QIcon...)" arguments)) @@ -414,6 +438,9 @@ (defun |addPixmap| (object &rest arguments) (%qinvoke-method object nil "addPixmap" arguments)) +(defun |addPluginPath| (object &rest arguments) + (%qinvoke-method object nil "addPluginPath" arguments)) + (defun |addPolygon| (object &rest arguments) (%qinvoke-method object nil "addPolygon" arguments)) @@ -591,6 +618,15 @@ (defun |advance| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "advance" arguments)) +(defun |afterAnimating| (object &rest arguments) + (%qinvoke-method object nil "afterAnimating" arguments)) + +(defun |afterRendering| (object &rest arguments) + (%qinvoke-method object nil "afterRendering" arguments)) + +(defun |afterSynchronizing| (object &rest arguments) + (%qinvoke-method object nil "afterSynchronizing" arguments)) + (defun |alert.QApplication| (&rest arguments) (%qinvoke-method "QApplication" nil "alert" arguments)) @@ -645,6 +681,9 @@ (defun |allocateStorage| (object &rest arguments) (%qinvoke-method object nil "allocateStorage" arguments)) +(defun |allocate| (object &rest arguments) + (%qinvoke-method object nil "allocate" arguments)) + (defun |allowedAreasChanged| (object &rest arguments) (%qinvoke-method object nil "allowedAreasChanged" arguments)) @@ -738,6 +777,12 @@ (defun |antennaConnectedChanged| (object &rest arguments) (%qinvoke-method object nil "antennaConnectedChanged" arguments)) +(defun |antialiasingChanged| (object &rest arguments) + (%qinvoke-method object nil "antialiasingChanged" arguments)) + +(defun |antialiasing| (object &rest arguments) + (%qinvoke-method object nil "antialiasing" arguments)) + (defun |apertureChanged| (object &rest arguments) (%qinvoke-method object nil "apertureChanged" arguments)) @@ -747,6 +792,9 @@ (defun |aperture| (object &rest arguments) (%qinvoke-method object nil "aperture" arguments)) +(defun |appendChildNode| (object &rest arguments) + (%qinvoke-method object nil "appendChildNode" arguments)) + (defun |appendColumns| (object &rest arguments) (%qinvoke-method object nil "appendColumns" arguments)) @@ -885,6 +933,9 @@ (defun |attachment| (object &rest arguments) (%qinvoke-method object nil "attachment" arguments)) +(defun |attributeCount| (object &rest arguments) + (%qinvoke-method object nil "attributeCount" arguments)) + (defun |attributeLocation(QByteArray)| (object &rest arguments) (%qinvoke-method object nil "attributeLocation(QByteArray)" arguments)) @@ -1149,6 +1200,12 @@ (defun |baseUrl| (object &rest arguments) (%qinvoke-method object nil "baseUrl" arguments)) +(defun |baselineOffsetChanged| (object &rest arguments) + (%qinvoke-method object nil "baselineOffsetChanged" arguments)) + +(defun |baselineOffset| (object &rest arguments) + (%qinvoke-method object nil "baselineOffset" arguments)) + (defun |base| (object &rest arguments) (%qinvoke-method object nil "base" arguments)) @@ -1176,6 +1233,12 @@ (defun |beforeInsert| (object &rest arguments) (%qinvoke-method object nil "beforeInsert" arguments)) +(defun |beforeRendering| (object &rest arguments) + (%qinvoke-method object nil "beforeRendering" arguments)) + +(defun |beforeSynchronizing| (object &rest arguments) + (%qinvoke-method object nil "beforeSynchronizing" arguments)) + (defun |beforeUpdate| (object &rest arguments) (%qinvoke-method object nil "beforeUpdate" arguments)) @@ -1200,6 +1263,9 @@ (defun |begin(QWidget*)| (object &rest arguments) (%qinvoke-method object nil "begin(QWidget*)" arguments)) +(defun |beginCreate| (object &rest arguments) + (%qinvoke-method object nil "beginCreate" arguments)) + (defun |beginEditBlock| (object &rest arguments) (%qinvoke-method object nil "beginEditBlock" arguments)) @@ -1386,6 +1452,9 @@ (defun |boolProperty| (object &rest arguments) (%qinvoke-method object nil "boolProperty" arguments)) +(defun |booleanLiteral| (object &rest arguments) + (%qinvoke-method object nil "booleanLiteral" arguments)) + (defun |borderBrush| (object &rest arguments) (%qinvoke-method object nil "borderBrush" arguments)) @@ -1662,6 +1731,15 @@ (defun |calendarWidget| (object &rest arguments) (%qinvoke-method object nil "calendarWidget" arguments)) +(defun |callAsConstructor| (object &rest arguments) + (%qinvoke-method object nil "callAsConstructor" arguments)) + +(defun |callWithInstance| (object &rest arguments) + (%qinvoke-method object nil "callWithInstance" arguments)) + +(defun |call| (object &rest arguments) + (%qinvoke-method object nil "call" arguments)) + (defun |canConvert| (object &rest arguments) (%qinvoke-method object nil "canConvert" arguments)) @@ -1950,6 +2028,9 @@ (defun |checkedId| (object &rest arguments) (%qinvoke-method object nil "checkedId" arguments)) +(defun |childAtIndex| (object &rest arguments) + (%qinvoke-method object nil "childAtIndex" arguments)) + (defun |childAt| (object &rest arguments) (%qinvoke-method object nil "childAt" arguments)) @@ -1989,6 +2070,9 @@ (defun |childrenCollapsible| (object &rest arguments) (%qinvoke-method object nil "childrenCollapsible" arguments)) +(defun |childrenRectChanged| (object &rest arguments) + (%qinvoke-method object nil "childrenRectChanged" arguments)) + (defun |childrenRect| (object &rest arguments) (%qinvoke-method object nil "childrenRect" arguments)) @@ -2004,6 +2088,9 @@ (defun |ciphers| (object &rest arguments) (%qinvoke-method object nil "ciphers" arguments)) +(defun |classBegin| (object &rest arguments) + (%qinvoke-method object nil "classBegin" arguments)) + (defun |classInfoCount| (object &rest arguments) (%qinvoke-method object nil "classInfoCount" arguments)) @@ -2034,6 +2121,9 @@ (defun |cleanupPage| (object &rest arguments) (%qinvoke-method object nil "cleanupPage" arguments)) +(defun |cleanupSceneGraph| (object &rest arguments) + (%qinvoke-method object nil "cleanupSceneGraph" arguments)) + (defun |clear.QPixmapCache| (&rest arguments) (%qinvoke-method "QPixmapCache" nil "clear" arguments)) @@ -2046,12 +2136,21 @@ (defun |clearBackground| (object &rest arguments) (%qinvoke-method object nil "clearBackground" arguments)) +(defun |clearBeforeRendering| (object &rest arguments) + (%qinvoke-method object nil "clearBeforeRendering" arguments)) + (defun |clearBit| (object &rest arguments) (%qinvoke-method object nil "clearBit" arguments)) +(defun |clearColor| (object &rest arguments) + (%qinvoke-method object nil "clearColor" arguments)) + (defun |clearColumnWidthConstraints| (object &rest arguments) (%qinvoke-method object nil "clearColumnWidthConstraints" arguments)) +(defun |clearComponentCache| (object &rest arguments) + (%qinvoke-method object nil "clearComponentCache" arguments)) + (defun |clearContents| (object &rest arguments) (%qinvoke-method object nil "clearContents" arguments)) @@ -2109,6 +2208,9 @@ (defun |clearMinimumTime| (object &rest arguments) (%qinvoke-method object nil "clearMinimumTime" arguments)) +(defun |clearMode| (object &rest arguments) + (%qinvoke-method object nil "clearMode" arguments)) + (defun |clearPropertyFlags| (object &rest arguments) (%qinvoke-method object nil "clearPropertyFlags" arguments)) @@ -2142,15 +2244,24 @@ (defun |clipBoundingRect| (object &rest arguments) (%qinvoke-method object nil "clipBoundingRect" arguments)) +(defun |clipChanged| (object &rest arguments) + (%qinvoke-method object nil "clipChanged" arguments)) + (defun |clipPath| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "clipPath" arguments)) +(defun |clipRect| (object &rest arguments) + (%qinvoke-method object nil "clipRect" arguments)) + (defun |clipRegion| (object &rest arguments) (%qinvoke-method object nil "clipRegion" arguments)) (defun |clipboard.QGuiApplication| (&rest arguments) (%qinvoke-method "QGuiApplication" nil "clipboard" arguments)) +(defun |clip| (object &rest arguments) + (%qinvoke-method object nil "clip" arguments)) + (defun |clockType.QElapsedTimer| (&rest arguments) (%qinvoke-method "QElapsedTimer" nil "clockType" arguments)) @@ -2196,6 +2307,9 @@ (defun |closingDown.QCoreApplication| (&rest arguments) (%qinvoke-method "QCoreApplication" nil "closingDown" arguments)) +(defun |closing| (object &rest arguments) + (%qinvoke-method object nil "closing" arguments)) + (defun |codecForHtml.QTextCodec| (&rest arguments) (%qinvoke-method "QTextCodec" nil "codecForHtml" arguments)) @@ -2238,6 +2352,9 @@ (defun |collateCopies| (object &rest arguments) (%qinvoke-method object nil "collateCopies" arguments)) +(defun |collectGarbage| (object &rest arguments) + (%qinvoke-method object nil "collectGarbage" arguments)) + (defun |collectionFile| (object &rest arguments) (%qinvoke-method object nil "collectionFile" arguments)) @@ -2397,6 +2514,9 @@ (defun |commonAncestorItem| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "commonAncestorItem" arguments)) +(defun |compare| (object &rest arguments) + (%qinvoke-method object nil "compare" arguments)) + (defun |comparisonFunction| (object &rest arguments) (%qinvoke-method object nil "comparisonFunction" arguments)) @@ -2424,6 +2544,9 @@ (defun |completeChanged| (object &rest arguments) (%qinvoke-method object nil "completeChanged" arguments)) +(defun |completeCreate| (object &rest arguments) + (%qinvoke-method object nil "completeCreate" arguments)) + (defun |completeSuffix| (object &rest arguments) (%qinvoke-method object nil "completeSuffix" arguments)) @@ -2451,6 +2574,9 @@ (defun |completionRole| (object &rest arguments) (%qinvoke-method object nil "completionRole" arguments)) +(defun |componentComplete| (object &rest arguments) + (%qinvoke-method object nil "componentComplete" arguments)) + (defun |compositionMode| (object &rest arguments) (%qinvoke-method object nil "compositionMode" arguments)) @@ -2460,6 +2586,15 @@ (defun |conjugated| (object &rest arguments) (%qinvoke-method object nil "conjugated" arguments)) +(defun |connectNotifySignal(QObject*,const char*)| (object &rest arguments) + (%qinvoke-method object nil "connectNotifySignal(QObject*,const char*)" arguments)) + +(defun |connectNotifySignal(QObject*,int)| (object &rest arguments) + (%qinvoke-method object nil "connectNotifySignal(QObject*,int)" arguments)) + +(defun |connectNotifySignal| (object &rest arguments) + (%qinvoke-method object nil "connectNotifySignal" arguments)) + (defun |connectOptions| (object &rest arguments) (%qinvoke-method object nil "connectOptions" arguments)) @@ -2532,6 +2667,9 @@ (defun |contentItemAt| (object &rest arguments) (%qinvoke-method object nil "contentItemAt" arguments)) +(defun |contentItem| (object &rest arguments) + (%qinvoke-method object nil "contentItem" arguments)) + (defun |contentOffset| (object &rest arguments) (%qinvoke-method object nil "contentOffset" arguments)) @@ -2547,6 +2685,9 @@ (defun |contentPos| (object &rest arguments) (%qinvoke-method object nil "contentPos" arguments)) +(defun |contentsBoundingRect| (object &rest arguments) + (%qinvoke-method object nil "contentsBoundingRect" arguments)) + (defun |contentsChanged| (object &rest arguments) (%qinvoke-method object nil "contentsChanged" arguments)) @@ -2565,21 +2706,39 @@ (defun |contentsRect| (object &rest arguments) (%qinvoke-method object nil "contentsRect" arguments)) +(defun |contentsScaleChanged| (object &rest arguments) + (%qinvoke-method object nil "contentsScaleChanged" arguments)) + +(defun |contentsScale| (object &rest arguments) + (%qinvoke-method object nil "contentsScale" arguments)) + (defun |contentsSizeChanged| (object &rest arguments) (%qinvoke-method object nil "contentsSizeChanged" arguments)) (defun |contentsSize| (object &rest arguments) (%qinvoke-method object nil "contentsSize" arguments)) +(defun |contextForObject.QQmlEngine| (&rest arguments) + (%qinvoke-method "QQmlEngine" nil "contextForObject" arguments)) + (defun |contextMenuPolicy| (object &rest arguments) (%qinvoke-method object nil "contextMenuPolicy" arguments)) (defun |contextMenu| (object &rest arguments) (%qinvoke-method object nil "contextMenu" arguments)) +(defun |contextObject| (object &rest arguments) + (%qinvoke-method object nil "contextObject" arguments)) + +(defun |contextProperty| (object &rest arguments) + (%qinvoke-method object nil "contextProperty" arguments)) + (defun |context| (object &rest arguments) (%qinvoke-method object nil "context" arguments)) +(defun |continueExecute| (object &rest arguments) + (%qinvoke-method object nil "continueExecute" arguments)) + (defun |contrastChanged| (object &rest arguments) (%qinvoke-method object nil "contrastChanged" arguments)) @@ -2607,6 +2766,9 @@ (defun |convertToFormat| (object &rest arguments) (%qinvoke-method object nil "convertToFormat" arguments)) +(defun |convertToNormalizedSourceRect| (object &rest arguments) + (%qinvoke-method object nil "convertToNormalizedSourceRect" arguments)) + (defun |convertTo| (object &rest arguments) (%qinvoke-method object nil "convertTo" arguments)) @@ -2655,6 +2817,12 @@ (defun |count| (object &rest arguments) (%qinvoke-method object nil "count" arguments)) +(defun |create(QQmlContext*)| (object &rest arguments) + (%qinvoke-method object nil "create(QQmlContext*)" arguments)) + +(defun |create(QQmlIncubator&)| (object &rest arguments) + (%qinvoke-method object nil "create(QQmlIncubator&)" arguments)) + (defun |createAction.QWhatsThis| (&rest arguments) (%qinvoke-method "QWhatsThis" nil "createAction" arguments)) @@ -2667,6 +2835,9 @@ (defun |createEditor| (object &rest arguments) (%qinvoke-method object nil "createEditor" arguments)) +(defun |createFramebufferObject| (object &rest arguments) + (%qinvoke-method object nil "createFramebufferObject" arguments)) + (defun |createHeuristicMask| (object &rest arguments) (%qinvoke-method object nil "createHeuristicMask" arguments)) @@ -2706,15 +2877,27 @@ (defun |createSeparatedList| (object &rest arguments) (%qinvoke-method object nil "createSeparatedList" arguments)) +(defun |createShader| (object &rest arguments) + (%qinvoke-method object nil "createShader" arguments)) + (defun |createStandardContextMenu| (object &rest arguments) (%qinvoke-method object nil "createStandardContextMenu" arguments)) (defun |createStroke| (object &rest arguments) (%qinvoke-method object nil "createStroke" arguments)) +(defun |createTextureFromId| (object &rest arguments) + (%qinvoke-method object nil "createTextureFromId" arguments)) + +(defun |createTextureFromImage| (object &rest arguments) + (%qinvoke-method object nil "createTextureFromImage" arguments)) + (defun |createTextureView| (object &rest arguments) (%qinvoke-method object nil "createTextureView" arguments)) +(defun |createTexture| (object &rest arguments) + (%qinvoke-method object nil "createTexture" arguments)) + (defun |createUndoAction| (object &rest arguments) (%qinvoke-method object nil "createUndoAction" arguments)) @@ -2751,6 +2934,9 @@ (defun |create| (object &rest arguments) (%qinvoke-method object nil "create" arguments)) +(defun |creationContext| (object &rest arguments) + (%qinvoke-method object nil "creationContext" arguments)) + (defun |creator| (object &rest arguments) (%qinvoke-method object nil "creator" arguments)) @@ -3153,6 +3339,9 @@ (defun |dbmsType| (object &rest arguments) (%qinvoke-method object nil "dbmsType" arguments)) +(defun |deactivate| (object &rest arguments) + (%qinvoke-method object nil "deactivate" arguments)) + (defun |decimalPoint| (object &rest arguments) (%qinvoke-method object nil "decimalPoint" arguments)) @@ -3300,6 +3489,9 @@ (defun |deletePreviousChar| (object &rest arguments) (%qinvoke-method object nil "deletePreviousChar" arguments)) +(defun |deleteProperty| (object &rest arguments) + (%qinvoke-method object nil "deleteProperty" arguments)) + (defun |deleteResource| (object &rest arguments) (%qinvoke-method object nil "deleteResource" arguments)) @@ -3342,6 +3534,9 @@ (defun |destroyEditor| (object &rest arguments) (%qinvoke-method object nil "destroyEditor" arguments)) +(defun |destroyFramebufferObject| (object &rest arguments) + (%qinvoke-method object nil "destroyFramebufferObject" arguments)) + (defun |destroyItemGroup| (object &rest arguments) (%qinvoke-method object nil "destroyItemGroup" arguments)) @@ -3366,6 +3561,9 @@ (defun |devicePixelRatio| (object &rest arguments) (%qinvoke-method object nil "devicePixelRatio" arguments)) +(defun |deviceRect| (object &rest arguments) + (%qinvoke-method object nil "deviceRect" arguments)) + (defun |deviceTransform| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "deviceTransform" arguments)) @@ -3401,201 +3599,3 @@ (defun |directoryChanged| (object &rest arguments) (%qinvoke-method object nil "directoryChanged" arguments)) - -(defun |directoryEntered| (object &rest arguments) - (%qinvoke-method object nil "directoryEntered" arguments)) - -(defun |directoryLoaded| (object &rest arguments) - (%qinvoke-method object nil "directoryLoaded" arguments)) - -(defun |directoryUrlEntered| (object &rest arguments) - (%qinvoke-method object nil "directoryUrlEntered" arguments)) - -(defun |directoryUrl| (object &rest arguments) - (%qinvoke-method object nil "directoryUrl" arguments)) - -(defun |directory| (object &rest arguments) - (%qinvoke-method object nil "directory" arguments)) - -(defun |dirtyRegionOffset| (object &rest arguments) - (%qinvoke-method object nil "dirtyRegionOffset" arguments)) - -(defun |dir| (object &rest arguments) - (%qinvoke-method object nil "dir" arguments)) - -(defun |disableAttributeArray(const char*)| (object &rest arguments) - (%qinvoke-method object nil "disableAttributeArray(const char*)" arguments)) - -(defun |disableAttributeArray(int)| (object &rest arguments) - (%qinvoke-method object nil "disableAttributeArray(int)" arguments)) - -(defun |disableAttributeArray| (object &rest arguments) - (%qinvoke-method object nil "disableAttributeArray" arguments)) - -(defun |discardCommand| (object &rest arguments) - (%qinvoke-method object nil "discardCommand" arguments)) - -(defun |disconnectFromHost| (object &rest arguments) - (%qinvoke-method object nil "disconnectFromHost" arguments)) - -(defun |disconnectFromServer| (object &rest arguments) - (%qinvoke-method object nil "disconnectFromServer" arguments)) - -(defun |disconnected| (object &rest arguments) - (%qinvoke-method object nil "disconnected" arguments)) - -(defun |display(QString)| (object &rest arguments) - (%qinvoke-method object nil "display(QString)" arguments)) - -(defun |display(double)| (object &rest arguments) - (%qinvoke-method object nil "display(double)" arguments)) - -(defun |display(int)| (object &rest arguments) - (%qinvoke-method object nil "display(int)" arguments)) - -(defun |displayColumn| (object &rest arguments) - (%qinvoke-method object nil "displayColumn" arguments)) - -(defun |displayFormat| (object &rest arguments) - (%qinvoke-method object nil "displayFormat" arguments)) - -(defun |displayIntegerBase| (object &rest arguments) - (%qinvoke-method object nil "displayIntegerBase" arguments)) - -(defun |displayName(QDateTime)| (object &rest arguments) - (%qinvoke-method object nil "displayName(QDateTime)" arguments)) - -(defun |displayName(QDateTime...)| (object &rest arguments) - (%qinvoke-method object nil "displayName(QDateTime...)" arguments)) - -(defun |displayName(QTimeZone::TimeType)| (object &rest arguments) - (%qinvoke-method object nil "displayName(QTimeZone::TimeType)" arguments)) - -(defun |displayName(QTimeZone::TimeType...)| (object &rest arguments) - (%qinvoke-method object nil "displayName(QTimeZone::TimeType...)" arguments)) - -(defun |displayName.QStandardPaths| (&rest arguments) - (%qinvoke-method "QStandardPaths" nil "displayName" arguments)) - -(defun |displayName| (object &rest arguments) - (%qinvoke-method object nil "displayName" arguments)) - -(defun |displayText| (object &rest arguments) - (%qinvoke-method object nil "displayText" arguments)) - -(defun |displayedSections| (object &rest arguments) - (%qinvoke-method object nil "displayedSections" arguments)) - -(defun |display| (object &rest arguments) - (%qinvoke-method object nil "display" arguments)) - -(defun |distanceToLine| (object &rest arguments) - (%qinvoke-method object nil "distanceToLine" arguments)) - -(defun |distanceToPlane| (object &rest arguments) - (%qinvoke-method object nil "distanceToPlane" arguments)) - -(defun |distanceToPoint| (object &rest arguments) - (%qinvoke-method object nil "distanceToPoint" arguments)) - -(defun |doAction| (object &rest arguments) - (%qinvoke-method object nil "doAction" arguments)) - -(defun |doItemsLayout| (object &rest arguments) - (%qinvoke-method object nil "doItemsLayout" arguments)) - -(defun |docName| (object &rest arguments) - (%qinvoke-method object nil "docName" arguments)) - -(defun |dockLocationChanged| (object &rest arguments) - (%qinvoke-method object nil "dockLocationChanged" arguments)) - -(defun |dockOptions| (object &rest arguments) - (%qinvoke-method object nil "dockOptions" arguments)) - -(defun |dockWidgetArea| (object &rest arguments) - (%qinvoke-method object nil "dockWidgetArea" arguments)) - -(defun |documentElement| (object &rest arguments) - (%qinvoke-method object nil "documentElement" arguments)) - -(defun |documentLayoutChanged| (object &rest arguments) - (%qinvoke-method object nil "documentLayoutChanged" arguments)) - -(defun |documentLayout| (object &rest arguments) - (%qinvoke-method object nil "documentLayout" arguments)) - -(defun |documentMargin| (object &rest arguments) - (%qinvoke-method object nil "documentMargin" arguments)) - -(defun |documentMode| (object &rest arguments) - (%qinvoke-method object nil "documentMode" arguments)) - -(defun |documentSizeChanged| (object &rest arguments) - (%qinvoke-method object nil "documentSizeChanged" arguments)) - -(defun |documentSize| (object &rest arguments) - (%qinvoke-method object nil "documentSize" arguments)) - -(defun |documentTitle| (object &rest arguments) - (%qinvoke-method object nil "documentTitle" arguments)) - -(defun |documentationFileName| (object &rest arguments) - (%qinvoke-method object nil "documentationFileName" arguments)) - -(defun |document| (object &rest arguments) - (%qinvoke-method object nil "document" arguments)) - -(defun |domain| (object &rest arguments) - (%qinvoke-method object nil "domain" arguments)) - -(defun |doneCurrent| (object &rest arguments) - (%qinvoke-method object nil "doneCurrent" arguments)) - -(defun |done| (object &rest arguments) - (%qinvoke-method object nil "done" arguments)) - -(defun |dotProduct.QQuaternion| (&rest arguments) - (%qinvoke-method "QQuaternion" nil "dotProduct" arguments)) - -(defun |dotProduct.QVector2D| (&rest arguments) - (%qinvoke-method "QVector2D" nil "dotProduct" arguments)) - -(defun |dotProduct.QVector3D| (&rest arguments) - (%qinvoke-method "QVector3D" nil "dotProduct" arguments)) - -(defun |dotProduct.QVector4D| (&rest arguments) - (%qinvoke-method "QVector4D" nil "dotProduct" arguments)) - -(defun |dotsPerMeterX| (object &rest arguments) - (%qinvoke-method object nil "dotsPerMeterX" arguments)) - -(defun |dotsPerMeterY| (object &rest arguments) - (%qinvoke-method object nil "dotsPerMeterY" arguments)) - -(defun |doubleClickInterval.QApplication| (&rest arguments) - (%qinvoke-method "QApplication" nil "doubleClickInterval" arguments)) - -(defun |doubleClicked| (object &rest arguments) - (%qinvoke-method object nil "doubleClicked" arguments)) - -(defun |doubleDecimals| (object &rest arguments) - (%qinvoke-method object nil "doubleDecimals" arguments)) - -(defun |doubleMaximum| (object &rest arguments) - (%qinvoke-method object nil "doubleMaximum" arguments)) - -(defun |doubleMinimum| (object &rest arguments) - (%qinvoke-method object nil "doubleMinimum" arguments)) - -(defun |doubleProperty| (object &rest arguments) - (%qinvoke-method object nil "doubleProperty" arguments)) - -(defun |doubleValueChanged| (object &rest arguments) - (%qinvoke-method object nil "doubleValueChanged" arguments)) - -(defun |doubleValueSelected| (object &rest arguments) - (%qinvoke-method object nil "doubleValueSelected" arguments)) - -(defun |doubleValue| (object &rest arguments) - (%qinvoke-method object nil "doubleValue" arguments)) diff --git a/src/lisp/all-wrappers-8.lisp b/src/lisp/all-wrappers-8.lisp index 3d4be12..1ee0ac2 100644 --- a/src/lisp/all-wrappers-8.lisp +++ b/src/lisp/all-wrappers-8.lisp @@ -1,5 +1,203 @@ (in-package :eql) +(defun |directoryEntered| (object &rest arguments) + (%qinvoke-method object nil "directoryEntered" arguments)) + +(defun |directoryLoaded| (object &rest arguments) + (%qinvoke-method object nil "directoryLoaded" arguments)) + +(defun |directoryUrlEntered| (object &rest arguments) + (%qinvoke-method object nil "directoryUrlEntered" arguments)) + +(defun |directoryUrl| (object &rest arguments) + (%qinvoke-method object nil "directoryUrl" arguments)) + +(defun |directory| (object &rest arguments) + (%qinvoke-method object nil "directory" arguments)) + +(defun |dirtyRegionOffset| (object &rest arguments) + (%qinvoke-method object nil "dirtyRegionOffset" arguments)) + +(defun |dir| (object &rest arguments) + (%qinvoke-method object nil "dir" arguments)) + +(defun |disableAttributeArray(const char*)| (object &rest arguments) + (%qinvoke-method object nil "disableAttributeArray(const char*)" arguments)) + +(defun |disableAttributeArray(int)| (object &rest arguments) + (%qinvoke-method object nil "disableAttributeArray(int)" arguments)) + +(defun |disableAttributeArray| (object &rest arguments) + (%qinvoke-method object nil "disableAttributeArray" arguments)) + +(defun |discardCommand| (object &rest arguments) + (%qinvoke-method object nil "discardCommand" arguments)) + +(defun |disconnectFromHost| (object &rest arguments) + (%qinvoke-method object nil "disconnectFromHost" arguments)) + +(defun |disconnectFromServer| (object &rest arguments) + (%qinvoke-method object nil "disconnectFromServer" arguments)) + +(defun |disconnected| (object &rest arguments) + (%qinvoke-method object nil "disconnected" arguments)) + +(defun |display(QString)| (object &rest arguments) + (%qinvoke-method object nil "display(QString)" arguments)) + +(defun |display(double)| (object &rest arguments) + (%qinvoke-method object nil "display(double)" arguments)) + +(defun |display(int)| (object &rest arguments) + (%qinvoke-method object nil "display(int)" arguments)) + +(defun |displayColumn| (object &rest arguments) + (%qinvoke-method object nil "displayColumn" arguments)) + +(defun |displayFormat| (object &rest arguments) + (%qinvoke-method object nil "displayFormat" arguments)) + +(defun |displayIntegerBase| (object &rest arguments) + (%qinvoke-method object nil "displayIntegerBase" arguments)) + +(defun |displayName(QDateTime)| (object &rest arguments) + (%qinvoke-method object nil "displayName(QDateTime)" arguments)) + +(defun |displayName(QDateTime...)| (object &rest arguments) + (%qinvoke-method object nil "displayName(QDateTime...)" arguments)) + +(defun |displayName(QTimeZone::TimeType)| (object &rest arguments) + (%qinvoke-method object nil "displayName(QTimeZone::TimeType)" arguments)) + +(defun |displayName(QTimeZone::TimeType...)| (object &rest arguments) + (%qinvoke-method object nil "displayName(QTimeZone::TimeType...)" arguments)) + +(defun |displayName.QStandardPaths| (&rest arguments) + (%qinvoke-method "QStandardPaths" nil "displayName" arguments)) + +(defun |displayName| (object &rest arguments) + (%qinvoke-method object nil "displayName" arguments)) + +(defun |displayText| (object &rest arguments) + (%qinvoke-method object nil "displayText" arguments)) + +(defun |displayedSections| (object &rest arguments) + (%qinvoke-method object nil "displayedSections" arguments)) + +(defun |display| (object &rest arguments) + (%qinvoke-method object nil "display" arguments)) + +(defun |distanceToLine| (object &rest arguments) + (%qinvoke-method object nil "distanceToLine" arguments)) + +(defun |distanceToPlane| (object &rest arguments) + (%qinvoke-method object nil "distanceToPlane" arguments)) + +(defun |distanceToPoint| (object &rest arguments) + (%qinvoke-method object nil "distanceToPoint" arguments)) + +(defun |doAction| (object &rest arguments) + (%qinvoke-method object nil "doAction" arguments)) + +(defun |doItemsLayout| (object &rest arguments) + (%qinvoke-method object nil "doItemsLayout" arguments)) + +(defun |docName| (object &rest arguments) + (%qinvoke-method object nil "docName" arguments)) + +(defun |dockLocationChanged| (object &rest arguments) + (%qinvoke-method object nil "dockLocationChanged" arguments)) + +(defun |dockOptions| (object &rest arguments) + (%qinvoke-method object nil "dockOptions" arguments)) + +(defun |dockWidgetArea| (object &rest arguments) + (%qinvoke-method object nil "dockWidgetArea" arguments)) + +(defun |documentElement| (object &rest arguments) + (%qinvoke-method object nil "documentElement" arguments)) + +(defun |documentLayoutChanged| (object &rest arguments) + (%qinvoke-method object nil "documentLayoutChanged" arguments)) + +(defun |documentLayout| (object &rest arguments) + (%qinvoke-method object nil "documentLayout" arguments)) + +(defun |documentMargin| (object &rest arguments) + (%qinvoke-method object nil "documentMargin" arguments)) + +(defun |documentMode| (object &rest arguments) + (%qinvoke-method object nil "documentMode" arguments)) + +(defun |documentSizeChanged| (object &rest arguments) + (%qinvoke-method object nil "documentSizeChanged" arguments)) + +(defun |documentSize| (object &rest arguments) + (%qinvoke-method object nil "documentSize" arguments)) + +(defun |documentTitle| (object &rest arguments) + (%qinvoke-method object nil "documentTitle" arguments)) + +(defun |documentationFileName| (object &rest arguments) + (%qinvoke-method object nil "documentationFileName" arguments)) + +(defun |document| (object &rest arguments) + (%qinvoke-method object nil "document" arguments)) + +(defun |domain| (object &rest arguments) + (%qinvoke-method object nil "domain" arguments)) + +(defun |doneCurrent| (object &rest arguments) + (%qinvoke-method object nil "doneCurrent" arguments)) + +(defun |done| (object &rest arguments) + (%qinvoke-method object nil "done" arguments)) + +(defun |dotProduct.QQuaternion| (&rest arguments) + (%qinvoke-method "QQuaternion" nil "dotProduct" arguments)) + +(defun |dotProduct.QVector2D| (&rest arguments) + (%qinvoke-method "QVector2D" nil "dotProduct" arguments)) + +(defun |dotProduct.QVector3D| (&rest arguments) + (%qinvoke-method "QVector3D" nil "dotProduct" arguments)) + +(defun |dotProduct.QVector4D| (&rest arguments) + (%qinvoke-method "QVector4D" nil "dotProduct" arguments)) + +(defun |dotsPerMeterX| (object &rest arguments) + (%qinvoke-method object nil "dotsPerMeterX" arguments)) + +(defun |dotsPerMeterY| (object &rest arguments) + (%qinvoke-method object nil "dotsPerMeterY" arguments)) + +(defun |doubleClickInterval.QApplication| (&rest arguments) + (%qinvoke-method "QApplication" nil "doubleClickInterval" arguments)) + +(defun |doubleClicked| (object &rest arguments) + (%qinvoke-method object nil "doubleClicked" arguments)) + +(defun |doubleDecimals| (object &rest arguments) + (%qinvoke-method object nil "doubleDecimals" arguments)) + +(defun |doubleMaximum| (object &rest arguments) + (%qinvoke-method object nil "doubleMaximum" arguments)) + +(defun |doubleMinimum| (object &rest arguments) + (%qinvoke-method object nil "doubleMinimum" arguments)) + +(defun |doubleProperty| (object &rest arguments) + (%qinvoke-method object nil "doubleProperty" arguments)) + +(defun |doubleValueChanged| (object &rest arguments) + (%qinvoke-method object nil "doubleValueChanged" arguments)) + +(defun |doubleValueSelected| (object &rest arguments) + (%qinvoke-method object nil "doubleValueSelected" arguments)) + +(defun |doubleValue| (object &rest arguments) + (%qinvoke-method object nil "doubleValue" arguments)) + (defun |downloadProgress| (object &rest arguments) (%qinvoke-method object nil "downloadProgress" arguments)) @@ -318,6 +516,9 @@ (defun |drawTree| (object &rest arguments) (%qinvoke-method object nil "drawTree" arguments)) +(defun |drawingMode| (object &rest arguments) + (%qinvoke-method object nil "drawingMode" arguments)) + (defun |draw| (object &rest arguments) (%qinvoke-method object nil "draw" arguments)) @@ -417,6 +618,9 @@ (defun |effectiveDate| (object &rest arguments) (%qinvoke-method object nil "effectiveDate" arguments)) +(defun |effectiveDevicePixelRatio| (object &rest arguments) + (%qinvoke-method object nil "effectiveDevicePixelRatio" arguments)) + (defun |effectiveOpacity| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "effectiveOpacity" arguments)) @@ -642,6 +846,9 @@ (defun |enumeratorOffset| (object &rest arguments) (%qinvoke-method object nil "enumeratorOffset" arguments)) +(defun |equals| (object &rest arguments) + (%qinvoke-method object nil "equals" arguments)) + (defun |eraseRect(QRect)| (object &rest arguments) (%qinvoke-method object nil "eraseRect(QRect)" arguments)) @@ -660,6 +867,9 @@ (defun |errorString| (object &rest arguments) (%qinvoke-method object nil "errorString" arguments)) +(defun |errors| (object &rest arguments) + (%qinvoke-method object nil "errors" arguments)) + (defun |error| (object &rest arguments) (%qinvoke-method object nil "error" arguments)) @@ -678,6 +888,9 @@ (defun |evaluateJavaScript| (object &rest arguments) (%qinvoke-method object nil "evaluateJavaScript" arguments)) +(defun |evaluate| (object &rest arguments) + (%qinvoke-method object nil "evaluate" arguments)) + (defun |eventDispatcher.QCoreApplication| (&rest arguments) (%qinvoke-method "QCoreApplication" nil "eventDispatcher" arguments)) @@ -789,6 +1002,9 @@ (defun |exponential| (object &rest arguments) (%qinvoke-method object nil "exponential" arguments)) +(defun |exposeEvent| (object &rest arguments) + (%qinvoke-method object nil "exposeEvent" arguments)) + (defun |exposureCompensationChanged| (object &rest arguments) (%qinvoke-method object nil "exposureCompensationChanged" arguments)) @@ -801,6 +1017,9 @@ (defun |exposure| (object &rest arguments) (%qinvoke-method object nil "exposure" arguments)) +(defun |expression| (object &rest arguments) + (%qinvoke-method object nil "expression" arguments)) + (defun |extensions| (object &rest arguments) (%qinvoke-method object nil "extensions" arguments)) @@ -912,6 +1131,12 @@ (defun |fill(uint)| (object &rest arguments) (%qinvoke-method object nil "fill(uint)" arguments)) +(defun |fillColorChanged| (object &rest arguments) + (%qinvoke-method object nil "fillColorChanged" arguments)) + +(defun |fillColor| (object &rest arguments) + (%qinvoke-method object nil "fillColor" arguments)) + (defun |fillPath| (object &rest arguments) (%qinvoke-method object nil "fillPath" arguments)) @@ -993,9 +1218,15 @@ (defun |filterSelected| (object &rest arguments) (%qinvoke-method object nil "filterSelected" arguments)) +(defun |filtering| (object &rest arguments) + (%qinvoke-method object nil "filtering" arguments)) + (defun |filtersChildEvents| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "filtersChildEvents" arguments)) +(defun |filtersChildMouseEvents| (object &rest arguments) + (%qinvoke-method object nil "filtersChildMouseEvents" arguments)) + (defun |filter| (object &rest arguments) (%qinvoke-method object nil "filter" arguments)) @@ -1188,6 +1419,9 @@ (defun |focusChild| (object &rest arguments) (%qinvoke-method object nil "focusChild" arguments)) +(defun |focusInEvent| (object &rest arguments) + (%qinvoke-method object nil "focusInEvent" arguments)) + (defun |focusItemChanged| (object &rest arguments) (%qinvoke-method object nil "focusItemChanged" arguments)) @@ -1212,6 +1446,9 @@ (defun |focusObject| (object &rest arguments) (%qinvoke-method object nil "focusObject" arguments)) +(defun |focusOutEvent| (object &rest arguments) + (%qinvoke-method object nil "focusOutEvent" arguments)) + (defun |focusPointMode| (object &rest arguments) (%qinvoke-method object nil "focusPointMode" arguments)) @@ -1341,6 +1578,15 @@ (defun |font| (object &rest arguments) (%qinvoke-method object nil "font" arguments)) +(defun |forceActiveFocus| (object &rest arguments) + (%qinvoke-method object nil "forceActiveFocus" arguments)) + +(defun |forceCompletion| (object &rest arguments) + (%qinvoke-method object nil "forceCompletion" arguments)) + +(defun |forcePolish| (object &rest arguments) + (%qinvoke-method object nil "forcePolish" arguments)) + (defun |forceShow| (object &rest arguments) (%qinvoke-method object nil "forceShow" arguments)) @@ -1767,6 +2013,9 @@ (defun |globalMatch| (object &rest arguments) (%qinvoke-method object nil "globalMatch" arguments)) +(defun |globalObject| (object &rest arguments) + (%qinvoke-method object nil "globalObject" arguments)) + (defun |globalPosF| (object &rest arguments) (%qinvoke-method object nil "globalPosF" arguments)) @@ -1815,6 +2064,12 @@ (defun |grabShortcut| (object &rest arguments) (%qinvoke-method object nil "grabShortcut" arguments)) +(defun |grabToImage| (object &rest arguments) + (%qinvoke-method object nil "grabToImage" arguments)) + +(defun |grabTouchPoints| (object &rest arguments) + (%qinvoke-method object nil "grabTouchPoints" arguments)) + (defun |grabWindow| (object &rest arguments) (%qinvoke-method object nil "grabWindow" arguments)) @@ -1869,6 +2124,9 @@ (defun |hasAcceptableInput| (object &rest arguments) (%qinvoke-method object nil "hasAcceptableInput" arguments)) +(defun |hasActiveFocus| (object &rest arguments) + (%qinvoke-method object nil "hasActiveFocus" arguments)) + (defun |hasAlphaChannel| (object &rest arguments) (%qinvoke-method object nil "hasAlphaChannel" arguments)) @@ -1908,6 +2166,12 @@ (defun |hasDaylightTime| (object &rest arguments) (%qinvoke-method object nil "hasDaylightTime" arguments)) +(defun |hasDefaultAlphaBuffer.QQuickWindow| (&rest arguments) + (%qinvoke-method "QQuickWindow" nil "hasDefaultAlphaBuffer" arguments)) + +(defun |hasError| (object &rest arguments) + (%qinvoke-method object nil "hasError" arguments)) + (defun |hasExpired| (object &rest arguments) (%qinvoke-method object nil "hasExpired" arguments)) @@ -1947,12 +2211,18 @@ (defun |hasIndex| (object &rest arguments) (%qinvoke-method object nil "hasIndex" arguments)) +(defun |hasMipmaps| (object &rest arguments) + (%qinvoke-method object nil "hasMipmaps" arguments)) + (defun |hasMouseTracking| (object &rest arguments) (%qinvoke-method object nil "hasMouseTracking" arguments)) (defun |hasNext| (object &rest arguments) (%qinvoke-method object nil "hasNext" arguments)) +(defun |hasNotifySignal| (object &rest arguments) + (%qinvoke-method object nil "hasNotifySignal" arguments)) + (defun |hasOpenGLFramebufferBlit.QOpenGLFramebufferObject| (&rest arguments) (%qinvoke-method "QOpenGLFramebufferObject" nil "hasOpenGLFramebufferBlit" arguments)) @@ -1968,6 +2238,9 @@ (defun |hasOutValues| (object &rest arguments) (%qinvoke-method object nil "hasOutValues" arguments)) +(defun |hasOwnProperty| (object &rest arguments) + (%qinvoke-method object nil "hasOwnProperty" arguments)) + (defun |hasPendingConnections| (object &rest arguments) (%qinvoke-method object nil "hasPendingConnections" arguments)) @@ -2058,6 +2331,9 @@ (defun |heightMM| (object &rest arguments) (%qinvoke-method object nil "heightMM" arguments)) +(defun |heightValid| (object &rest arguments) + (%qinvoke-method object nil "heightValid" arguments)) + (defun |height| (object &rest arguments) (%qinvoke-method object nil "height" arguments)) @@ -2079,6 +2355,9 @@ (defun |hideColumn| (object &rest arguments) (%qinvoke-method object nil "hideColumn" arguments)) +(defun |hideEvent| (object &rest arguments) + (%qinvoke-method object nil "hideEvent" arguments)) + (defun |hideOrShow| (object &rest arguments) (%qinvoke-method object nil "hideOrShow" arguments)) @@ -2214,6 +2493,9 @@ (defun |horizontalStretch| (object &rest arguments) (%qinvoke-method object nil "horizontalStretch" arguments)) +(defun |horizontalWrapMode| (object &rest arguments) + (%qinvoke-method object nil "horizontalWrapMode" arguments)) + (defun |hostFound| (object &rest arguments) (%qinvoke-method object nil "hostFound" arguments)) @@ -2376,15 +2658,39 @@ (defun |imageProcessing| (object &rest arguments) (%qinvoke-method object nil "imageProcessing" arguments)) +(defun |imageProvider| (object &rest arguments) + (%qinvoke-method object nil "imageProvider" arguments)) + (defun |imageSaved| (object &rest arguments) (%qinvoke-method object nil "imageSaved" arguments)) +(defun |imageType| (object &rest arguments) + (%qinvoke-method object nil "imageType" arguments)) + (defun |imageUrl| (object &rest arguments) (%qinvoke-method object nil "imageUrl" arguments)) (defun |image| (object &rest arguments) (%qinvoke-method object nil "image" arguments)) +(defun |implicitHeightChanged| (object &rest arguments) + (%qinvoke-method object nil "implicitHeightChanged" arguments)) + +(defun |implicitHeight| (object &rest arguments) + (%qinvoke-method object nil "implicitHeight" arguments)) + +(defun |implicitWidthChanged| (object &rest arguments) + (%qinvoke-method object nil "implicitWidthChanged" arguments)) + +(defun |implicitWidth| (object &rest arguments) + (%qinvoke-method object nil "implicitWidth" arguments)) + +(defun |importPathList| (object &rest arguments) + (%qinvoke-method object nil "importPathList" arguments)) + +(defun |importPlugin| (object &rest arguments) + (%qinvoke-method object nil "importPlugin" arguments)) + (defun |inFontUcs4| (object &rest arguments) (%qinvoke-method object nil "inFontUcs4" arguments)) @@ -2394,6 +2700,18 @@ (defun |inWhatsThisMode.QWhatsThis| (&rest arguments) (%qinvoke-method "QWhatsThis" nil "inWhatsThisMode" arguments)) +(defun |incubateFor| (object &rest arguments) + (%qinvoke-method object nil "incubateFor" arguments)) + +(defun |incubatingObjectCount| (object &rest arguments) + (%qinvoke-method object nil "incubatingObjectCount" arguments)) + +(defun |incubationController| (object &rest arguments) + (%qinvoke-method object nil "incubationController" arguments)) + +(defun |incubationMode| (object &rest arguments) + (%qinvoke-method object nil "incubationMode" arguments)) + (defun |indentWidth| (object &rest arguments) (%qinvoke-method object nil "indentWidth" arguments)) @@ -2424,12 +2742,21 @@ (defun |indexColumn| (object &rest arguments) (%qinvoke-method object nil "indexColumn" arguments)) +(defun |indexCount| (object &rest arguments) + (%qinvoke-method object nil "indexCount" arguments)) + (defun |indexCreated| (object &rest arguments) (%qinvoke-method object nil "indexCreated" arguments)) (defun |indexCreationStarted| (object &rest arguments) (%qinvoke-method object nil "indexCreationStarted" arguments)) +(defun |indexDataAsUShort| (object &rest arguments) + (%qinvoke-method object nil "indexDataAsUShort" arguments)) + +(defun |indexDataPattern| (object &rest arguments) + (%qinvoke-method object nil "indexDataPattern" arguments)) + (defun |indexDocumentation| (object &rest arguments) (%qinvoke-method object nil "indexDocumentation" arguments)) @@ -2475,6 +2802,9 @@ (defun |indexRowSizeHint| (object &rest arguments) (%qinvoke-method object nil "indexRowSizeHint" arguments)) +(defun |indexType| (object &rest arguments) + (%qinvoke-method object nil "indexType" arguments)) + (defun |indexWidget| (object &rest arguments) (%qinvoke-method object nil "indexWidget" arguments)) @@ -2514,6 +2844,9 @@ (defun |initialLayoutCompleted| (object &rest arguments) (%qinvoke-method object nil "initialLayoutCompleted" arguments)) +(defun |initialSize| (object &rest arguments) + (%qinvoke-method object nil "initialSize" arguments)) + (defun |initialStateChanged| (object &rest arguments) (%qinvoke-method object nil "initialStateChanged" arguments)) @@ -2526,6 +2859,9 @@ (defun |initializePage| (object &rest arguments) (%qinvoke-method object nil "initializePage" arguments)) +(defun |initialize| (object &rest arguments) + (%qinvoke-method object nil "initialize" arguments)) + (defun |inputChannelMode| (object &rest arguments) (%qinvoke-method object nil "inputChannelMode" arguments)) @@ -2571,6 +2907,12 @@ (defun |insertBlock| (object &rest arguments) (%qinvoke-method object nil "insertBlock" arguments)) +(defun |insertChildNodeAfter| (object &rest arguments) + (%qinvoke-method object nil "insertChildNodeAfter" arguments)) + +(defun |insertChildNodeBefore| (object &rest arguments) + (%qinvoke-method object nil "insertChildNodeBefore" arguments)) + (defun |insertChildren| (object &rest arguments) (%qinvoke-method object nil "insertChildren" arguments)) @@ -2790,6 +3132,9 @@ (defun |installTranslator.QCoreApplication| (&rest arguments) (%qinvoke-method "QCoreApplication" nil "installTranslator" arguments)) +(defun |installTranslatorFunctions| (object &rest arguments) + (%qinvoke-method object nil "installTranslatorFunctions" arguments)) + (defun |instance.QCoreApplication| (&rest arguments) (%qinvoke-method "QCoreApplication" nil "instance" arguments)) @@ -2817,6 +3162,9 @@ (defun |intValue| (object &rest arguments) (%qinvoke-method object nil "intValue" arguments)) +(defun |intercept| (object &rest arguments) + (%qinvoke-method object nil "intercept" arguments)) + (defun |interfaceFromIndex.QNetworkInterface| (&rest arguments) (%qinvoke-method "QNetworkInterface" nil "interfaceFromIndex" arguments)) @@ -2868,6 +3216,9 @@ (defun |invalidateIndex| (object &rest arguments) (%qinvoke-method object nil "invalidateIndex" arguments)) +(defun |invalidateSceneGraph| (object &rest arguments) + (%qinvoke-method object nil "invalidateSceneGraph" arguments)) + (defun |invalidateScene| (object &rest arguments) (%qinvoke-method object nil "invalidateScene" arguments)) @@ -2949,9 +3300,15 @@ (defun |isAreaAllowed| (object &rest arguments) (%qinvoke-method object nil "isAreaAllowed" arguments)) +(defun |isArray| (object &rest arguments) + (%qinvoke-method object nil "isArray" arguments)) + (defun |isAtBoundary| (object &rest arguments) (%qinvoke-method object nil "isAtBoundary" arguments)) +(defun |isAtlasTexture| (object &rest arguments) + (%qinvoke-method object nil "isAtlasTexture" arguments)) + (defun |isAudioAvailable| (object &rest arguments) (%qinvoke-method object nil "isAudioAvailable" arguments)) @@ -2982,6 +3339,9 @@ (defun |isBlockFormat| (object &rest arguments) (%qinvoke-method object nil "isBlockFormat" arguments)) +(defun |isBool| (object &rest arguments) + (%qinvoke-method object nil "isBool" arguments)) + (defun |isBound| (object &rest arguments) (%qinvoke-method object nil "isBound" arguments)) @@ -2994,6 +3354,9 @@ (defun |isCachingProxy| (object &rest arguments) (%qinvoke-method object nil "isCachingProxy" arguments)) +(defun |isCallable| (object &rest arguments) + (%qinvoke-method object nil "isCallable" arguments)) + (defun |isCaptureDestinationSupported| (object &rest arguments) (%qinvoke-method object nil "isCaptureDestinationSupported" arguments)) @@ -3045,6 +3408,9 @@ (defun |isComplete| (object &rest arguments) (%qinvoke-method object nil "isComplete" arguments)) +(defun |isComponentComplete| (object &rest arguments) + (%qinvoke-method object nil "isComponentComplete" arguments)) + (defun |isContentEditable| (object &rest arguments) (%qinvoke-method object nil "isContentEditable" arguments)) @@ -3072,6 +3438,9 @@ (defun |isDateEditEnabled| (object &rest arguments) (%qinvoke-method object nil "isDateEditEnabled" arguments)) +(defun |isDate| (object &rest arguments) + (%qinvoke-method object nil "isDate" arguments)) + (defun |isDaylightTime| (object &rest arguments) (%qinvoke-method object nil "isDaylightTime" arguments)) @@ -3087,6 +3456,9 @@ (defun |isDescending| (object &rest arguments) (%qinvoke-method object nil "isDescending" arguments)) +(defun |isDesignable| (object &rest arguments) + (%qinvoke-method object nil "isDesignable" arguments)) + (defun |isDirty| (object &rest arguments) (%qinvoke-method object nil "isDirty" arguments)) @@ -3132,6 +3504,9 @@ (defun |isEquivalentTo| (object &rest arguments) (%qinvoke-method object nil "isEquivalentTo" arguments)) +(defun |isError| (object &rest arguments) + (%qinvoke-method object nil "isError" arguments)) + (defun |isExclusive| (object &rest arguments) (%qinvoke-method object nil "isExclusive" arguments)) @@ -3189,6 +3564,9 @@ (defun |isFocusPointModeSupported| (object &rest arguments) (%qinvoke-method object nil "isFocusPointModeSupported" arguments)) +(defun |isFocusScope| (object &rest arguments) + (%qinvoke-method object nil "isFocusScope" arguments)) + (defun |isFormatSupported| (object &rest arguments) (%qinvoke-method object nil "isFormatSupported" arguments)) @@ -3221,381 +3599,3 @@ (defun |isGroupSeparatorShown| (object &rest arguments) (%qinvoke-method object nil "isGroupSeparatorShown" arguments)) - -(defun |isHeaderHidden| (object &rest arguments) - (%qinvoke-method object nil "isHeaderHidden" arguments)) - -(defun |isHidden| (object &rest arguments) - (%qinvoke-method object nil "isHidden" arguments)) - -(defun |isHttpOnly| (object &rest arguments) - (%qinvoke-method object nil "isHttpOnly" arguments)) - -(defun |isIconVisibleInMenu| (object &rest arguments) - (%qinvoke-method object nil "isIconVisibleInMenu" arguments)) - -(defun |isIdentifierEscaped| (object &rest arguments) - (%qinvoke-method object nil "isIdentifierEscaped" arguments)) - -(defun |isIdentity| (object &rest arguments) - (%qinvoke-method object nil "isIdentity" arguments)) - -(defun |isImageFormat| (object &rest arguments) - (%qinvoke-method object nil "isImageFormat" arguments)) - -(defun |isInSubnet| (object &rest arguments) - (%qinvoke-method object nil "isInSubnet" arguments)) - -(defun |isInteractive| (object &rest arguments) - (%qinvoke-method object nil "isInteractive" arguments)) - -(defun |isInvertible| (object &rest arguments) - (%qinvoke-method object nil "isInvertible" arguments)) - -(defun |isItemEnabled| (object &rest arguments) - (%qinvoke-method object nil "isItemEnabled" arguments)) - -(defun |isLandscape| (object &rest arguments) - (%qinvoke-method object nil "isLandscape" arguments)) - -(defun |isLayout| (object &rest arguments) - (%qinvoke-method object nil "isLayout" arguments)) - -(defun |isLeapYear.QDate| (&rest arguments) - (%qinvoke-method "QDate" nil "isLeapYear" arguments)) - -(defun |isLeftToRight.QGuiApplication| (&rest arguments) - (%qinvoke-method "QGuiApplication" nil "isLeftToRight" arguments)) - -(defun |isLibrary.QLibrary| (&rest arguments) - (%qinvoke-method "QLibrary" nil "isLibrary" arguments)) - -(defun |isLinked| (object &rest arguments) - (%qinvoke-method object nil "isLinked" arguments)) - -(defun |isListFormat| (object &rest arguments) - (%qinvoke-method object nil "isListFormat" arguments)) - -(defun |isListening| (object &rest arguments) - (%qinvoke-method object nil "isListening" arguments)) - -(defun |isLoaded| (object &rest arguments) - (%qinvoke-method object nil "isLoaded" arguments)) - -(defun |isLocalFile| (object &rest arguments) - (%qinvoke-method object nil "isLocalFile" arguments)) - -(defun |isLoopback| (object &rest arguments) - (%qinvoke-method object nil "isLoopback" arguments)) - -(defun |isMapped| (object &rest arguments) - (%qinvoke-method object nil "isMapped" arguments)) - -(defun |isMaximized| (object &rest arguments) - (%qinvoke-method object nil "isMaximized" arguments)) - -(defun |isMetaDataAvailable| (object &rest arguments) - (%qinvoke-method object nil "isMetaDataAvailable" arguments)) - -(defun |isMetaDataWritable| (object &rest arguments) - (%qinvoke-method object nil "isMetaDataWritable" arguments)) - -(defun |isMeteringModeSupported| (object &rest arguments) - (%qinvoke-method object nil "isMeteringModeSupported" arguments)) - -(defun |isMinimal| (object &rest arguments) - (%qinvoke-method object nil "isMinimal" arguments)) - -(defun |isMinimized| (object &rest arguments) - (%qinvoke-method object nil "isMinimized" arguments)) - -(defun |isModal| (object &rest arguments) - (%qinvoke-method object nil "isModal" arguments)) - -(defun |isModified| (object &rest arguments) - (%qinvoke-method object nil "isModified" arguments)) - -(defun |isMonotonic.QElapsedTimer| (&rest arguments) - (%qinvoke-method "QElapsedTimer" nil "isMonotonic" arguments)) - -(defun |isMovable| (object &rest arguments) - (%qinvoke-method object nil "isMovable" arguments)) - -(defun |isMuted| (object &rest arguments) - (%qinvoke-method object nil "isMuted" arguments)) - -(defun |isNativeMenuBar| (object &rest arguments) - (%qinvoke-method object nil "isNativeMenuBar" arguments)) - -(defun |isNativePath| (object &rest arguments) - (%qinvoke-method object nil "isNativePath" arguments)) - -(defun |isNavigationBarVisible| (object &rest arguments) - (%qinvoke-method object nil "isNavigationBarVisible" arguments)) - -(defun |isNull(QString)| (object &rest arguments) - (%qinvoke-method object nil "isNull(QString)" arguments)) - -(defun |isNull(int)| (object &rest arguments) - (%qinvoke-method object nil "isNull(int)" arguments)) - -(defun |isNull| (object &rest arguments) - (%qinvoke-method object nil "isNull" arguments)) - -(defun |isObscuredBy| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "isObscuredBy" arguments)) - -(defun |isObscured| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "isObscured" arguments)) - -(defun |isOpaque| (object &rest arguments) - (%qinvoke-method object nil "isOpaque" arguments)) - -(defun |isOpenError| (object &rest arguments) - (%qinvoke-method object nil "isOpenError" arguments)) - -(defun |isOpenGLES| (object &rest arguments) - (%qinvoke-method object nil "isOpenGLES" arguments)) - -(defun |isOpen| (object &rest arguments) - (%qinvoke-method object nil "isOpen" arguments)) - -(defun |isPanel| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "isPanel" arguments)) - -(defun |isParentOf| (object &rest arguments) - (%qinvoke-method object nil "isParentOf" arguments)) - -(defun |isPhase2| (object &rest arguments) - (%qinvoke-method object nil "isPhase2" arguments)) - -(defun |isPortrait| (object &rest arguments) - (%qinvoke-method object nil "isPortrait" arguments)) - -(defun |isPrivateFamily| (object &rest arguments) - (%qinvoke-method object nil "isPrivateFamily" arguments)) - -(defun |isQBitmap| (object &rest arguments) - (%qinvoke-method object nil "isQBitmap" arguments)) - -(defun |isQuitLockEnabled.QCoreApplication| (&rest arguments) - (%qinvoke-method "QCoreApplication" nil "isQuitLockEnabled" arguments)) - -(defun |isReadOnly| (object &rest arguments) - (%qinvoke-method object nil "isReadOnly" arguments)) - -(defun |isReadable| (object &rest arguments) - (%qinvoke-method object nil "isReadable" arguments)) - -(defun |isReadyForCapture| (object &rest arguments) - (%qinvoke-method object nil "isReadyForCapture" arguments)) - -(defun |isReady| (object &rest arguments) - (%qinvoke-method object nil "isReady" arguments)) - -(defun |isRedoAvailable| (object &rest arguments) - (%qinvoke-method object nil "isRedoAvailable" arguments)) - -(defun |isRelativePath.QDir| (&rest arguments) - (%qinvoke-method "QDir" nil "isRelativePath" arguments)) - -(defun |isRelative| (object &rest arguments) - (%qinvoke-method object nil "isRelative" arguments)) - -(defun |isRemote| (object &rest arguments) - (%qinvoke-method object nil "isRemote" arguments)) - -(defun |isRightToLeft.QGuiApplication| (&rest arguments) - (%qinvoke-method "QGuiApplication" nil "isRightToLeft" arguments)) - -(defun |isRoamingAvailable| (object &rest arguments) - (%qinvoke-method object nil "isRoamingAvailable" arguments)) - -(defun |isRoot| (object &rest arguments) - (%qinvoke-method object nil "isRoot" arguments)) - -(defun |isRotating| (object &rest arguments) - (%qinvoke-method object nil "isRotating" arguments)) - -(defun |isRowHidden| (object &rest arguments) - (%qinvoke-method object nil "isRowHidden" arguments)) - -(defun |isRowSelected| (object &rest arguments) - (%qinvoke-method object nil "isRowSelected" arguments)) - -(defun |isRunning| (object &rest arguments) - (%qinvoke-method object nil "isRunning" arguments)) - -(defun |isSavingSession| (object &rest arguments) - (%qinvoke-method object nil "isSavingSession" arguments)) - -(defun |isScalable| (object &rest arguments) - (%qinvoke-method object nil "isScalable" arguments)) - -(defun |isScaling| (object &rest arguments) - (%qinvoke-method object nil "isScaling" arguments)) - -(defun |isSearching| (object &rest arguments) - (%qinvoke-method object nil "isSearching" arguments)) - -(defun |isSectionHidden| (object &rest arguments) - (%qinvoke-method object nil "isSectionHidden" arguments)) - -(defun |isSecure| (object &rest arguments) - (%qinvoke-method object nil "isSecure" arguments)) - -(defun |isSeekable| (object &rest arguments) - (%qinvoke-method object nil "isSeekable" arguments)) - -(defun |isSelectable| (object &rest arguments) - (%qinvoke-method object nil "isSelectable" arguments)) - -(defun |isSelected| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "isSelected" arguments)) - -(defun |isSelectionRectVisible| (object &rest arguments) - (%qinvoke-method object nil "isSelectionRectVisible" arguments)) - -(defun |isSelect| (object &rest arguments) - (%qinvoke-method object nil "isSelect" arguments)) - -(defun |isSelfSigned| (object &rest arguments) - (%qinvoke-method object nil "isSelfSigned" arguments)) - -(defun |isSeparator| (object &rest arguments) - (%qinvoke-method object nil "isSeparator" arguments)) - -(defun |isSequential| (object &rest arguments) - (%qinvoke-method object nil "isSequential" arguments)) - -(defun |isSessionCookie| (object &rest arguments) - (%qinvoke-method object nil "isSessionCookie" arguments)) - -(defun |isSessionRestored| (object &rest arguments) - (%qinvoke-method object nil "isSessionRestored" arguments)) - -(defun |isSetuidAllowed.QCoreApplication| (&rest arguments) - (%qinvoke-method "QCoreApplication" nil "isSetuidAllowed" arguments)) - -(defun |isShaded| (object &rest arguments) - (%qinvoke-method object nil "isShaded" arguments)) - -(defun |isSingleShot| (object &rest arguments) - (%qinvoke-method object nil "isSingleShot" arguments)) - -(defun |isSizeGripEnabled| (object &rest arguments) - (%qinvoke-method object nil "isSizeGripEnabled" arguments)) - -(defun |isSliderDown| (object &rest arguments) - (%qinvoke-method object nil "isSliderDown" arguments)) - -(defun |isSmoothlyScalable| (object &rest arguments) - (%qinvoke-method object nil "isSmoothlyScalable" arguments)) - -(defun |isSolid| (object &rest arguments) - (%qinvoke-method object nil "isSolid" arguments)) - -(defun |isSortIndicatorShown| (object &rest arguments) - (%qinvoke-method object nil "isSortIndicatorShown" arguments)) - -(defun |isSortLocaleAware| (object &rest arguments) - (%qinvoke-method object nil "isSortLocaleAware" arguments)) - -(defun |isSortingEnabled| (object &rest arguments) - (%qinvoke-method object nil "isSortingEnabled" arguments)) - -(defun |isStereo| (object &rest arguments) - (%qinvoke-method object nil "isStereo" arguments)) - -(defun |isStorageAllocated| (object &rest arguments) - (%qinvoke-method object nil "isStorageAllocated" arguments)) - -(defun |isSymLink| (object &rest arguments) - (%qinvoke-method object nil "isSymLink" arguments)) - -(defun |isSystemTrayAvailable.QSystemTrayIcon| (&rest arguments) - (%qinvoke-method "QSystemTrayIcon" nil "isSystemTrayAvailable" arguments)) - -(defun |isTabEnabled| (object &rest arguments) - (%qinvoke-method object nil "isTabEnabled" arguments)) - -(defun |isTableCellFormat| (object &rest arguments) - (%qinvoke-method object nil "isTableCellFormat" arguments)) - -(defun |isTableFormat| (object &rest arguments) - (%qinvoke-method object nil "isTableFormat" arguments)) - -(defun |isTearOffEnabled| (object &rest arguments) - (%qinvoke-method object nil "isTearOffEnabled" arguments)) - -(defun |isTearOffMenuVisible| (object &rest arguments) - (%qinvoke-method object nil "isTearOffMenuVisible" arguments)) - -(defun |isTextModeEnabled| (object &rest arguments) - (%qinvoke-method object nil "isTextModeEnabled" arguments)) - -(defun |isTextVisible| (object &rest arguments) - (%qinvoke-method object nil "isTextVisible" arguments)) - -(defun |isTextureView| (object &rest arguments) - (%qinvoke-method object nil "isTextureView" arguments)) - -(defun |isTiledBackingStoreFrozen| (object &rest arguments) - (%qinvoke-method object nil "isTiledBackingStoreFrozen" arguments)) - -(defun |isTimeZoneIdAvailable.QTimeZone| (&rest arguments) - (%qinvoke-method "QTimeZone" nil "isTimeZoneIdAvailable" arguments)) - -(defun |isTopLevel| (object &rest arguments) - (%qinvoke-method object nil "isTopLevel" arguments)) - -(defun |isTransformed| (object &rest arguments) - (%qinvoke-method object nil "isTransformed" arguments)) - -(defun |isTranslating| (object &rest arguments) - (%qinvoke-method object nil "isTranslating" arguments)) - -(defun |isTransparentProxy| (object &rest arguments) - (%qinvoke-method object nil "isTransparentProxy" arguments)) - -(defun |isTristate| (object &rest arguments) - (%qinvoke-method object nil "isTristate" arguments)) - -(defun |isUnderMouse| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "isUnderMouse" arguments)) - -(defun |isUndoAvailable| (object &rest arguments) - (%qinvoke-method object nil "isUndoAvailable" arguments)) - -(defun |isUndoRedoEnabled| (object &rest arguments) - (%qinvoke-method object nil "isUndoRedoEnabled" arguments)) - -(defun |isValid.QDate| (&rest arguments) - (%qinvoke-method "QDate" nil "isValid" arguments)) - -(defun |isValid.QTime| (&rest arguments) - (%qinvoke-method "QTime" nil "isValid" arguments)) - -(defun |isValidColor.QColor| (&rest arguments) - (%qinvoke-method "QColor" nil "isValidColor" arguments)) - -(defun |isValidCursorPosition| (object &rest arguments) - (%qinvoke-method object nil "isValidCursorPosition" arguments)) - -(defun |isValid| (object &rest arguments) - (%qinvoke-method object nil "isValid" arguments)) - -(defun |isVideoAvailable| (object &rest arguments) - (%qinvoke-method object nil "isVideoAvailable" arguments)) - -(defun |isVirtualDesktop| (object &rest arguments) - (%qinvoke-method object nil "isVirtualDesktop" arguments)) - -(defun |isVisible.QToolTip| (&rest arguments) - (%qinvoke-method "QToolTip" nil "isVisible" arguments)) - -(defun |isVisibleTo| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "isVisibleTo" arguments)) - -(defun |isVisible| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "isVisible" arguments)) diff --git a/src/lisp/all-wrappers-9.lisp b/src/lisp/all-wrappers-9.lisp index b2ccfa9..9b1bb84 100644 --- a/src/lisp/all-wrappers-9.lisp +++ b/src/lisp/all-wrappers-9.lisp @@ -1,5 +1,440 @@ (in-package :eql) +(defun |isHeaderHidden| (object &rest arguments) + (%qinvoke-method object nil "isHeaderHidden" arguments)) + +(defun |isHidden| (object &rest arguments) + (%qinvoke-method object nil "isHidden" arguments)) + +(defun |isHttpOnly| (object &rest arguments) + (%qinvoke-method object nil "isHttpOnly" arguments)) + +(defun |isIconVisibleInMenu| (object &rest arguments) + (%qinvoke-method object nil "isIconVisibleInMenu" arguments)) + +(defun |isIdentifierEscaped| (object &rest arguments) + (%qinvoke-method object nil "isIdentifierEscaped" arguments)) + +(defun |isIdentity| (object &rest arguments) + (%qinvoke-method object nil "isIdentity" arguments)) + +(defun |isImageFormat| (object &rest arguments) + (%qinvoke-method object nil "isImageFormat" arguments)) + +(defun |isInSubnet| (object &rest arguments) + (%qinvoke-method object nil "isInSubnet" arguments)) + +(defun |isInteractive| (object &rest arguments) + (%qinvoke-method object nil "isInteractive" arguments)) + +(defun |isInvertible| (object &rest arguments) + (%qinvoke-method object nil "isInvertible" arguments)) + +(defun |isItemEnabled| (object &rest arguments) + (%qinvoke-method object nil "isItemEnabled" arguments)) + +(defun |isLandscape| (object &rest arguments) + (%qinvoke-method object nil "isLandscape" arguments)) + +(defun |isLayout| (object &rest arguments) + (%qinvoke-method object nil "isLayout" arguments)) + +(defun |isLeapYear.QDate| (&rest arguments) + (%qinvoke-method "QDate" nil "isLeapYear" arguments)) + +(defun |isLeftToRight.QGuiApplication| (&rest arguments) + (%qinvoke-method "QGuiApplication" nil "isLeftToRight" arguments)) + +(defun |isLibrary.QLibrary| (&rest arguments) + (%qinvoke-method "QLibrary" nil "isLibrary" arguments)) + +(defun |isLinked| (object &rest arguments) + (%qinvoke-method object nil "isLinked" arguments)) + +(defun |isListFormat| (object &rest arguments) + (%qinvoke-method object nil "isListFormat" arguments)) + +(defun |isListening| (object &rest arguments) + (%qinvoke-method object nil "isListening" arguments)) + +(defun |isLoaded| (object &rest arguments) + (%qinvoke-method object nil "isLoaded" arguments)) + +(defun |isLoading| (object &rest arguments) + (%qinvoke-method object nil "isLoading" arguments)) + +(defun |isLocalFile| (object &rest arguments) + (%qinvoke-method object nil "isLocalFile" arguments)) + +(defun |isLoopback| (object &rest arguments) + (%qinvoke-method object nil "isLoopback" arguments)) + +(defun |isMapped| (object &rest arguments) + (%qinvoke-method object nil "isMapped" arguments)) + +(defun |isMaximized| (object &rest arguments) + (%qinvoke-method object nil "isMaximized" arguments)) + +(defun |isMetaDataAvailable| (object &rest arguments) + (%qinvoke-method object nil "isMetaDataAvailable" arguments)) + +(defun |isMetaDataWritable| (object &rest arguments) + (%qinvoke-method object nil "isMetaDataWritable" arguments)) + +(defun |isMeteringModeSupported| (object &rest arguments) + (%qinvoke-method object nil "isMeteringModeSupported" arguments)) + +(defun |isMinimal| (object &rest arguments) + (%qinvoke-method object nil "isMinimal" arguments)) + +(defun |isMinimized| (object &rest arguments) + (%qinvoke-method object nil "isMinimized" arguments)) + +(defun |isModal| (object &rest arguments) + (%qinvoke-method object nil "isModal" arguments)) + +(defun |isModified| (object &rest arguments) + (%qinvoke-method object nil "isModified" arguments)) + +(defun |isMonotonic.QElapsedTimer| (&rest arguments) + (%qinvoke-method "QElapsedTimer" nil "isMonotonic" arguments)) + +(defun |isMovable| (object &rest arguments) + (%qinvoke-method object nil "isMovable" arguments)) + +(defun |isMuted| (object &rest arguments) + (%qinvoke-method object nil "isMuted" arguments)) + +(defun |isNativeMenuBar| (object &rest arguments) + (%qinvoke-method object nil "isNativeMenuBar" arguments)) + +(defun |isNativePath| (object &rest arguments) + (%qinvoke-method object nil "isNativePath" arguments)) + +(defun |isNavigationBarVisible| (object &rest arguments) + (%qinvoke-method object nil "isNavigationBarVisible" arguments)) + +(defun |isNull(QString)| (object &rest arguments) + (%qinvoke-method object nil "isNull(QString)" arguments)) + +(defun |isNull(int)| (object &rest arguments) + (%qinvoke-method object nil "isNull(int)" arguments)) + +(defun |isNullLiteral| (object &rest arguments) + (%qinvoke-method object nil "isNullLiteral" arguments)) + +(defun |isNull| (object &rest arguments) + (%qinvoke-method object nil "isNull" arguments)) + +(defun |isNumber| (object &rest arguments) + (%qinvoke-method object nil "isNumber" arguments)) + +(defun |isObject| (object &rest arguments) + (%qinvoke-method object nil "isObject" arguments)) + +(defun |isObscuredBy| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "isObscuredBy" arguments)) + +(defun |isObscured| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "isObscured" arguments)) + +(defun |isOpaque| (object &rest arguments) + (%qinvoke-method object nil "isOpaque" arguments)) + +(defun |isOpenError| (object &rest arguments) + (%qinvoke-method object nil "isOpenError" arguments)) + +(defun |isOpenGLES| (object &rest arguments) + (%qinvoke-method object nil "isOpenGLES" arguments)) + +(defun |isOpen| (object &rest arguments) + (%qinvoke-method object nil "isOpen" arguments)) + +(defun |isPanel| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "isPanel" arguments)) + +(defun |isParentOf| (object &rest arguments) + (%qinvoke-method object nil "isParentOf" arguments)) + +(defun |isPersistentOpenGLContext| (object &rest arguments) + (%qinvoke-method object nil "isPersistentOpenGLContext" arguments)) + +(defun |isPersistentSceneGraph| (object &rest arguments) + (%qinvoke-method object nil "isPersistentSceneGraph" arguments)) + +(defun |isPhase2| (object &rest arguments) + (%qinvoke-method object nil "isPhase2" arguments)) + +(defun |isPortrait| (object &rest arguments) + (%qinvoke-method object nil "isPortrait" arguments)) + +(defun |isPrivateFamily| (object &rest arguments) + (%qinvoke-method object nil "isPrivateFamily" arguments)) + +(defun |isProperty| (object &rest arguments) + (%qinvoke-method object nil "isProperty" arguments)) + +(defun |isQBitmap| (object &rest arguments) + (%qinvoke-method object nil "isQBitmap" arguments)) + +(defun |isQObject| (object &rest arguments) + (%qinvoke-method object nil "isQObject" arguments)) + +(defun |isQuitLockEnabled.QCoreApplication| (&rest arguments) + (%qinvoke-method "QCoreApplication" nil "isQuitLockEnabled" arguments)) + +(defun |isReadOnly| (object &rest arguments) + (%qinvoke-method object nil "isReadOnly" arguments)) + +(defun |isReadable| (object &rest arguments) + (%qinvoke-method object nil "isReadable" arguments)) + +(defun |isReadyForCapture| (object &rest arguments) + (%qinvoke-method object nil "isReadyForCapture" arguments)) + +(defun |isReady| (object &rest arguments) + (%qinvoke-method object nil "isReady" arguments)) + +(defun |isRectangular| (object &rest arguments) + (%qinvoke-method object nil "isRectangular" arguments)) + +(defun |isRedoAvailable| (object &rest arguments) + (%qinvoke-method object nil "isRedoAvailable" arguments)) + +(defun |isRegExp| (object &rest arguments) + (%qinvoke-method object nil "isRegExp" arguments)) + +(defun |isRelativePath.QDir| (&rest arguments) + (%qinvoke-method "QDir" nil "isRelativePath" arguments)) + +(defun |isRelative| (object &rest arguments) + (%qinvoke-method object nil "isRelative" arguments)) + +(defun |isRemote| (object &rest arguments) + (%qinvoke-method object nil "isRemote" arguments)) + +(defun |isResettable| (object &rest arguments) + (%qinvoke-method object nil "isResettable" arguments)) + +(defun |isRightToLeft.QGuiApplication| (&rest arguments) + (%qinvoke-method "QGuiApplication" nil "isRightToLeft" arguments)) + +(defun |isRoamingAvailable| (object &rest arguments) + (%qinvoke-method object nil "isRoamingAvailable" arguments)) + +(defun |isRoot| (object &rest arguments) + (%qinvoke-method object nil "isRoot" arguments)) + +(defun |isRotating| (object &rest arguments) + (%qinvoke-method object nil "isRotating" arguments)) + +(defun |isRowHidden| (object &rest arguments) + (%qinvoke-method object nil "isRowHidden" arguments)) + +(defun |isRowSelected| (object &rest arguments) + (%qinvoke-method object nil "isRowSelected" arguments)) + +(defun |isRunning| (object &rest arguments) + (%qinvoke-method object nil "isRunning" arguments)) + +(defun |isSavingSession| (object &rest arguments) + (%qinvoke-method object nil "isSavingSession" arguments)) + +(defun |isScalable| (object &rest arguments) + (%qinvoke-method object nil "isScalable" arguments)) + +(defun |isScaling| (object &rest arguments) + (%qinvoke-method object nil "isScaling" arguments)) + +(defun |isSceneGraphInitialized| (object &rest arguments) + (%qinvoke-method object nil "isSceneGraphInitialized" arguments)) + +(defun |isSearching| (object &rest arguments) + (%qinvoke-method object nil "isSearching" arguments)) + +(defun |isSectionHidden| (object &rest arguments) + (%qinvoke-method object nil "isSectionHidden" arguments)) + +(defun |isSecure| (object &rest arguments) + (%qinvoke-method object nil "isSecure" arguments)) + +(defun |isSeekable| (object &rest arguments) + (%qinvoke-method object nil "isSeekable" arguments)) + +(defun |isSelectable| (object &rest arguments) + (%qinvoke-method object nil "isSelectable" arguments)) + +(defun |isSelected| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "isSelected" arguments)) + +(defun |isSelectionRectVisible| (object &rest arguments) + (%qinvoke-method object nil "isSelectionRectVisible" arguments)) + +(defun |isSelect| (object &rest arguments) + (%qinvoke-method object nil "isSelect" arguments)) + +(defun |isSelfSigned| (object &rest arguments) + (%qinvoke-method object nil "isSelfSigned" arguments)) + +(defun |isSeparator| (object &rest arguments) + (%qinvoke-method object nil "isSeparator" arguments)) + +(defun |isSequential| (object &rest arguments) + (%qinvoke-method object nil "isSequential" arguments)) + +(defun |isSessionCookie| (object &rest arguments) + (%qinvoke-method object nil "isSessionCookie" arguments)) + +(defun |isSessionRestored| (object &rest arguments) + (%qinvoke-method object nil "isSessionRestored" arguments)) + +(defun |isSetuidAllowed.QCoreApplication| (&rest arguments) + (%qinvoke-method "QCoreApplication" nil "isSetuidAllowed" arguments)) + +(defun |isShaded| (object &rest arguments) + (%qinvoke-method object nil "isShaded" arguments)) + +(defun |isSignalProperty| (object &rest arguments) + (%qinvoke-method object nil "isSignalProperty" arguments)) + +(defun |isSingleShot| (object &rest arguments) + (%qinvoke-method object nil "isSingleShot" arguments)) + +(defun |isSizeGripEnabled| (object &rest arguments) + (%qinvoke-method object nil "isSizeGripEnabled" arguments)) + +(defun |isSliderDown| (object &rest arguments) + (%qinvoke-method object nil "isSliderDown" arguments)) + +(defun |isSmoothlyScalable| (object &rest arguments) + (%qinvoke-method object nil "isSmoothlyScalable" arguments)) + +(defun |isSolid| (object &rest arguments) + (%qinvoke-method object nil "isSolid" arguments)) + +(defun |isSortIndicatorShown| (object &rest arguments) + (%qinvoke-method object nil "isSortIndicatorShown" arguments)) + +(defun |isSortLocaleAware| (object &rest arguments) + (%qinvoke-method object nil "isSortLocaleAware" arguments)) + +(defun |isSortingEnabled| (object &rest arguments) + (%qinvoke-method object nil "isSortingEnabled" arguments)) + +(defun |isStereo| (object &rest arguments) + (%qinvoke-method object nil "isStereo" arguments)) + +(defun |isStorageAllocated| (object &rest arguments) + (%qinvoke-method object nil "isStorageAllocated" arguments)) + +(defun |isString| (object &rest arguments) + (%qinvoke-method object nil "isString" arguments)) + +(defun |isSubtreeBlocked| (object &rest arguments) + (%qinvoke-method object nil "isSubtreeBlocked" arguments)) + +(defun |isSymLink| (object &rest arguments) + (%qinvoke-method object nil "isSymLink" arguments)) + +(defun |isSystemTrayAvailable.QSystemTrayIcon| (&rest arguments) + (%qinvoke-method "QSystemTrayIcon" nil "isSystemTrayAvailable" arguments)) + +(defun |isTabEnabled| (object &rest arguments) + (%qinvoke-method object nil "isTabEnabled" arguments)) + +(defun |isTableCellFormat| (object &rest arguments) + (%qinvoke-method object nil "isTableCellFormat" arguments)) + +(defun |isTableFormat| (object &rest arguments) + (%qinvoke-method object nil "isTableFormat" arguments)) + +(defun |isTearOffEnabled| (object &rest arguments) + (%qinvoke-method object nil "isTearOffEnabled" arguments)) + +(defun |isTearOffMenuVisible| (object &rest arguments) + (%qinvoke-method object nil "isTearOffMenuVisible" arguments)) + +(defun |isTextModeEnabled| (object &rest arguments) + (%qinvoke-method object nil "isTextModeEnabled" arguments)) + +(defun |isTextVisible| (object &rest arguments) + (%qinvoke-method object nil "isTextVisible" arguments)) + +(defun |isTextureProvider| (object &rest arguments) + (%qinvoke-method object nil "isTextureProvider" arguments)) + +(defun |isTextureView| (object &rest arguments) + (%qinvoke-method object nil "isTextureView" arguments)) + +(defun |isTiledBackingStoreFrozen| (object &rest arguments) + (%qinvoke-method object nil "isTiledBackingStoreFrozen" arguments)) + +(defun |isTimeZoneIdAvailable.QTimeZone| (&rest arguments) + (%qinvoke-method "QTimeZone" nil "isTimeZoneIdAvailable" arguments)) + +(defun |isTopLevel| (object &rest arguments) + (%qinvoke-method object nil "isTopLevel" arguments)) + +(defun |isTransformed| (object &rest arguments) + (%qinvoke-method object nil "isTransformed" arguments)) + +(defun |isTranslating| (object &rest arguments) + (%qinvoke-method object nil "isTranslating" arguments)) + +(defun |isTransparentProxy| (object &rest arguments) + (%qinvoke-method object nil "isTransparentProxy" arguments)) + +(defun |isTristate| (object &rest arguments) + (%qinvoke-method object nil "isTristate" arguments)) + +(defun |isUndefinedLiteral| (object &rest arguments) + (%qinvoke-method object nil "isUndefinedLiteral" arguments)) + +(defun |isUndefined| (object &rest arguments) + (%qinvoke-method object nil "isUndefined" arguments)) + +(defun |isUnderMouse| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "isUnderMouse" arguments)) + +(defun |isUndoAvailable| (object &rest arguments) + (%qinvoke-method object nil "isUndoAvailable" arguments)) + +(defun |isUndoRedoEnabled| (object &rest arguments) + (%qinvoke-method object nil "isUndoRedoEnabled" arguments)) + +(defun |isValid.QDate| (&rest arguments) + (%qinvoke-method "QDate" nil "isValid" arguments)) + +(defun |isValid.QTime| (&rest arguments) + (%qinvoke-method "QTime" nil "isValid" arguments)) + +(defun |isValidColor.QColor| (&rest arguments) + (%qinvoke-method "QColor" nil "isValidColor" arguments)) + +(defun |isValidCursorPosition| (object &rest arguments) + (%qinvoke-method object nil "isValidCursorPosition" arguments)) + +(defun |isValid| (object &rest arguments) + (%qinvoke-method object nil "isValid" arguments)) + +(defun |isVariant| (object &rest arguments) + (%qinvoke-method object nil "isVariant" arguments)) + +(defun |isVideoAvailable| (object &rest arguments) + (%qinvoke-method object nil "isVideoAvailable" arguments)) + +(defun |isVirtualDesktop| (object &rest arguments) + (%qinvoke-method object nil "isVirtualDesktop" arguments)) + +(defun |isVisible.QToolTip| (&rest arguments) + (%qinvoke-method "QToolTip" nil "isVisible" arguments)) + +(defun |isVisibleTo| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "isVisibleTo" arguments)) + +(defun |isVisible| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "isVisible" arguments)) + (defun |isWhiteBalanceModeSupported| (object &rest arguments) (%qinvoke-method object nil "isWhiteBalanceModeSupported" arguments)) @@ -213,9 +648,15 @@ (defun |jumpToNextFrame| (object &rest arguments) (%qinvoke-method object nil "jumpToNextFrame" arguments)) +(defun |keepMouseGrab| (object &rest arguments) + (%qinvoke-method object nil "keepMouseGrab" arguments)) + (defun |keepPositionOnInsert| (object &rest arguments) (%qinvoke-method object nil "keepPositionOnInsert" arguments)) +(defun |keepTouchGrab| (object &rest arguments) + (%qinvoke-method object nil "keepTouchGrab" arguments)) + (defun |kernelType.QSysInfo| (&rest arguments) (%qinvoke-method "QSysInfo" nil "kernelType" arguments)) @@ -237,6 +678,12 @@ (defun |keyExchangeMethod| (object &rest arguments) (%qinvoke-method object nil "keyExchangeMethod" arguments)) +(defun |keyPressEvent| (object &rest arguments) + (%qinvoke-method object nil "keyPressEvent" arguments)) + +(defun |keyReleaseEvent| (object &rest arguments) + (%qinvoke-method object nil "keyReleaseEvent" arguments)) + (defun |keyValueAt| (object &rest arguments) (%qinvoke-method object nil "keyValueAt" arguments)) @@ -606,6 +1053,9 @@ (defun |load(QXmlStreamReader*)| (object &rest arguments) (%qinvoke-method object nil "load(QXmlStreamReader*)" arguments)) +(defun |loadData| (object &rest arguments) + (%qinvoke-method object nil "loadData" arguments)) + (defun |loadFailed| (object &rest arguments) (%qinvoke-method object nil "loadFailed" arguments)) @@ -627,6 +1077,9 @@ (defun |loadStarted| (object &rest arguments) (%qinvoke-method object nil "loadStarted" arguments)) +(defun |loadUrl| (object &rest arguments) + (%qinvoke-method object nil "loadUrl" arguments)) + (defun |loaded| (object &rest arguments) (%qinvoke-method object nil "loaded" arguments)) @@ -1068,6 +1521,15 @@ (defun |markContentsDirty| (object &rest arguments) (%qinvoke-method object nil "markContentsDirty" arguments)) +(defun |markDirty| (object &rest arguments) + (%qinvoke-method object nil "markDirty" arguments)) + +(defun |markIndexDataDirty| (object &rest arguments) + (%qinvoke-method object nil "markIndexDataDirty" arguments)) + +(defun |markVertexDataDirty| (object &rest arguments) + (%qinvoke-method object nil "markVertexDataDirty" arguments)) + (defun |mask| (object &rest arguments) (%qinvoke-method object nil "mask" arguments)) @@ -1104,6 +1566,9 @@ (defun |match| (object &rest arguments) (%qinvoke-method object nil "match" arguments)) +(defun |material| (object &rest arguments) + (%qinvoke-method object nil "material" arguments)) + (defun |matrixForElement| (object &rest arguments) (%qinvoke-method object nil "matrixForElement" arguments)) @@ -1212,6 +1677,9 @@ (defun |maximum| (object &rest arguments) (%qinvoke-method object nil "maximum" arguments)) +(defun |maybeUpdate| (object &rest arguments) + (%qinvoke-method object nil "maybeUpdate" arguments)) + (defun |mdiArea| (object &rest arguments) (%qinvoke-method object nil "mdiArea" arguments)) @@ -1446,6 +1914,9 @@ (defun |mipMaxLevel| (object &rest arguments) (%qinvoke-method object nil "mipMaxLevel" arguments)) +(defun |mipmapFiltering| (object &rest arguments) + (%qinvoke-method object nil "mipmapFiltering" arguments)) + (defun |mipmap| (object &rest arguments) (%qinvoke-method object nil "mipmap" arguments)) @@ -1521,6 +1992,9 @@ (defun |mouseButtons| (object &rest arguments) (%qinvoke-method object nil "mouseButtons" arguments)) +(defun |mouseDoubleClickEvent| (object &rest arguments) + (%qinvoke-method object nil "mouseDoubleClickEvent" arguments)) + (defun |mouseDoubleClickIntervalChanged| (object &rest arguments) (%qinvoke-method object nil "mouseDoubleClickIntervalChanged" arguments)) @@ -1533,9 +2007,18 @@ (defun |mouseGrabberItem| (object &rest arguments) (%qinvoke-method object nil "mouseGrabberItem" arguments)) +(defun |mouseMoveEvent| (object &rest arguments) + (%qinvoke-method object nil "mouseMoveEvent" arguments)) + (defun |mousePressAndHoldInterval| (object &rest arguments) (%qinvoke-method object nil "mousePressAndHoldInterval" arguments)) +(defun |mousePressEvent| (object &rest arguments) + (%qinvoke-method object nil "mousePressEvent" arguments)) + +(defun |mouseReleaseEvent| (object &rest arguments) + (%qinvoke-method object nil "mouseReleaseEvent" arguments)) + (defun |movableChanged| (object &rest arguments) (%qinvoke-method object nil "movableChanged" arguments)) @@ -1617,6 +2100,9 @@ (defun |nameFilters| (object &rest arguments) (%qinvoke-method object nil "nameFilters" arguments)) +(defun |nameForObject| (object &rest arguments) + (%qinvoke-method object nil "nameForObject" arguments)) + (defun |nameToType.QVariant| (&rest arguments) (%qinvoke-method "QVariant" nil "nameToType" arguments)) @@ -1677,12 +2163,18 @@ (defun |nearestFormat| (object &rest arguments) (%qinvoke-method object nil "nearestFormat" arguments)) +(defun |needsNotifySignal| (object &rest arguments) + (%qinvoke-method object nil "needsNotifySignal" arguments)) + (defun |negativeSign| (object &rest arguments) (%qinvoke-method object nil "negativeSign" arguments)) (defun |netmask| (object &rest arguments) (%qinvoke-method object nil "netmask" arguments)) +(defun |networkAccessManagerFactory| (object &rest arguments) + (%qinvoke-method object nil "networkAccessManagerFactory" arguments)) + (defun |networkAccessManager| (object &rest arguments) (%qinvoke-method object nil "networkAccessManager" arguments)) @@ -1701,9 +2193,15 @@ (defun |networkSessionConnected| (object &rest arguments) (%qinvoke-method object nil "networkSessionConnected" arguments)) +(defun |newArray| (object &rest arguments) + (%qinvoke-method object nil "newArray" arguments)) + (defun |newConnection| (object &rest arguments) (%qinvoke-method object nil "newConnection" arguments)) +(defun |newObject| (object &rest arguments) + (%qinvoke-method object nil "newObject" arguments)) + (defun |newPage| (object &rest arguments) (%qinvoke-method object nil "newPage" arguments)) @@ -1713,6 +2211,9 @@ (defun |newProxyWidget| (object &rest arguments) (%qinvoke-method object nil "newProxyWidget" arguments)) +(defun |newQObject| (object &rest arguments) + (%qinvoke-method object nil "newQObject" arguments)) + (defun |newSize| (object &rest arguments) (%qinvoke-method object nil "newSize" arguments)) @@ -1731,6 +2232,9 @@ (defun |nextIndex| (object &rest arguments) (%qinvoke-method object nil "nextIndex" arguments)) +(defun |nextItemInFocusChain| (object &rest arguments) + (%qinvoke-method object nil "nextItemInFocusChain" arguments)) + (defun |nextNegotiatedProtocol| (object &rest arguments) (%qinvoke-method object nil "nextNegotiatedProtocol" arguments)) @@ -1764,6 +2268,9 @@ (defun |normalizedSignature.QMetaObject| (&rest arguments) (%qinvoke-method "QMetaObject" nil "normalizedSignature" arguments)) +(defun |normalizedTextureSubRect| (object &rest arguments) + (%qinvoke-method object nil "normalizedTextureSubRect" arguments)) + (defun |normalizedType.QMetaObject| (&rest arguments) (%qinvoke-method "QMetaObject" nil "normalizedType" arguments)) @@ -1797,6 +2304,9 @@ (defun |notifyInterval| (object &rest arguments) (%qinvoke-method object nil "notifyInterval" arguments)) +(defun |notifyOnValueChanged| (object &rest arguments) + (%qinvoke-method object nil "notifyOnValueChanged" arguments)) + (defun |notify| (object &rest arguments) (%qinvoke-method object nil "notify" arguments)) @@ -1809,6 +2319,9 @@ (defun |numRowsAffected| (object &rest arguments) (%qinvoke-method object nil "numRowsAffected" arguments)) +(defun |numberLiteral| (object &rest arguments) + (%qinvoke-method object nil "numberLiteral" arguments)) + (defun |numberOptions| (object &rest arguments) (%qinvoke-method object nil "numberOptions" arguments)) @@ -1821,6 +2334,9 @@ (defun |numericalPrecisionPolicy| (object &rest arguments) (%qinvoke-method object nil "numericalPrecisionPolicy" arguments)) +(defun |objectCreated| (object &rest arguments) + (%qinvoke-method object nil "objectCreated" arguments)) + (defun |objectDestroyed| (object &rest arguments) (%qinvoke-method object nil "objectDestroyed" arguments)) @@ -1836,6 +2352,9 @@ (defun |objectName| (object &rest arguments) (%qinvoke-method object nil "objectName" arguments)) +(defun |objectOwnership.QQmlEngine| (&rest arguments) + (%qinvoke-method "QQmlEngine" nil "objectOwnership" arguments)) + (defun |objectType| (object &rest arguments) (%qinvoke-method object nil "objectType" arguments)) @@ -1848,6 +2367,9 @@ (defun |offlineStoragePath.QWebSettings| (&rest arguments) (%qinvoke-method "QWebSettings" nil "offlineStoragePath" arguments)) +(defun |offlineStoragePath| (object &rest arguments) + (%qinvoke-method object nil "offlineStoragePath" arguments)) + (defun |offlineWebApplicationCachePath.QWebSettings| (&rest arguments) (%qinvoke-method "QWebSettings" nil "offlineWebApplicationCachePath" arguments)) @@ -1896,6 +2418,12 @@ (defun |opaqueArea| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "opaqueArea" arguments)) +(defun |opaqueMaterial| (object &rest arguments) + (%qinvoke-method object nil "opaqueMaterial" arguments)) + +(defun |opaquePainting| (object &rest arguments) + (%qinvoke-method object nil "opaquePainting" arguments)) + (defun |opaqueResize| (object &rest arguments) (%qinvoke-method object nil "opaqueResize" arguments)) @@ -1917,6 +2445,12 @@ (defun |openUrl.QDesktopServices| (&rest arguments) (%qinvoke-method "QDesktopServices" nil "openUrl" arguments)) +(defun |openglContextCreated| (object &rest arguments) + (%qinvoke-method object nil "openglContextCreated" arguments)) + +(defun |openglContext| (object &rest arguments) + (%qinvoke-method object nil "openglContext" arguments)) + (defun |open| (object &rest arguments) (%qinvoke-method object nil "open" arguments)) @@ -1998,6 +2532,9 @@ (defun |outputLocation| (object &rest arguments) (%qinvoke-method object nil "outputLocation" arguments)) +(defun |outputWarningsToStandardError| (object &rest arguments) + (%qinvoke-method object nil "outputWarningsToStandardError" arguments)) + (defun |overflow| (object &rest arguments) (%qinvoke-method object nil "overflow" arguments)) @@ -2040,6 +2577,9 @@ (defun |ownsSelection| (object &rest arguments) (%qinvoke-method object nil "ownsSelection" arguments)) +(defun |ownsTexture| (object &rest arguments) + (%qinvoke-method object nil "ownsTexture" arguments)) + (defun |padding| (object &rest arguments) (%qinvoke-method object nil "padding" arguments)) @@ -2157,6 +2697,9 @@ (defun |parentChanged| (object &rest arguments) (%qinvoke-method object nil "parentChanged" arguments)) +(defun |parentContext| (object &rest arguments) + (%qinvoke-method object nil "parentContext" arguments)) + (defun |parentFrame| (object &rest arguments) (%qinvoke-method object nil "parentFrame" arguments)) @@ -2265,6 +2808,9 @@ (defun |percent| (object &rest arguments) (%qinvoke-method object nil "percent" arguments)) +(defun |performanceHints| (object &rest arguments) + (%qinvoke-method object nil "performanceHints" arguments)) + (defun |periodSize| (object &rest arguments) (%qinvoke-method object nil "periodSize" arguments)) @@ -2403,6 +2949,9 @@ (defun |pluginFactory| (object &rest arguments) (%qinvoke-method object nil "pluginFactory" arguments)) +(defun |pluginPathList| (object &rest arguments) + (%qinvoke-method object nil "pluginPathList" arguments)) + (defun |plugins| (object &rest arguments) (%qinvoke-method object nil "plugins" arguments)) @@ -2433,6 +2982,9 @@ (defun |polish(QWidget*)| (object &rest arguments) (%qinvoke-method object nil "polish(QWidget*)" arguments)) +(defun |polishItems| (object &rest arguments) + (%qinvoke-method object nil "polishItems" arguments)) + (defun |polished| (object &rest arguments) (%qinvoke-method object nil "polished" arguments)) @@ -2532,9 +3084,15 @@ (defun |prepareGeometryChange| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "prepareGeometryChange" arguments)) +(defun |prepareThread| (object &rest arguments) + (%qinvoke-method object nil "prepareThread" arguments)) + (defun |prepare| (object &rest arguments) (%qinvoke-method object nil "prepare" arguments)) +(defun |prependChildNode| (object &rest arguments) + (%qinvoke-method object nil "prependChildNode" arguments)) + (defun |prependInside(QString)| (object &rest arguments) (%qinvoke-method object nil "prependInside(QString)" arguments)) @@ -2553,6 +3111,9 @@ (defun |prependOutside| (object &rest arguments) (%qinvoke-method object nil "prependOutside" arguments)) +(defun |preprocess| (object &rest arguments) + (%qinvoke-method object nil "preprocess" arguments)) + (defun |present| (object &rest arguments) (%qinvoke-method object nil "present" arguments)) @@ -2676,12 +3237,27 @@ (defun |program| (object &rest arguments) (%qinvoke-method object nil "program" arguments)) +(defun |progressChanged| (object &rest arguments) + (%qinvoke-method object nil "progressChanged" arguments)) + +(defun |progress| (object &rest arguments) + (%qinvoke-method object nil "progress" arguments)) + +(defun |projectionMatrix| (object &rest arguments) + (%qinvoke-method object nil "projectionMatrix" arguments)) + (defun |project| (object &rest arguments) (%qinvoke-method object nil "project" arguments)) (defun |propertiesAssigned| (object &rest arguments) (%qinvoke-method object nil "propertiesAssigned" arguments)) +(defun |property(QString)| (object &rest arguments) + (%qinvoke-method object nil "property(QString)" arguments)) + +(defun |property(uint)| (object &rest arguments) + (%qinvoke-method object nil "property(uint)" arguments)) + (defun |propertyCount| (object &rest arguments) (%qinvoke-method object nil "propertyCount" arguments)) @@ -2694,6 +3270,15 @@ (defun |propertyOffset| (object &rest arguments) (%qinvoke-method object nil "propertyOffset" arguments)) +(defun |propertyTypeCategory| (object &rest arguments) + (%qinvoke-method object nil "propertyTypeCategory" arguments)) + +(defun |propertyTypeName| (object &rest arguments) + (%qinvoke-method object nil "propertyTypeName" arguments)) + +(defun |propertyType| (object &rest arguments) + (%qinvoke-method object nil "propertyType" arguments)) + (defun |property| (object &rest arguments) (%qinvoke-method object nil "property" arguments)) @@ -2709,6 +3294,9 @@ (defun |protocol| (object &rest arguments) (%qinvoke-method object nil "protocol" arguments)) +(defun |prototype| (object &rest arguments) + (%qinvoke-method object nil "prototype" arguments)) + (defun |provisionalLoad| (object &rest arguments) (%qinvoke-method object nil "provisionalLoad" arguments)) @@ -2787,6 +3375,9 @@ (defun |question.QMessageBox| (&rest arguments) (%qinvoke-method "QMessageBox" nil "question" arguments)) +(defun |quickWindow| (object &rest arguments) + (%qinvoke-method object nil "quickWindow" arguments)) + (defun |quitOnLastWindowClosed.QGuiApplication| (&rest arguments) (%qinvoke-method "QGuiApplication" nil "quitOnLastWindowClosed" arguments)) @@ -2814,6 +3405,9 @@ (defun |rawValue| (object &rest arguments) (%qinvoke-method object nil "rawValue" arguments)) +(defun |read.QQmlProperty| (&rest arguments) + (%qinvoke-method "QQmlProperty" nil "read" arguments)) + (defun |readAllStandardError| (object &rest arguments) (%qinvoke-method object nil "readAllStandardError" arguments)) @@ -2853,6 +3447,9 @@ (defun |readyRead| (object &rest arguments) (%qinvoke-method object nil "readyRead" arguments)) +(defun |ready| (object &rest arguments) + (%qinvoke-method object nil "ready" arguments)) + (defun |read| (object &rest arguments) (%qinvoke-method object nil "read" arguments)) @@ -2955,6 +3552,9 @@ (defun |registerSqlDriver.QSqlDatabase| (&rest arguments) (%qinvoke-method "QSqlDatabase" nil "registerSqlDriver" arguments)) +(defun |registerTypes| (object &rest arguments) + (%qinvoke-method object nil "registerTypes" arguments)) + (defun |registeredDocumentations| (object &rest arguments) (%qinvoke-method object nil "registeredDocumentations" arguments)) @@ -2991,611 +3591,11 @@ (defun |releaseMouse| (object &rest arguments) (%qinvoke-method object nil "releaseMouse" arguments)) +(defun |releaseResources| (object &rest arguments) + (%qinvoke-method object nil "releaseResources" arguments)) + (defun |releaseShortcut| (object &rest arguments) (%qinvoke-method object nil "releaseShortcut" arguments)) (defun |releaseWidget| (object &rest arguments) (%qinvoke-method object nil "releaseWidget" arguments)) - -(defun |released| (object &rest arguments) - (%qinvoke-method object nil "released" arguments)) - -(defun |release| (object &rest arguments) - (%qinvoke-method object nil "release" arguments)) - -(defun |reload| (object &rest arguments) - (%qinvoke-method object nil "reload" arguments)) - -(defun |remainingTime| (object &rest arguments) - (%qinvoke-method object nil "remainingTime" arguments)) - -(defun |remove.QFile| (&rest arguments) - (%qinvoke-method "QFile" nil "remove" arguments)) - -(defun |remove.QPixmapCache| (&rest arguments) - (%qinvoke-method "QPixmapCache" nil "remove" arguments)) - -(defun |removeAccessWhitelistEntry| (object &rest arguments) - (%qinvoke-method object nil "removeAccessWhitelistEntry" arguments)) - -(defun |removeAction| (object &rest arguments) - (%qinvoke-method object nil "removeAction" arguments)) - -(defun |removeAllApplicationFonts.QFontDatabase| (&rest arguments) - (%qinvoke-method "QFontDatabase" nil "removeAllApplicationFonts" arguments)) - -(defun |removeAllChildren| (object &rest arguments) - (%qinvoke-method object nil "removeAllChildren" arguments)) - -(defun |removeAllDatabases.QWebDatabase| (&rest arguments) - (%qinvoke-method "QWebDatabase" nil "removeAllDatabases" arguments)) - -(defun |removeAllShaders| (object &rest arguments) - (%qinvoke-method object nil "removeAllShaders" arguments)) - -(defun |removeAnimation| (object &rest arguments) - (%qinvoke-method object nil "removeAnimation" arguments)) - -(defun |removeApplicationFont.QFontDatabase| (&rest arguments) - (%qinvoke-method "QFontDatabase" nil "removeApplicationFont" arguments)) - -(defun |removeAttributeNS| (object &rest arguments) - (%qinvoke-method object nil "removeAttributeNS" arguments)) - -(defun |removeAttribute| (object &rest arguments) - (%qinvoke-method object nil "removeAttribute" arguments)) - -(defun |removeAt| (object &rest arguments) - (%qinvoke-method object nil "removeAt" arguments)) - -(defun |removeButton| (object &rest arguments) - (%qinvoke-method object nil "removeButton" arguments)) - -(defun |removeCellWidget| (object &rest arguments) - (%qinvoke-method object nil "removeCellWidget" arguments)) - -(defun |removeChild| (object &rest arguments) - (%qinvoke-method object nil "removeChild" arguments)) - -(defun |removeClass| (object &rest arguments) - (%qinvoke-method object nil "removeClass" arguments)) - -(defun |removeColumns| (object &rest arguments) - (%qinvoke-method object nil "removeColumns" arguments)) - -(defun |removeColumn| (object &rest arguments) - (%qinvoke-method object nil "removeColumn" arguments)) - -(defun |removeCustomFilter| (object &rest arguments) - (%qinvoke-method object nil "removeCustomFilter" arguments)) - -(defun |removeCustomValue| (object &rest arguments) - (%qinvoke-method object nil "removeCustomValue" arguments)) - -(defun |removeDatabase.QSqlDatabase| (&rest arguments) - (%qinvoke-method "QSqlDatabase" nil "removeDatabase" arguments)) - -(defun |removeDatabase.QWebDatabase| (&rest arguments) - (%qinvoke-method "QWebDatabase" nil "removeDatabase" arguments)) - -(defun |removeDefaultAnimation| (object &rest arguments) - (%qinvoke-method object nil "removeDefaultAnimation" arguments)) - -(defun |removeDockWidget| (object &rest arguments) - (%qinvoke-method object nil "removeDockWidget" arguments)) - -(defun |removeEventFilter| (object &rest arguments) - (%qinvoke-method object nil "removeEventFilter" arguments)) - -(defun |removeFactory.QAccessible| (&rest arguments) - (%qinvoke-method "QAccessible" nil "removeFactory" arguments)) - -(defun |removeFormat| (object &rest arguments) - (%qinvoke-method object nil "removeFormat" arguments)) - -(defun |removeFromDocument| (object &rest arguments) - (%qinvoke-method object nil "removeFromDocument" arguments)) - -(defun |removeFromGroup| (object &rest arguments) - (%qinvoke-method object nil "removeFromGroup" arguments)) - -(defun |removeItemWidget| (object &rest arguments) - (%qinvoke-method object nil "removeItemWidget" arguments)) - -(defun |removeItem| (object &rest arguments) - (%qinvoke-method object nil "removeItem" arguments)) - -(defun |removeLibraryPath.QCoreApplication| (&rest arguments) - (%qinvoke-method "QCoreApplication" nil "removeLibraryPath" arguments)) - -(defun |removeLocalScheme.QWebSecurityOrigin| (&rest arguments) - (%qinvoke-method "QWebSecurityOrigin" nil "removeLocalScheme" arguments)) - -(defun |removeMappings| (object &rest arguments) - (%qinvoke-method object nil "removeMappings" arguments)) - -(defun |removeMapping| (object &rest arguments) - (%qinvoke-method object nil "removeMapping" arguments)) - -(defun |removeMedia| (object &rest arguments) - (%qinvoke-method object nil "removeMedia" arguments)) - -(defun |removeNativeEventFilter| (object &rest arguments) - (%qinvoke-method object nil "removeNativeEventFilter" arguments)) - -(defun |removePage| (object &rest arguments) - (%qinvoke-method object nil "removePage" arguments)) - -(defun |removePaths| (object &rest arguments) - (%qinvoke-method object nil "removePaths" arguments)) - -(defun |removePath| (object &rest arguments) - (%qinvoke-method object nil "removePath" arguments)) - -(defun |removePostedEvents.QCoreApplication| (&rest arguments) - (%qinvoke-method "QCoreApplication" nil "removePostedEvents" arguments)) - -(defun |removePropertyWatch| (object &rest arguments) - (%qinvoke-method object nil "removePropertyWatch" arguments)) - -(defun |removeRecursively| (object &rest arguments) - (%qinvoke-method object nil "removeRecursively" arguments)) - -(defun |removeRows| (object &rest arguments) - (%qinvoke-method object nil "removeRows" arguments)) - -(defun |removeRow| (object &rest arguments) - (%qinvoke-method object nil "removeRow" arguments)) - -(defun |removeSceneEventFilter| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "removeSceneEventFilter" arguments)) - -(defun |removeSelectedText| (object &rest arguments) - (%qinvoke-method object nil "removeSelectedText" arguments)) - -(defun |removeSelection| (object &rest arguments) - (%qinvoke-method object nil "removeSelection" arguments)) - -(defun |removeServer.QLocalServer| (&rest arguments) - (%qinvoke-method "QLocalServer" nil "removeServer" arguments)) - -(defun |removeShader| (object &rest arguments) - (%qinvoke-method object nil "removeShader" arguments)) - -(defun |removeStack| (object &rest arguments) - (%qinvoke-method object nil "removeStack" arguments)) - -(defun |removeState| (object &rest arguments) - (%qinvoke-method object nil "removeState" arguments)) - -(defun |removeSubWindow| (object &rest arguments) - (%qinvoke-method object nil "removeSubWindow" arguments)) - -(defun |removeSubstitutions.QFont| (&rest arguments) - (%qinvoke-method "QFont" nil "removeSubstitutions" arguments)) - -(defun |removeTab| (object &rest arguments) - (%qinvoke-method object nil "removeTab" arguments)) - -(defun |removeToolBarBreak| (object &rest arguments) - (%qinvoke-method object nil "removeToolBarBreak" arguments)) - -(defun |removeToolBar| (object &rest arguments) - (%qinvoke-method object nil "removeToolBar" arguments)) - -(defun |removeTransition| (object &rest arguments) - (%qinvoke-method object nil "removeTransition" arguments)) - -(defun |removeTranslator.QCoreApplication| (&rest arguments) - (%qinvoke-method "QCoreApplication" nil "removeTranslator" arguments)) - -(defun |removeWidget| (object &rest arguments) - (%qinvoke-method object nil "removeWidget" arguments)) - -(defun |removed| (object &rest arguments) - (%qinvoke-method object nil "removed" arguments)) - -(defun |remove| (object &rest arguments) - (%qinvoke-method object nil "remove" arguments)) - -(defun |rename.QFile| (&rest arguments) - (%qinvoke-method "QFile" nil "rename" arguments)) - -(defun |rename| (object &rest arguments) - (%qinvoke-method object nil "rename" arguments)) - -(defun |render(QPainter*,QRectF)| (object &rest arguments) - (%qinvoke-method object nil "render(QPainter*,QRectF)" arguments)) - -(defun |render(QPainter*,QRegion)| (object &rest arguments) - (%qinvoke-method object nil "render(QPainter*,QRegion)" arguments)) - -(defun |render(QPainter*,QString)| (object &rest arguments) - (%qinvoke-method object nil "render(QPainter*,QString)" arguments)) - -(defun |render(QPainter*,QWebFrame::RenderLayers)| (object &rest arguments) - (%qinvoke-method object nil "render(QPainter*,QWebFrame::RenderLayers)" arguments)) - -(defun |renderHints| (object &rest arguments) - (%qinvoke-method object nil "renderHints" arguments)) - -(defun |renderableType| (object &rest arguments) - (%qinvoke-method object nil "renderableType" arguments)) - -(defun |renderer| (object &rest arguments) - (%qinvoke-method object nil "renderer" arguments)) - -(defun |render| (object &rest arguments) - (%qinvoke-method object nil "render" arguments)) - -(defun |repaint(QRect)| (object &rest arguments) - (%qinvoke-method object nil "repaint(QRect)" arguments)) - -(defun |repaint(QRegion)| (object &rest arguments) - (%qinvoke-method object nil "repaint(QRegion)" arguments)) - -(defun |repaintNeeded| (object &rest arguments) - (%qinvoke-method object nil "repaintNeeded" arguments)) - -(defun |repaintRequested| (object &rest arguments) - (%qinvoke-method object nil "repaintRequested" arguments)) - -(defun |repaint| (object &rest arguments) - (%qinvoke-method object nil "repaint" arguments)) - -(defun |repeatAction| (object &rest arguments) - (%qinvoke-method object nil "repeatAction" arguments)) - -(defun |replace(QString)| (object &rest arguments) - (%qinvoke-method object nil "replace(QString)" arguments)) - -(defun |replace(QWebElement)| (object &rest arguments) - (%qinvoke-method object nil "replace(QWebElement)" arguments)) - -(defun |replaceText| (object &rest arguments) - (%qinvoke-method object nil "replaceText" arguments)) - -(defun |replaceWidget| (object &rest arguments) - (%qinvoke-method object nil "replaceWidget" arguments)) - -(defun |replacementLength| (object &rest arguments) - (%qinvoke-method object nil "replacementLength" arguments)) - -(defun |replacementStart| (object &rest arguments) - (%qinvoke-method object nil "replacementStart" arguments)) - -(defun |replace| (object &rest arguments) - (%qinvoke-method object nil "replace" arguments)) - -(defun |reportContentOrientationChange| (object &rest arguments) - (%qinvoke-method object nil "reportContentOrientationChange" arguments)) - -(defun |requestActivate| (object &rest arguments) - (%qinvoke-method object nil "requestActivate" arguments)) - -(defun |requestControl| (object &rest arguments) - (%qinvoke-method object nil "requestControl" arguments)) - -(defun |requestPhase2| (object &rest arguments) - (%qinvoke-method object nil "requestPhase2" arguments)) - -(defun |requestShowLink| (object &rest arguments) - (%qinvoke-method object nil "requestShowLink" arguments)) - -(defun |requestUpdate| (object &rest arguments) - (%qinvoke-method object nil "requestUpdate" arguments)) - -(defun |requestWidget| (object &rest arguments) - (%qinvoke-method object nil "requestWidget" arguments)) - -(defun |requestedAperture| (object &rest arguments) - (%qinvoke-method object nil "requestedAperture" arguments)) - -(defun |requestedFormat| (object &rest arguments) - (%qinvoke-method object nil "requestedFormat" arguments)) - -(defun |requestedIsoSensitivity| (object &rest arguments) - (%qinvoke-method object nil "requestedIsoSensitivity" arguments)) - -(defun |requestedLocks| (object &rest arguments) - (%qinvoke-method object nil "requestedLocks" arguments)) - -(defun |requestedShutterSpeed| (object &rest arguments) - (%qinvoke-method object nil "requestedShutterSpeed" arguments)) - -(defun |requestedUrl| (object &rest arguments) - (%qinvoke-method object nil "requestedUrl" arguments)) - -(defun |request| (object &rest arguments) - (%qinvoke-method object nil "request" arguments)) - -(defun |requiredStatus| (object &rest arguments) - (%qinvoke-method object nil "requiredStatus" arguments)) - -(defun |resetAttribute| (object &rest arguments) - (%qinvoke-method object nil "resetAttribute" arguments)) - -(defun |resetBindCount| (object &rest arguments) - (%qinvoke-method object nil "resetBindCount" arguments)) - -(defun |resetCachedContent| (object &rest arguments) - (%qinvoke-method object nil "resetCachedContent" arguments)) - -(defun |resetDefaultSectionSize| (object &rest arguments) - (%qinvoke-method object nil "resetDefaultSectionSize" arguments)) - -(defun |resetFontFamily| (object &rest arguments) - (%qinvoke-method object nil "resetFontFamily" arguments)) - -(defun |resetFontSize| (object &rest arguments) - (%qinvoke-method object nil "resetFontSize" arguments)) - -(defun |resetFormat| (object &rest arguments) - (%qinvoke-method object nil "resetFormat" arguments)) - -(defun |resetIndentation| (object &rest arguments) - (%qinvoke-method object nil "resetIndentation" arguments)) - -(defun |resetInternalData| (object &rest arguments) - (%qinvoke-method object nil "resetInternalData" arguments)) - -(defun |resetMatrix| (object &rest arguments) - (%qinvoke-method object nil "resetMatrix" arguments)) - -(defun |resetTransform| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "resetTransform" arguments)) - -(defun |reset| (object &rest arguments) - (%qinvoke-method object nil "reset" arguments)) - -(defun |resize.QFile| (&rest arguments) - (%qinvoke-method "QFile" nil "resize" arguments)) - -(defun |resizeAnchor| (object &rest arguments) - (%qinvoke-method object nil "resizeAnchor" arguments)) - -(defun |resizeColumnToContents| (object &rest arguments) - (%qinvoke-method object nil "resizeColumnToContents" arguments)) - -(defun |resizeColumnsToContents| (object &rest arguments) - (%qinvoke-method object nil "resizeColumnsToContents" arguments)) - -(defun |resizeContentsPrecision| (object &rest arguments) - (%qinvoke-method object nil "resizeContentsPrecision" arguments)) - -(defun |resizeGripsVisible| (object &rest arguments) - (%qinvoke-method object nil "resizeGripsVisible" arguments)) - -(defun |resizeMode| (object &rest arguments) - (%qinvoke-method object nil "resizeMode" arguments)) - -(defun |resizeRowToContents| (object &rest arguments) - (%qinvoke-method object nil "resizeRowToContents" arguments)) - -(defun |resizeRowsToContents| (object &rest arguments) - (%qinvoke-method object nil "resizeRowsToContents" arguments)) - -(defun |resizeSections| (object &rest arguments) - (%qinvoke-method object nil "resizeSections" arguments)) - -(defun |resizeSection| (object &rest arguments) - (%qinvoke-method object nil "resizeSection" arguments)) - -(defun |resized| (object &rest arguments) - (%qinvoke-method object nil "resized" arguments)) - -(defun |resizesToContents| (object &rest arguments) - (%qinvoke-method object nil "resizesToContents" arguments)) - -(defun |resize| (object &rest arguments) - (%qinvoke-method object nil "resize" arguments)) - -(defun |resolution| (object &rest arguments) - (%qinvoke-method object nil "resolution" arguments)) - -(defun |resolve(QString,QString...).QLibrary| (&rest arguments) - (%qinvoke-method "QLibrary" nil "resolve(QString,QString...)" arguments)) - -(defun |resolve(QString,int...).QLibrary| (&rest arguments) - (%qinvoke-method "QLibrary" nil "resolve(QString,int...)" arguments)) - -(defun |resolve.QLibrary| (&rest arguments) - (%qinvoke-method "QLibrary" nil "resolve" arguments)) - -(defun |resolveSymlinks| (object &rest arguments) - (%qinvoke-method object nil "resolveSymlinks" arguments)) - -(defun |resolved| (object &rest arguments) - (%qinvoke-method object nil "resolved" arguments)) - -(defun |resolve| (object &rest arguments) - (%qinvoke-method object nil "resolve" arguments)) - -(defun |resources| (object &rest arguments) - (%qinvoke-method object nil "resources" arguments)) - -(defun |resource| (object &rest arguments) - (%qinvoke-method object nil "resource" arguments)) - -(defun |restartCommand| (object &rest arguments) - (%qinvoke-method object nil "restartCommand" arguments)) - -(defun |restartHint| (object &rest arguments) - (%qinvoke-method object nil "restartHint" arguments)) - -(defun |restart| (object &rest arguments) - (%qinvoke-method object nil "restart" arguments)) - -(defun |restoreDockWidget| (object &rest arguments) - (%qinvoke-method object nil "restoreDockWidget" arguments)) - -(defun |restoreFrameStateRequested| (object &rest arguments) - (%qinvoke-method object nil "restoreFrameStateRequested" arguments)) - -(defun |restoreGeometry| (object &rest arguments) - (%qinvoke-method object nil "restoreGeometry" arguments)) - -(defun |restoreOverrideCursor.QGuiApplication| (&rest arguments) - (%qinvoke-method "QGuiApplication" nil "restoreOverrideCursor" arguments)) - -(defun |restoreState| (object &rest arguments) - (%qinvoke-method object nil "restoreState" arguments)) - -(defun |restore| (object &rest arguments) - (%qinvoke-method object nil "restore" arguments)) - -(defun |resultWidget| (object &rest arguments) - (%qinvoke-method object nil "resultWidget" arguments)) - -(defun |result| (object &rest arguments) - (%qinvoke-method object nil "result" arguments)) - -(defun |resumeAccepting| (object &rest arguments) - (%qinvoke-method object nil "resumeAccepting" arguments)) - -(defun |resume| (object &rest arguments) - (%qinvoke-method object nil "resume" arguments)) - -(defun |retainSizeWhenHidden| (object &rest arguments) - (%qinvoke-method object nil "retainSizeWhenHidden" arguments)) - -(defun |returnPressed| (object &rest arguments) - (%qinvoke-method object nil "returnPressed" arguments)) - -(defun |revertAll| (object &rest arguments) - (%qinvoke-method object nil "revertAll" arguments)) - -(defun |revertRow| (object &rest arguments) - (%qinvoke-method object nil "revertRow" arguments)) - -(defun |revert| (object &rest arguments) - (%qinvoke-method object nil "revert" arguments)) - -(defun |revision| (object &rest arguments) - (%qinvoke-method object nil "revision" arguments)) - -(defun |rgbSwapped| (object &rest arguments) - (%qinvoke-method object nil "rgbSwapped" arguments)) - -(defun |rgba| (object &rest arguments) - (%qinvoke-method object nil "rgba" arguments)) - -(defun |rgb| (object &rest arguments) - (%qinvoke-method object nil "rgb" arguments)) - -(defun |rightBearing| (object &rest arguments) - (%qinvoke-method object nil "rightBearing" arguments)) - -(defun |rightColumn| (object &rest arguments) - (%qinvoke-method object nil "rightColumn" arguments)) - -(defun |rightCursorPosition| (object &rest arguments) - (%qinvoke-method object nil "rightCursorPosition" arguments)) - -(defun |rightMargin| (object &rest arguments) - (%qinvoke-method object nil "rightMargin" arguments)) - -(defun |rightPadding| (object &rest arguments) - (%qinvoke-method object nil "rightPadding" arguments)) - -(defun |right| (object &rest arguments) - (%qinvoke-method object nil "right" arguments)) - -(defun |rmdir| (object &rest arguments) - (%qinvoke-method object nil "rmdir" arguments)) - -(defun |rmpath| (object &rest arguments) - (%qinvoke-method object nil "rmpath" arguments)) - -(defun |role| (object &rest arguments) - (%qinvoke-method object nil "role" arguments)) - -(defun |rollbackTransaction| (object &rest arguments) - (%qinvoke-method object nil "rollbackTransaction" arguments)) - -(defun |rollback| (object &rest arguments) - (%qinvoke-method object nil "rollback" arguments)) - -(defun |root.QDir| (&rest arguments) - (%qinvoke-method "QDir" nil "root" arguments)) - -(defun |root.QStorageInfo| (&rest arguments) - (%qinvoke-method "QStorageInfo" nil "root" arguments)) - -(defun |rootDirectory| (object &rest arguments) - (%qinvoke-method object nil "rootDirectory" arguments)) - -(defun |rootFrame| (object &rest arguments) - (%qinvoke-method object nil "rootFrame" arguments)) - -(defun |rootIndex| (object &rest arguments) - (%qinvoke-method object nil "rootIndex" arguments)) - -(defun |rootIsDecorated| (object &rest arguments) - (%qinvoke-method object nil "rootIsDecorated" arguments)) - -(defun |rootModelIndex| (object &rest arguments) - (%qinvoke-method object nil "rootModelIndex" arguments)) - -(defun |rootPath.QDir| (&rest arguments) - (%qinvoke-method "QDir" nil "rootPath" arguments)) - -(defun |rootPathChanged| (object &rest arguments) - (%qinvoke-method object nil "rootPathChanged" arguments)) - -(defun |rootPath| (object &rest arguments) - (%qinvoke-method object nil "rootPath" arguments)) - -(defun |rotateRadians| (object &rest arguments) - (%qinvoke-method object nil "rotateRadians" arguments)) - -(defun |rotatedVector| (object &rest arguments) - (%qinvoke-method object nil "rotatedVector" arguments)) - -(defun |rotate| (object &rest arguments) - (%qinvoke-method object nil "rotate" arguments)) - -(defun |rotationAngle| (object &rest arguments) - (%qinvoke-method object nil "rotationAngle" arguments)) - -(defun |rotationChanged| (object &rest arguments) - (%qinvoke-method object nil "rotationChanged" arguments)) - -(defun |rotationTo.QQuaternion| (&rest arguments) - (%qinvoke-method "QQuaternion" nil "rotationTo" arguments)) - -(defun |rotation| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "rotation" arguments)) - -(defun |rowAlignment| (object &rest arguments) - (%qinvoke-method object nil "rowAlignment" arguments)) - -(defun |rowAt| (object &rest arguments) - (%qinvoke-method object nil "rowAt" arguments)) - -(defun |rowCountChanged| (object &rest arguments) - (%qinvoke-method object nil "rowCountChanged" arguments)) - -(defun |rowCount| (object &rest arguments) - (%qinvoke-method object nil "rowCount" arguments)) - -(defun |rowEnd| (object &rest arguments) - (%qinvoke-method object nil "rowEnd" arguments)) - -(defun |rowHeight| (object &rest arguments) - (%qinvoke-method object nil "rowHeight" arguments)) - -(defun |rowIntersectsSelection| (object &rest arguments) - (%qinvoke-method object nil "rowIntersectsSelection" arguments)) - -(defun |rowMaximumHeight| (object &rest arguments) - (%qinvoke-method object nil "rowMaximumHeight" arguments)) - -(defun |rowMinimumHeight| (object &rest arguments) - (%qinvoke-method object nil "rowMinimumHeight" arguments)) - -(defun |rowMoved| (object &rest arguments) - (%qinvoke-method object nil "rowMoved" arguments)) - -(defun |rowPreferredHeight| (object &rest arguments) - (%qinvoke-method object nil "rowPreferredHeight" arguments)) diff --git a/src/lisp/define-all-wrappers.lisp b/src/lisp/define-all-wrappers.lisp index c84467e..51a4db5 100644 --- a/src/lisp/define-all-wrappers.lisp +++ b/src/lisp/define-all-wrappers.lisp @@ -2,7 +2,7 @@ ;;; preserving symbol names, and resolving type ambiguous argument lists ;;; current count: 6007 -(dolist (module '(:help :multimedia :network :sql :svg :webkit)) +(dolist (module '(:help :multimedia :network :quick :sql :svg :webkit)) (eql:qrequire module)) (defconstant +max-symbols-per-file+ 1200) ; required for Windows (string size limit) diff --git a/src/lisp/enum-lists/dynamic-enums.lisp b/src/lisp/enum-lists/dynamic-enums.lisp index 6341534..4e01788 100644 --- a/src/lisp/enum-lists/dynamic-enums.lisp +++ b/src/lisp/enum-lists/dynamic-enums.lisp @@ -1473,6 +1473,37 @@ ("|QPlainTextEdit.WidgetWidth|" . 1) ("|QProgressBar.BottomToTop|" . 1) ("|QProgressBar.TopToBottom|" . 0) +("|QQmlComponent.Asynchronous|" . 1) +("|QQmlComponent.Error|" . 3) +("|QQmlComponent.Loading|" . 2) +("|QQmlComponent.Null|" . 0) +("|QQmlComponent.PreferSynchronous|" . 0) +("|QQmlComponent.Ready|" . 1) +("|QQuickItem.BottomLeft|" . 6) +("|QQuickItem.BottomRight|" . 8) +("|QQuickItem.Bottom|" . 7) +("|QQuickItem.Center|" . 4) +("|QQuickItem.Left|" . 3) +("|QQuickItem.Right|" . 5) +("|QQuickItem.TopLeft|" . 0) +("|QQuickItem.TopRight|" . 2) +("|QQuickItem.Top|" . 1) +("|QQuickPaintedItem.FramebufferObject|" . 1) +("|QQuickPaintedItem.Image|" . 0) +("|QQuickPaintedItem.InvertedYFramebufferObject|" . 2) +("|QQuickView.Error|" . 3) +("|QQuickView.Loading|" . 2) +("|QQuickView.Null|" . 0) +("|QQuickView.Ready|" . 1) +("|QQuickView.SizeRootObjectToView|" . 1) +("|QQuickView.SizeViewToRootObject|" . 0) +("|QQuickWidget.Error|" . 3) +("|QQuickWidget.Loading|" . 2) +("|QQuickWidget.Null|" . 0) +("|QQuickWidget.Ready|" . 1) +("|QQuickWidget.SizeRootObjectToView|" . 1) +("|QQuickWidget.SizeViewToRootObject|" . 0) +("|QQuickWindow.ContextNotAvailable|" . 1) ("|QRadioTuner.AM|" . 0) ("|QRadioTuner.ActiveState|" . 0) ("|QRadioTuner.Auto|" . 2) diff --git a/src/lisp/enum-lists/parsed-enums.lisp b/src/lisp/enum-lists/parsed-enums.lisp index afc353a..fddcd70 100644 --- a/src/lisp/enum-lists/parsed-enums.lisp +++ b/src/lisp/enum-lists/parsed-enums.lisp @@ -782,6 +782,62 @@ ("|QProcess.Running|" . 2) ("|QProgressBar.TopToBottom|" . 0) ("|QProgressBar.BottomToTop|" . 1) +("|QQmlComponent.PreferSynchronous|" . 0) +("|QQmlComponent.Asynchronous|" . 1) +("|QQmlComponent.Null|" . 0) +("|QQmlComponent.Ready|" . 1) +("|QQmlComponent.Loading|" . 2) +("|QQmlComponent.Error|" . 3) +("|QQmlEngine.CppOwnership|" . 0) +("|QQmlEngine.JavaScriptOwnership|" . 1) +("|QQuickItem.ItemClipsChildrenToShape|" . #x01) +("|QQuickItem.ItemAcceptsInputMethod|" . #x02) +("|QQuickItem.ItemIsFocusScope|" . #x04) +("|QQuickItem.ItemHasContents|" . #x08) +("|QQuickItem.ItemAcceptsDrops|" . #x10) +("|QQuickItem.ItemChildAddedChange|" . 0) +("|QQuickItem.ItemChildRemovedChange|" . 1) +("|QQuickItem.ItemSceneChange|" . 2) +("|QQuickItem.ItemVisibleHasChanged|" . 3) +("|QQuickItem.ItemParentHasChanged|" . 4) +("|QQuickItem.ItemOpacityHasChanged|" . 5) +("|QQuickItem.ItemActiveFocusHasChanged|" . 6) +("|QQuickItem.ItemRotationHasChanged|" . 7) +("|QQuickItem.TopLeft|" . 0) +("|QQuickItem.Top|" . 1) +("|QQuickItem.TopRight|" . 2) +("|QQuickItem.Left|" . 3) +("|QQuickItem.Center|" . 4) +("|QQuickItem.Right|" . 5) +("|QQuickItem.BottomLeft|" . 6) +("|QQuickItem.Bottom|" . 7) +("|QQuickItem.BottomRight|" . 8) +("|QQuickPaintedItem.FastFBOResizing|" . #x1) +("|QQuickPaintedItem.Image|" . 0) +("|QQuickPaintedItem.FramebufferObject|" . 1) +("|QQuickPaintedItem.InvertedYFramebufferObject|" . 2) +("|QQuickView.SizeViewToRootObject|" . 0) +("|QQuickView.SizeRootObjectToView|" . 1) +("|QQuickView.Null|" . 0) +("|QQuickView.Ready|" . 1) +("|QQuickView.Loading|" . 2) +("|QQuickView.Error|" . 3) +("|QQuickWidget.SizeViewToRootObject|" . 0) +("|QQuickWidget.SizeRootObjectToView|" . 1) +("|QQuickWidget.Null|" . 0) +("|QQuickWidget.Ready|" . 1) +("|QQuickWidget.Loading|" . 2) +("|QQuickWidget.Error|" . 3) +("|QQuickWindow.TextureHasAlphaChannel|" . #x0001) +("|QQuickWindow.TextureHasMipmaps|" . #x0002) +("|QQuickWindow.TextureOwnsGLTexture|" . #x0004) +("|QQuickWindow.TextureCanUseAtlas|" . #x0008) +("|QQuickWindow.BeforeSynchronizingStage|" . 0) +("|QQuickWindow.AfterSynchronizingStage|" . 1) +("|QQuickWindow.BeforeRenderingStage|" . 2) +("|QQuickWindow.AfterRenderingStage|" . 3) +("|QQuickWindow.AfterSwapStage|" . 4) +("|QQuickWindow.ContextNotAvailable|" . 1) ("|QRadioTuner.AM|" . 0) ("|QRadioTuner.FM|" . 1) ("|QRadioTuner.SW|" . 2) @@ -800,6 +856,17 @@ ("|QRadioTuner.Auto|" . 2) ("|QRubberBand.Line|" . 0) ("|QRubberBand.Rectangle|" . 1) +("|QSGAbstractRenderer.ClearColorBuffer|" . #x0001) +("|QSGAbstractRenderer.ClearDepthBuffer|" . #x0002) +("|QSGAbstractRenderer.ClearStencilBuffer|" . #x0004) +("|QSGEngine.TextureHasAlphaChannel|" . #x0001) +("|QSGEngine.TextureOwnsGLTexture|" . #x0004) +("|QSGEngine.TextureCanUseAtlas|" . #x0008) +("|QSGTexture.None|" . 0) +("|QSGTexture.Nearest|" . 1) +("|QSGTexture.Linear|" . 2) +("|QSGTexture.Repeat|" . 0) +("|QSGTexture.ClampToEdge|" . 1) ("|QSessionManager.RestartIfRunning|" . 0) ("|QSessionManager.RestartAnyway|" . 1) ("|QSessionManager.RestartImmediately|" . 2) @@ -1964,6 +2031,8 @@ ("|QInputMethodEvent.Language|" . 2) ("|QInputMethodEvent.Ruby|" . 3) ("|QInputMethodEvent.Selection|" . 4) +("|QJSValue.UndefinedValue|" . 1) +("|QJSValue.NullValue|" . 0) ("|QKeySequence.NativeText|" . 0) ("|QKeySequence.PortableText|" . 1) ("|QKeySequence.NoMatch|" . 0) @@ -3665,6 +3734,29 @@ ("|QPrinter.Didot|" . 4) ("|QPrinter.Cicero|" . 5) ("|QPrinter.DevicePixel|" . 6) +("|QQmlAbstractUrlInterceptor.QmldirFile|" . 2) +("|QQmlAbstractUrlInterceptor.JavaScriptFile|" . 1) +("|QQmlAbstractUrlInterceptor.QmlFile|" . 0) +("|QQmlAbstractUrlInterceptor.UrlString|" . #x1000) +("|QQmlImageProviderBase.ForceAsynchronousImageLoading|" . #x01) +("|QQmlImageProviderBase.Image|" . 0) +("|QQmlImageProviderBase.Pixmap|" . 1) +("|QQmlImageProviderBase.Texture|" . 2) +("|QQmlImageProviderBase.ImageResponse|" . 4) +("|QQmlIncubator.Asynchronous|" . 0) +("|QQmlIncubator.AsynchronousIfNested|" . 1) +("|QQmlIncubator.Synchronous|" . 2) +("|QQmlIncubator.Null|" . 0) +("|QQmlIncubator.Ready|" . 1) +("|QQmlIncubator.Loading|" . 2) +("|QQmlIncubator.Error|" . 3) +("|QQmlProperty.InvalidCategory|" . 0) +("|QQmlProperty.List|" . 1) +("|QQmlProperty.Object|" . 2) +("|QQmlProperty.Normal|" . 3) +("|QQmlProperty.Invalid|" . 0) +("|QQmlProperty.Property|" . 1) +("|QQmlProperty.SignalProperty|" . 2) ("|QRegExp.CaretAtZero|" . 0) ("|QRegExp.CaretAtOffset|" . 1) ("|QRegExp.CaretWontMatch|" . 2) @@ -3693,6 +3785,35 @@ ("|QRegularExpression.UseUnicodePropertiesOption|" . #x0040) ("|QRegularExpression.OptimizeOnFirstUsageOption|" . #x0080) ("|QRegularExpression.DontAutomaticallyOptimizeOption|" . #x0100) +("|QSGGeometry.AlwaysUploadPattern|" . 0) +("|QSGGeometry.DynamicPattern|" . 2) +("|QSGGeometry.StaticPattern|" . 3) +("|QSGGeometry.StreamPattern|" . 1) +("|QSGMaterial.Blending|" . #x0001) +("|QSGMaterial.RequiresDeterminant|" . #x0002) +("|QSGMaterial.RequiresFullMatrixExceptTranslate|" . #x0006) +("|QSGMaterial.RequiresFullMatrix|" . #x000e) +("|QSGMaterial.CustomCompileStep|" . #x0010) +("|QSGNode.DirtyMatrix|" . #x0100) +("|QSGNode.DirtyNodeAdded|" . #x0400) +("|QSGNode.DirtyNodeRemoved|" . #x0800) +("|QSGNode.DirtyGeometry|" . #x1000) +("|QSGNode.DirtyMaterial|" . #x2000) +("|QSGNode.DirtyOpacity|" . #x4000) +("|QSGNode.OwnedByParent|" . #x0001) +("|QSGNode.UsePreprocess|" . #x0002) +("|QSGNode.OwnsGeometry|" . #x00010000) +("|QSGNode.OwnsMaterial|" . #x00020000) +("|QSGNode.OwnsOpaqueMaterial|" . #x00040000) +("|QSGNode.InternalReserved|" . #x01000000) +("|QSGNode.BasicNodeType|" . 0) +("|QSGNode.GeometryNodeType|" . 1) +("|QSGNode.TransformNodeType|" . 2) +("|QSGNode.ClipNodeType|" . 3) +("|QSGNode.OpacityNodeType|" . 4) +("|QSGSimpleTextureNode.NoTransform|" . #x00) +("|QSGSimpleTextureNode.MirrorHorizontally|" . #x01) +("|QSGSimpleTextureNode.MirrorVertically|" . #x02) ("|QScrollEvent.ScrollStarted|" . 0) ("|QScrollEvent.ScrollUpdated|" . 1) ("|QScrollEvent.ScrollFinished|" . 2) diff --git a/src/lisp/enums2.lisp b/src/lisp/enums2.lisp index 0b49200..c4db978 100644 --- a/src/lisp/enums2.lisp +++ b/src/lisp/enums2.lisp @@ -22,6 +22,8 @@ (defenum |QItemSelectionModel.Select| 2) (defenum |QItemSelectionModel.ToggleCurrent| 24) (defenum |QItemSelectionModel.Toggle| 8) +(defenum |QJSValue.NullValue| 0) +(defenum |QJSValue.UndefinedValue| 1) (defenum |QKeySequence.AddTab| 19) (defenum |QKeySequence.Backspace| 69) (defenum |QKeySequence.Back| 13) @@ -1262,5 +1264,3 @@ (defenum |QOpenGLTexture.LinearMipMapLinear| 9987) (defenum |QOpenGLTexture.LinearMipMapNearest| 9985) (defenum |QOpenGLTexture.Linear| 9729) -(defenum |QOpenGLTexture.LuminanceAlphaFormat| 6410) -(defenum |QOpenGLTexture.LuminanceAlpha| 6410) diff --git a/src/lisp/enums3.lisp b/src/lisp/enums3.lisp index 1bd70bd..afb8112 100644 --- a/src/lisp/enums3.lisp +++ b/src/lisp/enums3.lisp @@ -14,6 +14,8 @@ (defconstant ,name ,value) (export ',name ,(find-package :eql)))) +(defenum |QOpenGLTexture.LuminanceAlphaFormat| 6410) +(defenum |QOpenGLTexture.LuminanceAlpha| 6410) (defenum |QOpenGLTexture.LuminanceFormat| 6409) (defenum |QOpenGLTexture.Luminance| 6409) (defenum |QOpenGLTexture.MirroredRepeat| 33648) @@ -739,6 +741,85 @@ (defenum |QProcess.WriteError| 4) (defenum |QProgressBar.BottomToTop| 1) (defenum |QProgressBar.TopToBottom| 0) +(defenum |QQmlAbstractUrlInterceptor.JavaScriptFile| 1) +(defenum |QQmlAbstractUrlInterceptor.QmlFile| 0) +(defenum |QQmlAbstractUrlInterceptor.QmldirFile| 2) +(defenum |QQmlAbstractUrlInterceptor.UrlString| 4096) +(defenum |QQmlComponent.Asynchronous| 1) +(defenum |QQmlComponent.Error| 3) +(defenum |QQmlComponent.Loading| 2) +(defenum |QQmlComponent.Null| 0) +(defenum |QQmlComponent.PreferSynchronous| 0) +(defenum |QQmlComponent.Ready| 1) +(defenum |QQmlEngine.CppOwnership| 0) +(defenum |QQmlEngine.JavaScriptOwnership| 1) +(defenum |QQmlImageProviderBase.ForceAsynchronousImageLoading| 1) +(defenum |QQmlImageProviderBase.ImageResponse| 4) +(defenum |QQmlImageProviderBase.Image| 0) +(defenum |QQmlImageProviderBase.Pixmap| 1) +(defenum |QQmlImageProviderBase.Texture| 2) +(defenum |QQmlIncubator.AsynchronousIfNested| 1) +(defenum |QQmlIncubator.Asynchronous| 0) +(defenum |QQmlIncubator.Error| 3) +(defenum |QQmlIncubator.Loading| 2) +(defenum |QQmlIncubator.Null| 0) +(defenum |QQmlIncubator.Ready| 1) +(defenum |QQmlIncubator.Synchronous| 2) +(defenum |QQmlProperty.InvalidCategory| 0) +(defenum |QQmlProperty.Invalid| 0) +(defenum |QQmlProperty.List| 1) +(defenum |QQmlProperty.Normal| 3) +(defenum |QQmlProperty.Object| 2) +(defenum |QQmlProperty.Property| 1) +(defenum |QQmlProperty.SignalProperty| 2) +(defenum |QQuickItem.BottomLeft| 6) +(defenum |QQuickItem.BottomRight| 8) +(defenum |QQuickItem.Bottom| 7) +(defenum |QQuickItem.Center| 4) +(defenum |QQuickItem.ItemAcceptsDrops| 16) +(defenum |QQuickItem.ItemAcceptsInputMethod| 2) +(defenum |QQuickItem.ItemActiveFocusHasChanged| 6) +(defenum |QQuickItem.ItemChildAddedChange| 0) +(defenum |QQuickItem.ItemChildRemovedChange| 1) +(defenum |QQuickItem.ItemClipsChildrenToShape| 1) +(defenum |QQuickItem.ItemHasContents| 8) +(defenum |QQuickItem.ItemIsFocusScope| 4) +(defenum |QQuickItem.ItemOpacityHasChanged| 5) +(defenum |QQuickItem.ItemParentHasChanged| 4) +(defenum |QQuickItem.ItemRotationHasChanged| 7) +(defenum |QQuickItem.ItemSceneChange| 2) +(defenum |QQuickItem.ItemVisibleHasChanged| 3) +(defenum |QQuickItem.Left| 3) +(defenum |QQuickItem.Right| 5) +(defenum |QQuickItem.TopLeft| 0) +(defenum |QQuickItem.TopRight| 2) +(defenum |QQuickItem.Top| 1) +(defenum |QQuickPaintedItem.FastFBOResizing| 1) +(defenum |QQuickPaintedItem.FramebufferObject| 1) +(defenum |QQuickPaintedItem.Image| 0) +(defenum |QQuickPaintedItem.InvertedYFramebufferObject| 2) +(defenum |QQuickView.Error| 3) +(defenum |QQuickView.Loading| 2) +(defenum |QQuickView.Null| 0) +(defenum |QQuickView.Ready| 1) +(defenum |QQuickView.SizeRootObjectToView| 1) +(defenum |QQuickView.SizeViewToRootObject| 0) +(defenum |QQuickWidget.Error| 3) +(defenum |QQuickWidget.Loading| 2) +(defenum |QQuickWidget.Null| 0) +(defenum |QQuickWidget.Ready| 1) +(defenum |QQuickWidget.SizeRootObjectToView| 1) +(defenum |QQuickWidget.SizeViewToRootObject| 0) +(defenum |QQuickWindow.AfterRenderingStage| 3) +(defenum |QQuickWindow.AfterSwapStage| 4) +(defenum |QQuickWindow.AfterSynchronizingStage| 1) +(defenum |QQuickWindow.BeforeRenderingStage| 2) +(defenum |QQuickWindow.BeforeSynchronizingStage| 0) +(defenum |QQuickWindow.ContextNotAvailable| 1) +(defenum |QQuickWindow.TextureCanUseAtlas| 8) +(defenum |QQuickWindow.TextureHasAlphaChannel| 1) +(defenum |QQuickWindow.TextureHasMipmaps| 2) +(defenum |QQuickWindow.TextureOwnsGLTexture| 4) (defenum |QRadioTuner.AM| 0) (defenum |QRadioTuner.ActiveState| 0) (defenum |QRadioTuner.Auto| 2) @@ -785,6 +866,46 @@ (defenum |QRegularExpression.UseUnicodePropertiesOption| 64) (defenum |QRubberBand.Line| 0) (defenum |QRubberBand.Rectangle| 1) +(defenum |QSGAbstractRenderer.ClearColorBuffer| 1) +(defenum |QSGAbstractRenderer.ClearDepthBuffer| 2) +(defenum |QSGAbstractRenderer.ClearStencilBuffer| 4) +(defenum |QSGEngine.TextureCanUseAtlas| 8) +(defenum |QSGEngine.TextureHasAlphaChannel| 1) +(defenum |QSGEngine.TextureOwnsGLTexture| 4) +(defenum |QSGGeometry.AlwaysUploadPattern| 0) +(defenum |QSGGeometry.DynamicPattern| 2) +(defenum |QSGGeometry.StaticPattern| 3) +(defenum |QSGGeometry.StreamPattern| 1) +(defenum |QSGMaterial.Blending| 1) +(defenum |QSGMaterial.CustomCompileStep| 16) +(defenum |QSGMaterial.RequiresDeterminant| 2) +(defenum |QSGMaterial.RequiresFullMatrixExceptTranslate| 6) +(defenum |QSGMaterial.RequiresFullMatrix| 14) +(defenum |QSGNode.BasicNodeType| 0) +(defenum |QSGNode.ClipNodeType| 3) +(defenum |QSGNode.DirtyGeometry| 4096) +(defenum |QSGNode.DirtyMaterial| 8192) +(defenum |QSGNode.DirtyMatrix| 256) +(defenum |QSGNode.DirtyNodeAdded| 1024) +(defenum |QSGNode.DirtyNodeRemoved| 2048) +(defenum |QSGNode.DirtyOpacity| 16384) +(defenum |QSGNode.GeometryNodeType| 1) +(defenum |QSGNode.InternalReserved| 16777216) +(defenum |QSGNode.OpacityNodeType| 4) +(defenum |QSGNode.OwnedByParent| 1) +(defenum |QSGNode.OwnsGeometry| 65536) +(defenum |QSGNode.OwnsMaterial| 131072) +(defenum |QSGNode.OwnsOpaqueMaterial| 262144) +(defenum |QSGNode.TransformNodeType| 2) +(defenum |QSGNode.UsePreprocess| 2) +(defenum |QSGSimpleTextureNode.MirrorHorizontally| 1) +(defenum |QSGSimpleTextureNode.MirrorVertically| 2) +(defenum |QSGSimpleTextureNode.NoTransform| 0) +(defenum |QSGTexture.ClampToEdge| 1) +(defenum |QSGTexture.Linear| 2) +(defenum |QSGTexture.Nearest| 1) +(defenum |QSGTexture.None| 0) +(defenum |QSGTexture.Repeat| 0) (defenum |QScrollEvent.ScrollFinished| 2) (defenum |QScrollEvent.ScrollStarted| 0) (defenum |QScrollEvent.ScrollUpdated| 1) @@ -1143,124 +1264,3 @@ (defenum |QStyle.PM_MenuButtonIndicator| 2) (defenum |QStyle.PM_MenuDesktopFrameWidth| 32) (defenum |QStyle.PM_MenuHMargin| 28) -(defenum |QStyle.PM_MenuPanelWidth| 30) -(defenum |QStyle.PM_MenuScrollerHeight| 27) -(defenum |QStyle.PM_MenuTearoffHeight| 31) -(defenum |QStyle.PM_MenuVMargin| 29) -(defenum |QStyle.PM_MessageBoxIconSize| 74) -(defenum |QStyle.PM_ProgressBarChunkWidth| 24) -(defenum |QStyle.PM_RadioButtonLabelSpacing| 77) -(defenum |QStyle.PM_ScrollBarExtent| 9) -(defenum |QStyle.PM_ScrollBarSliderMin| 10) -(defenum |QStyle.PM_ScrollView_ScrollBarOverlap| 89) -(defenum |QStyle.PM_ScrollView_ScrollBarSpacing| 88) -(defenum |QStyle.PM_SizeGripSize| 72) -(defenum |QStyle.PM_SliderControlThickness| 12) -(defenum |QStyle.PM_SliderLength| 13) -(defenum |QStyle.PM_SliderSpaceAvailable| 15) -(defenum |QStyle.PM_SliderThickness| 11) -(defenum |QStyle.PM_SliderTickmarkOffset| 14) -(defenum |QStyle.PM_SmallIconSize| 65) -(defenum |QStyle.PM_SpinBoxFrameWidth| 6) -(defenum |QStyle.PM_SpinBoxSliderHeight| 58) -(defenum |QStyle.PM_SplitterWidth| 25) -(defenum |QStyle.PM_SubMenuOverlap| 90) -(defenum |QStyle.PM_TabBarBaseHeight| 22) -(defenum |QStyle.PM_TabBarBaseOverlap| 23) -(defenum |QStyle.PM_TabBarIconSize| 71) -(defenum |QStyle.PM_TabBarScrollButtonWidth| 51) -(defenum |QStyle.PM_TabBarTabHSpace| 20) -(defenum |QStyle.PM_TabBarTabOverlap| 19) -(defenum |QStyle.PM_TabBarTabShiftHorizontal| 49) -(defenum |QStyle.PM_TabBarTabShiftVertical| 50) -(defenum |QStyle.PM_TabBarTabVSpace| 21) -(defenum |QStyle.PM_TabBar_ScrollButtonOverlap| 84) -(defenum |QStyle.PM_TabCloseIndicatorHeight| 87) -(defenum |QStyle.PM_TabCloseIndicatorWidth| 86) -(defenum |QStyle.PM_TextCursorWidth| 85) -(defenum |QStyle.PM_TitleBarHeight| 26) -(defenum |QStyle.PM_ToolBarExtensionExtent| 57) -(defenum |QStyle.PM_ToolBarFrameWidth| 52) -(defenum |QStyle.PM_ToolBarHandleExtent| 53) -(defenum |QStyle.PM_ToolBarIconSize| 62) -(defenum |QStyle.PM_ToolBarItemMargin| 55) -(defenum |QStyle.PM_ToolBarItemSpacing| 54) -(defenum |QStyle.PM_ToolBarSeparatorExtent| 56) -(defenum |QStyle.PM_ToolTipLabelFrameWidth| 69) -(defenum |QStyle.PM_TreeViewIndentation| 91) -(defenum |QStyle.RSIP_OnMouseClickAndAlreadyFocused| 0) -(defenum |QStyle.RSIP_OnMouseClick| 1) -(defenum |QStyle.SC_All| -1) -(defenum |QStyle.SC_ComboBoxArrow| 4) -(defenum |QStyle.SC_ComboBoxEditField| 2) -(defenum |QStyle.SC_ComboBoxFrame| 1) -(defenum |QStyle.SC_ComboBoxListBoxPopup| 8) -(defenum |QStyle.SC_CustomBase| -268435456) -(defenum |QStyle.SC_DialGroove| 1) -(defenum |QStyle.SC_DialHandle| 2) -(defenum |QStyle.SC_DialTickmarks| 4) -(defenum |QStyle.SC_GroupBoxCheckBox| 1) -(defenum |QStyle.SC_GroupBoxContents| 4) -(defenum |QStyle.SC_GroupBoxFrame| 8) -(defenum |QStyle.SC_GroupBoxLabel| 2) -(defenum |QStyle.SC_MdiCloseButton| 4) -(defenum |QStyle.SC_MdiMinButton| 1) -(defenum |QStyle.SC_MdiNormalButton| 2) -(defenum |QStyle.SC_None| 0) -(defenum |QStyle.SC_ScrollBarAddLine| 1) -(defenum |QStyle.SC_ScrollBarAddPage| 4) -(defenum |QStyle.SC_ScrollBarFirst| 16) -(defenum |QStyle.SC_ScrollBarGroove| 128) -(defenum |QStyle.SC_ScrollBarLast| 32) -(defenum |QStyle.SC_ScrollBarSlider| 64) -(defenum |QStyle.SC_ScrollBarSubLine| 2) -(defenum |QStyle.SC_ScrollBarSubPage| 8) -(defenum |QStyle.SC_SliderGroove| 1) -(defenum |QStyle.SC_SliderHandle| 2) -(defenum |QStyle.SC_SliderTickmarks| 4) -(defenum |QStyle.SC_SpinBoxDown| 2) -(defenum |QStyle.SC_SpinBoxEditField| 8) -(defenum |QStyle.SC_SpinBoxFrame| 4) -(defenum |QStyle.SC_SpinBoxUp| 1) -(defenum |QStyle.SC_TitleBarCloseButton| 8) -(defenum |QStyle.SC_TitleBarContextHelpButton| 128) -(defenum |QStyle.SC_TitleBarLabel| 256) -(defenum |QStyle.SC_TitleBarMaxButton| 4) -(defenum |QStyle.SC_TitleBarMinButton| 2) -(defenum |QStyle.SC_TitleBarNormalButton| 16) -(defenum |QStyle.SC_TitleBarShadeButton| 32) -(defenum |QStyle.SC_TitleBarSysMenu| 1) -(defenum |QStyle.SC_TitleBarUnshadeButton| 64) -(defenum |QStyle.SC_ToolButtonMenu| 2) -(defenum |QStyle.SC_ToolButton| 1) -(defenum |QStyle.SE_CheckBoxClickRect| 5) -(defenum |QStyle.SE_CheckBoxContents| 3) -(defenum |QStyle.SE_CheckBoxFocusRect| 4) -(defenum |QStyle.SE_CheckBoxIndicator| 2) -(defenum |QStyle.SE_CheckBoxLayoutItem| 32) -(defenum |QStyle.SE_ComboBoxFocusRect| 10) -(defenum |QStyle.SE_ComboBoxLayoutItem| 33) -(defenum |QStyle.SE_CustomBase| -268435456) -(defenum |QStyle.SE_DateTimeEditLayoutItem| 34) -(defenum |QStyle.SE_DialogButtonBoxLayoutItem| 35) -(defenum |QStyle.SE_DockWidgetCloseButton| 28) -(defenum |QStyle.SE_DockWidgetFloatButton| 29) -(defenum |QStyle.SE_DockWidgetIcon| 31) -(defenum |QStyle.SE_DockWidgetTitleBarText| 30) -(defenum |QStyle.SE_FrameContents| 27) -(defenum |QStyle.SE_FrameLayoutItem| 43) -(defenum |QStyle.SE_GroupBoxLayoutItem| 44) -(defenum |QStyle.SE_HeaderArrow| 17) -(defenum |QStyle.SE_HeaderLabel| 16) -(defenum |QStyle.SE_ItemViewItemCheckIndicator| 23) -(defenum |QStyle.SE_ItemViewItemDecoration| 46) -(defenum |QStyle.SE_ItemViewItemFocusRect| 48) -(defenum |QStyle.SE_ItemViewItemText| 47) -(defenum |QStyle.SE_LabelLayoutItem| 36) -(defenum |QStyle.SE_LineEditContents| 26) -(defenum |QStyle.SE_ProgressBarContents| 13) -(defenum |QStyle.SE_ProgressBarGroove| 12) -(defenum |QStyle.SE_ProgressBarLabel| 14) -(defenum |QStyle.SE_ProgressBarLayoutItem| 37) -(defenum |QStyle.SE_PushButtonContents| 0) -(defenum |QStyle.SE_PushButtonFocusRect| 1) diff --git a/src/lisp/enums4.lisp b/src/lisp/enums4.lisp index 55faa94..7371caa 100644 --- a/src/lisp/enums4.lisp +++ b/src/lisp/enums4.lisp @@ -14,6 +14,127 @@ (defconstant ,name ,value) (export ',name ,(find-package :eql)))) +(defenum |QStyle.PM_MenuPanelWidth| 30) +(defenum |QStyle.PM_MenuScrollerHeight| 27) +(defenum |QStyle.PM_MenuTearoffHeight| 31) +(defenum |QStyle.PM_MenuVMargin| 29) +(defenum |QStyle.PM_MessageBoxIconSize| 74) +(defenum |QStyle.PM_ProgressBarChunkWidth| 24) +(defenum |QStyle.PM_RadioButtonLabelSpacing| 77) +(defenum |QStyle.PM_ScrollBarExtent| 9) +(defenum |QStyle.PM_ScrollBarSliderMin| 10) +(defenum |QStyle.PM_ScrollView_ScrollBarOverlap| 89) +(defenum |QStyle.PM_ScrollView_ScrollBarSpacing| 88) +(defenum |QStyle.PM_SizeGripSize| 72) +(defenum |QStyle.PM_SliderControlThickness| 12) +(defenum |QStyle.PM_SliderLength| 13) +(defenum |QStyle.PM_SliderSpaceAvailable| 15) +(defenum |QStyle.PM_SliderThickness| 11) +(defenum |QStyle.PM_SliderTickmarkOffset| 14) +(defenum |QStyle.PM_SmallIconSize| 65) +(defenum |QStyle.PM_SpinBoxFrameWidth| 6) +(defenum |QStyle.PM_SpinBoxSliderHeight| 58) +(defenum |QStyle.PM_SplitterWidth| 25) +(defenum |QStyle.PM_SubMenuOverlap| 90) +(defenum |QStyle.PM_TabBarBaseHeight| 22) +(defenum |QStyle.PM_TabBarBaseOverlap| 23) +(defenum |QStyle.PM_TabBarIconSize| 71) +(defenum |QStyle.PM_TabBarScrollButtonWidth| 51) +(defenum |QStyle.PM_TabBarTabHSpace| 20) +(defenum |QStyle.PM_TabBarTabOverlap| 19) +(defenum |QStyle.PM_TabBarTabShiftHorizontal| 49) +(defenum |QStyle.PM_TabBarTabShiftVertical| 50) +(defenum |QStyle.PM_TabBarTabVSpace| 21) +(defenum |QStyle.PM_TabBar_ScrollButtonOverlap| 84) +(defenum |QStyle.PM_TabCloseIndicatorHeight| 87) +(defenum |QStyle.PM_TabCloseIndicatorWidth| 86) +(defenum |QStyle.PM_TextCursorWidth| 85) +(defenum |QStyle.PM_TitleBarHeight| 26) +(defenum |QStyle.PM_ToolBarExtensionExtent| 57) +(defenum |QStyle.PM_ToolBarFrameWidth| 52) +(defenum |QStyle.PM_ToolBarHandleExtent| 53) +(defenum |QStyle.PM_ToolBarIconSize| 62) +(defenum |QStyle.PM_ToolBarItemMargin| 55) +(defenum |QStyle.PM_ToolBarItemSpacing| 54) +(defenum |QStyle.PM_ToolBarSeparatorExtent| 56) +(defenum |QStyle.PM_ToolTipLabelFrameWidth| 69) +(defenum |QStyle.PM_TreeViewIndentation| 91) +(defenum |QStyle.RSIP_OnMouseClickAndAlreadyFocused| 0) +(defenum |QStyle.RSIP_OnMouseClick| 1) +(defenum |QStyle.SC_All| -1) +(defenum |QStyle.SC_ComboBoxArrow| 4) +(defenum |QStyle.SC_ComboBoxEditField| 2) +(defenum |QStyle.SC_ComboBoxFrame| 1) +(defenum |QStyle.SC_ComboBoxListBoxPopup| 8) +(defenum |QStyle.SC_CustomBase| -268435456) +(defenum |QStyle.SC_DialGroove| 1) +(defenum |QStyle.SC_DialHandle| 2) +(defenum |QStyle.SC_DialTickmarks| 4) +(defenum |QStyle.SC_GroupBoxCheckBox| 1) +(defenum |QStyle.SC_GroupBoxContents| 4) +(defenum |QStyle.SC_GroupBoxFrame| 8) +(defenum |QStyle.SC_GroupBoxLabel| 2) +(defenum |QStyle.SC_MdiCloseButton| 4) +(defenum |QStyle.SC_MdiMinButton| 1) +(defenum |QStyle.SC_MdiNormalButton| 2) +(defenum |QStyle.SC_None| 0) +(defenum |QStyle.SC_ScrollBarAddLine| 1) +(defenum |QStyle.SC_ScrollBarAddPage| 4) +(defenum |QStyle.SC_ScrollBarFirst| 16) +(defenum |QStyle.SC_ScrollBarGroove| 128) +(defenum |QStyle.SC_ScrollBarLast| 32) +(defenum |QStyle.SC_ScrollBarSlider| 64) +(defenum |QStyle.SC_ScrollBarSubLine| 2) +(defenum |QStyle.SC_ScrollBarSubPage| 8) +(defenum |QStyle.SC_SliderGroove| 1) +(defenum |QStyle.SC_SliderHandle| 2) +(defenum |QStyle.SC_SliderTickmarks| 4) +(defenum |QStyle.SC_SpinBoxDown| 2) +(defenum |QStyle.SC_SpinBoxEditField| 8) +(defenum |QStyle.SC_SpinBoxFrame| 4) +(defenum |QStyle.SC_SpinBoxUp| 1) +(defenum |QStyle.SC_TitleBarCloseButton| 8) +(defenum |QStyle.SC_TitleBarContextHelpButton| 128) +(defenum |QStyle.SC_TitleBarLabel| 256) +(defenum |QStyle.SC_TitleBarMaxButton| 4) +(defenum |QStyle.SC_TitleBarMinButton| 2) +(defenum |QStyle.SC_TitleBarNormalButton| 16) +(defenum |QStyle.SC_TitleBarShadeButton| 32) +(defenum |QStyle.SC_TitleBarSysMenu| 1) +(defenum |QStyle.SC_TitleBarUnshadeButton| 64) +(defenum |QStyle.SC_ToolButtonMenu| 2) +(defenum |QStyle.SC_ToolButton| 1) +(defenum |QStyle.SE_CheckBoxClickRect| 5) +(defenum |QStyle.SE_CheckBoxContents| 3) +(defenum |QStyle.SE_CheckBoxFocusRect| 4) +(defenum |QStyle.SE_CheckBoxIndicator| 2) +(defenum |QStyle.SE_CheckBoxLayoutItem| 32) +(defenum |QStyle.SE_ComboBoxFocusRect| 10) +(defenum |QStyle.SE_ComboBoxLayoutItem| 33) +(defenum |QStyle.SE_CustomBase| -268435456) +(defenum |QStyle.SE_DateTimeEditLayoutItem| 34) +(defenum |QStyle.SE_DialogButtonBoxLayoutItem| 35) +(defenum |QStyle.SE_DockWidgetCloseButton| 28) +(defenum |QStyle.SE_DockWidgetFloatButton| 29) +(defenum |QStyle.SE_DockWidgetIcon| 31) +(defenum |QStyle.SE_DockWidgetTitleBarText| 30) +(defenum |QStyle.SE_FrameContents| 27) +(defenum |QStyle.SE_FrameLayoutItem| 43) +(defenum |QStyle.SE_GroupBoxLayoutItem| 44) +(defenum |QStyle.SE_HeaderArrow| 17) +(defenum |QStyle.SE_HeaderLabel| 16) +(defenum |QStyle.SE_ItemViewItemCheckIndicator| 23) +(defenum |QStyle.SE_ItemViewItemDecoration| 46) +(defenum |QStyle.SE_ItemViewItemFocusRect| 48) +(defenum |QStyle.SE_ItemViewItemText| 47) +(defenum |QStyle.SE_LabelLayoutItem| 36) +(defenum |QStyle.SE_LineEditContents| 26) +(defenum |QStyle.SE_ProgressBarContents| 13) +(defenum |QStyle.SE_ProgressBarGroove| 12) +(defenum |QStyle.SE_ProgressBarLabel| 14) +(defenum |QStyle.SE_ProgressBarLayoutItem| 37) +(defenum |QStyle.SE_PushButtonContents| 0) +(defenum |QStyle.SE_PushButtonFocusRect| 1) (defenum |QStyle.SE_PushButtonLayoutItem| 38) (defenum |QStyle.SE_RadioButtonClickRect| 9) (defenum |QStyle.SE_RadioButtonContents| 7) @@ -1143,124 +1264,3 @@ (defenum |Qt.ExtraButton1| 8) (defenum |Qt.ExtraButton20| 4194304) (defenum |Qt.ExtraButton21| 8388608) -(defenum |Qt.ExtraButton22| 16777216) -(defenum |Qt.ExtraButton23| 33554432) -(defenum |Qt.ExtraButton24| 67108864) -(defenum |Qt.ExtraButton2| 16) -(defenum |Qt.ExtraButton3| 32) -(defenum |Qt.ExtraButton4| 64) -(defenum |Qt.ExtraButton5| 128) -(defenum |Qt.ExtraButton6| 256) -(defenum |Qt.ExtraButton7| 512) -(defenum |Qt.ExtraButton8| 1024) -(defenum |Qt.ExtraButton9| 2048) -(defenum |Qt.FDiagPattern| 13) -(defenum |Qt.FastTransformation| 0) -(defenum |Qt.FlatCap| 0) -(defenum |Qt.FontRole| 6) -(defenum |Qt.ForbiddenCursor| 14) -(defenum |Qt.ForegroundRole| 9) -(defenum |Qt.ForeignWindow| 33) -(defenum |Qt.ForwardButton| 16) -(defenum |Qt.FramelessWindowHint| 2048) -(defenum |Qt.Friday| 5) -(defenum |Qt.GestureCanceled| 4) -(defenum |Qt.GestureFinished| 3) -(defenum |Qt.GestureStarted| 1) -(defenum |Qt.GestureUpdated| 2) -(defenum |Qt.GroupSwitchModifier| 1073741824) -(defenum |Qt.HorPattern| 9) -(defenum |Qt.Horizontal| 1) -(defenum |Qt.IBeamCursor| 4) -(defenum |Qt.ISODate| 1) -(defenum |Qt.IgnoreAction| 0) -(defenum |Qt.IgnoreAspectRatio| 0) -(defenum |Qt.ImAbsolutePosition| 1024) -(defenum |Qt.ImAnchorPosition| 128) -(defenum |Qt.ImCurrentSelection| 32) -(defenum |Qt.ImCursorPosition| 8) -(defenum |Qt.ImCursorRectangle| 2) -(defenum |Qt.ImEnabled| 1) -(defenum |Qt.ImFont| 4) -(defenum |Qt.ImHints| 256) -(defenum |Qt.ImMaximumTextLength| 64) -(defenum |Qt.ImMicroFocus| 2) -(defenum |Qt.ImPlatformData| -2147483648) -(defenum |Qt.ImPreferredLanguage| 512) -(defenum |Qt.ImQueryAll| -1) -(defenum |Qt.ImQueryInput| 186) -(defenum |Qt.ImSurroundingText| 16) -(defenum |Qt.ImTextAfterCursor| 4096) -(defenum |Qt.ImTextBeforeCursor| 2048) -(defenum |Qt.ImhDate| 128) -(defenum |Qt.ImhDialableCharactersOnly| 1048576) -(defenum |Qt.ImhDigitsOnly| 65536) -(defenum |Qt.ImhEmailCharactersOnly| 2097152) -(defenum |Qt.ImhExclusiveInputMask| -65536) -(defenum |Qt.ImhFormattedNumbersOnly| 131072) -(defenum |Qt.ImhHiddenText| 1) -(defenum |Qt.ImhLatinOnly| 8388608) -(defenum |Qt.ImhLowercaseOnly| 524288) -(defenum |Qt.ImhMultiLine| 1024) -(defenum |Qt.ImhNoAutoUppercase| 4) -(defenum |Qt.ImhNoPredictiveText| 64) -(defenum |Qt.ImhNone| 0) -(defenum |Qt.ImhPreferLatin| 512) -(defenum |Qt.ImhPreferLowercase| 32) -(defenum |Qt.ImhPreferNumbers| 8) -(defenum |Qt.ImhPreferUppercase| 16) -(defenum |Qt.ImhSensitiveData| 2) -(defenum |Qt.ImhTime| 256) -(defenum |Qt.ImhUppercaseOnly| 262144) -(defenum |Qt.ImhUrlCharactersOnly| 4194304) -(defenum |Qt.InitialSortOrderRole| 14) -(defenum |Qt.IntersectClip| 2) -(defenum |Qt.IntersectsItemBoundingRect| 3) -(defenum |Qt.IntersectsItemShape| 1) -(defenum |Qt.InvertedLandscapeOrientation| 8) -(defenum |Qt.InvertedPortraitOrientation| 4) -(defenum |Qt.ItemIsDragEnabled| 4) -(defenum |Qt.ItemIsDropEnabled| 8) -(defenum |Qt.ItemIsEditable| 2) -(defenum |Qt.ItemIsEnabled| 32) -(defenum |Qt.ItemIsSelectable| 1) -(defenum |Qt.ItemIsTristate| 64) -(defenum |Qt.ItemIsUserCheckable| 16) -(defenum |Qt.ItemIsUserTristate| 256) -(defenum |Qt.ItemNeverHasChildren| 128) -(defenum |Qt.KeepAspectRatioByExpanding| 2) -(defenum |Qt.KeepAspectRatio| 1) -(defenum |Qt.Key_0| 48) -(defenum |Qt.Key_1| 49) -(defenum |Qt.Key_2| 50) -(defenum |Qt.Key_3| 51) -(defenum |Qt.Key_4| 52) -(defenum |Qt.Key_5| 53) -(defenum |Qt.Key_6| 54) -(defenum |Qt.Key_7| 55) -(defenum |Qt.Key_8| 56) -(defenum |Qt.Key_9| 57) -(defenum |Qt.Key_AE| 198) -(defenum |Qt.Key_Aacute| 193) -(defenum |Qt.Key_Acircumflex| 194) -(defenum |Qt.Key_AddFavorite| 16777408) -(defenum |Qt.Key_Adiaeresis| 196) -(defenum |Qt.Key_Agrave| 192) -(defenum |Qt.Key_AltGr| 16781571) -(defenum |Qt.Key_Alt| 16777251) -(defenum |Qt.Key_Ampersand| 38) -(defenum |Qt.Key_Any| 32) -(defenum |Qt.Key_Apostrophe| 39) -(defenum |Qt.Key_ApplicationLeft| 16777415) -(defenum |Qt.Key_ApplicationRight| 16777416) -(defenum |Qt.Key_Aring| 197) -(defenum |Qt.Key_AsciiCircum| 94) -(defenum |Qt.Key_AsciiTilde| 126) -(defenum |Qt.Key_Asterisk| 42) -(defenum |Qt.Key_Atilde| 195) -(defenum |Qt.Key_At| 64) -(defenum |Qt.Key_AudioCycleTrack| 16777478) -(defenum |Qt.Key_AudioForward| 16777474) -(defenum |Qt.Key_AudioRandomPlay| 16777476) -(defenum |Qt.Key_AudioRepeat| 16777475) -(defenum |Qt.Key_AudioRewind| 16777413) diff --git a/src/lisp/enums5.lisp b/src/lisp/enums5.lisp index 2cfd6bc..1a140cb 100644 --- a/src/lisp/enums5.lisp +++ b/src/lisp/enums5.lisp @@ -14,6 +14,127 @@ (defconstant ,name ,value) (export ',name ,(find-package :eql)))) +(defenum |Qt.ExtraButton22| 16777216) +(defenum |Qt.ExtraButton23| 33554432) +(defenum |Qt.ExtraButton24| 67108864) +(defenum |Qt.ExtraButton2| 16) +(defenum |Qt.ExtraButton3| 32) +(defenum |Qt.ExtraButton4| 64) +(defenum |Qt.ExtraButton5| 128) +(defenum |Qt.ExtraButton6| 256) +(defenum |Qt.ExtraButton7| 512) +(defenum |Qt.ExtraButton8| 1024) +(defenum |Qt.ExtraButton9| 2048) +(defenum |Qt.FDiagPattern| 13) +(defenum |Qt.FastTransformation| 0) +(defenum |Qt.FlatCap| 0) +(defenum |Qt.FontRole| 6) +(defenum |Qt.ForbiddenCursor| 14) +(defenum |Qt.ForegroundRole| 9) +(defenum |Qt.ForeignWindow| 33) +(defenum |Qt.ForwardButton| 16) +(defenum |Qt.FramelessWindowHint| 2048) +(defenum |Qt.Friday| 5) +(defenum |Qt.GestureCanceled| 4) +(defenum |Qt.GestureFinished| 3) +(defenum |Qt.GestureStarted| 1) +(defenum |Qt.GestureUpdated| 2) +(defenum |Qt.GroupSwitchModifier| 1073741824) +(defenum |Qt.HorPattern| 9) +(defenum |Qt.Horizontal| 1) +(defenum |Qt.IBeamCursor| 4) +(defenum |Qt.ISODate| 1) +(defenum |Qt.IgnoreAction| 0) +(defenum |Qt.IgnoreAspectRatio| 0) +(defenum |Qt.ImAbsolutePosition| 1024) +(defenum |Qt.ImAnchorPosition| 128) +(defenum |Qt.ImCurrentSelection| 32) +(defenum |Qt.ImCursorPosition| 8) +(defenum |Qt.ImCursorRectangle| 2) +(defenum |Qt.ImEnabled| 1) +(defenum |Qt.ImFont| 4) +(defenum |Qt.ImHints| 256) +(defenum |Qt.ImMaximumTextLength| 64) +(defenum |Qt.ImMicroFocus| 2) +(defenum |Qt.ImPlatformData| -2147483648) +(defenum |Qt.ImPreferredLanguage| 512) +(defenum |Qt.ImQueryAll| -1) +(defenum |Qt.ImQueryInput| 186) +(defenum |Qt.ImSurroundingText| 16) +(defenum |Qt.ImTextAfterCursor| 4096) +(defenum |Qt.ImTextBeforeCursor| 2048) +(defenum |Qt.ImhDate| 128) +(defenum |Qt.ImhDialableCharactersOnly| 1048576) +(defenum |Qt.ImhDigitsOnly| 65536) +(defenum |Qt.ImhEmailCharactersOnly| 2097152) +(defenum |Qt.ImhExclusiveInputMask| -65536) +(defenum |Qt.ImhFormattedNumbersOnly| 131072) +(defenum |Qt.ImhHiddenText| 1) +(defenum |Qt.ImhLatinOnly| 8388608) +(defenum |Qt.ImhLowercaseOnly| 524288) +(defenum |Qt.ImhMultiLine| 1024) +(defenum |Qt.ImhNoAutoUppercase| 4) +(defenum |Qt.ImhNoPredictiveText| 64) +(defenum |Qt.ImhNone| 0) +(defenum |Qt.ImhPreferLatin| 512) +(defenum |Qt.ImhPreferLowercase| 32) +(defenum |Qt.ImhPreferNumbers| 8) +(defenum |Qt.ImhPreferUppercase| 16) +(defenum |Qt.ImhSensitiveData| 2) +(defenum |Qt.ImhTime| 256) +(defenum |Qt.ImhUppercaseOnly| 262144) +(defenum |Qt.ImhUrlCharactersOnly| 4194304) +(defenum |Qt.InitialSortOrderRole| 14) +(defenum |Qt.IntersectClip| 2) +(defenum |Qt.IntersectsItemBoundingRect| 3) +(defenum |Qt.IntersectsItemShape| 1) +(defenum |Qt.InvertedLandscapeOrientation| 8) +(defenum |Qt.InvertedPortraitOrientation| 4) +(defenum |Qt.ItemIsDragEnabled| 4) +(defenum |Qt.ItemIsDropEnabled| 8) +(defenum |Qt.ItemIsEditable| 2) +(defenum |Qt.ItemIsEnabled| 32) +(defenum |Qt.ItemIsSelectable| 1) +(defenum |Qt.ItemIsTristate| 64) +(defenum |Qt.ItemIsUserCheckable| 16) +(defenum |Qt.ItemIsUserTristate| 256) +(defenum |Qt.ItemNeverHasChildren| 128) +(defenum |Qt.KeepAspectRatioByExpanding| 2) +(defenum |Qt.KeepAspectRatio| 1) +(defenum |Qt.Key_0| 48) +(defenum |Qt.Key_1| 49) +(defenum |Qt.Key_2| 50) +(defenum |Qt.Key_3| 51) +(defenum |Qt.Key_4| 52) +(defenum |Qt.Key_5| 53) +(defenum |Qt.Key_6| 54) +(defenum |Qt.Key_7| 55) +(defenum |Qt.Key_8| 56) +(defenum |Qt.Key_9| 57) +(defenum |Qt.Key_AE| 198) +(defenum |Qt.Key_Aacute| 193) +(defenum |Qt.Key_Acircumflex| 194) +(defenum |Qt.Key_AddFavorite| 16777408) +(defenum |Qt.Key_Adiaeresis| 196) +(defenum |Qt.Key_Agrave| 192) +(defenum |Qt.Key_AltGr| 16781571) +(defenum |Qt.Key_Alt| 16777251) +(defenum |Qt.Key_Ampersand| 38) +(defenum |Qt.Key_Any| 32) +(defenum |Qt.Key_Apostrophe| 39) +(defenum |Qt.Key_ApplicationLeft| 16777415) +(defenum |Qt.Key_ApplicationRight| 16777416) +(defenum |Qt.Key_Aring| 197) +(defenum |Qt.Key_AsciiCircum| 94) +(defenum |Qt.Key_AsciiTilde| 126) +(defenum |Qt.Key_Asterisk| 42) +(defenum |Qt.Key_Atilde| 195) +(defenum |Qt.Key_At| 64) +(defenum |Qt.Key_AudioCycleTrack| 16777478) +(defenum |Qt.Key_AudioForward| 16777474) +(defenum |Qt.Key_AudioRandomPlay| 16777476) +(defenum |Qt.Key_AudioRepeat| 16777475) +(defenum |Qt.Key_AudioRewind| 16777413) (defenum |Qt.Key_Away| 16777464) (defenum |Qt.Key_A| 65) (defenum |Qt.Key_BackForward| 16777414) diff --git a/src/lisp/get-dynamic-enums.lisp b/src/lisp/get-dynamic-enums.lisp index 8ee62a8..5c1833e 100644 --- a/src/lisp/get-dynamic-enums.lisp +++ b/src/lisp/get-dynamic-enums.lisp @@ -2,7 +2,7 @@ (setf eql:*break-on-errors* nil) -(dolist (module '(:help :multimedia :network :sql :svg :webkit)) +(dolist (module '(:help :multimedia :network :quick :sql :svg :webkit)) (qrequire module)) (defun run () diff --git a/src/lisp/merged-enums.lisp b/src/lisp/merged-enums.lisp index 465240e..48c9d2e 100644 --- a/src/lisp/merged-enums.lisp +++ b/src/lisp/merged-enums.lisp @@ -1256,6 +1256,8 @@ (defenum |QItemSelectionModel.Select| 2) (defenum |QItemSelectionModel.ToggleCurrent| 24) (defenum |QItemSelectionModel.Toggle| 8) +(defenum |QJSValue.NullValue| 0) +(defenum |QJSValue.UndefinedValue| 1) (defenum |QKeySequence.AddTab| 19) (defenum |QKeySequence.Backspace| 69) (defenum |QKeySequence.Back| 13) @@ -3223,6 +3225,85 @@ (defenum |QProcess.WriteError| 4) (defenum |QProgressBar.BottomToTop| 1) (defenum |QProgressBar.TopToBottom| 0) +(defenum |QQmlAbstractUrlInterceptor.JavaScriptFile| 1) +(defenum |QQmlAbstractUrlInterceptor.QmlFile| 0) +(defenum |QQmlAbstractUrlInterceptor.QmldirFile| 2) +(defenum |QQmlAbstractUrlInterceptor.UrlString| 4096) +(defenum |QQmlComponent.Asynchronous| 1) +(defenum |QQmlComponent.Error| 3) +(defenum |QQmlComponent.Loading| 2) +(defenum |QQmlComponent.Null| 0) +(defenum |QQmlComponent.PreferSynchronous| 0) +(defenum |QQmlComponent.Ready| 1) +(defenum |QQmlEngine.CppOwnership| 0) +(defenum |QQmlEngine.JavaScriptOwnership| 1) +(defenum |QQmlImageProviderBase.ForceAsynchronousImageLoading| 1) +(defenum |QQmlImageProviderBase.ImageResponse| 4) +(defenum |QQmlImageProviderBase.Image| 0) +(defenum |QQmlImageProviderBase.Pixmap| 1) +(defenum |QQmlImageProviderBase.Texture| 2) +(defenum |QQmlIncubator.AsynchronousIfNested| 1) +(defenum |QQmlIncubator.Asynchronous| 0) +(defenum |QQmlIncubator.Error| 3) +(defenum |QQmlIncubator.Loading| 2) +(defenum |QQmlIncubator.Null| 0) +(defenum |QQmlIncubator.Ready| 1) +(defenum |QQmlIncubator.Synchronous| 2) +(defenum |QQmlProperty.InvalidCategory| 0) +(defenum |QQmlProperty.Invalid| 0) +(defenum |QQmlProperty.List| 1) +(defenum |QQmlProperty.Normal| 3) +(defenum |QQmlProperty.Object| 2) +(defenum |QQmlProperty.Property| 1) +(defenum |QQmlProperty.SignalProperty| 2) +(defenum |QQuickItem.BottomLeft| 6) +(defenum |QQuickItem.BottomRight| 8) +(defenum |QQuickItem.Bottom| 7) +(defenum |QQuickItem.Center| 4) +(defenum |QQuickItem.ItemAcceptsDrops| 16) +(defenum |QQuickItem.ItemAcceptsInputMethod| 2) +(defenum |QQuickItem.ItemActiveFocusHasChanged| 6) +(defenum |QQuickItem.ItemChildAddedChange| 0) +(defenum |QQuickItem.ItemChildRemovedChange| 1) +(defenum |QQuickItem.ItemClipsChildrenToShape| 1) +(defenum |QQuickItem.ItemHasContents| 8) +(defenum |QQuickItem.ItemIsFocusScope| 4) +(defenum |QQuickItem.ItemOpacityHasChanged| 5) +(defenum |QQuickItem.ItemParentHasChanged| 4) +(defenum |QQuickItem.ItemRotationHasChanged| 7) +(defenum |QQuickItem.ItemSceneChange| 2) +(defenum |QQuickItem.ItemVisibleHasChanged| 3) +(defenum |QQuickItem.Left| 3) +(defenum |QQuickItem.Right| 5) +(defenum |QQuickItem.TopLeft| 0) +(defenum |QQuickItem.TopRight| 2) +(defenum |QQuickItem.Top| 1) +(defenum |QQuickPaintedItem.FastFBOResizing| 1) +(defenum |QQuickPaintedItem.FramebufferObject| 1) +(defenum |QQuickPaintedItem.Image| 0) +(defenum |QQuickPaintedItem.InvertedYFramebufferObject| 2) +(defenum |QQuickView.Error| 3) +(defenum |QQuickView.Loading| 2) +(defenum |QQuickView.Null| 0) +(defenum |QQuickView.Ready| 1) +(defenum |QQuickView.SizeRootObjectToView| 1) +(defenum |QQuickView.SizeViewToRootObject| 0) +(defenum |QQuickWidget.Error| 3) +(defenum |QQuickWidget.Loading| 2) +(defenum |QQuickWidget.Null| 0) +(defenum |QQuickWidget.Ready| 1) +(defenum |QQuickWidget.SizeRootObjectToView| 1) +(defenum |QQuickWidget.SizeViewToRootObject| 0) +(defenum |QQuickWindow.AfterRenderingStage| 3) +(defenum |QQuickWindow.AfterSwapStage| 4) +(defenum |QQuickWindow.AfterSynchronizingStage| 1) +(defenum |QQuickWindow.BeforeRenderingStage| 2) +(defenum |QQuickWindow.BeforeSynchronizingStage| 0) +(defenum |QQuickWindow.ContextNotAvailable| 1) +(defenum |QQuickWindow.TextureCanUseAtlas| 8) +(defenum |QQuickWindow.TextureHasAlphaChannel| 1) +(defenum |QQuickWindow.TextureHasMipmaps| 2) +(defenum |QQuickWindow.TextureOwnsGLTexture| 4) (defenum |QRadioTuner.AM| 0) (defenum |QRadioTuner.ActiveState| 0) (defenum |QRadioTuner.Auto| 2) @@ -3269,6 +3350,46 @@ (defenum |QRegularExpression.UseUnicodePropertiesOption| 64) (defenum |QRubberBand.Line| 0) (defenum |QRubberBand.Rectangle| 1) +(defenum |QSGAbstractRenderer.ClearColorBuffer| 1) +(defenum |QSGAbstractRenderer.ClearDepthBuffer| 2) +(defenum |QSGAbstractRenderer.ClearStencilBuffer| 4) +(defenum |QSGEngine.TextureCanUseAtlas| 8) +(defenum |QSGEngine.TextureHasAlphaChannel| 1) +(defenum |QSGEngine.TextureOwnsGLTexture| 4) +(defenum |QSGGeometry.AlwaysUploadPattern| 0) +(defenum |QSGGeometry.DynamicPattern| 2) +(defenum |QSGGeometry.StaticPattern| 3) +(defenum |QSGGeometry.StreamPattern| 1) +(defenum |QSGMaterial.Blending| 1) +(defenum |QSGMaterial.CustomCompileStep| 16) +(defenum |QSGMaterial.RequiresDeterminant| 2) +(defenum |QSGMaterial.RequiresFullMatrixExceptTranslate| 6) +(defenum |QSGMaterial.RequiresFullMatrix| 14) +(defenum |QSGNode.BasicNodeType| 0) +(defenum |QSGNode.ClipNodeType| 3) +(defenum |QSGNode.DirtyGeometry| 4096) +(defenum |QSGNode.DirtyMaterial| 8192) +(defenum |QSGNode.DirtyMatrix| 256) +(defenum |QSGNode.DirtyNodeAdded| 1024) +(defenum |QSGNode.DirtyNodeRemoved| 2048) +(defenum |QSGNode.DirtyOpacity| 16384) +(defenum |QSGNode.GeometryNodeType| 1) +(defenum |QSGNode.InternalReserved| 16777216) +(defenum |QSGNode.OpacityNodeType| 4) +(defenum |QSGNode.OwnedByParent| 1) +(defenum |QSGNode.OwnsGeometry| 65536) +(defenum |QSGNode.OwnsMaterial| 131072) +(defenum |QSGNode.OwnsOpaqueMaterial| 262144) +(defenum |QSGNode.TransformNodeType| 2) +(defenum |QSGNode.UsePreprocess| 2) +(defenum |QSGSimpleTextureNode.MirrorHorizontally| 1) +(defenum |QSGSimpleTextureNode.MirrorVertically| 2) +(defenum |QSGSimpleTextureNode.NoTransform| 0) +(defenum |QSGTexture.ClampToEdge| 1) +(defenum |QSGTexture.Linear| 2) +(defenum |QSGTexture.Nearest| 1) +(defenum |QSGTexture.None| 0) +(defenum |QSGTexture.Repeat| 0) (defenum |QScrollEvent.ScrollFinished| 2) (defenum |QScrollEvent.ScrollStarted| 0) (defenum |QScrollEvent.ScrollUpdated| 1) diff --git a/src/module_quick.pro b/src/module_quick.pro new file mode 100644 index 0000000..f53a1d2 --- /dev/null +++ b/src/module_quick.pro @@ -0,0 +1,19 @@ +QT += quick quickwidgets qml printsupport uitools +TEMPLATE = lib +CONFIG += dll no_keywords release +LIBS += -L.. -lecl -leql5 +TARGET = eql5_quick +DESTDIR = ../ +OBJECTS_DIR = ./tmp/quick/ +MOC_DIR = ./tmp/quick/ + +include(windows.pri) + +HEADERS += gen/quick/_ini.h \ + gen/quick/_ini2.h \ + gen/quick/_q_classes.h \ + gen/quick/_n_classes.h \ + gen/quick/_q_methods.h \ + gen/quick/_n_methods.h + +SOURCES += gen/quick/_ini.cpp diff --git a/src/rebuild b/src/rebuild index 1b41b5a..1bf30c1 100755 --- a/src/rebuild +++ b/src/rebuild @@ -22,6 +22,8 @@ qmake module_multimedia.pro && make && qmake module_network.pro && make && +qmake module_quick.pro && +make && qmake module_sql.pro && make && qmake module_svg.pro &&