diff --git a/examples/9-simple-lisp-editor/data/eql-keywords.lisp b/examples/9-simple-lisp-editor/data/eql-keywords.lisp index 6d15b1c..8c33517 100644 --- a/examples/9-simple-lisp-editor/data/eql-keywords.lisp +++ b/examples/9-simple-lisp-editor/data/eql-keywords.lisp @@ -93,5 +93,6 @@ "qui-class" "qui-names" "qutf8" + "qvariant-value" "qversion" "tr") diff --git a/examples/M-modules/quick/Tic-Tac-Toe/COPYING.txt b/examples/M-modules/quick/Tic-Tac-Toe/COPYING.txt new file mode 100644 index 0000000..4dae944 --- /dev/null +++ b/examples/M-modules/quick/Tic-Tac-Toe/COPYING.txt @@ -0,0 +1,39 @@ +/**************************************************************************** +** +** Copyright (C) 2015 The Qt Company Ltd. +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the examples of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of The Qt Company Ltd nor the names of its +** contributors may be used to endorse or promote products derived +** from this software without specific prior written permission. +** +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** +** $QT_END_LICENSE$ +** +****************************************************************************/ diff --git a/examples/M-modules/quick/Tic-Tac-Toe/README.txt b/examples/M-modules/quick/Tic-Tac-Toe/README.txt new file mode 100644 index 0000000..ba9f7c3 --- /dev/null +++ b/examples/M-modules/quick/Tic-Tac-Toe/README.txt @@ -0,0 +1,14 @@ +This is a port of a QtQuick1/Qt4 example. + +The JS game logic has (obviously) been ported to Lisp, see "game-logic.lisp". + + +RUN +=== + +Please run it from this directory. + +For Emacs/Slime, this would be: + + eql5 ~/slime/eql-start-swank.lisp tic-tac-toe + diff --git a/examples/M-modules/quick/Tic-Tac-Toe/eql5.js b/examples/M-modules/quick/Tic-Tac-Toe/eql5.js new file mode 100644 index 0000000..8b0bfa7 --- /dev/null +++ b/examples/M-modules/quick/Tic-Tac-Toe/eql5.js @@ -0,0 +1,18 @@ +// helper functions for convenient QML/EQL5 integration + +function fun(name, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) { + var args = []; + if(undefined != arg1) args.push(arg1); + if(undefined != arg2) args.push(arg2); + if(undefined != arg3) args.push(arg3); + if(undefined != arg4) args.push(arg4); + if(undefined != arg5) args.push(arg5); + if(undefined != arg6) args.push(arg6); + if(undefined != arg7) args.push(arg7); + if(undefined != arg8) args.push(arg8); + if(undefined != arg9) args.push(arg9); + return EQL5.apply(name, args); } + +function apply(name, args) { + return EQL5.apply(name, args); } + diff --git a/examples/M-modules/quick/Tic-Tac-Toe/game-logic.lisp b/examples/M-modules/quick/Tic-Tac-Toe/game-logic.lisp new file mode 100644 index 0000000..7dd776c --- /dev/null +++ b/examples/M-modules/quick/Tic-Tac-Toe/game-logic.lisp @@ -0,0 +1,126 @@ +;;; for (c) please see COPYING.txt +;;; +;;; This is a port of "tic-tac-toe.js" from a Qt example. + +(use-package :qml) + +(defvar *board* "board") + +;;; utils + +(defun cell-state (i) + (if (stringp *board*) + (js *board* "children[~D].state" i) + (svref *board* i))) + +(defun set-cell-state (i state) + (if (stringp *board*) + (js *board* "children[~D].state = ~S" i state) + (setf (svref *board* i) state))) + +(defun empty-cell (i) + (x:empty-string (cell-state i))) + +;;; game + +(defun winner () + (dotimes (i 3) + (when (or (and (not (empty-cell i)) + (equal (cell-state i) (cell-state (+ i 3))) + (equal (cell-state i) (cell-state (+ i 6)))) + (and (not (empty-cell (* i 3))) + (equal (cell-state (* i 3)) (cell-state (+ (* i 3) 1))) + (equal (cell-state (* i 3)) (cell-state (+ (* i 3) 2))))) + (return-from winner t))) + (when (or (and (not (empty-cell 0)) + (equal (cell-state 0) (cell-state 4)) + (equal (cell-state 0) (cell-state 8))) + (and (not (empty-cell 2)) + (equal (cell-state 2) (cell-state 4)) + (equal (cell-state 2) (cell-state 6)))) + (return-from winner t))) + +(defun restart-game () + (qml-set "game" "running" t) + (dotimes (i 9) + (set-cell-state i ""))) + +(defun make-move (pos player) + (let ((*board* "board")) + (set-cell-state pos player) + (when (winner) + (game-finished (x:cc player " wins")) + t))) + +(defun can-play-at-pos (pos) + (let ((*board* "board")) + (empty-cell pos))) + +(defun computer-turn () + (let ((r (random 10))) + (if (< r (qml-get "game" "difficulty")) + (smart-ai) + (random-ai)))) + +(defun smart-ai () + (flet ((board-copy () + (let ((copy (make-array 9))) + (dotimes (i 9) + (setf (svref copy i) (cell-state i))) + copy)) + (thwart (a b c) + ;; if they are at A, try B or C + (when (equal (cell-state a) "X") + (cond ((can-play-at-pos b) + (make-move b "O") + t) + ((can-play-at-pos c) + (make-move c "O") + t))))) + ;; try "O" win move + (dotimes (i 9) + (let ((*board* (board-copy))) + (when (can-play-at-pos i) + (set-cell-state i "O") + (when (winner) + (make-move i "O") + (return-from smart-ai))))) + ;; prevent "X" from winning + (dotimes (i 9) + (let ((*board* (board-copy))) + (when (can-play-at-pos i) + (set-cell-state i "X") + (when (winner) + (make-move i "O") + (return-from smart-ai))))) + (when (or (thwart 4 0 2) + (thwart 0 4 3) + (thwart 2 4 1) + (thwart 6 4 7) + (thwart 8 4 5) + (thwart 1 4 2) + (thwart 3 4 0) + (thwart 5 4 8) + (thwart 7 4 6)) + (return-from smart-ai)) + (dotimes (i 9) + (when (can-play-at-pos i) + (make-move i "O") + (return-from smart-ai))) + (restart-game))) + +(defun random-ai () + (let (unfilled-posns) + (dotimes (i 9) + (when (can-play-at-pos i) + (push i unfilled-posns))) + (if (null unfilled-posns) + (restart-game) + (let ((choice (nth (random (length unfilled-posns)) + unfilled-posns))) + (make-move choice "O"))))) + +(defun game-finished (message) + (qml-set "messageDisplay" "text" message) + (qml-set "messageDisplay" "visible" t) + (qml-set "game" "running" nil)) diff --git a/examples/M-modules/quick/Tic-Tac-Toe/lib/qml_lisp.cpp b/examples/M-modules/quick/Tic-Tac-Toe/lib/qml_lisp.cpp new file mode 100644 index 0000000..5e82520 --- /dev/null +++ b/examples/M-modules/quick/Tic-Tac-Toe/lib/qml_lisp.cpp @@ -0,0 +1,25 @@ +#include "qml_lisp.h" +#include + +QT_BEGIN_NAMESPACE + +static Lisp* lisp = 0; + +static QObject* lisp_provider(QQmlEngine*, QJSEngine*) { return lisp; } + +QObject* ini() { + if(!lisp) { + lisp = new Lisp; + qmlRegisterSingletonType("EQL5", 1, 0, "EQL5", lisp_provider); } + return lisp; } + +QVariant Lisp::apply(const QString& function, const QVariantList& arguments) { + QVariant ret = + eql_fun("qml:qml-apply", QVariant::String, + Q_ARG(QString, function), + Q_ARG(QVariantList, arguments)); + if(ret.toString() == "NIL") { + ret = QVariant(); } + return ret; } + +QT_END_NAMESPACE diff --git a/examples/M-modules/quick/Tic-Tac-Toe/lib/qml_lisp.h b/examples/M-modules/quick/Tic-Tac-Toe/lib/qml_lisp.h new file mode 100644 index 0000000..4e05e69 --- /dev/null +++ b/examples/M-modules/quick/Tic-Tac-Toe/lib/qml_lisp.h @@ -0,0 +1,25 @@ +#ifndef LIB_H +#define LIB_H + +#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 Lisp : public QObject { + Q_OBJECT + +public: + Q_INVOKABLE QVariant apply(const QString&, const QVariantList& = QVariantList()); +}; + +QT_END_NAMESPACE + +#endif diff --git a/examples/M-modules/quick/Tic-Tac-Toe/lib/qml_lisp.pro b/examples/M-modules/quick/Tic-Tac-Toe/lib/qml_lisp.pro new file mode 100644 index 0000000..2637686 --- /dev/null +++ b/examples/M-modules/quick/Tic-Tac-Toe/lib/qml_lisp.pro @@ -0,0 +1,15 @@ +QT += qml +TEMPLATE = lib +CONFIG += plugin release +INCLUDEPATH += ../../../../../src +LIBS += -L../../../../.. -leql5 +DESTDIR = ./ +TARGET = qml_lisp +OBJECTS_DIR = ./tmp/ +MOC_DIR = ./tmp/ + +include(../../../../../src/windows.pri) + +HEADERS += qml_lisp.h +SOURCES += qml_lisp.cpp + diff --git a/examples/M-modules/quick/Tic-Tac-Toe/pics/board.png b/examples/M-modules/quick/Tic-Tac-Toe/pics/board.png new file mode 100644 index 0000000..7e5b7ba Binary files /dev/null and b/examples/M-modules/quick/Tic-Tac-Toe/pics/board.png differ diff --git a/examples/M-modules/quick/Tic-Tac-Toe/pics/o.png b/examples/M-modules/quick/Tic-Tac-Toe/pics/o.png new file mode 100644 index 0000000..abc7ee0 Binary files /dev/null and b/examples/M-modules/quick/Tic-Tac-Toe/pics/o.png differ diff --git a/examples/M-modules/quick/Tic-Tac-Toe/pics/x.png b/examples/M-modules/quick/Tic-Tac-Toe/pics/x.png new file mode 100644 index 0000000..ddc65c8 Binary files /dev/null and b/examples/M-modules/quick/Tic-Tac-Toe/pics/x.png differ diff --git a/examples/M-modules/quick/Tic-Tac-Toe/qml-lisp.lisp b/examples/M-modules/quick/Tic-Tac-Toe/qml-lisp.lisp new file mode 100644 index 0000000..422c8a6 --- /dev/null +++ b/examples/M-modules/quick/Tic-Tac-Toe/qml-lisp.lisp @@ -0,0 +1,93 @@ +;;; +;;; * enables QML to call Lisp functions +;;; * allows to get/set any QML property from Lisp (needs 'objectName' to be set) +;;; * allows to evaluate JS code from Lisp (needs 'objectName' to be set) +;;; +;;; (requires a C++ plugin, see "lib/") + +(defpackage :qml-lisp + (:use :common-lisp :eql) + (:nicknames :qml) + (:export + #:*quick-view* + #:js + #:root-object + #:qml-get + #:qml-set + #:qml-get* + #:qml-set*)) + +(provide :qml-lisp) + +(in-package :qml-lisp) + +(defvar *qml-lisp* (qload-c++ "lib/qml_lisp")) +(defvar *quick-view* nil) + +(defun string-to-symbol (name) + (let* ((upper (string-upcase name)) + (p (position #\: name))) + (if p + (intern (subseq upper (1+ (position #\: name :from-end t))) + (subseq upper 0 p)) + (intern upper)))) + +(defun qml-error (format-string &rest arguments) + (format *debug-io* "~&[QML] ~A~%" (apply 'format nil format-string arguments))) + +;;; function calls from QML + +(defun qml-apply (function arguments) + "Every 'Lisp.fun()' or 'Lisp.apply()' function call in QML will call this function." + (let ((value (apply (string-to-symbol function) + arguments))) + (if (stringp value) + value + (princ-to-string value)))) + +(let (root-object) + (defun root-object () + (unless root-object + (setf root-object (|rootObject| *quick-view*))) + root-object)) + +(defun find-qml-object (name &optional all) + (or (if (string= (|objectName| (root-object)) name) + (root-object) + (if all + (qfind-children (root-object) name) + (qfind-child (root-object) name))) + (qml-error "No object found with name: ~S." name))) + +;;; get/set QML object properties + +(defun qml-get (object-name property-name) + "Gets QML property for first object matching 'objectName'." + (qget (find-qml-object object-name) property-name)) + +(defun qml-set (object-name property-name value) + "Sets QML property for first object matching 'objectName'." + (qset (find-qml-object object-name) property-name value)) + +(defun qml-get* (object-name property-name) + "Collects QML properties for all objects matching 'objectName'." + (mapcar (lambda (object) + (qget object property-name)) + (find-qml-object object-name t))) + +(defun qml-set* (object-name property-name value) + "Sets QML property for all objects matching 'objectName'." + (dolist (object (find-qml-object object-name t)) + (qset object property-name value))) + +;;; JS + +(defun js (object-name js-format-string &rest arguments) + "Evaluates a JS string with the element bound to OBJECT-NAME as 'this'." + (qlet ((qml-exp "QQmlExpression(QQmlContext*,QObject*,QString)" + (|rootContext| (|engine| *quick-view*)) + (find-qml-object object-name) + (apply 'format nil js-format-string arguments)) + (variant (|evaluate| qml-exp))) + (qvariant-value variant))) + diff --git a/examples/M-modules/quick/Tic-Tac-Toe/qml/ext/Button.qml b/examples/M-modules/quick/Tic-Tac-Toe/qml/ext/Button.qml new file mode 100644 index 0000000..50c3f1a --- /dev/null +++ b/examples/M-modules/quick/Tic-Tac-Toe/qml/ext/Button.qml @@ -0,0 +1,43 @@ +// for (c) please see COPYING.txt + +import QtQuick 2.0 + +Rectangle { + id: container + objectName: "container" + + property string text + property bool pressed: false + + signal clicked + + width: buttonLabel.width + 20; height: buttonLabel.height + 6 + border { width: 1; color: Qt.darker(container.color) } + radius: 8 + color: "lightgray" + smooth: true + + gradient: Gradient { + GradientStop { + position: 0.0 + color: container.pressed ? "darkgray" : "white" + } + GradientStop { + position: 1.0 + color: container.color + } + } + + MouseArea { + anchors.fill: parent + onClicked: container.clicked() + } + + Text { + id: buttonLabel + objectName: "buttonLabel" + anchors.centerIn: container + text: container.text + font.pixelSize: 14 + } +} diff --git a/examples/M-modules/quick/Tic-Tac-Toe/qml/ext/TicTac.qml b/examples/M-modules/quick/Tic-Tac-Toe/qml/ext/TicTac.qml new file mode 100644 index 0000000..bfb2c26 --- /dev/null +++ b/examples/M-modules/quick/Tic-Tac-Toe/qml/ext/TicTac.qml @@ -0,0 +1,23 @@ +// for (c) please see COPYING.txt + +import QtQuick 2.0 + +Item { + signal clicked + + states: [ + State { name: "X"; PropertyChanges { target: image; source: "../../pics/x.png" } }, + State { name: "O"; PropertyChanges { target: image; source: "../../pics/o.png" } } + ] + + Image { + id: image + objectName: "image" + anchors.centerIn: parent + } + + MouseArea { + anchors.fill: parent + onClicked: parent.clicked() + } +} diff --git a/examples/M-modules/quick/Tic-Tac-Toe/qml/tic-tac-toe.qml b/examples/M-modules/quick/Tic-Tac-Toe/qml/tic-tac-toe.qml new file mode 100644 index 0000000..28fc96f --- /dev/null +++ b/examples/M-modules/quick/Tic-Tac-Toe/qml/tic-tac-toe.qml @@ -0,0 +1,90 @@ +// for (c) please see COPYING.txt + +import QtQuick 2.0 +import "ext" + +import EQL5 1.0 +import "../eql5.js" as Lisp + +Rectangle { + id: game + objectName: "game" + + property bool running: true + property int difficulty: 10 // chance it will actually think + + width: display.width; height: display.height + 10 + + Image { + id: boardImage + objectName: "boardImage" + source: "../pics/board.png" + } + + Column { + id: display + objectName: "display" + + Grid { + id: board + objectName: "board" + width: boardImage.width; height: boardImage.height + columns: 3 + + Repeater { + model: 9 + + TicTac { + width: board.width / 3 + height: board.height / 3 + + onClicked: { + if (game.running && Lisp.fun("can-play-at-pos", index)) { + if (!Lisp.fun("make-move", index, "X")) + Lisp.fun("computer-turn"); + } + } + } + } + } + + Row { + spacing: 4 + anchors.horizontalCenter: parent.horizontalCenter + + Button { + text: "Hard" + pressed: game.difficulty == 10 + onClicked: { game.difficulty = 10 } + } + Button { + text: "Moderate" + pressed: game.difficulty == 8 + onClicked: { game.difficulty = 8 } + } + Button { + text: "Easy" + pressed: game.difficulty == 2 + onClicked: { game.difficulty = 2 } + } + } + } + + Text { + id: messageDisplay + objectName: "messageDisplay" + anchors.centerIn: parent + color: "blue" + style: Text.Outline; styleColor: "white" + font.pixelSize: 50; font.bold: true + visible: false + + Timer { + running: messageDisplay.visible + onTriggered: { + messageDisplay.visible = false; + Lisp.fun("restart-game"); + } + } + } +} diff --git a/examples/M-modules/quick/Tic-Tac-Toe/tic-tac-toe.lisp b/examples/M-modules/quick/Tic-Tac-Toe/tic-tac-toe.lisp new file mode 100644 index 0000000..28f7296 --- /dev/null +++ b/examples/M-modules/quick/Tic-Tac-Toe/tic-tac-toe.lisp @@ -0,0 +1,25 @@ +;;; +;;; for (c) please see COPYING.txt +;;; +;;; This is a port of a QtQuick1/Qt4 example. +;;; The JS game logic has been ported to Lisp. +;;; +;;; (requires a C++ plugin, see "lib/") +;;; + +#-qt-wrapper-functions ; see README-OPTIONAL.txt +(load (in-home "src/lisp/all-wrappers")) + +(qrequire :quick) + +(require :qml-lisp "qml-lisp") +(require :game-logic "game-logic") + +(defun run () + (setf qml:*quick-view* (qnew "QQuickView(QUrl)" + (|fromLocalFile.QUrl| "qml/tic-tac-toe.qml"))) + (|setResizeMode| qml:*quick-view* |QQuickView.SizeRootObjectToView|) + (|resize| qml:*quick-view* '(420 480)) + (|show| qml:*quick-view*)) + +(run) diff --git a/examples/M-modules/quick/qml-lisp/README.txt b/examples/M-modules/quick/qml-lisp/README.txt index 6faa33b..392e783 100644 --- a/examples/M-modules/quick/qml-lisp/README.txt +++ b/examples/M-modules/quick/qml-lisp/README.txt @@ -18,7 +18,27 @@ You can access any QML property from Lisp (needs 'objectName' to be set). Examples: + ;; single object (qml:qml-get "label" "text") (qml:qml-set "label" "text" "hi!") (qml:qml-set "label" "color" "red") + ;; all objects matching 'objectName' + (qml:qml-get* "label" "text") + (qml:qml-set* "label" "text" "") + + +TIP +=== + +In order to have uniform access to QML objects from both JS and Lisp +functions, it's convenient to set both 'id:' and 'objectName:' to the same +name. + +QML Example: + + Item { + id: myItem + objectName: "myItem" + } + diff --git a/examples/M-modules/quick/qml-lisp/eql5.js b/examples/M-modules/quick/qml-lisp/eql5.js index 6cb18e3..8b0bfa7 100644 --- a/examples/M-modules/quick/qml-lisp/eql5.js +++ b/examples/M-modules/quick/qml-lisp/eql5.js @@ -1,18 +1,18 @@ // helper functions for convenient QML/EQL5 integration function fun(name, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) { - var args = [] - if(undefined != arg1) args.push(arg1) - if(undefined != arg2) args.push(arg2) - if(undefined != arg3) args.push(arg3) - if(undefined != arg4) args.push(arg4) - if(undefined != arg5) args.push(arg5) - if(undefined != arg6) args.push(arg6) - if(undefined != arg7) args.push(arg7) - if(undefined != arg8) args.push(arg8) - if(undefined != arg9) args.push(arg9) - return EQL5.apply(name, args) } + var args = []; + if(undefined != arg1) args.push(arg1); + if(undefined != arg2) args.push(arg2); + if(undefined != arg3) args.push(arg3); + if(undefined != arg4) args.push(arg4); + if(undefined != arg5) args.push(arg5); + if(undefined != arg6) args.push(arg6); + if(undefined != arg7) args.push(arg7); + if(undefined != arg8) args.push(arg8); + if(undefined != arg9) args.push(arg9); + return EQL5.apply(name, args); } function apply(name, args) { - return EQL5.apply(name, args) } + return EQL5.apply(name, args); } diff --git a/examples/M-modules/quick/qml-lisp/lib/qml_lisp.cpp b/examples/M-modules/quick/qml-lisp/lib/qml_lisp.cpp index ebeed19..5e82520 100644 --- a/examples/M-modules/quick/qml-lisp/lib/qml_lisp.cpp +++ b/examples/M-modules/quick/qml-lisp/lib/qml_lisp.cpp @@ -13,11 +13,13 @@ QObject* ini() { qmlRegisterSingletonType("EQL5", 1, 0, "EQL5", lisp_provider); } return lisp; } -QString Lisp::apply(const QString& function, const QVariantList& arguments) { +QVariant Lisp::apply(const QString& function, const QVariantList& arguments) { QVariant ret = eql_fun("qml:qml-apply", QVariant::String, Q_ARG(QString, function), Q_ARG(QVariantList, arguments)); - return ret.toString(); } + if(ret.toString() == "NIL") { + ret = QVariant(); } + return ret; } QT_END_NAMESPACE diff --git a/examples/M-modules/quick/qml-lisp/lib/qml_lisp.h b/examples/M-modules/quick/qml-lisp/lib/qml_lisp.h index be92c38..4e05e69 100644 --- a/examples/M-modules/quick/qml-lisp/lib/qml_lisp.h +++ b/examples/M-modules/quick/qml-lisp/lib/qml_lisp.h @@ -17,7 +17,7 @@ class Lisp : public QObject { Q_OBJECT public: - Q_INVOKABLE QString apply(const QString&, const QVariantList& = QVariantList()); + Q_INVOKABLE QVariant apply(const QString&, const QVariantList& = QVariantList()); }; QT_END_NAMESPACE diff --git a/examples/M-modules/quick/qml-lisp/qml-lisp.lisp b/examples/M-modules/quick/qml-lisp/qml-lisp.lisp index 081dfb8..422c8a6 100644 --- a/examples/M-modules/quick/qml-lisp/qml-lisp.lisp +++ b/examples/M-modules/quick/qml-lisp/qml-lisp.lisp @@ -1,6 +1,7 @@ ;;; ;;; * enables QML to call Lisp functions ;;; * allows to get/set any QML property from Lisp (needs 'objectName' to be set) +;;; * allows to evaluate JS code from Lisp (needs 'objectName' to be set) ;;; ;;; (requires a C++ plugin, see "lib/") @@ -9,9 +10,12 @@ (:nicknames :qml) (:export #:*quick-view* + #:js #:root-object #:qml-get - #:qml-set)) + #:qml-set + #:qml-get* + #:qml-set*)) (provide :qml-lisp) @@ -28,6 +32,11 @@ (subseq upper 0 p)) (intern upper)))) +(defun qml-error (format-string &rest arguments) + (format *debug-io* "~&[QML] ~A~%" (apply 'format nil format-string arguments))) + +;;; function calls from QML + (defun qml-apply (function arguments) "Every 'Lisp.fun()' or 'Lisp.apply()' function call in QML will call this function." (let ((value (apply (string-to-symbol function) @@ -42,16 +51,43 @@ (setf root-object (|rootObject| *quick-view*))) root-object)) -(defun find-qml-object (name) - (if (string= (|objectName| (root-object)) name) - (root-object) - (qfind-child (root-object) name))) +(defun find-qml-object (name &optional all) + (or (if (string= (|objectName| (root-object)) name) + (root-object) + (if all + (qfind-children (root-object) name) + (qfind-child (root-object) name))) + (qml-error "No object found with name: ~S." name))) + +;;; get/set QML object properties (defun qml-get (object-name property-name) - "Get QML property. Needs 'objectName' to be set." + "Gets QML property for first object matching 'objectName'." (qget (find-qml-object object-name) property-name)) (defun qml-set (object-name property-name value) - "Set QML property. Needs 'objectName' to be set." + "Sets QML property for first object matching 'objectName'." (qset (find-qml-object object-name) property-name value)) +(defun qml-get* (object-name property-name) + "Collects QML properties for all objects matching 'objectName'." + (mapcar (lambda (object) + (qget object property-name)) + (find-qml-object object-name t))) + +(defun qml-set* (object-name property-name value) + "Sets QML property for all objects matching 'objectName'." + (dolist (object (find-qml-object object-name t)) + (qset object property-name value))) + +;;; JS + +(defun js (object-name js-format-string &rest arguments) + "Evaluates a JS string with the element bound to OBJECT-NAME as 'this'." + (qlet ((qml-exp "QQmlExpression(QQmlContext*,QObject*,QString)" + (|rootContext| (|engine| *quick-view*)) + (find-qml-object object-name) + (apply 'format nil js-format-string arguments)) + (variant (|evaluate| qml-exp))) + (qvariant-value variant))) + diff --git a/examples/M-modules/quick/qml-lisp/qml/example.qml b/examples/M-modules/quick/qml-lisp/qml/example.qml index 57e5982..07f4b87 100644 --- a/examples/M-modules/quick/qml-lisp/qml/example.qml +++ b/examples/M-modules/quick/qml-lisp/qml/example.qml @@ -1,4 +1,5 @@ import QtQuick 2.0 + import EQL5 1.0 import "../eql5.js" as Lisp diff --git a/helper/parse.lisp b/helper/parse.lisp index 3c89d32..ca497e1 100644 --- a/helper/parse.lisp +++ b/helper/parse.lisp @@ -52,7 +52,10 @@ "CGImageRef" "DefaultAction" "EditFocus" - "Engine" + "ExecutionEngine" + "QIconEngine" + "QPaintEngine" + "QPrintEngine" "FILE" "FT_Face" "GLfloat *" diff --git a/helper/parsed/n-methods.lisp b/helper/parsed/n-methods.lisp index c68da2d..a24a5fc 100644 --- a/helper/parsed/n-methods.lisp +++ b/helper/parsed/n-methods.lisp @@ -3041,6 +3041,7 @@ "virtual ImageType imageType () const = 0") (("QQmlIncubationController" . NIL) "new QQmlIncubationController ()" + "QQmlEngine * engine () const" "void incubateFor ( int )" "int incubatingObjectCount () const") (("QQmlIncubator" . NIL) @@ -3064,8 +3065,10 @@ "new QQmlProperty ()" "new QQmlProperty ( QObject * )" "new QQmlProperty ( QObject * , QQmlContext * )" + "new QQmlProperty ( QObject * , QQmlEngine * )" "new QQmlProperty ( QObject * , const QString & )" "new QQmlProperty ( QObject * , const QString & , QQmlContext * )" + "new QQmlProperty ( QObject * , const QString & , QQmlEngine * )" "new QQmlProperty ( const QQmlProperty & )" "bool connectNotifySignal ( QObject * , const char * ) const" "bool connectNotifySignal ( QObject * , int ) const" @@ -3089,8 +3092,10 @@ "bool write ( const QVariant & ) const" "static QVariant read ( const QObject * , const QString & )" "static QVariant read ( const QObject * , const QString & , QQmlContext * )" + "static QVariant read ( const QObject * , const QString & , QQmlEngine * )" "static bool write ( QObject * , const QString & , const QVariant & )" - "static bool write ( QObject * , const QString & , const QVariant & , QQmlContext * )") + "static bool write ( QObject * , const QString & , const QVariant & , QQmlContext * )" + "static bool write ( QObject * , const QString & , const QVariant & , QQmlEngine * )") (("QQmlPropertyValueSource" . NIL) "new QQmlPropertyValueSource ()" "virtual void setTarget ( const QQmlProperty & ) = 0") diff --git a/helper/parsed/q-methods.lisp b/helper/parsed/q-methods.lisp index 229bf69..1aee9bb 100644 --- a/helper/parsed/q-methods.lisp +++ b/helper/parsed/q-methods.lisp @@ -2033,6 +2033,7 @@ (("QHelpContentWidget" . "QTreeView") "QModelIndex indexOf ( const QUrl & )") (("QHelpEngineCore" . "QObject") + "new QHelpEngineCore ( const QString & , QObject * = 0 )" "bool addCustomFilter ( const QString & , const QStringList & )" "bool autoSaveFilter () const" "QString collectionFile () const" @@ -2066,6 +2067,7 @@ "bool isCreatingIndex () const") (("QHelpIndexWidget" . "QListView")) (("QHelpSearchEngine" . "QObject") + "new QHelpSearchEngine ( QHelpEngineCore * , QObject * = 0 )" "int hitCount () const" "QList query () const" "QHelpSearchQueryWidget * queryWidget ()" @@ -2253,6 +2255,8 @@ "void setModel ( QAbstractItemModel * )" "protected void emitSelectionChanged ( const QItemSelection & , const QItemSelection & )") (("QJSEngine" . "QObject") + "new QJSEngine ()" + "new QJSEngine ( QObject * )" "void collectGarbage ()" "QJSValue evaluate ( const QString & , const QString & = QString() , int = 1 )" "QJSValue globalObject () const" @@ -3492,8 +3496,16 @@ "virtual QSize minimumSizeHint () const" "virtual QSize sizeHint () const") (("QQmlApplicationEngine" . "QQmlEngine") + "new QQmlApplicationEngine ( QObject * = 0 )" + "new QQmlApplicationEngine ( const QUrl & , QObject * = 0 )" + "new QQmlApplicationEngine ( const QString & , QObject * = 0 )" "QList rootObjects ()") (("QQmlComponent" . "QObject") + "new QQmlComponent ( QQmlEngine * , QObject * = 0 )" + "new QQmlComponent ( QQmlEngine * , const QString & , QObject * = 0 )" + "new QQmlComponent ( QQmlEngine * , const QString & , CompilationMode , QObject * = 0 )" + "new QQmlComponent ( QQmlEngine * , const QUrl & , QObject * = 0 )" + "new QQmlComponent ( QQmlEngine * , const QUrl & , CompilationMode , QObject * = 0 )" "virtual QObject * beginCreate ( QQmlContext * )" "virtual void completeCreate ()" "virtual QObject * create ( QQmlContext * = 0 )" @@ -3508,10 +3520,12 @@ "Status status () const" "QUrl url () const") (("QQmlContext" . "QObject") + "new QQmlContext ( QQmlEngine * , QObject * = 0 )" "new QQmlContext ( QQmlContext * , QObject * = 0 )" "QUrl baseUrl () const" "QObject * contextObject () const" "QVariant contextProperty ( const QString & ) const" + "QQmlEngine * engine () const" "bool isValid () const" "QString nameForObject ( QObject * ) const" "QQmlContext * parentContext () const" @@ -3521,6 +3535,7 @@ "void setContextProperty ( const QString & , QObject * )" "void setContextProperty ( const QString & , const QVariant & )") (("QQmlEngine" . "QJSEngine") + "new QQmlEngine ( QObject * = 0 )" "void addImageProvider ( const QString & , QQmlImageProviderBase * )" "void addImportPath ( const QString & )" "void addPluginPath ( const QString & )" @@ -3556,6 +3571,7 @@ "void clearError ()" "int columnNumber () const" "QQmlContext * context () const" + "QQmlEngine * engine () const" "QQmlError error () const" "QVariant evaluate ( bool * = 0 )" "QString expression () const" @@ -3570,11 +3586,14 @@ (("QQmlExtensionPlugin" . "QObject") "new QQmlExtensionPlugin ( QObject * = 0 )" "QUrl baseUrl () const" + "virtual void initializeEngine ( QQmlEngine * , const char * )" "virtual void registerTypes ( const char * ) = 0") (("QQmlFileSelector" . "QObject") + "new QQmlFileSelector ( QQmlEngine * , QObject * = 0 )" "void setExtraSelectors ( QStringList & )" "void setExtraSelectors ( const QStringList & )" - "void setSelector ( QFileSelector * )") + "void setSelector ( QFileSelector * )" + "static QQmlFileSelector * get ( QQmlEngine * )") (("QQmlPropertyMap" . "QObject") "new QQmlPropertyMap ( QObject * = 0 )" "void clear ( const QString & )" @@ -3746,7 +3765,9 @@ "static QQuickTextureFactory * textureFactoryForImage ( const QImage & )") (("QQuickView" . "QQuickWindow") "new QQuickView ( QWindow * = 0 )" + "new QQuickView ( QQmlEngine * , QWindow * )" "new QQuickView ( const QUrl & , QWindow * = 0 )" + "QQmlEngine * engine () const" "QList errors () const" "QSize initialSize () const" "ResizeMode resizeMode () const" @@ -3762,7 +3783,9 @@ "protected void mouseReleaseEvent ( QMouseEvent * )") (("QQuickWidget" . "QWidget") "new QQuickWidget ( QWidget * = 0 )" + "new QQuickWidget ( QQmlEngine * , QWidget * )" "new QQuickWidget ( const QUrl & , QWidget * = 0 )" + "QQmlEngine * engine () const" "QList errors () const" "QSurfaceFormat format () const" "QImage grabFramebuffer () const" @@ -3884,6 +3907,7 @@ (("QSGDynamicTexture" . "QSGTexture") "virtual bool updateTexture () = 0") (("QSGEngine" . "QObject") + "new QSGEngine ( QObject * = 0 )" "QSGTexture * createTextureFromId ( uint , const QSize & , CreateTextureOptions = 0 ) const" "QSGTexture * createTextureFromImage ( const QImage & , CreateTextureOptions = 0 ) const" "void initialize ( QOpenGLContext * )" diff --git a/helper/parsed/q-override.lisp b/helper/parsed/q-override.lisp index ddbfb83..bbb8d72 100644 --- a/helper/parsed/q-override.lisp +++ b/helper/parsed/q-override.lisp @@ -1260,6 +1260,7 @@ "virtual bool event ( QEvent * )") (("QQmlExpression" . "QObject")) (("QQmlExtensionPlugin" . "QObject") + "virtual void initializeEngine ( QQmlEngine * , const char * )" "virtual void registerTypes ( const char * ) = 0") (("QQmlFileSelector" . "QObject")) (("QQmlPropertyMap" . "QObject") diff --git a/src/ecl_fun.cpp b/src/ecl_fun.cpp index 3b43fd4..fc8e1e3 100644 --- a/src/ecl_fun.cpp +++ b/src/ecl_fun.cpp @@ -156,6 +156,7 @@ void iniCLFunctions() { DEFUN ("qui-names", qui_names, 1) DEFUN ("qutf8", qutf8, 1) DEFUN ("%qvariant-equal", qvariant_equal2, 2) + DEFUN ("qvariant-value", qvariant_value, 1) DEFUN ("qversion", qversion, 0) } // QtObject methods @@ -1116,7 +1117,7 @@ static cl_object from_qvariant_value(const QVariant& var) { case QVariant::Url: l_obj = from_qurl(var.toUrl()); break; case QVariant::UInt: l_obj = ecl_make_unsigned_integer(var.toUInt()); break; case QVariant::ULongLong: l_obj = ecl_make_unsigned_integer(var.toULongLong()); break; - // for nested QVariantLists: + // special case: QVariantList (can be nested) case QVariant::List: Q_FOREACH(QVariant v, var.value()) { l_obj = CONS(from_qvariant_value(v), l_obj); } @@ -1877,6 +1878,20 @@ cl_object qset_property(cl_object l_obj, cl_object l_name, cl_object l_val) { error_msg("QSET-PROPERTY", LIST3(l_obj, l_name, l_val)); return Cnil; } +cl_object qvariant_value(cl_object l_obj) { + /// args: (object) + /// Returns the Lisp value of the QVariant object. + const cl_env_ptr l_env = ecl_process_env(); + l_env->nvalues = 1; + QtObject o = toQtObject(l_obj); + if("QVariant" == o.className() && o.pointer) { + QVariant* p = (QVariant*)o.pointer; + cl_object l_ret = from_qvariant_value(*p); + l_env->values[0] = l_ret; + return l_ret; } + error_msg("QVARIANT-VALUE", LIST1(l_obj)); + return Cnil; } + cl_object qinvoke_method2(cl_object l_obj, cl_object l_cast, cl_object l_name, cl_object l_args) { /// args: (object function-name &rest arguments) /// alias: qfun diff --git a/src/ecl_fun.h b/src/ecl_fun.h index efebc05..8963927 100644 --- a/src/ecl_fun.h +++ b/src/ecl_fun.h @@ -284,6 +284,7 @@ cl_object qui_class2 (cl_object, cl_object); cl_object qui_names (cl_object); cl_object qutf8 (cl_object); cl_object qvariant_equal2 (cl_object, cl_object); +cl_object qvariant_value (cl_object); cl_object qversion (); struct EQL_EXPORT QtObject { diff --git a/src/eql.cpp b/src/eql.cpp index 8cd6621..3a38a4d 100644 --- a/src/eql.cpp +++ b/src/eql.cpp @@ -7,7 +7,7 @@ #include #include -const char EQL::version[] = "17.1.3"; // Jan 2017 +const char EQL::version[] = "17.1.4"; // Jan 2017 extern "C" void ini_EQL(cl_object); diff --git a/src/gen/_lobjects.cpp b/src/gen/_lobjects.cpp index 2d8fd1c..dfa8baf 100644 --- a/src/gen/_lobjects.cpp +++ b/src/gen/_lobjects.cpp @@ -245,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() << 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 LSortFilterProxyModel::overrideIds = NumList() << 358 << 359 << 360 << 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() << 361 << 221 << 142 << 144; +NumList LSplashScreen::overrideIds = NumList() << 362 << 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; @@ -258,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() << 399 << 400 << 46 << 50 << 51 << 52 << 53 << 54 << 48 << 5; +NumList LStyledItemDelegate::overrideIds = NumList() << 400 << 401 << 46 << 50 << 51 << 52 << 53 << 54 << 48 << 5; NumList LSwipeGesture::overrideIds = NumList(); -NumList LSyntaxHighlighter::overrideIds = NumList() << 401; +NumList LSyntaxHighlighter::overrideIds = NumList() << 402; NumList LSystemTrayIcon::overrideIds = NumList(); -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 LTabBar::overrideIds = NumList() << 403 << 404 << 405 << 406 << 407 << 24 << 25 << 12 << 35 << 15 << 17 << 18 << 19 << 20 << 40 << 41 << 8 << 43; +NumList LTabWidget::overrideIds = NumList() << 404 << 406 << 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() << 407 << 408 << 70 << 83 << 32; +NumList LTableWidget::overrideIds = NumList() << 408 << 409 << 70 << 83 << 32; NumList LTapAndHoldGesture::overrideIds = NumList(); NumList LTapGesture::overrideIds = NumList(); -NumList LTextBlockGroup::overrideIds = NumList() << 409 << 410 << 411; +NumList LTextBlockGroup::overrideIds = NumList() << 410 << 411 << 412; NumList LTextBrowser::overrideIds = NumList() << 314 << 34 << 14 << 15 << 17 << 18 << 19 << 20; -NumList LTextDocument::overrideIds = NumList() << 219 << 412 << 314; +NumList LTextDocument::overrideIds = NumList() << 219 << 413 << 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() << 413 << 8; +NumList LTimeLine::overrideIds = NumList() << 414 << 8; NumList LTimer::overrideIds = NumList() << 8; NumList LToolBar::overrideIds = NumList() << 26 << 12 << 20; -NumList LToolBox::overrideIds = NumList() << 414 << 415 << 12 << 41; +NumList LToolBox::overrideIds = NumList() << 415 << 416 << 12 << 41; NumList LToolButton::overrideIds = NumList() << 24 << 25 << 26 << 12 << 33 << 10 << 37 << 18 << 19 << 11 << 20 << 8; -NumList LTranslator::overrideIds = NumList() << 175 << 416; +NumList LTranslator::overrideIds = NumList() << 175 << 417; 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() << 417 << 418 << 70 << 83 << 88 << 32; +NumList LTreeWidget::overrideIds = NumList() << 418 << 419 << 70 << 83 << 88 << 32; NumList LUndoGroup::overrideIds = NumList(); NumList LUndoStack::overrideIds = NumList(); NumList LUndoView::overrideIds = NumList(); @@ -292,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() << 451 << 452 << 5; +NumList LWidgetAction::overrideIds = NumList() << 452 << 453 << 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() << 453 << 454 << 455 << 456 << 108 << 25 << 184 << 20 << 40; -NumList LWizardPage::overrideIds = NumList() << 457 << 458 << 459 << 453 << 460; +NumList LWizard::overrideIds = NumList() << 454 << 455 << 456 << 457 << 108 << 25 << 184 << 20 << 40; +NumList LWizardPage::overrideIds = NumList() << 458 << 459 << 460 << 454 << 461; NumList LAbstractGraphicsShapeItem::overrideIds = NumList() << 268 << 269; NumList LAccessible::overrideIds = NumList(); -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 LAccessibleEditableTextInterface::overrideIds = NumList() << 466 << 467 << 468; +NumList LAccessibleEvent::overrideIds = NumList() << 469; +NumList LAccessibleInterface::overrideIds = NumList() << 470 << 471 << 472 << 473 << 474 << 475 << 476 << 477 << 478 << 479 << 480 << 481 << 482 << 483 << 484; NumList LAccessibleStateChangeEvent::overrideIds = NumList(); NumList LAccessibleTextCursorEvent::overrideIds = NumList(); NumList LAccessibleTextInsertEvent::overrideIds = NumList(); -NumList LAccessibleTextInterface::overrideIds = NumList() << 484 << 485 << 486 << 487 << 488 << 489 << 490 << 491 << 492 << 493 << 494; +NumList LAccessibleTextInterface::overrideIds = NumList() << 485 << 486 << 487 << 488 << 489 << 490 << 491 << 492 << 493 << 494 << 495; NumList LAccessibleTextRemoveEvent::overrideIds = NumList(); NumList LAccessibleTextSelectionEvent::overrideIds = NumList(); NumList LAccessibleTextUpdateEvent::overrideIds = NumList(); NumList LAccessibleValueChangeEvent::overrideIds = NumList(); -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 LAccessibleValueInterface::overrideIds = NumList() << 496 << 497 << 498 << 499 << 500; +NumList LAccessibleWidget::overrideIds = NumList() << 501 << 470 << 471 << 473 << 502 << 474 << 475 << 476 << 477 << 503 << 479 << 480 << 481 << 483 << 484; NumList LActionEvent::overrideIds = NumList(); NumList LBackingStore::overrideIds = NumList(); NumList LBasicTimer::overrideIds = NumList(); @@ -339,7 +339,7 @@ NumList LEnterEvent::overrideIds = NumList(); NumList LEvent::overrideIds = NumList(); NumList LEventLoopLocker::overrideIds = NumList(); NumList LExposeEvent::overrideIds = NumList(); -NumList LFileIconProvider::overrideIds = NumList() << 503 << 504 << 505; +NumList LFileIconProvider::overrideIds = NumList() << 504 << 505 << 506; NumList LFileInfo::overrideIds = NumList(); NumList LFileOpenEvent::overrideIds = NumList(); NumList LFocusEvent::overrideIds = NumList(); @@ -350,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 << 506 << 232 << 249; +NumList LGraphicsAnchorLayout::overrideIds = NumList() << 163 << 165 << 166 << 507 << 232 << 249; NumList LGraphicsEllipseItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233; -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 LGraphicsGridLayout::overrideIds = NumList() << 163 << 165 << 166 << 507 << 232 << 249; +NumList LGraphicsItem::overrideIds = NumList() << 462 << 260 << 463 << 464 << 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 << 465 << 251; NumList LGraphicsItemGroup::overrideIds = NumList() << 260 << 268 << 269 << 231 << 233; -NumList LGraphicsLayout::overrideIds = NumList() << 163 << 165 << 166 << 506 << 507 << 263; +NumList LGraphicsLayout::overrideIds = NumList() << 163 << 165 << 166 << 507 << 508 << 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 << 506 << 232 << 249; +NumList LGraphicsLinearLayout::overrideIds = NumList() << 163 << 165 << 166 << 507 << 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; @@ -382,15 +382,15 @@ NumList LImage::overrideIds = NumList(); NumList LInputEvent::overrideIds = NumList(); NumList LInputMethodEvent::overrideIds = NumList(); NumList LInputMethodQueryEvent::overrideIds = NumList(); -NumList LItemEditorCreatorBase::overrideIds = NumList() << 451 << 508; -NumList LItemEditorFactory::overrideIds = NumList() << 509 << 510; +NumList LItemEditorCreatorBase::overrideIds = NumList() << 452 << 509; +NumList LItemEditorFactory::overrideIds = NumList() << 510 << 511; 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 << 511 << 512; +NumList LLayoutItem::overrideIds = NumList() << 173 << 164 << 174 << 21 << 22 << 165 << 175 << 176 << 167 << 168 << 169 << 170 << 25 << 512 << 513; NumList LLibraryInfo::overrideIds = NumList(); NumList LLinearGradient::overrideIds = NumList(); -NumList LListWidgetItem::overrideIds = NumList() << 513 << 514 << 515; +NumList LListWidgetItem::overrideIds = NumList() << 514 << 515 << 516; NumList LLocale::overrideIds = NumList(); NumList LMargins::overrideIds = NumList(); NumList LMarginsF::overrideIds = NumList(); @@ -403,7 +403,7 @@ NumList LMouseEvent::overrideIds = NumList(); NumList LMoveEvent::overrideIds = NumList(); NumList LOpenGLFramebufferObject::overrideIds = NumList(); NumList LOpenGLFramebufferObjectFormat::overrideIds = NumList(); -NumList LOpenGLPaintDevice::overrideIds = NumList() << 517 << 518; +NumList LOpenGLPaintDevice::overrideIds = NumList() << 518 << 519; NumList LOpenGLTexture::overrideIds = NumList(); NumList LPageLayout::overrideIds = NumList(); NumList LPageSize::overrideIds = NumList(); @@ -414,7 +414,7 @@ NumList LPainterPathStroker::overrideIds = NumList(); NumList LPalette::overrideIds = NumList(); NumList LPen::overrideIds = NumList(); NumList LPersistentModelIndex::overrideIds = NumList(); -NumList LPicture::overrideIds = NumList() << 519; +NumList LPicture::overrideIds = NumList() << 520; NumList LPixmap::overrideIds = NumList(); NumList LPixmapCache::overrideIds = NumList(); NumList LPrinter::overrideIds = NumList() << 313; @@ -426,22 +426,22 @@ NumList LRegExp::overrideIds = NumList(); NumList LRegion::overrideIds = NumList(); NumList LRegularExpression::overrideIds = NumList(); NumList LResizeEvent::overrideIds = NumList(); -NumList LRunnable::overrideIds = NumList() << 536; +NumList LRunnable::overrideIds = NumList() << 537; 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 << 511; -NumList LStandardItem::overrideIds = NumList() << 513 << 514 << 560 << 233; +NumList LSpacerItem::overrideIds = NumList() << 164 << 174 << 175 << 167 << 169 << 170 << 25 << 512; +NumList LStandardItem::overrideIds = NumList() << 514 << 515 << 561 << 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() << 513 << 514 << 515; +NumList LTableWidgetItem::overrideIds = NumList() << 514 << 515 << 516; NumList LTableWidgetSelectionRange::overrideIds = NumList(); NumList LTabletEvent::overrideIds = NumList(); NumList LTextBlock::overrideIds = NumList(); @@ -449,7 +449,7 @@ NumList LTextBlockFormat::overrideIds = NumList(); NumList LTextBlockUserData::overrideIds = NumList(); NumList LTextBoundaryFinder::overrideIds = NumList(); NumList LTextCharFormat::overrideIds = NumList(); -NumList LTextCodec::overrideIds = NumList() << 561 << 562 << 563 << 564 << 565; +NumList LTextCodec::overrideIds = NumList() << 562 << 563 << 564 << 565 << 566; NumList LTextCursor::overrideIds = NumList(); NumList LTextDecoder::overrideIds = NumList(); NumList LTextDocumentFragment::overrideIds = NumList(); @@ -474,8 +474,8 @@ NumList LToolTip::overrideIds = NumList(); NumList LTouchDevice::overrideIds = NumList(); NumList LTouchEvent::overrideIds = NumList(); NumList LTransform::overrideIds = NumList(); -NumList LTreeWidgetItem::overrideIds = NumList() << 513 << 566 << 567; -NumList LUndoCommand::overrideIds = NumList() << 568 << 569 << 570 << 571; +NumList LTreeWidgetItem::overrideIds = NumList() << 514 << 567 << 568; +NumList LUndoCommand::overrideIds = NumList() << 569 << 570 << 571 << 572; NumList LUrl::overrideIds = NumList(); NumList LUuid::overrideIds = NumList(); NumList LVariant::overrideIds = NumList(); @@ -485,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 << 512; +NumList LWidgetItem::overrideIds = NumList() << 173 << 164 << 174 << 21 << 22 << 175 << 167 << 169 << 170 << 25 << 513; NumList LWindowStateChangeEvent::overrideIds = NumList(); void LObjects::ini(EQL* e) { @@ -1767,254 +1767,255 @@ void LObjects::ini(EQL* e) { 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]; + override_function_ids["initializeEngine(QQmlEngine*,const char*)"] = 325; + override_function_ids["registerTypes(const char*)"] = 326; + override_function_ids["updateValue(QString,QVariant)"] = 327; + override_function_ids["errorString()"] = 328; + override_function_ids["textureFactory()"] = 329; + override_function_ids["isTextureProvider()"] = 330; + override_function_ids["textureProvider()"] = 331; + override_function_ids["childMouseEventFilter(QQuickItem*,QEvent*)"] = 332; + override_function_ids["geometryChanged(QRectF,QRectF)"] = 333; + override_function_ids["hoverEnterEvent(QHoverEvent*)"] = 334; + override_function_ids["hoverLeaveEvent(QHoverEvent*)"] = 335; + override_function_ids["hoverMoveEvent(QHoverEvent*)"] = 336; + override_function_ids["itemChange(ItemChange,ItemChangeData)"] = 337; + override_function_ids["mouseUngrabEvent()"] = 338; + override_function_ids["releaseResources()"] = 339; + override_function_ids["touchUngrabEvent()"] = 340; + override_function_ids["updatePaintNode(QSGNode*,UpdatePaintNodeData*)"] = 341; + override_function_ids["updatePolish()"] = 342; + override_function_ids["paint(QPainter*)"] = 343; + override_function_ids["createTexture(QQuickWindow*)"] = 344; + override_function_ids["image()"] = 345; + override_function_ids["textureByteCount()"] = 346; + override_function_ids["textureSize()"] = 347; + override_function_ids["renderScene(GLuint)"] = 348; + override_function_ids["updateTexture()"] = 349; + override_function_ids["bind()"] = 350; + override_function_ids["hasAlphaChannel()"] = 351; + override_function_ids["hasMipmaps()"] = 352; + override_function_ids["isAtlasTexture()"] = 353; + override_function_ids["normalizedTextureSubRect()"] = 354; + override_function_ids["removedFromAtlas()"] = 355; + override_function_ids["textureId()"] = 356; + override_function_ids["texture()"] = 357; + override_function_ids["filterAcceptsColumn(int,QModelIndex)"] = 358; + override_function_ids["filterAcceptsRow(int,QModelIndex)"] = 359; + override_function_ids["lessThan(QModelIndex,QModelIndex)"] = 360; + override_function_ids["textFromValue(int)"] = 361; + override_function_ids["drawContents(QPainter*)"] = 362; + override_function_ids["beginTransaction()"] = 363; + override_function_ids["commitTransaction()"] = 364; + override_function_ids["createResult()"] = 365; + override_function_ids["escapeIdentifier(QString,IdentifierType)"] = 366; + override_function_ids["formatValue(QSqlField,bool)"] = 367; + override_function_ids["handle()"] = 368; + override_function_ids["hasFeature(DriverFeature)"] = 369; + override_function_ids["isIdentifierEscaped(QString,IdentifierType)"] = 370; + override_function_ids["isOpen()"] = 371; + override_function_ids["open(QString,QString,QString,QString,int,QString)"] = 372; + override_function_ids["primaryIndex(QString)"] = 373; + override_function_ids["record(QString)"] = 374; + override_function_ids["rollbackTransaction()"] = 375; + override_function_ids["sqlStatement(StatementType,QString,QSqlRecord,bool)"] = 376; + override_function_ids["stripDelimiters(QString,IdentifierType)"] = 377; + override_function_ids["subscribeToNotification(QString)"] = 378; + override_function_ids["subscribedToNotifications()"] = 379; + override_function_ids["tables(QSql::TableType)"] = 380; + override_function_ids["unsubscribeFromNotification(QString)"] = 381; + override_function_ids["setLastError(QSqlError)"] = 382; + override_function_ids["setOpen(bool)"] = 383; + override_function_ids["setOpenError(bool)"] = 384; + override_function_ids["indexInQuery(QModelIndex)"] = 385; + override_function_ids["queryChange()"] = 386; + override_function_ids["relationModel(int)"] = 387; + override_function_ids["setRelation(int,QSqlRelation)"] = 388; + override_function_ids["select()"] = 389; + override_function_ids["setTable(QString)"] = 390; + override_function_ids["insertRowIntoTable(QSqlRecord)"] = 391; + override_function_ids["orderByClause()"] = 392; + override_function_ids["selectStatement()"] = 393; + override_function_ids["updateRowInTable(int,QSqlRecord)"] = 394; + override_function_ids["revertRow(int)"] = 395; + override_function_ids["setEditStrategy(EditStrategy)"] = 396; + override_function_ids["setFilter(QString)"] = 397; + override_function_ids["setSort(int,Qt::SortOrder)"] = 398; + override_function_ids["deleteRowFromTable(int)"] = 399; + override_function_ids["displayText(QVariant,QLocale)"] = 400; + override_function_ids["initStyleOption(QStyleOptionViewItem*,QModelIndex)"] = 401; + override_function_ids["highlightBlock(QString)"] = 402; + override_function_ids["minimumTabSizeHint(int)"] = 403; + override_function_ids["tabInserted(int)"] = 404; + override_function_ids["tabLayoutChange()"] = 405; + override_function_ids["tabRemoved(int)"] = 406; + override_function_ids["tabSizeHint(int)"] = 407; + override_function_ids["dropMimeData(int,int,QMimeData*,Qt::DropAction)"] = 408; + override_function_ids["mimeData(QList)"] = 409; + override_function_ids["blockFormatChanged(QTextBlock)"] = 410; + override_function_ids["blockInserted(QTextBlock)"] = 411; + override_function_ids["blockRemoved(QTextBlock)"] = 412; + override_function_ids["createObject(QTextFormat)"] = 413; + override_function_ids["valueForTime(int)"] = 414; + override_function_ids["itemInserted(int)"] = 415; + override_function_ids["itemRemoved(int)"] = 416; + override_function_ids["translate(const char*,const char*,const char*,int)"] = 417; + override_function_ids["dropMimeData(QTreeWidgetItem*,int,QMimeData*,Qt::DropAction)"] = 418; + override_function_ids["mimeData(QList)"] = 419; + override_function_ids["aspectRatioMode()"] = 420; + override_function_ids["brightness()"] = 421; + override_function_ids["contrast()"] = 422; + override_function_ids["hue()"] = 423; + override_function_ids["isFullScreen()"] = 424; + override_function_ids["saturation()"] = 425; + override_function_ids["setAspectRatioMode(Qt::AspectRatioMode)"] = 426; + override_function_ids["setBrightness(int)"] = 427; + override_function_ids["setContrast(int)"] = 428; + override_function_ids["setFullScreen(bool)"] = 429; + override_function_ids["setHue(int)"] = 430; + override_function_ids["setSaturation(int)"] = 431; + override_function_ids["videoWidget()"] = 432; + override_function_ids["addHistoryEntry(QString)"] = 433; + override_function_ids["historyContains(QString)"] = 434; + override_function_ids["extension(Extension,ExtensionOption*,ExtensionReturn*)"] = 435; + override_function_ids["shouldInterruptJavaScript()"] = 436; + override_function_ids["supportsExtension(Extension)"] = 437; + override_function_ids["triggerAction(WebAction,bool)"] = 438; + override_function_ids["acceptNavigationRequest(QWebFrame*,QNetworkRequest,NavigationType)"] = 439; + override_function_ids["chooseFile(QWebFrame*,QString)"] = 440; + override_function_ids["createPlugin(QString,QUrl,QStringList,QStringList)"] = 441; + override_function_ids["createWindow(WebWindowType)"] = 442; + override_function_ids["javaScriptAlert(QWebFrame*,QString)"] = 443; + override_function_ids["javaScriptConfirm(QWebFrame*,QString)"] = 444; + override_function_ids["javaScriptConsoleMessage(QString,int,QString)"] = 445; + override_function_ids["javaScriptPrompt(QWebFrame*,QString,QString,QString*)"] = 446; + override_function_ids["userAgentForUrl(QUrl)"] = 447; + override_function_ids["create(QString,QUrl,QStringList,QStringList)"] = 448; + override_function_ids["plugins()"] = 449; + override_function_ids["refreshPlugins()"] = 450; + override_function_ids["createWindow(QWebPage::WebWindowType)"] = 451; + override_function_ids["createWidget(QWidget*)"] = 452; + override_function_ids["deleteWidget(QWidget*)"] = 453; + override_function_ids["nextId()"] = 454; + override_function_ids["validateCurrentPage()"] = 455; + override_function_ids["cleanupPage(int)"] = 456; + override_function_ids["initializePage(int)"] = 457; + override_function_ids["cleanupPage()"] = 458; + override_function_ids["initializePage()"] = 459; + override_function_ids["isComplete()"] = 460; + override_function_ids["validatePage()"] = 461; + override_function_ids["advance(int)"] = 462; + override_function_ids["collidesWithItem(QGraphicsItem*,Qt::ItemSelectionMode)"] = 463; + override_function_ids["collidesWithPath(QPainterPath,Qt::ItemSelectionMode)"] = 464; + override_function_ids["sceneEventFilter(QGraphicsItem*,QEvent*)"] = 465; + override_function_ids["deleteText(int,int)"] = 466; + override_function_ids["insertText(int,QString)"] = 467; + override_function_ids["replaceText(int,int,QString)"] = 468; + override_function_ids["accessibleInterface()"] = 469; + override_function_ids["backgroundColor()"] = 470; + override_function_ids["child(int)"] = 471; + override_function_ids["childAt(int,int)"] = 472; + override_function_ids["childCount()"] = 473; + override_function_ids["focusChild()"] = 474; + override_function_ids["foregroundColor()"] = 475; + override_function_ids["indexOfChild(QAccessibleInterface*)"] = 476; + override_function_ids["isValid()"] = 477; + override_function_ids["object()"] = 478; + override_function_ids["parent()"] = 479; + override_function_ids["rect()"] = 480; + override_function_ids["role()"] = 481; + override_function_ids["setText(QAccessible::Text,QString)"] = 482; + override_function_ids["text(QAccessible::Text)"] = 483; + override_function_ids["window()"] = 484; + override_function_ids["addSelection(int,int)"] = 485; + override_function_ids["characterCount()"] = 486; + override_function_ids["characterRect(int)"] = 487; + override_function_ids["cursorPosition()"] = 488; + override_function_ids["offsetAtPoint(QPoint)"] = 489; + override_function_ids["removeSelection(int)"] = 490; + override_function_ids["scrollToSubstring(int,int)"] = 491; + override_function_ids["selectionCount()"] = 492; + override_function_ids["setCursorPosition(int)"] = 493; + override_function_ids["setSelection(int,int,int)"] = 494; + override_function_ids["text(int,int)"] = 495; + override_function_ids["currentValue()"] = 496; + override_function_ids["maximumValue()"] = 497; + override_function_ids["minimumStepSize()"] = 498; + override_function_ids["minimumValue()"] = 499; + override_function_ids["setCurrentValue(QVariant)"] = 500; + override_function_ids["actionNames()"] = 501; + override_function_ids["doAction(QString)"] = 502; + override_function_ids["keyBindingsForAction(QString)"] = 503; + override_function_ids["icon(IconType)"] = 504; + override_function_ids["icon(QFileInfo)"] = 505; + override_function_ids["type(QFileInfo)"] = 506; + override_function_ids["removeAt(int)"] = 507; + override_function_ids["widgetEvent(QEvent*)"] = 508; + override_function_ids["valuePropertyName()"] = 509; + override_function_ids["createEditor(int,QWidget*)"] = 510; + override_function_ids["valuePropertyName(int)"] = 511; + override_function_ids["spacerItem()"] = 512; + override_function_ids["widget()"] = 513; + override_function_ids["clone()"] = 514; + override_function_ids["data(int)"] = 515; + override_function_ids["setData(int,QVariant)"] = 516; + override_function_ids["queryProxy(QNetworkProxyQuery)"] = 517; + override_function_ids["ensureActiveTarget()"] = 518; + override_function_ids["metric(QPaintDevice::PaintDeviceMetric)"] = 519; + override_function_ids["setData(const char*,uint)"] = 520; + override_function_ids["setPageSize(PageSize)"] = 521; + override_function_ids["setPageSizeMM(QSizeF)"] = 522; + override_function_ids["intercept(QUrl,DataType)"] = 523; + override_function_ids["flags()"] = 524; + override_function_ids["imageType()"] = 525; + override_function_ids["incubatingObjectCountChanged(int)"] = 526; + override_function_ids["setInitialState(QObject*)"] = 527; + override_function_ids["statusChanged(Status)"] = 528; + override_function_ids["create(QObject*)"] = 529; + override_function_ids["classBegin()"] = 530; + override_function_ids["componentComplete()"] = 531; + override_function_ids["setTarget(QQmlProperty)"] = 532; + override_function_ids["requestImageResponse(QString,QSize)"] = 533; + override_function_ids["requestImage(QString,QSize*,QSize)"] = 534; + override_function_ids["requestPixmap(QString,QSize*,QSize)"] = 535; + override_function_ids["requestTexture(QString,QSize*,QSize)"] = 536; + override_function_ids["run()"] = 537; + override_function_ids["isSubtreeBlocked()"] = 538; + override_function_ids["preprocess()"] = 539; + override_function_ids["compare(QSGMaterial*)"] = 540; + override_function_ids["createShader()"] = 541; + override_function_ids["bindValue(int,QVariant,QSql::ParamType)"] = 542; + override_function_ids["bindValue(QString,QVariant,QSql::ParamType)"] = 543; + override_function_ids["fetch(int)"] = 544; + override_function_ids["fetchFirst()"] = 545; + override_function_ids["fetchLast()"] = 546; + override_function_ids["fetchNext()"] = 547; + override_function_ids["fetchPrevious()"] = 548; + override_function_ids["isNull(int)"] = 549; + override_function_ids["lastInsertId()"] = 550; + override_function_ids["numRowsAffected()"] = 551; + override_function_ids["prepare(QString)"] = 552; + override_function_ids["record()"] = 553; + override_function_ids["reset(QString)"] = 554; + override_function_ids["savePrepare(QString)"] = 555; + override_function_ids["setActive(bool)"] = 556; + override_function_ids["setAt(int)"] = 557; + override_function_ids["setForwardOnly(bool)"] = 558; + override_function_ids["setQuery(QString)"] = 559; + override_function_ids["setSelect(bool)"] = 560; + override_function_ids["setData(QVariant,int)"] = 561; + override_function_ids["aliases()"] = 562; + override_function_ids["mibEnum()"] = 563; + override_function_ids["name()"] = 564; + override_function_ids["convertFromUnicode(QChar*,int,ConverterState*)"] = 565; + override_function_ids["convertToUnicode(const char*,int,ConverterState*)"] = 566; + override_function_ids["data(int,int)"] = 567; + override_function_ids["setData(int,int,QVariant)"] = 568; + override_function_ids["id()"] = 569; + override_function_ids["mergeWith(QUndoCommand*)"] = 570; + override_function_ids["redo()"] = 571; + override_function_ids["undo()"] = 572; + override_arg_types = new const char** [572]; { 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; } @@ -2339,253 +2340,254 @@ void LObjects::ini(EQL* e) { { 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, "QQmlEngine*", "const char*", 0 }; override_arg_types[324] = s; } + { static const char* s[] = { 0, "const char*", 0 }; override_arg_types[325] = s; } + { static const char* s[] = { "QVariant", "QString", "QVariant", 0 }; override_arg_types[326] = s; } + { static const char* s[] = { "QString", 0 }; override_arg_types[327] = s; } + { static const char* s[] = { "QQuickTextureFactory*", 0 }; override_arg_types[328] = s; } + { static const char* s[] = { "bool", 0 }; override_arg_types[329] = s; } + { static const char* s[] = { "QSGTextureProvider*", 0 }; override_arg_types[330] = s; } + { static const char* s[] = { "bool", "QQuickItem*", "QEvent*", 0 }; override_arg_types[331] = s; } + { static const char* s[] = { 0, "QRectF", "QRectF", 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, "QHoverEvent*", 0 }; override_arg_types[335] = s; } + { static const char* s[] = { 0, "ItemChange", "ItemChangeData", 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[] = { 0, 0 }; override_arg_types[339] = s; } + { static const char* s[] = { "QSGNode*", "QSGNode*", "UpdatePaintNodeData*", 0 }; override_arg_types[340] = s; } + { static const char* s[] = { 0, 0 }; override_arg_types[341] = s; } + { static const char* s[] = { 0, "QPainter*", 0 }; override_arg_types[342] = s; } + { static const char* s[] = { "QSGTexture*", "QQuickWindow*", 0 }; override_arg_types[343] = s; } + { static const char* s[] = { "QImage", 0 }; override_arg_types[344] = s; } + { static const char* s[] = { "int", 0 }; override_arg_types[345] = s; } + { static const char* s[] = { "QSize", 0 }; override_arg_types[346] = s; } + { static const char* s[] = { 0, "GLuint", 0 }; override_arg_types[347] = s; } + { static const char* s[] = { "bool", 0 }; override_arg_types[348] = s; } + { static const char* s[] = { 0, 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", 0 }; override_arg_types[352] = s; } + { static const char* s[] = { "QRectF", 0 }; override_arg_types[353] = s; } + { static const char* s[] = { "QSGTexture*", 0 }; override_arg_types[354] = s; } + { static const char* s[] = { "int", 0 }; override_arg_types[355] = s; } + { static const char* s[] = { "QSGTexture*", 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", "int", "QModelIndex", 0 }; override_arg_types[358] = s; } + { static const char* s[] = { "bool", "QModelIndex", "QModelIndex", 0 }; override_arg_types[359] = s; } + { static const char* s[] = { "QString", "int", 0 }; override_arg_types[360] = s; } + { static const char* s[] = { 0, "QPainter*", 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[] = { "bool", 0 }; override_arg_types[363] = s; } + { static const char* s[] = { "QSqlResult*", 0 }; override_arg_types[364] = s; } + { static const char* s[] = { "QString", "QString", "IdentifierType", 0 }; override_arg_types[365] = s; } + { static const char* s[] = { "QString", "QSqlField", "bool", 0 }; override_arg_types[366] = s; } + { static const char* s[] = { "QVariant", 0 }; override_arg_types[367] = s; } + { static const char* s[] = { "bool", "DriverFeature", 0 }; override_arg_types[368] = s; } + { static const char* s[] = { "bool", "QString", "IdentifierType", 0 }; override_arg_types[369] = s; } + { static const char* s[] = { "bool", 0 }; override_arg_types[370] = s; } + { static const char* s[] = { "bool", "QString", "QString", "QString", "QString", "int", "QString", 0 }; override_arg_types[371] = s; } + { static const char* s[] = { "QSqlIndex", "QString", 0 }; override_arg_types[372] = s; } + { static const char* s[] = { "QSqlRecord", "QString", 0 }; override_arg_types[373] = s; } + { static const char* s[] = { "bool", 0 }; override_arg_types[374] = s; } + { static const char* s[] = { "QString", "StatementType", "QString", "QSqlRecord", "bool", 0 }; override_arg_types[375] = s; } + { static const char* s[] = { "QString", "QString", "IdentifierType", 0 }; override_arg_types[376] = s; } + { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[377] = s; } + { static const char* s[] = { "QStringList", 0 }; override_arg_types[378] = s; } + { static const char* s[] = { "QStringList", "QSql::TableType", 0 }; override_arg_types[379] = s; } + { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[380] = s; } + { static const char* s[] = { 0, "QSqlError", 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[] = { 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[] = { 0, "bool", 0 }; override_arg_types[383] = s; } + { static const char* s[] = { "QModelIndex", "QModelIndex", 0 }; override_arg_types[384] = s; } + { static const char* s[] = { 0, 0 }; override_arg_types[385] = s; } + { static const char* s[] = { "QSqlTableModel*", "int", 0 }; override_arg_types[386] = s; } + { static const char* s[] = { 0, "int", "QSqlRelation", 0 }; override_arg_types[387] = s; } + { static const char* s[] = { "bool", 0 }; override_arg_types[388] = s; } + { static const char* s[] = { 0, "QString", 0 }; override_arg_types[389] = s; } + { static const char* s[] = { "bool", "QSqlRecord", 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, "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[] = { "QString", 0 }; override_arg_types[392] = s; } + { static const char* s[] = { "bool", "int", "QSqlRecord", 0 }; override_arg_types[393] = s; } + { static const char* s[] = { 0, "int", 0 }; override_arg_types[394] = s; } + { static const char* s[] = { 0, "EditStrategy", 0 }; override_arg_types[395] = s; } + { static const char* s[] = { 0, "QString", 0 }; override_arg_types[396] = s; } + { static const char* s[] = { 0, "int", "Qt::SortOrder", 0 }; override_arg_types[397] = s; } + { static const char* s[] = { "bool", "int", 0 }; override_arg_types[398] = s; } + { static const char* s[] = { "QString", "QVariant", "QLocale", 0 }; override_arg_types[399] = s; } + { static const char* s[] = { 0, "QStyleOptionViewItem*", "QModelIndex", 0 }; override_arg_types[400] = s; } + { static const char* s[] = { 0, "QString", 0 }; override_arg_types[401] = s; } + { static const char* s[] = { "QSize", "int", 0 }; override_arg_types[402] = s; } + { static const char* s[] = { 0, "int", 0 }; override_arg_types[403] = s; } + { static const char* s[] = { 0, 0 }; override_arg_types[404] = s; } + { static const char* s[] = { 0, "int", 0 }; override_arg_types[405] = s; } + { static const char* s[] = { "QSize", "int", 0 }; override_arg_types[406] = s; } + { static const char* s[] = { "bool", "int", "int", "QMimeData*", "Qt::DropAction", 0 }; override_arg_types[407] = s; } + { static const char* s[] = { "QMimeData*", "QList", 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, "QTextBlock", 0 }; override_arg_types[411] = s; } + { static const char* s[] = { "QTextObject*", "QTextFormat", 0 }; override_arg_types[412] = s; } + { static const char* s[] = { "qreal", "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[] = { 0, "int", 0 }; override_arg_types[415] = s; } + { static const char* s[] = { "QString", "const char*", "const char*", "const char*", "int", 0 }; override_arg_types[416] = s; } + { static const char* s[] = { "bool", "QTreeWidgetItem*", "int", "QMimeData*", "Qt::DropAction", 0 }; override_arg_types[417] = s; } + { static const char* s[] = { "QMimeData*", "QList", 0 }; override_arg_types[418] = s; } + { static const char* s[] = { "Qt::AspectRatioMode", 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[] = { "int", 0 }; override_arg_types[422] = s; } + { static const char* s[] = { "bool", 0 }; override_arg_types[423] = s; } + { static const char* s[] = { "int", 0 }; override_arg_types[424] = s; } + { static const char* s[] = { 0, "Qt::AspectRatioMode", 0 }; override_arg_types[425] = 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[427] = s; } + { static const char* s[] = { 0, "bool", 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[430] = s; } + { static const char* s[] = { "QWidget*", 0 }; override_arg_types[431] = s; } + { static const char* s[] = { 0, "QString", 0 }; override_arg_types[432] = s; } + { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[433] = s; } + { static const char* s[] = { "bool", "Extension", "ExtensionOption*", "ExtensionReturn*", 0 }; override_arg_types[434] = s; } + { static const char* s[] = { "bool", 0 }; override_arg_types[435] = s; } + { static const char* s[] = { "bool", "Extension", 0 }; override_arg_types[436] = s; } + { static const char* s[] = { 0, "WebAction", "bool", 0 }; override_arg_types[437] = s; } + { static const char* s[] = { "bool", "QWebFrame*", "QNetworkRequest", "NavigationType", 0 }; override_arg_types[438] = s; } + { static const char* s[] = { "QString", "QWebFrame*", "QString", 0 }; override_arg_types[439] = s; } + { static const char* s[] = { "QObject*", "QString", "QUrl", "QStringList", "QStringList", 0 }; override_arg_types[440] = s; } + { static const char* s[] = { "QWebPage*", "WebWindowType", 0 }; override_arg_types[441] = s; } + { static const char* s[] = { 0, "QWebFrame*", "QString", 0 }; override_arg_types[442] = s; } + { static const char* s[] = { "bool", "QWebFrame*", "QString", 0 }; override_arg_types[443] = s; } + { static const char* s[] = { 0, "QString", "int", "QString", 0 }; override_arg_types[444] = s; } + { static const char* s[] = { "bool", "QWebFrame*", "QString", "QString", "QString*", 0 }; override_arg_types[445] = s; } + { static const char* s[] = { "QString", "QUrl", 0 }; override_arg_types[446] = s; } + { static const char* s[] = { "QObject*", "QString", "QUrl", "QStringList", "QStringList", 0 }; override_arg_types[447] = s; } + { static const char* s[] = { "QList", 0 }; override_arg_types[448] = s; } + { static const char* s[] = { 0, 0 }; override_arg_types[449] = s; } + { static const char* s[] = { "QWebView*", "QWebPage::WebWindowType", 0 }; override_arg_types[450] = s; } + { static const char* s[] = { "QWidget*", "QWidget*", 0 }; override_arg_types[451] = s; } + { static const char* s[] = { 0, "QWidget*", 0 }; override_arg_types[452] = s; } + { static const char* s[] = { "int", 0 }; override_arg_types[453] = s; } + { static const char* s[] = { "bool", 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, "int", 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[] = { 0, 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[] = { "bool", 0 }; override_arg_types[460] = s; } + { static const char* s[] = { 0, "int", 0 }; override_arg_types[461] = s; } + { static const char* s[] = { "bool", "QGraphicsItem*", "Qt::ItemSelectionMode", 0 }; override_arg_types[462] = s; } + { static const char* s[] = { "bool", "QPainterPath", "Qt::ItemSelectionMode", 0 }; override_arg_types[463] = s; } + { static const char* s[] = { "bool", "QGraphicsItem*", "QEvent*", 0 }; override_arg_types[464] = s; } + { static const char* s[] = { 0, "int", "int", 0 }; override_arg_types[465] = s; } + { static const char* s[] = { 0, "int", "QString", 0 }; override_arg_types[466] = s; } + { static const char* s[] = { 0, "int", "int", "QString", 0 }; override_arg_types[467] = s; } + { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[468] = s; } + { static const char* s[] = { "QColor", 0 }; override_arg_types[469] = s; } + { static const char* s[] = { "QAccessibleInterface*", "int", 0 }; override_arg_types[470] = s; } + { static const char* s[] = { "QAccessibleInterface*", "int", "int", 0 }; override_arg_types[471] = s; } + { static const char* s[] = { "int", 0 }; override_arg_types[472] = s; } + { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[473] = s; } + { static const char* s[] = { "QColor", 0 }; override_arg_types[474] = s; } + { static const char* s[] = { "int", "QAccessibleInterface*", 0 }; override_arg_types[475] = s; } + { static const char* s[] = { "bool", 0 }; override_arg_types[476] = s; } + { static const char* s[] = { "QObject*", 0 }; override_arg_types[477] = s; } + { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[478] = s; } + { static const char* s[] = { "QRect", 0 }; override_arg_types[479] = s; } + { static const char* s[] = { "QAccessible::Role", 0 }; override_arg_types[480] = s; } + { static const char* s[] = { 0, "QAccessible::Text", "QString", 0 }; override_arg_types[481] = s; } + { static const char* s[] = { "QString", "QAccessible::Text", 0 }; override_arg_types[482] = s; } + { static const char* s[] = { "QWindow*", 0 }; override_arg_types[483] = s; } + { static const char* s[] = { 0, "int", "int", 0 }; override_arg_types[484] = s; } + { static const char* s[] = { "int", 0 }; override_arg_types[485] = s; } + { static const char* s[] = { "QRect", "int", 0 }; override_arg_types[486] = s; } + { static const char* s[] = { "int", 0 }; override_arg_types[487] = s; } + { static const char* s[] = { "int", "QPoint", 0 }; override_arg_types[488] = s; } + { static const char* s[] = { 0, "int", 0 }; override_arg_types[489] = s; } + { static const char* s[] = { 0, "int", "int", 0 }; override_arg_types[490] = s; } + { static const char* s[] = { "int", 0 }; override_arg_types[491] = s; } + { static const char* s[] = { 0, "int", 0 }; override_arg_types[492] = s; } + { static const char* s[] = { 0, "int", "int", "int", 0 }; override_arg_types[493] = s; } + { static const char* s[] = { "QString", "int", "int", 0 }; override_arg_types[494] = s; } { static const char* s[] = { "QVariant", 0 }; override_arg_types[495] = 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[] = { "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[] = { "QVariant", 0 }; override_arg_types[498] = s; } + { static const char* s[] = { 0, "QVariant", 0 }; override_arg_types[499] = s; } + { static const char* s[] = { "QStringList", 0 }; override_arg_types[500] = s; } + { static const char* s[] = { 0, "QString", 0 }; override_arg_types[501] = s; } + { static const char* s[] = { "QStringList", "QString", 0 }; override_arg_types[502] = s; } + { static const char* s[] = { "QIcon", "IconType", 0 }; override_arg_types[503] = s; } + { static const char* s[] = { "QIcon", "QFileInfo", 0 }; override_arg_types[504] = s; } + { static const char* s[] = { "QString", "QFileInfo", 0 }; override_arg_types[505] = s; } + { static const char* s[] = { 0, "int", 0 }; override_arg_types[506] = s; } + { static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[507] = s; } + { static const char* s[] = { "QByteArray", 0 }; override_arg_types[508] = s; } + { static const char* s[] = { "QWidget*", "int", "QWidget*", 0 }; override_arg_types[509] = s; } + { static const char* s[] = { "QByteArray", "int", 0 }; override_arg_types[510] = s; } + { static const char* s[] = { "QSpacerItem*", 0 }; override_arg_types[511] = s; } + { static const char* s[] = { "QWidget*", 0 }; override_arg_types[512] = s; } + { static const char* s[] = { "QListWidgetItem*", 0 }; override_arg_types[513] = s; } + { static const char* s[] = { "QVariant", "int", 0 }; override_arg_types[514] = s; } + { static const char* s[] = { 0, "int", "QVariant", 0 }; override_arg_types[515] = s; } + { static const char* s[] = { "QList", "QNetworkProxyQuery", 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[518] = s; } + { static const char* s[] = { 0, "const char*", "uint", 0 }; override_arg_types[519] = s; } + { static const char* s[] = { 0, "PageSize", 0 }; override_arg_types[520] = s; } + { static const char* s[] = { 0, "QSizeF", 0 }; override_arg_types[521] = s; } + { static const char* s[] = { "QUrl", "QUrl", "DataType", 0 }; override_arg_types[522] = s; } + { static const char* s[] = { "Flags", 0 }; override_arg_types[523] = s; } + { static const char* s[] = { "ImageType", 0 }; override_arg_types[524] = s; } + { static const char* s[] = { 0, "int", 0 }; override_arg_types[525] = s; } + { static const char* s[] = { 0, "QObject*", 0 }; override_arg_types[526] = s; } + { static const char* s[] = { 0, "Status", 0 }; override_arg_types[527] = s; } + { static const char* s[] = { "QNetworkAccessManager*", "QObject*", 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[] = { 0, 0 }; override_arg_types[530] = s; } + { static const char* s[] = { 0, "QQmlProperty", 0 }; override_arg_types[531] = s; } + { static const char* s[] = { "QQuickImageResponse*", "QString", "QSize", 0 }; override_arg_types[532] = s; } + { static const char* s[] = { "QImage", "QString", "QSize*", "QSize", 0 }; override_arg_types[533] = s; } + { static const char* s[] = { "QPixmap", "QString", "QSize*", "QSize", 0 }; override_arg_types[534] = s; } + { static const char* s[] = { "QQuickTextureFactory*", "QString", "QSize*", "QSize", 0 }; override_arg_types[535] = s; } + { static const char* s[] = { 0, 0 }; override_arg_types[536] = s; } + { static const char* s[] = { "bool", 0 }; override_arg_types[537] = s; } + { static const char* s[] = { 0, 0 }; override_arg_types[538] = s; } + { static const char* s[] = { "int", "QSGMaterial*", 0 }; override_arg_types[539] = s; } + { static const char* s[] = { "QSGMaterialShader*", 0 }; override_arg_types[540] = s; } + { static const char* s[] = { 0, "int", "QVariant", "QSql::ParamType", 0 }; override_arg_types[541] = s; } + { static const char* s[] = { 0, "QString", "QVariant", "QSql::ParamType", 0 }; override_arg_types[542] = s; } + { static const char* s[] = { "bool", "int", 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", 0 }; override_arg_types[547] = s; } + { static const char* s[] = { "bool", "int", 0 }; override_arg_types[548] = s; } + { static const char* s[] = { "QVariant", 0 }; override_arg_types[549] = s; } + { static const char* s[] = { "int", 0 }; override_arg_types[550] = s; } + { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[551] = s; } + { static const char* s[] = { "QSqlRecord", 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[] = { "bool", "QString", 0 }; override_arg_types[554] = s; } + { static const char* s[] = { 0, "bool", 0 }; override_arg_types[555] = s; } + { static const char* s[] = { 0, "int", 0 }; override_arg_types[556] = s; } + { static const char* s[] = { 0, "bool", 0 }; override_arg_types[557] = s; } + { static const char* s[] = { 0, "QString", 0 }; override_arg_types[558] = s; } + { static const char* s[] = { 0, "bool", 0 }; override_arg_types[559] = s; } + { static const char* s[] = { 0, "QVariant", "int", 0 }; override_arg_types[560] = s; } + { static const char* s[] = { "QList", 0 }; override_arg_types[561] = s; } + { static const char* s[] = { "int", 0 }; override_arg_types[562] = s; } + { static const char* s[] = { "QByteArray", 0 }; override_arg_types[563] = s; } + { static const char* s[] = { "QByteArray", "QChar*", "int", "ConverterState*", 0 }; override_arg_types[564] = s; } + { static const char* s[] = { "QString", "const char*", "int", "ConverterState*", 0 }; override_arg_types[565] = s; } + { static const char* s[] = { "QVariant", "int", "int", 0 }; override_arg_types[566] = s; } + { static const char* s[] = { 0, "int", "int", "QVariant", 0 }; override_arg_types[567] = s; } + { static const char* s[] = { "int", 0 }; override_arg_types[568] = s; } + { static const char* s[] = { "bool", "QUndoCommand*", 0 }; override_arg_types[569] = s; } { static const char* s[] = { 0, 0 }; override_arg_types[570] = s; } + { static const char* s[] = { 0, 0 }; override_arg_types[571] = s; } qNames = q_names.keys(); nNames = n_names.keys(); }} diff --git a/src/gen/_main_n_classes.h b/src/gen/_main_n_classes.h index 3f48468..282f57a 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, 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); }} + void advance(int x1) { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 462, 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, 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 collidesWithItem(const QGraphicsItem* 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::collidesWithItem(x1, x2); } return ret; } + bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { 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::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, 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; } + bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 465); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 465, 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, 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); }} + void deleteText(int x1, int 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 insertText(int x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 467); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 467, args, id); }} + void replaceText(int x1, int x2, const QString& x3) { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 468, 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, 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; } + QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 469); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 469, 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, 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; } + QColor backgroundColor() const { quint64 id = LObjects::override_id(unique, 470); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 470, 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, 471); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 471, args, id).value(); } return ret; } + QAccessibleInterface* childAt(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 472, args, id).value(); } return ret; } + int childCount() const { quint64 id = LObjects::override_id(unique, 473); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 473, 0, id).toInt(); } return ret; } + QAccessibleInterface* focusChild() const { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 474, 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, 475); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 475, 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, 476); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 476, args, id).toInt(); } return ret; } + bool isValid() const { quint64 id = LObjects::override_id(unique, 477); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 477, 0, id).toBool(); } return ret; } + QObject* object() const { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 478, 0, id).value(); } return ret; } + QAccessibleInterface* parent() const { quint64 id = LObjects::override_id(unique, 479); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 479, 0, id).value(); } return ret; } + QRect rect() const { quint64 id = LObjects::override_id(unique, 480); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 480, 0, id).value(); } return ret; } + QAccessible::Role role() const { quint64 id = LObjects::override_id(unique, 481); void* fun = LObjects::overrideFun(id); QAccessible::Role ret = (QAccessible::Role)0; if(fun && (LObjects::calling != id)) { ret = (QAccessible::Role)callOverrideFun(fun, 481, 0, id).toInt(); } return ret; } + void setText(QAccessible::Text x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 482); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 482, args, id); }} + QString text(QAccessible::Text x1) const { quint64 id = LObjects::override_id(unique, 483); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 483, args, id).value(); } return ret; } + QWindow* window() const { quint64 id = LObjects::override_id(unique, 484); void* fun = LObjects::overrideFun(id); QWindow* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWindow*)callOverrideFun(fun, 484, 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, 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; } + QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 469); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 469, 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, 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; } + QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 469); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 469, 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, 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; } + void addSelection(int x1, int x2) { quint64 id = LObjects::override_id(unique, 485); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 485, args, id); }} + int characterCount() const { quint64 id = LObjects::override_id(unique, 486); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 486, 0, id).toInt(); } return ret; } + QRect characterRect(int x1) const { quint64 id = LObjects::override_id(unique, 487); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 487, args, id).value(); } return ret; } + int cursorPosition() const { quint64 id = LObjects::override_id(unique, 488); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 488, 0, id).toInt(); } return ret; } + int offsetAtPoint(const QPoint& x1) const { quint64 id = LObjects::override_id(unique, 489); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 489, args, id).toInt(); } return ret; } + void removeSelection(int x1) { quint64 id = LObjects::override_id(unique, 490); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 490, args, id); }} + void scrollToSubstring(int x1, int x2) { quint64 id = LObjects::override_id(unique, 491); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 491, args, id); }} + int selectionCount() const { quint64 id = LObjects::override_id(unique, 492); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 492, 0, id).toInt(); } return ret; } + void setCursorPosition(int x1) { quint64 id = LObjects::override_id(unique, 493); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 493, args, id); }} + void setSelection(int x1, int x2, int x3) { quint64 id = LObjects::override_id(unique, 494); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 494, args, id); }} + QString text(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 495); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 495, 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, 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; } + QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 469); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 469, 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, 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); }} + QVariant currentValue() 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 maximumValue() 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 minimumStepSize() 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; } + QVariant minimumValue() const { quint64 id = LObjects::override_id(unique, 499); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 499, 0, id).value(); } return ret; } + void setCurrentValue(const QVariant& x1) { quint64 id = LObjects::override_id(unique, 500); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 500, 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, 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); }} + QStringList actionNames() const { quint64 id = LObjects::override_id(unique, 501); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 501, 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, 470); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 470, 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, 471); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 471, 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, 473); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 473, 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, 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)) { QAccessibleWidget::doAction(x1); }} + QAccessibleInterface* focusChild() const { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 474, 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, 475); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 475, 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, 476); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 476, 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, 477); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 477, 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, 503); void* fun = LObjects::overrideFun(id); QStringList 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 = QAccessibleWidget::keyBindingsForAction(x1); } return ret; } + QAccessibleInterface* parent() const { quint64 id = LObjects::override_id(unique, 479); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 479, 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, 480); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 480, 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, 481); void* fun = LObjects::overrideFun(id); QAccessible::Role ret = (QAccessible::Role)0; if(fun && (LObjects::calling != id)) { ret = (QAccessible::Role)callOverrideFun(fun, 481, 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, 483); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 483, 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, 484); void* fun = LObjects::overrideFun(id); QWindow* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWindow*)callOverrideFun(fun, 484, 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, 472); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 472, 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, 478); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 478, 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, 482); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 482, 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, 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; } + QIcon icon(IconType x1) const { quint64 id = LObjects::override_id(unique, 504); void* fun = LObjects::overrideFun(id); QIcon ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 504, 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, 506); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 506, 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, 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 removeAt(int 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::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, 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 widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 508); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 508, 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, 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 removeAt(int 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::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, 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 widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 508); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 508, 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, 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); }} + void advance(int x1) { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 462, 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, 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 collidesWithItem(const QGraphicsItem* 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::collidesWithItem(x1, x2); } return ret; } + bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { 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::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, 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; } + bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 465); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 465, 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, 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; } + void advance(int x1) { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 462, 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, 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::collidesWithItem(x1, x2); } return ret; } + bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { 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::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, 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; } + bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 465); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 465, 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, 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 removeAt(int 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); }} + void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 508); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 508, 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, 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 advance(int x1) { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 462, 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, 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::collidesWithItem(x1, x2); } return ret; } + bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { 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::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, 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; } + bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 465); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 465, 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, 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 removeAt(int 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::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, 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 widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 508); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 508, 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, 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 advance(int x1) { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 462, 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, 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::collidesWithItem(x1, x2); } return ret; } + bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { 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::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, 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; } + bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 465); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 465, 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, 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; } + QWidget* createWidget(QWidget* x1) const { quint64 id = LObjects::override_id(unique, 452); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWidget*)callOverrideFun(fun, 452, args, id).value(); } return ret; } + QByteArray valuePropertyName() const { quint64 id = LObjects::override_id(unique, 509); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 509, 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, 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; } + QWidget* createEditor(int x1, QWidget* x2) const { quint64 id = LObjects::override_id(unique, 510); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QWidget*)callOverrideFun(fun, 510, 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, 511); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 511, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::valuePropertyName(x1); } return ret; } }; class LItemSelectionRange : public QItemSelectionRange { @@ -1244,8 +1244,8 @@ 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, 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; } + QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 512); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 512, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::spacerItem(); } return ret; } + QWidget* widget() { quint64 id = LObjects::override_id(unique, 513); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 513, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::widget(); } return ret; } }; class LLibraryInfo : public QLibraryInfo { @@ -1278,9 +1278,9 @@ public: static NumList overrideIds; uint unique; - 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); }} + QListWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 514); void* fun = LObjects::overrideFun(id); QListWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QListWidgetItem*)callOverrideFun(fun, 514, 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, 515); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 515, 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, 516); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 516, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QListWidgetItem::setData(x1, x2); }} }; class LLocale : public QLocale { @@ -1420,8 +1420,8 @@ public: static NumList overrideIds; uint unique; - 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; } + void ensureActiveTarget() { 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)) { QOpenGLPaintDevice::ensureActiveTarget(); }} + int metric(QPaintDevice::PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 519); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 519, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QOpenGLPaintDevice::metric(x1); } return ret; } }; class LOpenGLTexture : public QOpenGLTexture { @@ -1550,7 +1550,7 @@ public: static NumList overrideIds; uint unique; - 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); }} + void setData(const char* x1, uint x2) { quint64 id = LObjects::override_id(unique, 520); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 520, 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; } }; @@ -1586,8 +1586,8 @@ public: 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); }} + void setPageSize(PageSize 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::setPageSize(x1); }} + void setPageSizeMM(const QSizeF& x1) { quint64 id = LObjects::override_id(unique, 522); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 522, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSizeMM(x1); }} }; class LPrinterInfo : public QPrinterInfo { @@ -1688,7 +1688,7 @@ public: static NumList overrideIds; uint unique; - void run() { quint64 id = LObjects::override_id(unique, 536); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 536, 0, id); }} + void run() { quint64 id = LObjects::override_id(unique, 537); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 537, 0, id); }} }; class LScrollEvent : public QScrollEvent { @@ -1761,14 +1761,14 @@ 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, 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; } + QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 512); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 512, 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, 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; } + QWidget* widget() { quint64 id = LObjects::override_id(unique, 513); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 513, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::widget(); } return ret; } }; class LStandardItem : public QStandardItem { @@ -1782,9 +1782,9 @@ public: static NumList overrideIds; uint unique; - 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); }} + QStandardItem* clone() const { quint64 id = LObjects::override_id(unique, 514); void* fun = LObjects::overrideFun(id); QStandardItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QStandardItem*)callOverrideFun(fun, 514, 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, 515); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 515, 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, 561); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 561, 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; } }; @@ -1860,9 +1860,9 @@ public: static NumList overrideIds; uint unique; - 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); }} + QTableWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 514); void* fun = LObjects::overrideFun(id); QTableWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTableWidgetItem*)callOverrideFun(fun, 514, 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, 515); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 515, 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, 516); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 516, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTableWidgetItem::setData(x1, x2); }} }; class LTableWidgetSelectionRange : public QTableWidgetSelectionRange { @@ -1939,11 +1939,11 @@ public: static NumList overrideIds; uint unique; - 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; } + QList aliases() const { quint64 id = LObjects::override_id(unique, 562); void* fun = LObjects::overrideFun(id); QList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 562, 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, 563); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 563, 0, id).toInt(); } return ret; } + QByteArray name() const { quint64 id = LObjects::override_id(unique, 564); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 564, 0, id).value(); } return ret; } + QByteArray convertFromUnicode(const QChar* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 565); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 565, args, id).value(); } return ret; } + QString convertToUnicode(const char* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 566); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 566, args, id).value(); } return ret; } }; class LTextCursor : public QTextCursor { @@ -2204,9 +2204,9 @@ public: static NumList overrideIds; uint unique; - 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); }} + QTreeWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 514); void* fun = LObjects::overrideFun(id); QTreeWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTreeWidgetItem*)callOverrideFun(fun, 514, 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, 567); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 567, 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, 568); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 568, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTreeWidgetItem::setData(x1, x2, x3); }} }; class LUndoCommand : public QUndoCommand { @@ -2218,10 +2218,10 @@ public: static NumList overrideIds; uint unique; - 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(); }} + int id() const { quint64 id = LObjects::override_id(unique, 569); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 569, 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, 570); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 570, 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, 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::redo(); }} + void undo() { quint64 id = LObjects::override_id(unique, 572); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 572, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QUndoCommand::undo(); }} }; class LUrl : public QUrl { @@ -2387,11 +2387,11 @@ 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, 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; } + QWidget* widget() { quint64 id = LObjects::override_id(unique, 513); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 513, 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, 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; } + QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 512); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 512, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::spacerItem(); } return ret; } }; class LWindowStateChangeEvent : public QWindowStateChangeEvent { diff --git a/src/gen/_main_q_classes.h b/src/gen/_main_q_classes.h index 734c5f0..e20b2b0 100644 --- a/src/gen/_main_q_classes.h +++ b/src/gen/_main_q_classes.h @@ -4911,9 +4911,9 @@ public: static NumList overrideIds; uint unique; - 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; } + bool filterAcceptsColumn(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::filterAcceptsColumn(x1, x2); } return ret; } + bool filterAcceptsRow(int 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::filterAcceptsRow(x1, x2); } return ret; } + bool lessThan(const QModelIndex& x1, const QModelIndex& x2) const { quint64 id = LObjects::override_id(unique, 360); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 360, 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; } @@ -4965,7 +4965,7 @@ public: static NumList overrideIds; uint unique; - 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; } + QString textFromValue(int x1) const { quint64 id = LObjects::override_id(unique, 361); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 361, 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; } @@ -5021,7 +5021,7 @@ public: static NumList overrideIds; uint unique; - 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 drawContents(QPainter* x1) { quint64 id = LObjects::override_id(unique, 362); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 362, 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; } @@ -5438,8 +5438,8 @@ public: static NumList overrideIds; uint unique; - 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); }} + QString displayText(const QVariant& x1, const QLocale& x2) const { quint64 id = LObjects::override_id(unique, 400); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 400, 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, 401); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 401, 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); }} @@ -5479,7 +5479,7 @@ public: static NumList overrideIds; uint unique; - 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); }} + void highlightBlock(const QString& x1) { quint64 id = LObjects::override_id(unique, 402); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 402, 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); }} @@ -5511,11 +5511,11 @@ public: static NumList overrideIds; uint unique; - 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 minimumTabSizeHint(int x1) const { quint64 id = LObjects::override_id(unique, 403); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 403, 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, 404); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 404, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabBar::tabInserted(x1); }} + void tabLayoutChange() { quint64 id = LObjects::override_id(unique, 405); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 405, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabBar::tabLayoutChange(); }} + void tabRemoved(int x1) { quint64 id = LObjects::override_id(unique, 406); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 406, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabBar::tabRemoved(x1); }} + QSize tabSizeHint(int x1) const { quint64 id = LObjects::override_id(unique, 407); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 407, 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); }} @@ -5565,8 +5565,8 @@ public: static NumList overrideIds; uint unique; - 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); }} + void tabInserted(int x1) { quint64 id = LObjects::override_id(unique, 404); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 404, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTabWidget::tabInserted(x1); }} + void tabRemoved(int x1) { quint64 id = LObjects::override_id(unique, 406); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 406, 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; } @@ -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, 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; } + bool dropMimeData(int x1, int x2, const QMimeData* x3, Qt::DropAction x4) { 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, &x3, &x4 }; ret = callOverrideFun(fun, 408, 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, 409); void* fun = LObjects::overrideFun(id); QMimeData* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QMimeData*)callOverrideFun(fun, 409, 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); }} @@ -5799,9 +5799,9 @@ public: static NumList overrideIds; uint unique; - 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); }} + void blockFormatChanged(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::blockFormatChanged(x1); }} + void blockInserted(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::blockInserted(x1); }} + void blockRemoved(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 412); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 412, 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); }} @@ -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, 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; } + QTextObject* createObject(const QTextFormat& x1) { quint64 id = LObjects::override_id(unique, 413); void* fun = LObjects::overrideFun(id); QTextObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QTextObject*)callOverrideFun(fun, 413, 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); }} @@ -5965,9 +5965,9 @@ public: static NumList overrideIds; uint unique; - 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); }} + void blockFormatChanged(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::blockFormatChanged(x1); }} + void blockInserted(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::blockInserted(x1); }} + void blockRemoved(const QTextBlock& x1) { quint64 id = LObjects::override_id(unique, 412); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 412, 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); }} @@ -6068,7 +6068,7 @@ public: static NumList overrideIds; uint unique; - 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; } + qreal valueForTime(int x1) const { quint64 id = LObjects::override_id(unique, 414); void* fun = LObjects::overrideFun(id); qreal ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 414, 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); }} @@ -6149,8 +6149,8 @@ public: static NumList overrideIds; uint unique; - 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 itemInserted(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::itemInserted(x1); }} + void itemRemoved(int x1) { quint64 id = LObjects::override_id(unique, 416); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 416, 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; } @@ -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, 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; } + QString translate(const char* x1, const char* x2, const char* x3 = 0, int x4 = -1) const { quint64 id = LObjects::override_id(unique, 417); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 417, 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); }} @@ -6352,8 +6352,8 @@ public: static NumList overrideIds; uint unique; - 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; } + bool dropMimeData(QTreeWidgetItem* x1, int x2, const QMimeData* x3, Qt::DropAction x4) { quint64 id = LObjects::override_id(unique, 418); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 418, 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, 419); void* fun = LObjects::overrideFun(id); QMimeData* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QMimeData*)callOverrideFun(fun, 419, 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); }} @@ -6669,8 +6669,8 @@ public: static NumList overrideIds; uint unique; - 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); }} + QWidget* createWidget(QWidget* x1) { quint64 id = LObjects::override_id(unique, 452); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWidget*)callOverrideFun(fun, 452, 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, 453); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 453, 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); }} @@ -6722,10 +6722,10 @@ public: static NumList overrideIds; uint unique; - 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); }} + int nextId() const { quint64 id = LObjects::override_id(unique, 454); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 454, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizard::nextId(); } return ret; } + bool validateCurrentPage() { quint64 id = LObjects::override_id(unique, 455); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 455, 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, 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::cleanupPage(x1); }} + void initializePage(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); } 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); }} @@ -6777,11 +6777,11 @@ public: static NumList overrideIds; uint unique; - 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; } + void cleanupPage() { 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::cleanupPage(); }} + void initializePage() { quint64 id = LObjects::override_id(unique, 459); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 459, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizardPage::initializePage(); }} + bool isComplete() const { 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::isComplete(); } return ret; } + int nextId() const { quint64 id = LObjects::override_id(unique, 454); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 454, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::nextId(); } return ret; } + bool validatePage() { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 461, 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/help/_q_classes.h b/src/gen/help/_q_classes.h index 49fe6be..fcd271a 100644 --- a/src/gen/help/_q_classes.h +++ b/src/gen/help/_q_classes.h @@ -140,6 +140,7 @@ class LHelpEngineCore : public QHelpEngineCore { Q_OBJECT friend class Q97; public: + LHelpEngineCore(uint u, const QString& x1, QObject* x2 = 0) : QHelpEngineCore(x1, x2), unique(u) {} static NumList overrideIds; uint unique; @@ -231,6 +232,7 @@ class LHelpSearchEngine : public QHelpSearchEngine { Q_OBJECT friend class Q100; public: + LHelpSearchEngine(uint u, QHelpEngineCore* x1, QObject* x2 = 0) : QHelpSearchEngine(x1, x2), unique(u) {} static NumList overrideIds; uint unique; diff --git a/src/gen/help/_q_methods.h b/src/gen/help/_q_methods.h index 6c6d741..57a8070 100644 --- a/src/gen/help/_q_methods.h +++ b/src/gen/help/_q_methods.h @@ -27,6 +27,7 @@ public: class Q97 : public Q142 { // QHelpEngineCore Q_OBJECT public: + Q_INVOKABLE void* C(uint u, const QString& x1, QObject* x2 = 0) { return new LHelpEngineCore(u, x1, x2); } Q_INVOKABLE bool MaddCustomFilter(QHelpEngineCore* o, const QString& x1, const QStringList& x2) { return o->addCustomFilter(x1, x2); } Q_INVOKABLE bool MautoSaveFilter(QHelpEngineCore* o) const { return o->autoSaveFilter(); } Q_INVOKABLE QString McollectionFile(QHelpEngineCore* o) const { return o->collectionFile(); } @@ -59,6 +60,7 @@ public: class Q100 : public Q142 { // QHelpSearchEngine Q_OBJECT public: + Q_INVOKABLE void* C(uint u, QHelpEngineCore* x1, QObject* x2 = 0) { return new LHelpSearchEngine(u, x1, x2); } Q_INVOKABLE int MhitCount(QHelpSearchEngine* o) const { return o->hitCount(); } Q_INVOKABLE QList Mquery(QHelpSearchEngine* o) const { return o->query(); } Q_INVOKABLE QHelpSearchQueryWidget* MqueryWidget(QHelpSearchEngine* o) { return o->queryWidget(); } diff --git a/src/gen/multimedia/_ini.cpp b/src/gen/multimedia/_ini.cpp index ed6ec5d..7ed5d19 100644 --- a/src/gen/multimedia/_ini.cpp +++ b/src/gen/multimedia/_ini.cpp @@ -19,7 +19,7 @@ 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() << 419 << 420 << 421 << 422 << 423 << 424 << 425 << 426 << 427 << 428 << 429 << 430 << 431; +NumList LVideoWidgetControl::overrideIds = NumList() << 420 << 421 << 422 << 423 << 424 << 425 << 426 << 427 << 428 << 429 << 430 << 431 << 432; NumList LAudioDeviceInfo::overrideIds = NumList(); NumList LAudioEncoderSettings::overrideIds = NumList(); NumList LAudioFormat::overrideIds = NumList(); diff --git a/src/gen/multimedia/_q_classes.h b/src/gen/multimedia/_q_classes.h index fb353bb..0738f29 100644 --- a/src/gen/multimedia/_q_classes.h +++ b/src/gen/multimedia/_q_classes.h @@ -311,19 +311,19 @@ public: static NumList overrideIds; uint unique; - 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; } + Qt::AspectRatioMode aspectRatioMode() const { quint64 id = LObjects::override_id(unique, 420); void* fun = LObjects::overrideFun(id); Qt::AspectRatioMode ret = (Qt::AspectRatioMode)0; if(fun && (LObjects::calling != id)) { ret = (Qt::AspectRatioMode)callOverrideFun(fun, 420, 0, id).toInt(); } return ret; } + int brightness() 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 contrast() 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; } + int hue() const { quint64 id = LObjects::override_id(unique, 423); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 423, 0, id).toInt(); } return ret; } + bool isFullScreen() 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(); } return ret; } + int saturation() const { quint64 id = LObjects::override_id(unique, 425); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 425, 0, id).toInt(); } return ret; } + void setAspectRatioMode(Qt::AspectRatioMode 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 setBrightness(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 setContrast(int 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 setFullScreen(bool 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 setHue(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); }} + void setSaturation(int x1) { quint64 id = LObjects::override_id(unique, 431); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 431, args, id); }} + QWidget* videoWidget() { quint64 id = LObjects::override_id(unique, 432); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 432, 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); }} diff --git a/src/gen/network/_ini.cpp b/src/gen/network/_ini.cpp index a29b6d9..81fe11c 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() << 516; +NumList LNetworkProxyFactory::overrideIds = NumList() << 517; NumList LNetworkProxyQuery::overrideIds = NumList(); NumList LNetworkRequest::overrideIds = NumList(); NumList LSslCertificate::overrideIds = NumList(); diff --git a/src/gen/network/_n_classes.h b/src/gen/network/_n_classes.h index 98d5745..ae36564 100644 --- a/src/gen/network/_n_classes.h +++ b/src/gen/network/_n_classes.h @@ -123,7 +123,7 @@ public: static NumList overrideIds; uint unique; - 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; } + QList queryProxy(const QNetworkProxyQuery& x1 = QNetworkProxyQuery()) { quint64 id = LObjects::override_id(unique, 517); void* fun = LObjects::overrideFun(id); QList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 517, args, id).value >(); } return ret; } }; class LNetworkProxyQuery : public QNetworkProxyQuery { diff --git a/src/gen/quick/_ini.cpp b/src/gen/quick/_ini.cpp index 5e6ab36..e2873d7 100644 --- a/src/gen/quick/_ini.cpp +++ b/src/gen/quick/_ini.cpp @@ -12,46 +12,46 @@ 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 LQmlExtensionPlugin::overrideIds = NumList() << 325 << 326; 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 LQmlPropertyMap::overrideIds = NumList() << 327; +NumList LQuickImageResponse::overrideIds = NumList() << 328 << 329; +NumList LQuickItem::overrideIds = NumList() << 267 << 23 << 330 << 331 << 332 << 29 << 30 << 31 << 32 << 13 << 14 << 333 << 334 << 335 << 336 << 36 << 337 << 15 << 16 << 38 << 17 << 18 << 19 << 338 << 339 << 310 << 340 << 341 << 342 << 43; NumList LQuickItemGrabResult::overrideIds = NumList(); -NumList LQuickPaintedItem::overrideIds = NumList() << 342 << 329 << 330 << 338 << 340; +NumList LQuickPaintedItem::overrideIds = NumList() << 343 << 330 << 331 << 339 << 341; NumList LQuickRenderControl::overrideIds = NumList(); NumList LQuickTextDocument::overrideIds = NumList(); -NumList LQuickTextureFactory::overrideIds = NumList() << 343 << 344 << 345 << 346; +NumList LQuickTextureFactory::overrideIds = NumList() << 344 << 345 << 346 << 347; 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 LSGAbstractRenderer::overrideIds = NumList() << 348; +NumList LSGDynamicTexture::overrideIds = NumList() << 349; NumList LSGEngine::overrideIds = NumList(); -NumList LSGTexture::overrideIds = NumList() << 349 << 350 << 351 << 352 << 353 << 354 << 355 << 346; -NumList LSGTextureProvider::overrideIds = NumList() << 356; +NumList LSGTexture::overrideIds = NumList() << 350 << 351 << 352 << 353 << 354 << 355 << 356 << 347; +NumList LSGTextureProvider::overrideIds = NumList() << 357; NumList LJSValue::overrideIds = NumList(); NumList LJSValueIterator::overrideIds = NumList(); -NumList LQmlAbstractUrlInterceptor::overrideIds = NumList() << 522; +NumList LQmlAbstractUrlInterceptor::overrideIds = NumList() << 523; 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 LQmlImageProviderBase::overrideIds = NumList() << 524 << 525; +NumList LQmlIncubationController::overrideIds = NumList() << 526; +NumList LQmlIncubator::overrideIds = NumList() << 527 << 528; +NumList LQmlNetworkAccessManagerFactory::overrideIds = NumList() << 529; +NumList LQmlParserStatus::overrideIds = NumList() << 530 << 531; NumList LQmlProperty::overrideIds = NumList(); -NumList LQmlPropertyValueSource::overrideIds = NumList() << 531; +NumList LQmlPropertyValueSource::overrideIds = NumList() << 532; NumList LQmlScriptString::overrideIds = NumList(); -NumList LQuickAsyncImageProvider::overrideIds = NumList() << 532; -NumList LQuickImageProvider::overrideIds = NumList() << 533 << 534 << 535; +NumList LQuickAsyncImageProvider::overrideIds = NumList() << 533; +NumList LQuickImageProvider::overrideIds = NumList() << 534 << 535 << 536; 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 LSGMaterial::overrideIds = NumList() << 540 << 541 << 233; NumList LSGMaterialType::overrideIds = NumList(); -NumList LSGNode::overrideIds = NumList() << 537 << 538; +NumList LSGNode::overrideIds = NumList() << 538 << 539; NumList LSGOpacityNode::overrideIds = NumList(); NumList LSGOpaqueTextureMaterial::overrideIds = NumList(); NumList LSGSimpleRectNode::overrideIds = NumList(); diff --git a/src/gen/quick/_n_classes.h b/src/gen/quick/_n_classes.h index a45ac58..9ab0353 100644 --- a/src/gen/quick/_n_classes.h +++ b/src/gen/quick/_n_classes.h @@ -45,7 +45,7 @@ public: 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; } + QUrl intercept(const QUrl& x1, DataType x2) { quint64 id = LObjects::override_id(unique, 523); void* fun = LObjects::overrideFun(id); QUrl ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 523, args, id).value(); } return ret; } }; class LQmlError : public QQmlError { @@ -65,8 +65,8 @@ 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; } + Flags flags() const { quint64 id = LObjects::override_id(unique, 524); void* fun = LObjects::overrideFun(id); Flags ret = (Flags)0; if(fun && (LObjects::calling != id)) { ret = (Flags)callOverrideFun(fun, 524, 0, id).toInt(); } return ret; } + ImageType imageType() const { quint64 id = LObjects::override_id(unique, 525); void* fun = LObjects::overrideFun(id); ImageType ret = (ImageType)0; if(fun && (LObjects::calling != id)) { ret = (ImageType)callOverrideFun(fun, 525, 0, id).toInt(); } return ret; } }; class LQmlIncubationController : public QQmlIncubationController { @@ -77,7 +77,7 @@ public: 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); }} + void incubatingObjectCountChanged(int 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)) { QQmlIncubationController::incubatingObjectCountChanged(x1); }} }; class LQmlIncubator : public QQmlIncubator { @@ -88,8 +88,8 @@ public: 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); }} + void setInitialState(QObject* 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::setInitialState(x1); }} + void statusChanged(Status x1) { quint64 id = LObjects::override_id(unique, 528); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 528, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQmlIncubator::statusChanged(x1); }} }; class LQmlNetworkAccessManagerFactory : public QQmlNetworkAccessManagerFactory { @@ -99,7 +99,7 @@ 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; } + QNetworkAccessManager* create(QObject* x1) { quint64 id = LObjects::override_id(unique, 529); void* fun = LObjects::overrideFun(id); QNetworkAccessManager* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QNetworkAccessManager*)callOverrideFun(fun, 529, args, id).value(); } return ret; } }; class LQmlParserStatus : public QQmlParserStatus { @@ -109,8 +109,8 @@ 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); }} + void classBegin() { quint64 id = LObjects::override_id(unique, 530); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 530, 0, id); }} + void componentComplete() { quint64 id = LObjects::override_id(unique, 531); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 531, 0, id); }} }; class LQmlProperty : public QQmlProperty { @@ -119,8 +119,10 @@ 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, QQmlEngine* 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, QObject* x1, const QString& x2, QQmlEngine* x3) : QQmlProperty(x1, x2, x3), unique(u) {} LQmlProperty(uint u, const QQmlProperty& x1) : QQmlProperty(x1), unique(u) {} static NumList overrideIds; @@ -135,7 +137,7 @@ public: 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); }} + void setTarget(const QQmlProperty& x1) { quint64 id = LObjects::override_id(unique, 532); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 532, args, id); }} }; class LQmlScriptString : public QQmlScriptString { @@ -156,10 +158,10 @@ public: 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; } + QQuickImageResponse* requestImageResponse(const QString& x1, const QSize& x2) { quint64 id = LObjects::override_id(unique, 533); void* fun = LObjects::overrideFun(id); QQuickImageResponse* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QQuickImageResponse*)callOverrideFun(fun, 533, args, id).value(); } return ret; } + QImage requestImage(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 534); void* fun = LObjects::overrideFun(id); QImage 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::requestImage(x1, x2, x3); } return ret; } + QPixmap requestPixmap(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 535); void* fun = LObjects::overrideFun(id); QPixmap ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 535, 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, 536); void* fun = LObjects::overrideFun(id); QQuickTextureFactory* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = (QQuickTextureFactory*)callOverrideFun(fun, 536, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickAsyncImageProvider::requestTexture(x1, x2, x3); } return ret; } }; class LQuickImageProvider : public QQuickImageProvider { @@ -170,11 +172,11 @@ public: 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; } + QImage requestImage(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 534); void* fun = LObjects::overrideFun(id); QImage 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::requestImage(x1, x2, x3); } return ret; } + QPixmap requestPixmap(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 535); void* fun = LObjects::overrideFun(id); QPixmap ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 535, 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, 536); void* fun = LObjects::overrideFun(id); QQuickTextureFactory* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = (QQuickTextureFactory*)callOverrideFun(fun, 536, 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, 524); void* fun = LObjects::overrideFun(id); Flags ret = (Flags)0; if(fun && (LObjects::calling != id)) { ret = (Flags)callOverrideFun(fun, 524, 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, 525); void* fun = LObjects::overrideFun(id); ImageType ret = (ImageType)0; if(fun && (LObjects::calling != id)) { ret = (ImageType)callOverrideFun(fun, 525, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::imageType(); } return ret; } }; class LSGBasicGeometryNode : public QSGBasicGeometryNode { @@ -184,8 +186,8 @@ 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(); }} + bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 538); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 538, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGBasicGeometryNode::isSubtreeBlocked(); } return ret; } + void preprocess() { quint64 id = LObjects::override_id(unique, 539); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 539, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGBasicGeometryNode::preprocess(); }} }; class LSGClipNode : public QSGClipNode { @@ -205,8 +207,8 @@ 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 = 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; } + int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 540); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 540, 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, 541); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 541, 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; } }; @@ -234,8 +236,8 @@ 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; } + int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 540); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 540, 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, 541); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 541, 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; } }; @@ -255,8 +257,8 @@ 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 = 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(); }} + bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 538); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 538, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGNode::isSubtreeBlocked(); } return ret; } + void preprocess() { quint64 id = LObjects::override_id(unique, 539); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 539, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGNode::preprocess(); }} }; class LSGOpacityNode : public QSGOpacityNode { @@ -267,8 +269,8 @@ 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 = 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(); }} + bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 538); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 538, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGOpacityNode::isSubtreeBlocked(); } return ret; } + void preprocess() { quint64 id = LObjects::override_id(unique, 539); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 539, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGOpacityNode::preprocess(); }} }; class LSGOpaqueTextureMaterial : public QSGOpaqueTextureMaterial { @@ -279,8 +281,8 @@ 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 = 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; } + int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 540); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 540, 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, 541); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 541, 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; } }; @@ -319,8 +321,8 @@ 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 = 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(); }} + bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 538); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 538, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGTransformNode::isSubtreeBlocked(); } return ret; } + void preprocess() { quint64 id = LObjects::override_id(unique, 539); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 539, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGTransformNode::preprocess(); }} }; class LSGVertexColorMaterial : public QSGVertexColorMaterial { @@ -331,8 +333,8 @@ 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 = 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; } + int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 540); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 540, 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, 541); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 541, 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; } }; diff --git a/src/gen/quick/_n_methods.h b/src/gen/quick/_n_methods.h index d73fbee..06d3970 100644 --- a/src/gen/quick/_n_methods.h +++ b/src/gen/quick/_n_methods.h @@ -107,6 +107,7 @@ class N157 : public QObject { // QQmlIncubationController Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LQmlIncubationController(u); } + Q_INVOKABLE QQmlEngine* Mengine(QQmlIncubationController* o) const { return o->engine(); } Q_INVOKABLE void MincubateFor(QQmlIncubationController* o, int x1) { o->incubateFor(x1); } Q_INVOKABLE int MincubatingObjectCount(QQmlIncubationController* o) const { return o->incubatingObjectCount(); } }; @@ -146,8 +147,10 @@ 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, QQmlEngine* 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, QObject* x1, const QString& x2, QQmlEngine* 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); } @@ -171,8 +174,10 @@ public: 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 QVariant Sread(const QObject* x1, const QString& x2, QQmlEngine* 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); } + Q_INVOKABLE bool Swrite(QObject* x1, const QString& x2, const QVariant& x3, QQmlEngine* x4) { return QQmlProperty::write(x1, x2, x3, x4); } }; class N162 : public QObject { // QQmlPropertyValueSource diff --git a/src/gen/quick/_q_classes.h b/src/gen/quick/_q_classes.h index be71a7e..1ef34e8 100644 --- a/src/gen/quick/_q_classes.h +++ b/src/gen/quick/_q_classes.h @@ -15,6 +15,8 @@ class LJSEngine : public QJSEngine { Q_OBJECT friend class Q112; public: + LJSEngine(uint u) : unique(u) {} + LJSEngine(uint u, QObject* x1) : QJSEngine(x1), unique(u) {} static NumList overrideIds; uint unique; @@ -29,6 +31,9 @@ class LQmlApplicationEngine : public QQmlApplicationEngine { Q_OBJECT friend class Q168; public: + LQmlApplicationEngine(uint u, QObject* x1 = 0) : QQmlApplicationEngine(x1), unique(u) {} + LQmlApplicationEngine(uint u, const QUrl& x1, QObject* x2 = 0) : QQmlApplicationEngine(x1, x2), unique(u) {} + LQmlApplicationEngine(uint u, const QString& x1, QObject* x2 = 0) : QQmlApplicationEngine(x1, x2), unique(u) {} static NumList overrideIds; uint unique; @@ -43,6 +48,11 @@ class LQmlComponent : public QQmlComponent { Q_OBJECT friend class Q169; public: + LQmlComponent(uint u, QQmlEngine* x1, QObject* x2 = 0) : QQmlComponent(x1, x2), unique(u) {} + LQmlComponent(uint u, QQmlEngine* x1, const QString& x2, QObject* x3 = 0) : QQmlComponent(x1, x2, x3), unique(u) {} + LQmlComponent(uint u, QQmlEngine* x1, const QString& x2, CompilationMode x3, QObject* x4 = 0) : QQmlComponent(x1, x2, x3, x4), unique(u) {} + LQmlComponent(uint u, QQmlEngine* x1, const QUrl& x2, QObject* x3 = 0) : QQmlComponent(x1, x2, x3), unique(u) {} + LQmlComponent(uint u, QQmlEngine* x1, const QUrl& x2, CompilationMode x3, QObject* x4 = 0) : QQmlComponent(x1, x2, x3, x4), unique(u) {} static NumList overrideIds; uint unique; @@ -60,6 +70,7 @@ class LQmlContext : public QQmlContext { Q_OBJECT friend class Q170; public: + LQmlContext(uint u, QQmlEngine* x1, QObject* x2 = 0) : QQmlContext(x1, x2), unique(u) {} LQmlContext(uint u, QQmlContext* x1, QObject* x2 = 0) : QQmlContext(x1, x2), unique(u) {} static NumList overrideIds; @@ -75,6 +86,7 @@ class LQmlEngine : public QQmlEngine { Q_OBJECT friend class Q171; public: + LQmlEngine(uint u, QObject* x1 = 0) : QQmlEngine(x1), unique(u) {} static NumList overrideIds; uint unique; @@ -111,7 +123,8 @@ public: 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); }} + void initializeEngine(QQmlEngine* x1, const char* x2) { quint64 id = LObjects::override_id(unique, 325); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 325, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQmlExtensionPlugin::initializeEngine(x1, x2); }} + void registerTypes(const char* 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); }} 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); }} @@ -122,6 +135,7 @@ class LQmlFileSelector : public QQmlFileSelector { Q_OBJECT friend class Q174; public: + LQmlFileSelector(uint u, QQmlEngine* x1, QObject* x2 = 0) : QQmlFileSelector(x1, x2), unique(u) {} static NumList overrideIds; uint unique; @@ -141,7 +155,7 @@ public: 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; } + QVariant updateValue(const QString& x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 327); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 327, 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); }} @@ -157,8 +171,8 @@ public: 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; } + QString errorString() const { quint64 id = LObjects::override_id(unique, 328); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 328, 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, 329); void* fun = LObjects::overrideFun(id); QQuickTextureFactory* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QQuickTextureFactory*)callOverrideFun(fun, 329, 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); }} @@ -176,33 +190,33 @@ public: 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; } + bool isTextureProvider() const { quint64 id = LObjects::override_id(unique, 330); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 330, 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, 331); void* fun = LObjects::overrideFun(id); QSGTextureProvider* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGTextureProvider*)callOverrideFun(fun, 331, 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, 332); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 332, 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 geometryChanged(const QRectF& x1, const QRectF& x2) { quint64 id = LObjects::override_id(unique, 333); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 333, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::geometryChanged(x1, x2); }} + void hoverEnterEvent(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::hoverEnterEvent(x1); }} + void hoverLeaveEvent(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::hoverLeaveEvent(x1); }} + void hoverMoveEvent(QHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 336); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 336, 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 itemChange(ItemChange x1, const ItemChangeData& x2) { quint64 id = LObjects::override_id(unique, 337); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 337, 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 mouseUngrabEvent() { 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::mouseUngrabEvent(); }} + void releaseResources() { 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::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 touchUngrabEvent() { quint64 id = LObjects::override_id(unique, 340); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 340, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickItem::touchUngrabEvent(); }} + QSGNode* updatePaintNode(QSGNode* x1, UpdatePaintNodeData* x2) { quint64 id = LObjects::override_id(unique, 341); void* fun = LObjects::overrideFun(id); QSGNode* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QSGNode*)callOverrideFun(fun, 341, 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, 342); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 342, 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); }} @@ -233,36 +247,36 @@ public: 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; } + void paint(QPainter* x1) { quint64 id = LObjects::override_id(unique, 343); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 343, args, id); }} + bool isTextureProvider() const { quint64 id = LObjects::override_id(unique, 330); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 330, 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, 331); void* fun = LObjects::overrideFun(id); QSGTextureProvider* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGTextureProvider*)callOverrideFun(fun, 331, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickPaintedItem::textureProvider(); } return ret; } + void releaseResources() { 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::releaseResources(); }} + QSGNode* updatePaintNode(QSGNode* x1, UpdatePaintNodeData* x2) { quint64 id = LObjects::override_id(unique, 341); void* fun = LObjects::overrideFun(id); QSGNode* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QSGNode*)callOverrideFun(fun, 341, 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; } + bool childMouseEventFilter(QQuickItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 332); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 332, 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 geometryChanged(const QRectF& x1, const QRectF& x2) { quint64 id = LObjects::override_id(unique, 333); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 333, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::geometryChanged(x1, x2); }} + void hoverEnterEvent(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::hoverEnterEvent(x1); }} + void hoverLeaveEvent(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::hoverLeaveEvent(x1); }} + void hoverMoveEvent(QHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 336); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 336, 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 itemChange(ItemChange x1, const ItemChangeData& x2) { quint64 id = LObjects::override_id(unique, 337); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 337, 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 mouseUngrabEvent() { 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::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 touchUngrabEvent() { quint64 id = LObjects::override_id(unique, 340); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 340, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickPaintedItem::touchUngrabEvent(); }} + void updatePolish() { quint64 id = LObjects::override_id(unique, 342); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 342, 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); }} @@ -309,10 +323,10 @@ public: 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; } + QSGTexture* createTexture(QQuickWindow* x1) const { quint64 id = LObjects::override_id(unique, 344); void* fun = LObjects::overrideFun(id); QSGTexture* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QSGTexture*)callOverrideFun(fun, 344, args, id).value(); } return ret; } + QImage image() const { quint64 id = LObjects::override_id(unique, 345); void* fun = LObjects::overrideFun(id); QImage ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 345, 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, 346); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 346, 0, id).toInt(); } return ret; } + QSize textureSize() const { quint64 id = LObjects::override_id(unique, 347); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 347, 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); }} @@ -324,6 +338,7 @@ class LQuickView : public QQuickView { friend class Q184; public: LQuickView(uint u, QWindow* x1 = 0) : QQuickView(x1), unique(u) {} + LQuickView(uint u, QQmlEngine* x1, QWindow* x2) : QQuickView(x1, x2), unique(u) {} LQuickView(uint u, const QUrl& x1, QWindow* x2 = 0) : QQuickView(x1, x2), unique(u) {} static NumList overrideIds; @@ -360,6 +375,7 @@ class LQuickWidget : public QQuickWidget { friend class Q185; public: LQuickWidget(uint u, QWidget* x1 = 0) : QQuickWidget(x1), unique(u) {} + LQuickWidget(uint u, QQmlEngine* x1, QWidget* x2) : QQuickWidget(x1, x2), unique(u) {} LQuickWidget(uint u, const QUrl& x1, QWidget* x2 = 0) : QQuickWidget(x1, x2), unique(u) {} static NumList overrideIds; @@ -448,7 +464,7 @@ 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); }} + void renderScene(GLuint x1 = 0) { 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); }} 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); }} @@ -463,15 +479,15 @@ 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 updateTexture() { quint64 id = LObjects::override_id(unique, 349); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 349, 0, id).toBool(); } return ret; } + void bind() { 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)) { QSGDynamicTexture::bind(); }} + bool hasAlphaChannel() 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::hasAlphaChannel(); } return ret; } + bool hasMipmaps() 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::hasMipmaps(); } return ret; } + bool isAtlasTexture() const { 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 = QSGDynamicTexture::isAtlasTexture(); } return ret; } + QRectF normalizedTextureSubRect() const { quint64 id = LObjects::override_id(unique, 354); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 354, 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, 355); void* fun = LObjects::overrideFun(id); QSGTexture* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGTexture*)callOverrideFun(fun, 355, 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, 356); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 356, 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, 347); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 347, 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); }} @@ -482,6 +498,7 @@ class LSGEngine : public QSGEngine { Q_OBJECT friend class Q193; public: + LSGEngine(uint u, QObject* x1 = 0) : QSGEngine(x1), unique(u) {} static NumList overrideIds; uint unique; @@ -501,14 +518,14 @@ public: 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; } + void bind() { quint64 id = LObjects::override_id(unique, 350); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 350, 0, id); }} + bool hasAlphaChannel() 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 hasMipmaps() 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(); } return ret; } + bool isAtlasTexture() const { 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 = QSGTexture::isAtlasTexture(); } return ret; } + QRectF normalizedTextureSubRect() const { quint64 id = LObjects::override_id(unique, 354); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 354, 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, 355); void* fun = LObjects::overrideFun(id); QSGTexture* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGTexture*)callOverrideFun(fun, 355, 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, 356); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 356, 0, id).toInt(); } return ret; } + QSize textureSize() const { quint64 id = LObjects::override_id(unique, 347); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 347, 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); }} @@ -523,7 +540,7 @@ 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; } + QSGTexture* texture() const { quint64 id = LObjects::override_id(unique, 357); void* fun = LObjects::overrideFun(id); QSGTexture* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGTexture*)callOverrideFun(fun, 357, 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); }} diff --git a/src/gen/quick/_q_methods.h b/src/gen/quick/_q_methods.h index b7d06d7..e62c0d2 100644 --- a/src/gen/quick/_q_methods.h +++ b/src/gen/quick/_q_methods.h @@ -14,6 +14,8 @@ QT_BEGIN_NAMESPACE class Q112 : public Q142 { // QJSEngine Q_OBJECT public: + Q_INVOKABLE void* C(uint u) { return new LJSEngine(u); } + Q_INVOKABLE void* C(uint u, QObject* x1) { return new LJSEngine(u, x1); } 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(); } @@ -26,6 +28,11 @@ public: class Q169 : public Q142 { // QQmlComponent Q_OBJECT public: + Q_INVOKABLE void* C(uint u, QQmlEngine* x1, QObject* x2 = 0) { return new LQmlComponent(u, x1, x2); } + Q_INVOKABLE void* C(uint u, QQmlEngine* x1, const QString& x2, QObject* x3 = 0) { return new LQmlComponent(u, x1, x2, x3); } + Q_INVOKABLE void* C(uint u, QQmlEngine* x1, const QString& x2, QQmlComponent::CompilationMode x3, QObject* x4 = 0) { return new LQmlComponent(u, x1, x2, x3, x4); } + Q_INVOKABLE void* C(uint u, QQmlEngine* x1, const QUrl& x2, QObject* x3 = 0) { return new LQmlComponent(u, x1, x2, x3); } + Q_INVOKABLE void* C(uint u, QQmlEngine* x1, const QUrl& x2, QQmlComponent::CompilationMode x3, QObject* x4 = 0) { return new LQmlComponent(u, x1, x2, x3, x4); } 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); } @@ -44,10 +51,12 @@ public: class Q170 : public Q142 { // QQmlContext Q_OBJECT public: + Q_INVOKABLE void* C(uint u, QQmlEngine* x1, QObject* x2 = 0) { return new LQmlContext(u, x1, x2); } 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 QQmlEngine* Mengine(QQmlContext* o) const { return o->engine(); } 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(); } @@ -61,6 +70,7 @@ public: class Q171 : public Q112 { // QQmlEngine Q_OBJECT public: + Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LQmlEngine(u, x1); } 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); } @@ -100,6 +110,7 @@ public: 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 QQmlEngine* Mengine(QQmlExpression* o) const { return o->engine(); } 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(); } @@ -118,15 +129,18 @@ class Q173 : public Q142 { // QQmlExtensionPlugin 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 MinitializeEngine(QQmlExtensionPlugin* o, QQmlEngine* x1, const char* x2) { o->initializeEngine(x1, x2); } Q_INVOKABLE void MregisterTypes(QQmlExtensionPlugin* o, const char* x1) { o->registerTypes(x1); } }; class Q174 : public Q142 { // QQmlFileSelector Q_OBJECT public: + Q_INVOKABLE void* C(uint u, QQmlEngine* x1, QObject* x2 = 0) { return new LQmlFileSelector(u, x1, x2); } 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); } + Q_INVOKABLE QQmlFileSelector* Sget(QQmlEngine* x1) { return QQmlFileSelector::get(x1); } }; class Q175 : public Q142 { // QQmlPropertyMap @@ -348,6 +362,7 @@ public: class Q193 : public Q142 { // QSGEngine Q_OBJECT public: + Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSGEngine(u, x1); } 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); } @@ -387,6 +402,9 @@ public: class Q168 : public Q171 { // QQmlApplicationEngine Q_OBJECT public: + Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LQmlApplicationEngine(u, x1); } + Q_INVOKABLE void* C(uint u, const QUrl& x1, QObject* x2 = 0) { return new LQmlApplicationEngine(u, x1, x2); } + Q_INVOKABLE void* C(uint u, const QString& x1, QObject* x2 = 0) { return new LQmlApplicationEngine(u, x1, x2); } Q_INVOKABLE QList MrootObjects(QQmlApplicationEngine* o) { return o->rootObjects(); } }; @@ -404,7 +422,9 @@ 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, QQmlEngine* x1, QWidget* x2) { return new LQuickWidget(u, x1, x2); } Q_INVOKABLE void* C(uint u, const QUrl& x1, QWidget* x2 = 0) { return new LQuickWidget(u, x1, x2); } + Q_INVOKABLE QQmlEngine* Mengine(QQuickWidget* o) const { return o->engine(); } 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(); } @@ -481,7 +501,9 @@ 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, QQmlEngine* x1, QWindow* x2) { return new LQuickView(u, x1, x2); } Q_INVOKABLE void* C(uint u, const QUrl& x1, QWindow* x2 = 0) { return new LQuickView(u, x1, x2); } + Q_INVOKABLE QQmlEngine* Mengine(QQuickView* o) const { return o->engine(); } 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(); } diff --git a/src/gen/sql/_ini.cpp b/src/gen/sql/_ini.cpp index 83bfb16..de7669e 100644 --- a/src/gen/sql/_ini.cpp +++ b/src/gen/sql/_ini.cpp @@ -6,11 +6,11 @@ QT_BEGIN_NAMESPACE -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 LSqlDriver::overrideIds = NumList() << 363 << 130 << 364 << 365 << 366 << 367 << 368 << 369 << 370 << 371 << 372 << 373 << 374 << 375 << 376 << 377 << 378 << 379 << 380 << 381 << 382 << 383 << 384; +NumList LSqlQueryModel::overrideIds = NumList() << 219 << 385 << 386 << 57 << 59 << 61 << 64 << 66 << 74 << 76 << 78; NumList LSqlRelationalDelegate::overrideIds = NumList() << 46 << 52; -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 LSqlRelationalTableModel::overrideIds = NumList() << 387 << 388 << 219 << 59 << 74 << 389 << 77 << 390 << 391 << 392 << 393 << 394; +NumList LSqlTableModel::overrideIds = NumList() << 395 << 396 << 397 << 398 << 390 << 399 << 391 << 392 << 393 << 394 << 219 << 59 << 62 << 64 << 67 << 74 << 75 << 76 << 77 << 80 << 385; NumList LSqlDatabase::overrideIds = NumList(); NumList LSqlError::overrideIds = NumList(); NumList LSqlField::overrideIds = NumList(); @@ -18,7 +18,7 @@ NumList LSqlIndex::overrideIds = NumList(); NumList LSqlQuery::overrideIds = NumList(); NumList LSqlRecord::overrideIds = NumList(); NumList LSqlRelation::overrideIds = NumList(); -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; +NumList LSqlResult::overrideIds = NumList() << 368 << 542 << 543 << 515 << 107 << 544 << 545 << 546 << 547 << 548 << 549 << 550 << 551 << 552 << 553 << 554 << 555 << 556 << 557 << 558 << 382 << 559 << 560 << 141; void ini() { static bool _ = false; if(_) return; _ = true; diff --git a/src/gen/sql/_n_classes.h b/src/gen/sql/_n_classes.h index 1c4293e..1e72736 100644 --- a/src/gen/sql/_n_classes.h +++ b/src/gen/sql/_n_classes.h @@ -90,28 +90,28 @@ public: static NumList overrideIds; uint unique; - 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; } + QVariant handle() const { quint64 id = LObjects::override_id(unique, 368); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 368, 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, 542); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 542, 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, 515); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 515, 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, 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); }} + bool fetch(int x1) { quint64 id = LObjects::override_id(unique, 544); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 544, args, id).toBool(); } return ret; } + bool fetchFirst() { 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 fetchLast() { 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(); } return ret; } + bool fetchNext() { 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::fetchNext(); } return ret; } + bool fetchPrevious() { quint64 id = LObjects::override_id(unique, 548); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 548, 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, 549); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 549, args, id).toBool(); } return ret; } + QVariant lastInsertId() const { quint64 id = LObjects::override_id(unique, 550); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 550, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::lastInsertId(); } return ret; } + int numRowsAffected() { quint64 id = LObjects::override_id(unique, 551); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 551, 0, id).toInt(); } return ret; } + bool prepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 552); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 552, 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, 553); void* fun = LObjects::overrideFun(id); QSqlRecord ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 553, 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, 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(); } return ret; } + bool savePrepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 555); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 555, 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, 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::setActive(x1); }} + void setAt(int 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::setAt(x1); }} + void setForwardOnly(bool 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::setForwardOnly(x1); }} + void setLastError(const QSqlError& 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)) { QSqlResult::setLastError(x1); }} + void setQuery(const QString& 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::setQuery(x1); }} + void setSelect(bool x1) { quint64 id = LObjects::override_id(unique, 560); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 560, 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/_q_classes.h b/src/gen/sql/_q_classes.h index 41ed0cc..4dcc370 100644 --- a/src/gen/sql/_q_classes.h +++ b/src/gen/sql/_q_classes.h @@ -20,29 +20,29 @@ public: static NumList overrideIds; uint unique; - 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; } + bool beginTransaction() { 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::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, 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 commitTransaction() { quint64 id = LObjects::override_id(unique, 364); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 364, 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, 365); void* fun = LObjects::overrideFun(id); QSqlResult* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSqlResult*)callOverrideFun(fun, 365, 0, id).value(); } return ret; } + QString escapeIdentifier(const QString& x1, IdentifierType x2) 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::escapeIdentifier(x1, x2); } return ret; } + QString formatValue(const QSqlField& x1, bool x2 = false) const { quint64 id = LObjects::override_id(unique, 367); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 367, 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, 368); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 368, 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, 369); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 369, args, id).toBool(); } return ret; } + bool isIdentifierEscaped(const QString& x1, IdentifierType x2) const { quint64 id = LObjects::override_id(unique, 370); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 370, 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, 371); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 371, 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, 372); 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, 372, args, id).toBool(); } return ret; } + QSqlIndex primaryIndex(const QString& x1) const { quint64 id = LObjects::override_id(unique, 373); void* fun = LObjects::overrideFun(id); QSqlIndex 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::primaryIndex(x1); } return ret; } + QSqlRecord record(const QString& x1) const { quint64 id = LObjects::override_id(unique, 374); void* fun = LObjects::overrideFun(id); QSqlRecord ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 374, 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, 375); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 375, 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, 376); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 376, 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, 377); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 377, 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, 378); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 378, 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, 379); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 379, 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, 380); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 380, 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, 381); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 381, 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, 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::setLastError(x1); }} + void setOpen(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::setOpen(x1); }} + void setOpenError(bool x1) { quint64 id = LObjects::override_id(unique, 384); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 384, 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); }} @@ -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, 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(); }} + QModelIndex indexInQuery(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 385); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 385, 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, 386); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 386, 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); }} @@ -130,31 +130,31 @@ public: static NumList overrideIds; uint unique; - 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); }} + QSqlTableModel* relationModel(int x1) const { quint64 id = LObjects::override_id(unique, 387); void* fun = LObjects::overrideFun(id); QSqlTableModel* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QSqlTableModel*)callOverrideFun(fun, 387, 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, 388); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 388, 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, 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 select() { quint64 id = LObjects::override_id(unique, 389); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 389, 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, 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; } + void setTable(const QString& 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); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::setTable(x1); }} + bool insertRowIntoTable(const QSqlRecord& x1) { quint64 id = LObjects::override_id(unique, 391); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 391, 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, 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::orderByClause(); } return ret; } + QString selectStatement() const { quint64 id = LObjects::override_id(unique, 393); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 393, 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, 394); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 394, 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, 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::revertRow(x1); }} + void setEditStrategy(EditStrategy 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::setEditStrategy(x1); }} + void setFilter(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); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::setFilter(x1); }} + void setSort(int x1, Qt::SortOrder x2) { quint64 id = LObjects::override_id(unique, 398); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 398, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlRelationalTableModel::setSort(x1, x2); }} + bool deleteRowFromTable(int x1) { quint64 id = LObjects::override_id(unique, 399); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 399, 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, 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(); }} + QModelIndex indexInQuery(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 385); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 385, 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, 386); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 386, 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; } @@ -187,16 +187,16 @@ public: static NumList overrideIds; uint unique; - 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 revertRow(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); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::revertRow(x1); }} + void setEditStrategy(EditStrategy 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::setEditStrategy(x1); }} + void setFilter(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); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::setFilter(x1); }} + void setSort(int x1, Qt::SortOrder x2) { quint64 id = LObjects::override_id(unique, 398); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 398, 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, 390); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 390, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlTableModel::setTable(x1); }} + bool deleteRowFromTable(int x1) { quint64 id = LObjects::override_id(unique, 399); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 399, 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, 391); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 391, 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, 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::orderByClause(); } return ret; } + QString selectStatement() const { quint64 id = LObjects::override_id(unique, 393); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 393, 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, 394); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 394, 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, 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(); }} + QModelIndex indexInQuery(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 385); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 385, 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, 386); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 386, 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/svg/_ini.cpp b/src/gen/svg/_ini.cpp index 3ade6a1..45c17ce 100644 --- a/src/gen/svg/_ini.cpp +++ b/src/gen/svg/_ini.cpp @@ -9,7 +9,7 @@ QT_BEGIN_NAMESPACE NumList LGraphicsSvgItem::overrideIds = NumList() << 260 << 231 << 233; NumList LSvgRenderer::overrideIds = NumList(); NumList LSvgWidget::overrideIds = NumList() << 25 << 20; -NumList LSvgGenerator::overrideIds = NumList() << 518; +NumList LSvgGenerator::overrideIds = NumList() << 519; void ini() { static bool _ = false; if(_) return; _ = true; diff --git a/src/gen/svg/_n_classes.h b/src/gen/svg/_n_classes.h index 294263d..c5c3541 100644 --- a/src/gen/svg/_n_classes.h +++ b/src/gen/svg/_n_classes.h @@ -19,7 +19,7 @@ public: static NumList overrideIds; uint unique; - 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; } + int metric(QPaintDevice::PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 519); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 519, 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/webkit/_ini.cpp b/src/gen/webkit/_ini.cpp index 4e0fd62..b230a1d 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() << 432 << 433; +NumList LWebHistoryInterface::overrideIds = NumList() << 433 << 434; NumList LWebInspector::overrideIds = NumList() << 25 << 27 << 35 << 40 << 41; -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 LWebPage::overrideIds = NumList() << 435 << 436 << 437 << 438 << 439 << 440 << 441 << 442 << 443 << 444 << 445 << 446 << 447; +NumList LWebPluginFactory::overrideIds = NumList() << 448 << 449 << 450; +NumList LWebView::overrideIds = NumList() << 451 << 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(); diff --git a/src/gen/webkit/_q_classes.h b/src/gen/webkit/_q_classes.h index 8455408..037dd2a 100644 --- a/src/gen/webkit/_q_classes.h +++ b/src/gen/webkit/_q_classes.h @@ -80,8 +80,8 @@ public: static NumList overrideIds; uint unique; - 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; } + void addHistoryEntry(const QString& x1) { quint64 id = LObjects::override_id(unique, 433); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 433, args, id); }} + bool historyContains(const QString& x1) const { quint64 id = LObjects::override_id(unique, 434); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 434, 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); }} @@ -146,19 +146,19 @@ public: static NumList overrideIds; uint unique; - 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 extension(Extension x1, const ExtensionOption* x2 = 0, ExtensionReturn* x3 = 0) { quint64 id = LObjects::override_id(unique, 435); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 435, 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, 436); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 436, 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, 437); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 437, 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, 438); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 438, 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, 439); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 439, 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, 440); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 440, 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, 441); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = (QObject*)callOverrideFun(fun, 441, 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, 442); void* fun = LObjects::overrideFun(id); QWebPage* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWebPage*)callOverrideFun(fun, 442, 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, 443); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 443, 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, 444); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 444, 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, 445); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 445, 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, 446); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 446, 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, 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 = 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); }} @@ -174,9 +174,9 @@ public: 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, 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(); }} + QObject* create(const QString& x1, const QUrl& x2, const QStringList& x3, const QStringList& x4) const { quint64 id = LObjects::override_id(unique, 448); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = (QObject*)callOverrideFun(fun, 448, args, id).value(); } return ret; } + QList plugins() const { quint64 id = LObjects::override_id(unique, 449); void* fun = LObjects::overrideFun(id); QList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 449, 0, id).value >(); } return ret; } + void refreshPlugins() { quint64 id = LObjects::override_id(unique, 450); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 450, 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); }} @@ -192,7 +192,7 @@ public: static NumList overrideIds; uint unique; - 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; } + QWebView* createWindow(QWebPage::WebWindowType x1) { quint64 id = LObjects::override_id(unique, 451); void* fun = LObjects::overrideFun(id); QWebView* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWebView*)callOverrideFun(fun, 451, 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/lisp/all-wrappers-10.lisp b/src/lisp/all-wrappers-10.lisp index 77b7dea..920595e 100644 --- a/src/lisp/all-wrappers-10.lisp +++ b/src/lisp/all-wrappers-10.lisp @@ -1,5 +1,20 @@ (in-package :eql) +(defun |releaseKeyboard| (object &rest arguments) + (%qinvoke-method object nil "releaseKeyboard" arguments)) + +(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)) @@ -3584,18 +3599,3 @@ (defun |setMaxVisibleItems| (object &rest arguments) (%qinvoke-method object nil "setMaxVisibleItems" arguments)) - -(defun |setMaximumAnisotropy| (object &rest arguments) - (%qinvoke-method object nil "setMaximumAnisotropy" arguments)) - -(defun |setMaximumBlockCount| (object &rest arguments) - (%qinvoke-method object nil "setMaximumBlockCount" arguments)) - -(defun |setMaximumCacheSize| (object &rest arguments) - (%qinvoke-method object nil "setMaximumCacheSize" arguments)) - -(defun |setMaximumDateTime| (object &rest arguments) - (%qinvoke-method object nil "setMaximumDateTime" arguments)) - -(defun |setMaximumDate| (object &rest arguments) - (%qinvoke-method object nil "setMaximumDate" arguments)) diff --git a/src/lisp/all-wrappers-11.lisp b/src/lisp/all-wrappers-11.lisp index d2949f8..033413f 100644 --- a/src/lisp/all-wrappers-11.lisp +++ b/src/lisp/all-wrappers-11.lisp @@ -1,5 +1,20 @@ (in-package :eql) +(defun |setMaximumAnisotropy| (object &rest arguments) + (%qinvoke-method object nil "setMaximumAnisotropy" arguments)) + +(defun |setMaximumBlockCount| (object &rest arguments) + (%qinvoke-method object nil "setMaximumBlockCount" arguments)) + +(defun |setMaximumCacheSize| (object &rest arguments) + (%qinvoke-method object nil "setMaximumCacheSize" arguments)) + +(defun |setMaximumDateTime| (object &rest arguments) + (%qinvoke-method object nil "setMaximumDateTime" arguments)) + +(defun |setMaximumDate| (object &rest arguments) + (%qinvoke-method object nil "setMaximumDate" arguments)) + (defun |setMaximumFrameRate| (object &rest arguments) (%qinvoke-method object nil "setMaximumFrameRate" arguments)) @@ -3584,18 +3599,3 @@ (defun |toAffine| (object &rest arguments) (%qinvoke-method object nil "toAffine" arguments)) - -(defun |toBitArray| (object &rest arguments) - (%qinvoke-method object nil "toBitArray" arguments)) - -(defun |toBlockFormat| (object &rest arguments) - (%qinvoke-method object nil "toBlockFormat" arguments)) - -(defun |toBool| (object &rest arguments) - (%qinvoke-method object nil "toBool" arguments)) - -(defun |toByteArray| (object &rest arguments) - (%qinvoke-method object nil "toByteArray" arguments)) - -(defun |toCharFormat| (object &rest arguments) - (%qinvoke-method object nil "toCharFormat" arguments)) diff --git a/src/lisp/all-wrappers-12.lisp b/src/lisp/all-wrappers-12.lisp index bf425ec..30b852b 100644 --- a/src/lisp/all-wrappers-12.lisp +++ b/src/lisp/all-wrappers-12.lisp @@ -1,5 +1,20 @@ (in-package :eql) +(defun |toBitArray| (object &rest arguments) + (%qinvoke-method object nil "toBitArray" arguments)) + +(defun |toBlockFormat| (object &rest arguments) + (%qinvoke-method object nil "toBlockFormat" arguments)) + +(defun |toBool| (object &rest arguments) + (%qinvoke-method object nil "toBool" arguments)) + +(defun |toByteArray| (object &rest arguments) + (%qinvoke-method object nil "toByteArray" arguments)) + +(defun |toCharFormat| (object &rest arguments) + (%qinvoke-method object nil "toCharFormat" arguments)) + (defun |toChar| (object &rest arguments) (%qinvoke-method object nil "toChar" arguments)) @@ -1593,6 +1608,12 @@ (defun |write(QByteArray)| (object &rest arguments) (%qinvoke-method object nil "write(QByteArray)" arguments)) +(defun |write(QObject*,QString,QVariant,QQmlContext*).QQmlProperty| (&rest arguments) + (%qinvoke-method "QQmlProperty" nil "write(QObject*,QString,QVariant,QQmlContext*)" arguments)) + +(defun |write(QObject*,QString,QVariant,QQmlEngine*).QQmlProperty| (&rest arguments) + (%qinvoke-method "QQmlProperty" nil "write(QObject*,QString,QVariant,QQmlEngine*)" arguments)) + (defun |write(QTextDocumentFragment)| (object &rest arguments) (%qinvoke-method object nil "write(QTextDocumentFragment)" arguments)) diff --git a/src/lisp/all-wrappers-2.lisp b/src/lisp/all-wrappers-2.lisp index f0bf304..8a2b8b9 100644 --- a/src/lisp/all-wrappers-2.lisp +++ b/src/lisp/all-wrappers-2.lisp @@ -258,6 +258,7 @@ #:|endTime| #:|endValue| #:|end| + #:|engine| #:|ensureActiveTarget| #:|ensureBlockLayout| #:|ensureCursorVisible| @@ -646,6 +647,7 @@ #:|gestureType| #:|gestures| #:|gesture| + #:|get.QQmlFileSelector| #:|getChar| #:|getColor.QColorDialog| #:|getDouble.QInputDialog| @@ -952,6 +954,7 @@ #:|initialStateChanged| #:|initialState| #:|initializeColumn| + #:|initializeEngine| #:|initializePage| #:|initialize| #:|inputChannelMode| @@ -1196,7 +1199,4 @@ #:|isFullScreen| #:|isGenerated(QString)| #:|isGenerated(int)| - #:|isGenerated| - #:|isGrayscale| - #:|isGridVisible| - #:|isGroupSeparatorShown|)) + #:|isGenerated|)) diff --git a/src/lisp/all-wrappers-3.lisp b/src/lisp/all-wrappers-3.lisp index 1dba784..b5906a5 100644 --- a/src/lisp/all-wrappers-3.lisp +++ b/src/lisp/all-wrappers-3.lisp @@ -1,5 +1,8 @@ (defpackage :eql (:export + #:|isGrayscale| + #:|isGridVisible| + #:|isGroupSeparatorShown| #:|isHeaderHidden| #:|isHidden| #:|isHttpOnly| @@ -1135,6 +1138,8 @@ #:|rawHeaderList| #:|rawHeader| #:|rawValue| + #:|read(const QObject*,QString,QQmlContext*).QQmlProperty| + #:|read(const QObject*,QString,QQmlEngine*).QQmlProperty| #:|read.QQmlProperty| #:|readAllStandardError| #:|readAllStandardOutput| @@ -1194,9 +1199,4 @@ #:|relationModel| #:|relation| #:|relativeFilePath| - #:|releaseControl| - #:|releaseKeyboard| - #:|releaseMouse| - #:|releaseResources| - #:|releaseShortcut| - #:|releaseWidget|)) + #:|releaseControl|)) diff --git a/src/lisp/all-wrappers-4.lisp b/src/lisp/all-wrappers-4.lisp index 48d19aa..2bb978f 100644 --- a/src/lisp/all-wrappers-4.lisp +++ b/src/lisp/all-wrappers-4.lisp @@ -1,5 +1,10 @@ (defpackage :eql (:export + #:|releaseKeyboard| + #:|releaseMouse| + #:|releaseResources| + #:|releaseShortcut| + #:|releaseWidget| #:|released| #:|release| #:|reload| @@ -1194,9 +1199,4 @@ #:|setMaxCount| #:|setMaxLength| #:|setMaxPendingConnections| - #:|setMaxVisibleItems| - #:|setMaximumAnisotropy| - #:|setMaximumBlockCount| - #:|setMaximumCacheSize| - #:|setMaximumDateTime| - #:|setMaximumDate|)) + #:|setMaxVisibleItems|)) diff --git a/src/lisp/all-wrappers-5.lisp b/src/lisp/all-wrappers-5.lisp index 16f5ee3..8a218d4 100644 --- a/src/lisp/all-wrappers-5.lisp +++ b/src/lisp/all-wrappers-5.lisp @@ -1,5 +1,10 @@ (defpackage :eql (:export + #:|setMaximumAnisotropy| + #:|setMaximumBlockCount| + #:|setMaximumCacheSize| + #:|setMaximumDateTime| + #:|setMaximumDate| #:|setMaximumFrameRate| #:|setMaximumHeight| #:|setMaximumItemCount| @@ -1194,9 +1199,4 @@ #:|titleFormat| #:|title| #:|toAce.QUrl| - #:|toAffine| - #:|toBitArray| - #:|toBlockFormat| - #:|toBool| - #:|toByteArray| - #:|toCharFormat|)) + #:|toAffine|)) diff --git a/src/lisp/all-wrappers-6.lisp b/src/lisp/all-wrappers-6.lisp index ddc0c53..07a91b8 100644 --- a/src/lisp/all-wrappers-6.lisp +++ b/src/lisp/all-wrappers-6.lisp @@ -1,5 +1,10 @@ (defpackage :eql (:export + #:|toBitArray| + #:|toBlockFormat| + #:|toBool| + #:|toByteArray| + #:|toCharFormat| #:|toChar| #:|toCmyk| #:|toCubicSpline| @@ -531,6 +536,8 @@ #:|wrapping| #:|writableLocation.QStandardPaths| #:|write(QByteArray)| + #:|write(QObject*,QString,QVariant,QQmlContext*).QQmlProperty| + #:|write(QObject*,QString,QVariant,QQmlEngine*).QQmlProperty| #:|write(QTextDocumentFragment)| #:|write(const QTextDocument*)| #:|write(const char*)| diff --git a/src/lisp/all-wrappers-8.lisp b/src/lisp/all-wrappers-8.lisp index 1ee0ac2..cd1eb83 100644 --- a/src/lisp/all-wrappers-8.lisp +++ b/src/lisp/all-wrappers-8.lisp @@ -774,6 +774,9 @@ (defun |end| (object &rest arguments) (%qinvoke-method object nil "end" arguments)) +(defun |engine| (object &rest arguments) + (%qinvoke-method object nil "engine" arguments)) + (defun |ensureActiveTarget| (object &rest arguments) (%qinvoke-method object nil "ensureActiveTarget" arguments)) @@ -1938,6 +1941,9 @@ (defun |gesture| (object &rest arguments) (%qinvoke-method object nil "gesture" arguments)) +(defun |get.QQmlFileSelector| (&rest arguments) + (%qinvoke-method "QQmlFileSelector" nil "get" arguments)) + (defun |getChar| (object &rest arguments) (%qinvoke-method object nil "getChar" arguments)) @@ -2856,6 +2862,9 @@ (defun |initializeColumn| (object &rest arguments) (%qinvoke-method object nil "initializeColumn" arguments)) +(defun |initializeEngine| (object &rest arguments) + (%qinvoke-method object nil "initializeEngine" arguments)) + (defun |initializePage| (object &rest arguments) (%qinvoke-method object nil "initializePage" arguments)) @@ -3590,12 +3599,3 @@ (defun |isGenerated| (object &rest arguments) (%qinvoke-method object nil "isGenerated" arguments)) - -(defun |isGrayscale| (object &rest arguments) - (%qinvoke-method object nil "isGrayscale" arguments)) - -(defun |isGridVisible| (object &rest arguments) - (%qinvoke-method object nil "isGridVisible" arguments)) - -(defun |isGroupSeparatorShown| (object &rest arguments) - (%qinvoke-method object nil "isGroupSeparatorShown" arguments)) diff --git a/src/lisp/all-wrappers-9.lisp b/src/lisp/all-wrappers-9.lisp index 9b1bb84..f96ff4e 100644 --- a/src/lisp/all-wrappers-9.lisp +++ b/src/lisp/all-wrappers-9.lisp @@ -1,5 +1,14 @@ (in-package :eql) +(defun |isGrayscale| (object &rest arguments) + (%qinvoke-method object nil "isGrayscale" arguments)) + +(defun |isGridVisible| (object &rest arguments) + (%qinvoke-method object nil "isGridVisible" arguments)) + +(defun |isGroupSeparatorShown| (object &rest arguments) + (%qinvoke-method object nil "isGroupSeparatorShown" arguments)) + (defun |isHeaderHidden| (object &rest arguments) (%qinvoke-method object nil "isHeaderHidden" arguments)) @@ -3405,6 +3414,12 @@ (defun |rawValue| (object &rest arguments) (%qinvoke-method object nil "rawValue" arguments)) +(defun |read(const QObject*,QString,QQmlContext*).QQmlProperty| (&rest arguments) + (%qinvoke-method "QQmlProperty" nil "read(const QObject*,QString,QQmlContext*)" arguments)) + +(defun |read(const QObject*,QString,QQmlEngine*).QQmlProperty| (&rest arguments) + (%qinvoke-method "QQmlProperty" nil "read(const QObject*,QString,QQmlEngine*)" arguments)) + (defun |read.QQmlProperty| (&rest arguments) (%qinvoke-method "QQmlProperty" nil "read" arguments)) @@ -3584,18 +3599,3 @@ (defun |releaseControl| (object &rest arguments) (%qinvoke-method object nil "releaseControl" arguments)) - -(defun |releaseKeyboard| (object &rest arguments) - (%qinvoke-method object nil "releaseKeyboard" arguments)) - -(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)) diff --git a/src/lisp/ini.lisp b/src/lisp/ini.lisp index c1636cf..b561c13 100644 --- a/src/lisp/ini.lisp +++ b/src/lisp/ini.lisp @@ -837,6 +837,7 @@ (cons 'qui-class '(file-name &optional object-name)) (cons 'qui-names '(file-name)) (cons 'qutf8 '(string)) + (cons 'qvariant-value '(object)) (cons 'tr '(source &optional context plural-number)))) (setf (get (car el) :function-lambda-list) (cdr el))) diff --git a/src/lisp/package.lisp b/src/lisp/package.lisp index 1148485..c5b911f 100644 --- a/src/lisp/package.lisp +++ b/src/lisp/package.lisp @@ -104,6 +104,7 @@ #:qui-names #:qutf8 #:qversion + #:qvariant-value #:the-qt-object #:tr))