diff --git a/Qt_EQL/trafficlight/README.txt b/Qt_EQL/trafficlight/README.txt
index d8b72e2..329eae0 100644
--- a/Qt_EQL/trafficlight/README.txt
+++ b/Qt_EQL/trafficlight/README.txt
@@ -7,7 +7,7 @@ BUILD / RUN / CALL
qmake
make
-eql run.lisp -qtpl
+eql5 run.lisp -qtpl
________________________________________
diff --git a/README-1.txt b/README-1.txt
index 94479ac..7e72da1 100644
--- a/README-1.txt
+++ b/README-1.txt
@@ -71,7 +71,7 @@ BUILD
1) In src/ run:
- ecl -shell make-eql-lib.lisp
+ ecl --shell make-eql-lib.lisp
2) Do:
diff --git a/README-2-REBUILD.txt b/README-2-REBUILD.txt
index 7d21211..1f9df23 100644
--- a/README-2-REBUILD.txt
+++ b/README-2-REBUILD.txt
@@ -17,7 +17,7 @@ REBUILD STEPS (on every upgrade of: ECL, Qt, EQL)
for readline (Unix):
- ecl -compile src/lisp/ecl-readline.lisp
+ ecl --compile src/lisp/ecl-readline.lisp
Optionally (integrate wrapper functions):
diff --git a/doc/Slime.htm b/doc/Slime.htm
index 75b2494..5595675 100644
--- a/doc/Slime.htm
+++ b/doc/Slime.htm
@@ -42,7 +42,7 @@
Another case where you need to use qload is when you use Qt classes which use threads internally (see e.g. examples/X-extras/move-blocks.lisp).
Help
- For help see the qapropos, qproperties and qgui functions.
+ For help see the qapropos, qfind-bound, qproperties and qgui functions.
To kill the swank process (Slime), use function qquit / qq (since quitting Emacs will not kill it).
Notes
diff --git a/doc/auto-doc.htm b/doc/auto-doc.htm
index 42622fc..3c633f3 100644
--- a/doc/auto-doc.htm
+++ b/doc/auto-doc.htm
@@ -1,4 +1,11 @@
-Function ListDEFINE-QT-WRAPPERS (qt-library &rest what)
+
+
+
+Function List
+
+
+
+DEFINE-QT-WRAPPERS (qt-library &rest what)
Defines Lisp methods for all Qt methods/signals/slots of given library.
(See example Qt_EQL/trafficlight/).
@@ -599,4 +606,5 @@ Returns the EQL version number as "<year>.<month>.<counter>",
Macro expanding to qtranslate, which calls QCoreApplication::translate().
Both source and context can be Lisp forms evaluating to constant strings (at compile time).
The context argument defaults to the Lisp file name. For the plural-number, see Qt Assistant.
-
\ No newline at end of file
+
+
diff --git a/doc/auto-doc.lisp b/doc/auto-doc.lisp
index 533b830..b6acd14 100644
--- a/doc/auto-doc.lisp
+++ b/doc/auto-doc.lisp
@@ -46,8 +46,13 @@
(add-cpp-docu)
(add-lisp-docu)
(with-open-file (s (eql:in-home "doc/auto-doc.htm") :direction :output :if-exists :supersede)
- (write-string "Function List" s)
- (write-string "" s)
+ (format s "~%~
+ ~%~
+ ~%~
+ Function List~%~
+ ~%~
+ ~%~
+ ~%")
(flet ((el (tag x)
(format nil "<~A>~A~A>" tag x tag))
(! (x)
@@ -73,7 +78,7 @@
(! example))
(! ""))))
(! "
"))
- (write-string "" s))))
+ (format s "~%~%"))))
(progn
(help)
diff --git a/examples/6-download.lisp b/examples/6-download.lisp
index 101ad05..ca2c269 100644
--- a/examples/6-download.lisp
+++ b/examples/6-download.lisp
@@ -20,8 +20,7 @@
(when *ini*
(setf *ini* nil)
(qconnect *manager* "finished(QNetworkReply*)" 'download-finished))
- (qlet ((url "QUrl(QString)" name)
- (request "QNetworkRequest(QUrl)" url))
+ (qlet ((request "QNetworkRequest(QUrl)" (|fromUserInput.QUrl| name)))
(|get| *manager* request)))
(defun download-finished (reply)
diff --git a/examples/9-simple-lisp-editor/README.txt b/examples/9-simple-lisp-editor/README.txt
index 72ec7dd..d5e7d5c 100644
--- a/examples/9-simple-lisp-editor/README.txt
+++ b/examples/9-simple-lisp-editor/README.txt
@@ -8,10 +8,10 @@ Run it:
0) You'll need the :network module (see QREQUIRE).
1) Run the independent local Lisp server:
- eql -norc local-server
+ eql5 -norc local-server
2) Run the editor:
- eql editor .lisp (defaults to "my.lisp")
+ eql5 editor .lisp (defaults to "my.lisp")
The main motivation behind this editor is the need for a popup completer
for the (huge) Qt library.
diff --git a/examples/9-simple-lisp-editor/editor.lisp b/examples/9-simple-lisp-editor/editor.lisp
index fc07ea4..13df775 100644
--- a/examples/9-simple-lisp-editor/editor.lisp
+++ b/examples/9-simple-lisp-editor/editor.lisp
@@ -1,3 +1,4 @@
+;;;
;;; copyright (c) Polos Ruetz
;;;
;;; (please note that this is an outdated experiment)
@@ -14,13 +15,12 @@
;;; - an independent local Lisp server process for evaluation
;;; - eval region
;;;
-;;; N.B: requires Qt 4.7 for signal QFileSystemModel::directoryLoaded(QString)
(require :local-client (probe-file "local-client.lisp"))
(require :settings (probe-file "settings.lisp"))
;; load all available modules for code completions
-(dolist (module (list :help :network :sql :svg :webkit))
+(dolist (module (list :help :multimedia :network :sql :svg :webkit))
(eql:qrequire module :quiet))
(defpackage :editor
diff --git a/examples/M-modules/multimedia/camera/camera.lisp b/examples/M-modules/multimedia/camera/camera.lisp
index 54a0497..4cc9c45 100644
--- a/examples/M-modules/multimedia/camera/camera.lisp
+++ b/examples/M-modules/multimedia/camera/camera.lisp
@@ -5,13 +5,6 @@
(qrequire :multimedia)
-(defpackage :camera
- (:use :common-lisp :eql)
- (:export
- #:ini))
-
-(in-package :camera)
-
(require :ui (in-home "examples/M-modules/multimedia/camera/ui/ui-camera"))
(require :ui-image (in-home "examples/M-modules/multimedia/camera/ui/ui-image-settings"))
(require :ui-video (in-home "examples/M-modules/multimedia/camera/ui/ui-video-settings"))
@@ -19,6 +12,13 @@
(require :image-settings (in-home "examples/M-modules/multimedia/camera/image-settings"))
(require :video-settings (in-home "examples/M-modules/multimedia/camera/video-settings"))
+(defpackage :camera
+ (:use :common-lisp :eql)
+ (:export
+ #:ini))
+
+(in-package :camera)
+
(defvar *camera* nil)
(defvar *image-capture* nil)
(defvar *media-recorder* nil)
diff --git a/examples/M-modules/multimedia/video-graphics-item/ui/README.txt b/examples/M-modules/multimedia/video-graphics-item/ui/README.txt
new file mode 100644
index 0000000..4974ca5
--- /dev/null
+++ b/examples/M-modules/multimedia/video-graphics-item/ui/README.txt
@@ -0,0 +1,3 @@
+Generated (see designer/):
+
+ eql5 -quic video-graphics-item.ui
diff --git a/examples/M-modules/multimedia/video-graphics-item/ui/designer/README.txt b/examples/M-modules/multimedia/video-graphics-item/ui/designer/README.txt
new file mode 100644
index 0000000..0d3f6be
--- /dev/null
+++ b/examples/M-modules/multimedia/video-graphics-item/ui/designer/README.txt
@@ -0,0 +1 @@
+Please see section "Using Custom Widgets with Qt Designer" in Qt Assistant.
diff --git a/examples/M-modules/multimedia/video-graphics-item/ui/designer/video-graphics-item.ui b/examples/M-modules/multimedia/video-graphics-item/ui/designer/video-graphics-item.ui
new file mode 100644
index 0000000..866ae86
--- /dev/null
+++ b/examples/M-modules/multimedia/video-graphics-item/ui/designer/video-graphics-item.ui
@@ -0,0 +1,63 @@
+
+
+ main
+
+
+
+ 0
+ 0
+ 400
+ 300
+
+
+
+ Video Widget
+
+
+ -
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ -
+
+
-
+
+
+ Open...
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/M-modules/multimedia/video-graphics-item/ui/ui-video-graphics-item.lisp b/examples/M-modules/multimedia/video-graphics-item/ui/ui-video-graphics-item.lisp
new file mode 100644
index 0000000..600eb09
--- /dev/null
+++ b/examples/M-modules/multimedia/video-graphics-item/ui/ui-video-graphics-item.lisp
@@ -0,0 +1,73 @@
+;;; THIS FILE IS GENERATED (see 'eql5 -quic')
+
+(defpackage :ui
+ (:use :common-lisp :eql)
+ (:export
+ ;; all DEFVARs except layouts, spacers
+ #:*error-label*
+ #:*graphics-view*
+ #:*main*
+ #:*open-button*
+ #:*play-button*
+ #:*position-slider*
+ #:*rotate-slider*
+ #:ini
+ #:retranslate-ui
+ #:show))
+
+(in-package :ui)
+
+(defvar *main*) ; QWidget (main widget)
+(defvar *control-layout*) ; QHBoxLayout
+(defvar *error-label*) ; QLabel
+(defvar *graphics-view*) ; QGraphicsView
+(defvar *main-layout*) ; QVBoxLayout
+(defvar *open-button*) ; QPushButton
+(defvar *play-button*) ; QPushButton
+(defvar *position-slider*) ; QSlider
+(defvar *rotate-slider*) ; QSlider
+
+(defun ini (&optional show)
+ (qlet ()
+ (let ()
+ (setf *main* (qnew "QWidget"))
+ (qfun *main* "setObjectName" "main")
+ (qfun *main* "resize" 400 300)
+ (setf *main-layout* (qnew "QVBoxLayout(QWidget*)" *main*))
+ (qfun *main-layout* "setObjectName" "main_layout")
+ (setf *graphics-view* (qnew "QGraphicsView(QWidget*)" *main*))
+ (qfun *graphics-view* "setObjectName" "graphics_view")
+ (qfun *main-layout* "addWidget" *graphics-view*)
+ (setf *rotate-slider* (qnew "QSlider(QWidget*)" *main*))
+ (qfun *rotate-slider* "setObjectName" "rotate_slider")
+ (qfun *rotate-slider* "setOrientation" |Qt.Horizontal|)
+ (qfun *main-layout* "addWidget" *rotate-slider*)
+ (setf *control-layout* (qnew "QHBoxLayout"))
+ (qfun *control-layout* "setObjectName" "control_layout")
+ (setf *open-button* (qnew "QPushButton(QWidget*)" *main*))
+ (qfun *open-button* "setObjectName" "open_button")
+ (qfun *control-layout* "addWidget" *open-button*)
+ (setf *play-button* (qnew "QPushButton(QWidget*)" *main*))
+ (qfun *play-button* "setObjectName" "play_button")
+ (qfun *control-layout* "addWidget" *play-button*)
+ (setf *position-slider* (qnew "QSlider(QWidget*)" *main*))
+ (qfun *position-slider* "setObjectName" "position_slider")
+ (qfun *position-slider* "setOrientation" |Qt.Horizontal|)
+ (qfun *control-layout* "addWidget" *position-slider*)
+ (qfun *main-layout* "addLayout" *control-layout*)
+ (setf *error-label* (qnew "QLabel(QWidget*)" *main*))
+ (qfun *error-label* "setObjectName" "error_label")
+ (qfun *main-layout* "addWidget" *error-label*)
+ (retranslate-ui)
+ (when show
+ (show)))))
+
+(defun show ()
+ (qfun *main* "show"))
+
+(defun retranslate-ui ()
+ (let ()
+ (qfun *main* "setWindowTitle" (tr "Video Widget"))
+ (qfun *open-button* "setText" (tr "Open..."))
+ (qfun *play-button* "setText" "")
+ (qfun *error-label* "setText" "")))
diff --git a/examples/M-modules/multimedia/video-graphics-item/video-graphics-item.lisp b/examples/M-modules/multimedia/video-graphics-item/video-graphics-item.lisp
new file mode 100644
index 0000000..d2bf251
--- /dev/null
+++ b/examples/M-modules/multimedia/video-graphics-item/video-graphics-item.lisp
@@ -0,0 +1,114 @@
+;; port of Qt example "videographicsitem" (QtMultimediaWidgets)
+
+#-qt-wrapper-functions ; see README-OPTIONAL.txt
+(load (in-home "src/lisp/all-wrappers"))
+
+(qrequire :multimedia)
+
+(require :ui (in-home "examples/M-modules/multimedia/video-graphics-item/ui/ui-video-graphics-item"))
+
+(defpackage :video-item
+ (:nicknames :vi)
+ (:use :common-lisp :eql)
+ (:export
+ #:*media-player*
+ #:*video-item*
+ #:ini))
+
+(in-package :video-item)
+
+(defvar *media-player* (qnew "QMediaPlayer(...)" nil |QMediaPlayer.VideoSurface|))
+(defvar *video-item* (qnew "QGraphicsVideoItem"))
+(defvar *graphics-scene* nil)
+
+(defun standard-icon (style-sp)
+ (|standardIcon| (|style| ui:*main*) style-sp))
+
+(defun theme-icon (name) ; optional (not used here)
+ ;; the names would be:
+ ;; "media-playback-start" and "media-playback-pause" (see Qt Assistant)
+ (|fromTheme.QIcon| name))
+
+(defun ini ()
+ (ui:ini)
+ (setf *graphics-scene* (qnew "QGraphicsScene(QObject*)" ui:*main*))
+ (let ((size (list 640 480)))
+ (|setMinimumSize| ui:*graphics-view* (mapcar (lambda (x) (+ 50 x)) size))
+ (|setSize| *video-item* size))
+ (|setScene| ui:*graphics-view* *graphics-scene*)
+ (|addItem| *graphics-scene* *video-item*)
+ (|setRange| ui:*rotate-slider* -180 180)
+ (|setValue| ui:*rotate-slider* 0)
+ (|setEnabled| ui:*play-button* nil)
+ (|setIcon| ui:*play-button* (standard-icon |QStyle.SP_MediaPlay|))
+ (|setRange| ui:*position-slider* 0 0)
+ (|setSizePolicy| ui:*error-label* (qnew "QSizePolicy(...)" |QSizePolicy.Preferred| |QSizePolicy.Maximum|))
+ (|setVideoOutput| *media-player* *video-item*)
+ ;; connections
+ (qconnect ui:*open-button* "clicked()" 'open-file)
+ (qconnect ui:*play-button* "clicked()" 'play)
+ (qconnect ui:*position-slider* "sliderMoved(int)"
+ (lambda (position) (|setPosition| *media-player* position)))
+ (qconnect ui:*rotate-slider* "valueChanged(int)" 'rotate-video)
+ (qconnect *media-player* "stateChanged(QMediaPlayer::State)" 'media-state-changed)
+ (qconnect *media-player* "positionChanged(qint64)"
+ (lambda (position) (|setValue| ui:*position-slider* position)))
+ (qconnect *media-player* "durationChanged(qint64)"
+ (lambda (duration) (|setRange| ui:*position-slider* 0 duration)))
+ (qconnect *media-player* "error(QMediaPlayer::Error)" 'handle-error)
+ (|show| ui:*main*))
+
+(defun open-file ()
+ (let ((file-name (|getOpenFileName.QFileDialog|
+ ui:*main*
+ (tr "Open Movie")
+ (or (first (|standardLocations.QStandardPaths| |QStandardPaths.MoviesLocation|))
+ (|homePath.QDir|)))))
+ (unless (x:empty-string file-name)
+ (set-url (|fromLocalFile.QUrl| file-name))
+ (play))))
+
+(defun set-url (url)
+ (|clear| ui:*error-label*)
+ (|setWindowFilePath| ui:*main* (if (|isLocalFile| url) (|toLocalFile| url) ""))
+ (qlet ((content "QMediaContent(QUrl)" url))
+ (|setMedia| *media-player* content))
+ (|setEnabled| ui:*play-button* t))
+
+(defun play ()
+ (case (|state| *media-player*)
+ (#.|QMediaPlayer.PlayingState|
+ (|pause| *media-player*))
+ (t
+ (|play| *media-player*))))
+
+(defun media-state-changed (state)
+ (|setIcon| ui:*play-button* (standard-icon (case state
+ (#.|QMediaPlayer.PlayingState|
+ |QStyle.SP_MediaPause|)
+ (t
+ |QStyle.SP_MediaPlay|)))))
+
+(defun rotate-video (angle)
+ (let* ((rect (|boundingRect| *video-item*))
+ (x (/ (third rect) 2))
+ (y (/ (fourth rect) 2)))
+ (qlet ((transform "QTransform"))
+ (x:do-with transform
+ (|translate| x y)
+ (|rotate| angle)
+ (|translate| (- x) (- y)))
+ (|setTransform| *video-item* transform))))
+
+(defun enum-error-to-string (number class enum-name)
+ (first (find number (cdadr (qenums class enum-name)) :key 'cdr)))
+
+(defun handle-error (&optional num)
+ (|setEnabled| ui:*play-button* nil)
+ (let ((error-string (|errorString| *media-player*)))
+ (|setText| ui:*error-label* (format nil "Error: ~A"
+ (if (x:empty-string error-string)
+ (enum-error-to-string (|error| *media-player*) "QMediaPlayer" "Error")
+ error-string)))))
+
+(ini)
diff --git a/examples/M-modules/multimedia/video-widget/video-widget.lisp b/examples/M-modules/multimedia/video-widget/video-widget.lisp
index 0694849..9f423e8 100644
--- a/examples/M-modules/multimedia/video-widget/video-widget.lisp
+++ b/examples/M-modules/multimedia/video-widget/video-widget.lisp
@@ -5,8 +5,10 @@
(qrequire :multimedia)
+(require :ui (in-home "examples/M-modules/multimedia/video-widget/ui/ui-video-widget"))
+
(defpackage :video-widget
- (:nicknames :vid)
+ (:nicknames :vw)
(:use :common-lisp :eql)
(:export
#:*media-player*
@@ -16,8 +18,6 @@
(defvar *media-player* (qnew "QMediaPlayer(...)" nil |QMediaPlayer.VideoSurface|))
-(require :ui (in-home "examples/M-modules/multimedia/video-widget/ui/ui-video-widget"))
-
(defun standard-icon (style-sp)
(|standardIcon| (|style| ui:*main*) style-sp))
@@ -48,13 +48,14 @@
(|show| ui:*main*))
(defun open-file ()
- (qlet ((dialog "QFileDialog(QWidget*)" ui:*main*))
- (|setAcceptMode| dialog |QFileDialog.AcceptOpen|)
- (|setWindowTitle| dialog (tr "Open Movie"))
- (|setDirectory| dialog (or (first (|standardLocations.QStandardPaths| |QStandardPaths.MoviesLocation|))
- (|homePath.QDir|)))
- (when (= |QDialog.Accepted| (|exec| dialog))
- (set-url (first (|selectedUrls| dialog))))))
+ (let ((file-name (|getOpenFileName.QFileDialog|
+ ui:*main*
+ (tr "Open Movie")
+ (or (first (|standardLocations.QStandardPaths| |QStandardPaths.MoviesLocation|))
+ (|homePath.QDir|)))))
+ (unless (x:empty-string file-name)
+ (set-url (|fromLocalFile.QUrl| file-name))
+ (play))))
(defun set-url (url)
(|clear| ui:*error-label*)
diff --git a/examples/M-modules/webkit/Examples-Browser/examples-browser.lisp b/examples/M-modules/webkit/Examples-Browser/examples-browser.lisp
index a10fa54..e9969c6 100644
--- a/examples/M-modules/webkit/Examples-Browser/examples-browser.lisp
+++ b/examples/M-modules/webkit/Examples-Browser/examples-browser.lisp
@@ -37,15 +37,13 @@
(lambda ()
(|addToJavaScriptWindowObject| (frame) "Lisp" *webkit-bridge*)))
(qconnect *network-manager* "finished(QNetworkReply*)" 'download-finished)
- (|setUrl| *web-view* (qnew "QUrl(QString)"
- (x:cc "file://" (namestring (probe-file "examples-browser.htm")))))
+ (|setUrl| *web-view* (|fromUserInput.QUrl| (namestring (probe-file "examples-browser.htm"))))
(|showMaximized| *web-view*))
;;; download
(defun download (url id name)
- (qlet ((qurl "QUrl(QString)" url)
- (request "QNetworkRequest(QUrl)" qurl)
+ (qlet ((request "QNetworkRequest(QUrl)" url)
(qid "QVariant(QString)" id)
(qname "QVariant(QString)" name))
(let ((reply (|get| *network-manager* request)))
@@ -108,7 +106,7 @@
*ini-file* ini-file)
;; QNetworkAccessManager does it all for us (asynchroneous, parallel download)
(dolist (name file-names)
- (download (format nil "file:///~A" (in-home "examples/" name)) ; change this to a network location
+ (download (|fromUserInput.QUrl| (in-home "examples/" name)) ; change this to a network location
id
name))))))
diff --git a/examples/M-modules/webkit/Tic-Tac-Toe/template.lisp b/examples/M-modules/webkit/Tic-Tac-Toe/template.lisp
index d4302cd..67531b7 100644
--- a/examples/M-modules/webkit/Tic-Tac-Toe/template.lisp
+++ b/examples/M-modules/webkit/Tic-Tac-Toe/template.lisp
@@ -12,7 +12,7 @@
(defun ini (html-file size)
(qconnect h:*web-view* "loadFinished(bool)" (lambda (ok) (ini-html)))
(x:do-with h:*web-view*
- ("setUrl" (qnew "QUrl(QString)" html-file))
+ ("setUrl" (|fromUserInput.QUrl| html-file))
("setWindowTitle" "")
("resize" size)
("show")))
diff --git a/examples/M-modules/webkit/Tic-Tac-Toe/tic-tac-toe.lisp b/examples/M-modules/webkit/Tic-Tac-Toe/tic-tac-toe.lisp
index f1a2df0..2c48872 100644
--- a/examples/M-modules/webkit/Tic-Tac-Toe/tic-tac-toe.lisp
+++ b/examples/M-modules/webkit/Tic-Tac-Toe/tic-tac-toe.lisp
@@ -27,7 +27,7 @@
(defun ini (html-file size)
(qconnect h:*web-view* "loadFinished(bool)" (lambda (ok) (ini-html)))
(x:do-with h:*web-view*
- ("setUrl" (qnew "QUrl(QString)" html-file))
+ ("setUrl" (|fromUserInput.QUrl| html-file))
("setWindowTitle" "WebKit Application")
("resize" size)
("show")))
@@ -255,6 +255,6 @@
;;; run
(progn
- (ini (x:cc "file://" (namestring (probe-file "tic-tac-toe.htm")))
+ (ini (namestring (probe-file "tic-tac-toe.htm"))
'(350 450))
(qlater (lambda () (in-package :tic-tac-toe))))
diff --git a/examples/M-modules/webkit/dom.lisp b/examples/M-modules/webkit/dom.lisp
index b2db184..ba10e0e 100644
--- a/examples/M-modules/webkit/dom.lisp
+++ b/examples/M-modules/webkit/dom.lisp
@@ -16,8 +16,7 @@
(set-url url)))
(defun set-url (string)
- (qlet ((url "QUrl(QString)" string))
- (|setUrl| ui:*web-view* url)))
+ (|setUrl| ui:*web-view* (|fromUserInput.QUrl| string)))
(defun load-finished (ok)
(|clear| ui:*tree-widget*)
@@ -33,11 +32,5 @@
(examine-child-elements element item)
(setf element (|nextSibling| element))))))
-(defun ensure-url (string)
- (if (or (x:starts-with "http" string)
- (x:starts-with "file" string))
- string
- (x:cc "file://" string)))
-
-(ini (ensure-url (or (third (|arguments.QCoreApplication|))
- (namestring (probe-file "../../../doc/index.html")))))
+(ini (or (third (|arguments.QCoreApplication|))
+ (namestring (probe-file "../../../doc/index.html"))))
diff --git a/examples/M-modules/webkit/plugin-widget.lisp b/examples/M-modules/webkit/plugin-widget.lisp
index e199ecc..c66f7ae 100644
--- a/examples/M-modules/webkit/plugin-widget.lisp
+++ b/examples/M-modules/webkit/plugin-widget.lisp
@@ -49,8 +49,7 @@
(qconnect (frame) "javaScriptWindowObjectCleared()"
(lambda ()
(|addToJavaScriptWindowObject| (frame) "Lisp" *webkit-bridge*)))
- (|setUrl| *web-view* (qnew "QUrl(QString)"
- (x:cc "file://" (namestring (probe-file "plugin-widget.htm")))))
+ (|setUrl| *web-view* (|fromUserInput.QUrl| (namestring (probe-file "plugin-widget.htm"))))
(|show| *web-view*))
(ini)
diff --git a/examples/M-modules/webkit/strip-html.lisp b/examples/M-modules/webkit/strip-html.lisp
index 66598e2..16eef45 100644
--- a/examples/M-modules/webkit/strip-html.lisp
+++ b/examples/M-modules/webkit/strip-html.lisp
@@ -54,19 +54,12 @@
(text (|toPlainText| element)))
,@body)))))
-(defun ensure-url (name)
- (if (or (x:starts-with "http" name)
- (x:starts-with "file" name))
- name
- (x:cc "file://" name)))
-
(defun set-url (name)
(unless (x:empty-string name)
(|setWindowTitle| *web-view* name)
- (qlet ((url "QUrl(QString)" (ensure-url name)))
- (x:do-with *web-view*
- (|load| url)
- (|show|)))))
+ (x:do-with *web-view*
+ (|load| (|fromUserInput.QUrl| name))
+ (|show|))))
(defun open-url ()
(let ((name (|getText.QInputDialog| *web-view* nil (tr "Enter URL:") |QLineEdit.Normal|
diff --git a/examples/M-modules/webkit/webkit-bridge.lisp b/examples/M-modules/webkit/webkit-bridge.lisp
index 40704c8..b888ab6 100644
--- a/examples/M-modules/webkit/webkit-bridge.lisp
+++ b/examples/M-modules/webkit/webkit-bridge.lisp
@@ -24,8 +24,7 @@
(lambda ()
(|addToJavaScriptWindowObject| (frame) "Lisp" eql-user::*webkit-bridge*) ; for examples 1, 2, 3
(|addToJavaScriptWindowObject| (frame) "WebView" *web-view*))) ; for examples 4, 5
- (|setUrl| *web-view* (qnew "QUrl(QString)"
- (x:cc "file://" (namestring (probe-file "webkit-bridge.htm")))))
+ (|setUrl| *web-view* (|fromUserInput.QUrl| (namestring (probe-file "webkit-bridge.htm"))))
(when (find "debug" (|arguments.QCoreApplication|) :test 'string=)
(inspector))
(|show| *web-view*))
diff --git a/gui/gui.lisp b/gui/gui.lisp
index 02da576..7c66d62 100644
--- a/gui/gui.lisp
+++ b/gui/gui.lisp
@@ -62,7 +62,7 @@
(defun gui ()
(qset *gui* "windowTitle" "EQL - Embedded Qt Lisp")
(qset *select* "toolTip" (tr "Select any (child) widget (see qsel:*q*)"))
- (qset *help* "source" (qnew "QUrl(QString)" (x:cc "file:///" (in-home "doc/auto-doc.htm"))))
+ (qset *help* "source" (! "fromLocalFile" "QUrl" (in-home "doc/auto-doc.htm")))
(qset-color *help* |QPalette.Highlight| "yellow")
(qset-color *help* |QPalette.HighlightedText| "black")
(set-tree *q-override*)
diff --git a/helper/README.txt b/helper/README.txt
index 39d7441..d4452f3 100644
--- a/helper/README.txt
+++ b/helper/README.txt
@@ -10,8 +10,8 @@ If you miss a Qt class, add it in ./my-class-lists//:
n-names.lisp: non QObject derived classes
Run these commands in order: (after setting the *qt-documentation-path* in share.lisp)
- ecl -shell parse.lisp
- ecl -shell generate.lisp
+ ecl --shell parse.lisp
+ ecl --shell generate.lisp
Take a look at missing-types.txt:
These types are currently not available, as they must be integrated manually (by the author).
diff --git a/helper/missing-types.txt b/helper/missing-types.txt
index aab654f..9602d6d 100644
--- a/helper/missing-types.txt
+++ b/helper/missing-types.txt
@@ -1,4 +1,3 @@
- QList
QAccessibleActionInterface
QAccessibleTableCellInterface
QAccessibleTableInterface
@@ -46,6 +45,7 @@ QList
QList
QList
QList
+QList
QMediaControl
QMediaResourceList
QMultiMap
diff --git a/helper/my-class-lists/gui/n-names.lisp b/helper/my-class-lists/gui/n-names.lisp
index 6092497..bf7c48b 100644
--- a/helper/my-class-lists/gui/n-names.lisp
+++ b/helper/my-class-lists/gui/n-names.lisp
@@ -73,6 +73,7 @@
"QImage"
"QInputEvent"
"QInputMethodEvent"
+ "QItemEditorCreatorBase"
"QItemEditorFactory"
"QItemSelectionRange"
"QKeyEvent"
diff --git a/helper/my-class-lists/gui/q-names.lisp b/helper/my-class-lists/gui/q-names.lisp
index 50b1f71..7c15d5a 100644
--- a/helper/my-class-lists/gui/q-names.lisp
+++ b/helper/my-class-lists/gui/q-names.lisp
@@ -82,6 +82,7 @@
"QHeaderView"
"QHBoxLayout"
"QHistoryState"
+ "QIdentityProxyModel"
"QInputDialog"
"QIntValidator"
"QItemDelegate"
diff --git a/helper/no-static-meta-object.lisp b/helper/no-static-meta-object.lisp
index 6638d34..1fc9abc 100644
--- a/helper/no-static-meta-object.lisp
+++ b/helper/no-static-meta-object.lisp
@@ -54,6 +54,7 @@
"QIcon"
"QImage"
"QImageEncoderSettings"
+ "QItemEditorCreatorBase"
"QItemEditorFactory"
"QItemSelection"
"QItemSelectionRange"
diff --git a/helper/parsed/n-methods.lisp b/helper/parsed/n-methods.lisp
index 934568e..e27849a 100644
--- a/helper/parsed/n-methods.lisp
+++ b/helper/parsed/n-methods.lisp
@@ -1499,6 +1499,9 @@
"int replacementLength () const"
"int replacementStart () const"
"void setCommitString ( const QString & , int = 0 , int = 0 )")
+ (("QItemEditorCreatorBase" . NIL)
+ "virtual QWidget * createWidget ( QWidget * ) const = 0"
+ "virtual QByteArray valuePropertyName () const = 0")
(("QItemEditorFactory" . NIL)
"new QItemEditorFactory ()"
"virtual QWidget * createEditor ( int , QWidget * ) const"
diff --git a/helper/parsed/n-override.lisp b/helper/parsed/n-override.lisp
index 918441a..ebb2a0d 100644
--- a/helper/parsed/n-override.lisp
+++ b/helper/parsed/n-override.lisp
@@ -235,6 +235,9 @@
(("QImageEncoderSettings" . NIL))
(("QInputEvent" . "QEvent"))
(("QInputMethodEvent" . "QEvent"))
+ (("QItemEditorCreatorBase" . NIL)
+ "virtual QWidget * createWidget ( QWidget * ) const = 0"
+ "virtual QByteArray valuePropertyName () const = 0")
(("QItemEditorFactory" . NIL)
"virtual QWidget * createEditor ( int , QWidget * ) const"
"virtual QByteArray valuePropertyName ( int ) const")
diff --git a/helper/parsed/q-methods.lisp b/helper/parsed/q-methods.lisp
index b1d7a5a..37e3cf5 100644
--- a/helper/parsed/q-methods.lisp
+++ b/helper/parsed/q-methods.lisp
@@ -2117,6 +2117,25 @@
"qint64 write ( const QByteArray & )"
"protected void setErrorString ( const QString & )"
"protected void setOpenMode ( OpenMode )")
+ (("QIdentityProxyModel" . "QAbstractProxyModel")
+ "new QIdentityProxyModel ( QObject * = 0 )"
+ "virtual int columnCount ( const QModelIndex & = QModelIndex() ) const"
+ "virtual bool dropMimeData ( const QMimeData * , Qt::DropAction , int , int , const QModelIndex & )"
+ "virtual QVariant headerData ( int , Qt::Orientation , int = Qt::DisplayRole ) const"
+ "virtual QModelIndex index ( int , int , const QModelIndex & = QModelIndex() ) const"
+ "virtual bool insertColumns ( int , int , const QModelIndex & = QModelIndex() )"
+ "virtual bool insertRows ( int , int , const QModelIndex & = QModelIndex() )"
+ "virtual QModelIndex mapFromSource ( const QModelIndex & ) const"
+ "virtual QItemSelection mapSelectionFromSource ( const QItemSelection & ) const"
+ "virtual QItemSelection mapSelectionToSource ( const QItemSelection & ) const"
+ "virtual QModelIndex mapToSource ( const QModelIndex & ) const"
+ "virtual QModelIndexList match ( const QModelIndex & , int , const QVariant & , int = 1 , Qt::MatchFlags = Qt::MatchFlags( Qt::MatchStartsWith | Qt::MatchWrap ) ) const"
+ "virtual QModelIndex parent ( const QModelIndex & ) const"
+ "virtual bool removeColumns ( int , int , const QModelIndex & = QModelIndex() )"
+ "virtual bool removeRows ( int , int , const QModelIndex & = QModelIndex() )"
+ "virtual int rowCount ( const QModelIndex & = QModelIndex() ) const"
+ "virtual void setSourceModel ( QAbstractItemModel * )"
+ "virtual QModelIndex sibling ( int , int , const QModelIndex & ) const")
(("QInputDialog" . "QDialog")
"new QInputDialog ( QWidget * = 0 , Qt::WindowFlags = 0 )"
"QString cancelButtonText () const"
diff --git a/helper/parsed/q-override.lisp b/helper/parsed/q-override.lisp
index da18c33..cf8b36b 100644
--- a/helper/parsed/q-override.lisp
+++ b/helper/parsed/q-override.lisp
@@ -817,6 +817,24 @@
"virtual qint64 readData ( char * , qint64 ) = 0"
"virtual qint64 readLineData ( char * , qint64 )"
"virtual qint64 writeData ( const char * , qint64 ) = 0")
+ (("QIdentityProxyModel" . "QAbstractProxyModel")
+ "virtual int columnCount ( const QModelIndex & = QModelIndex() ) const"
+ "virtual bool dropMimeData ( const QMimeData * , Qt::DropAction , int , int , const QModelIndex & )"
+ "virtual QVariant headerData ( int , Qt::Orientation , int = Qt::DisplayRole ) const"
+ "virtual QModelIndex index ( int , int , const QModelIndex & = QModelIndex() ) const"
+ "virtual bool insertColumns ( int , int , const QModelIndex & = QModelIndex() )"
+ "virtual bool insertRows ( int , int , const QModelIndex & = QModelIndex() )"
+ "virtual QModelIndex mapFromSource ( const QModelIndex & ) const"
+ "virtual QItemSelection mapSelectionFromSource ( const QItemSelection & ) const"
+ "virtual QItemSelection mapSelectionToSource ( const QItemSelection & ) const"
+ "virtual QModelIndex mapToSource ( const QModelIndex & ) const"
+ "virtual QModelIndexList match ( const QModelIndex & , int , const QVariant & , int = 1 , Qt::MatchFlags = Qt::MatchFlags( Qt::MatchStartsWith | Qt::MatchWrap ) ) const"
+ "virtual QModelIndex parent ( const QModelIndex & ) const"
+ "virtual bool removeColumns ( int , int , const QModelIndex & = QModelIndex() )"
+ "virtual bool removeRows ( int , int , const QModelIndex & = QModelIndex() )"
+ "virtual int rowCount ( const QModelIndex & = QModelIndex() ) const"
+ "virtual void setSourceModel ( QAbstractItemModel * )"
+ "virtual QModelIndex sibling ( int , int , const QModelIndex & ) const")
(("QInputDialog" . "QDialog")
"virtual void done ( int )"
"virtual QSize minimumSizeHint () const"
diff --git a/src/eql.cpp b/src/eql.cpp
index edbf4f8..500faa0 100644
--- a/src/eql.cpp
+++ b/src/eql.cpp
@@ -7,7 +7,7 @@
#include
#include
-const char EQL::version[] = "16.12.5"; // Dec 2016
+const char EQL::version[] = "16.12.6"; // Dec 2016
extern "C" void ini_EQL(cl_object);
diff --git a/src/gen/_lobjects.cpp b/src/gen/_lobjects.cpp
index d683e3c..2cd1c26 100644
--- a/src/gen/_lobjects.cpp
+++ b/src/gen/_lobjects.cpp
@@ -165,6 +165,7 @@ NumList LHBoxLayout::overrideIds = NumList();
NumList LHeaderView::overrideIds = NumList() << 270 << 271 << 139 << 87 << 108 << 25 << 188 << 93 << 38 << 17 << 18 << 19 << 20 << 98 << 100 << 103;
NumList LHistoryState::overrideIds = NumList() << 146 << 147;
NumList LIODevice::overrideIds = NumList() << 126 << 127 << 128 << 129 << 130 << 131 << 137 << 138 << 139 << 140 << 141 << 132 << 133 << 134 << 135 << 136;
+NumList LIdentityProxyModel::overrideIds = NumList() << 58 << 60 << 64 << 65 << 66 << 67 << 109 << 110 << 111 << 112 << 68 << 73 << 74 << 75 << 76 << 113 << 79;
NumList LInputDialog::overrideIds = NumList() << 184 << 24 << 108 << 25;
NumList LIntValidator::overrideIds = NumList() << 278 << 142 << 144;
NumList LItemDelegate::overrideIds = NumList() << 279 << 280 << 281 << 282 << 46 << 50 << 51 << 52 << 53 << 54 << 48 << 5;
@@ -339,14 +340,15 @@ NumList LIconDragEvent::overrideIds = NumList();
NumList LImage::overrideIds = NumList();
NumList LInputEvent::overrideIds = NumList();
NumList LInputMethodEvent::overrideIds = NumList();
-NumList LItemEditorFactory::overrideIds = NumList() << 454 << 455;
+NumList LItemEditorCreatorBase::overrideIds = NumList() << 416 << 454;
+NumList LItemEditorFactory::overrideIds = NumList() << 455 << 456;
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 << 456 << 457;
+NumList LLayoutItem::overrideIds = NumList() << 173 << 164 << 174 << 21 << 22 << 165 << 175 << 176 << 167 << 168 << 169 << 170 << 25 << 457 << 458;
NumList LLibraryInfo::overrideIds = NumList();
NumList LLinearGradient::overrideIds = NumList();
-NumList LListWidgetItem::overrideIds = NumList() << 458 << 459 << 460;
+NumList LListWidgetItem::overrideIds = NumList() << 459 << 460 << 461;
NumList LLocale::overrideIds = NumList();
NumList LMargins::overrideIds = NumList();
NumList LMarginsF::overrideIds = NumList();
@@ -356,7 +358,7 @@ NumList LMetaObject::overrideIds = NumList();
NumList LModelIndex::overrideIds = NumList();
NumList LMouseEvent::overrideIds = NumList();
NumList LMoveEvent::overrideIds = NumList();
-NumList LOpenGLPaintDevice::overrideIds = NumList() << 462 << 463;
+NumList LOpenGLPaintDevice::overrideIds = NumList() << 463 << 464;
NumList LOpenGLTexture::overrideIds = NumList();
NumList LPageLayout::overrideIds = NumList();
NumList LPageSize::overrideIds = NumList();
@@ -367,7 +369,7 @@ NumList LPainterPathStroker::overrideIds = NumList();
NumList LPalette::overrideIds = NumList();
NumList LPen::overrideIds = NumList();
NumList LPersistentModelIndex::overrideIds = NumList();
-NumList LPicture::overrideIds = NumList() << 464;
+NumList LPicture::overrideIds = NumList() << 465;
NumList LPixmap::overrideIds = NumList();
NumList LPixmapCache::overrideIds = NumList();
NumList LPrinter::overrideIds = NumList() << 313;
@@ -381,18 +383,18 @@ NumList LRegExp::overrideIds = NumList();
NumList LRegion::overrideIds = NumList();
NumList LRegularExpression::overrideIds = NumList();
NumList LResizeEvent::overrideIds = NumList();
-NumList LRunnable::overrideIds = NumList() << 467;
+NumList LRunnable::overrideIds = NumList() << 468;
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 << 456;
-NumList LStandardItem::overrideIds = NumList() << 458 << 459 << 487 << 233;
+NumList LSpacerItem::overrideIds = NumList() << 164 << 174 << 175 << 167 << 169 << 170 << 25 << 457;
+NumList LStandardItem::overrideIds = NumList() << 459 << 460 << 488 << 233;
NumList LStatusTipEvent::overrideIds = NumList();
NumList LStyleOption::overrideIds = NumList();
NumList LStyleOptionGraphicsItem::overrideIds = NumList();
NumList LSystemSemaphore::overrideIds = NumList();
-NumList LTableWidgetItem::overrideIds = NumList() << 458 << 459 << 460;
+NumList LTableWidgetItem::overrideIds = NumList() << 459 << 460 << 461;
NumList LTableWidgetSelectionRange::overrideIds = NumList();
NumList LTabletEvent::overrideIds = NumList();
NumList LTextBlock::overrideIds = NumList();
@@ -400,7 +402,7 @@ NumList LTextBlockFormat::overrideIds = NumList();
NumList LTextBlockUserData::overrideIds = NumList();
NumList LTextBoundaryFinder::overrideIds = NumList();
NumList LTextCharFormat::overrideIds = NumList();
-NumList LTextCodec::overrideIds = NumList() << 488 << 489 << 490 << 491 << 492;
+NumList LTextCodec::overrideIds = NumList() << 489 << 490 << 491 << 492 << 493;
NumList LTextCursor::overrideIds = NumList();
NumList LTextDecoder::overrideIds = NumList();
NumList LTextDocumentFragment::overrideIds = NumList();
@@ -425,8 +427,8 @@ NumList LToolTip::overrideIds = NumList();
NumList LTouchDevice::overrideIds = NumList();
NumList LTouchEvent::overrideIds = NumList();
NumList LTransform::overrideIds = NumList();
-NumList LTreeWidgetItem::overrideIds = NumList() << 458 << 493 << 494;
-NumList LUndoCommand::overrideIds = NumList() << 495 << 496 << 497 << 498;
+NumList LTreeWidgetItem::overrideIds = NumList() << 459 << 494 << 495;
+NumList LUndoCommand::overrideIds = NumList() << 496 << 497 << 498 << 499;
NumList LUrl::overrideIds = NumList();
NumList LVariant::overrideIds = NumList();
NumList LVector2D::overrideIds = NumList();
@@ -435,7 +437,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 << 457;
+NumList LWidgetItem::overrideIds = NumList() << 173 << 164 << 174 << 21 << 22 << 175 << 167 << 169 << 170 << 25 << 458;
NumList LWindowStateChangeEvent::overrideIds = NumList();
NumList LWriteLocker::overrideIds = NumList();
@@ -445,8 +447,8 @@ void LObjects::ini(EQL* e) {
ok = true;
eql = e;
dynObject = new DynObject;
- Q = new QObject* [243]; for(int i = 0; i < 243; ++i) { Q[i] = 0; }
- N = new QObject* [221]; for(int i = 0; i < 221; ++i) { N[i] = 0; }
+ Q = new QObject* [244]; for(int i = 0; i < 244; ++i) { Q[i] = 0; }
+ N = new QObject* [222]; for(int i = 0; i < 222; ++i) { N[i] = 0; }
Q[0] = new Q1;
Q[1] = new Q2;
Q[2] = new Q3;
@@ -540,16 +542,16 @@ void LObjects::ini(EQL* e) {
Q[112] = new Q113;
Q[113] = new Q114;
Q[114] = new Q115;
- Q[117] = new Q118;
+ Q[115] = new Q116;
Q[118] = new Q119;
Q[119] = new Q120;
- Q[125] = new Q126;
+ Q[120] = new Q121;
Q[126] = new Q127;
Q[127] = new Q128;
Q[128] = new Q129;
Q[129] = new Q130;
Q[130] = new Q131;
- Q[135] = new Q136;
+ Q[131] = new Q132;
Q[136] = new Q137;
Q[137] = new Q138;
Q[138] = new Q139;
@@ -575,7 +577,7 @@ void LObjects::ini(EQL* e) {
Q[158] = new Q159;
Q[159] = new Q160;
Q[160] = new Q161;
- Q[162] = new Q163;
+ Q[161] = new Q162;
Q[163] = new Q164;
Q[164] = new Q165;
Q[165] = new Q166;
@@ -592,7 +594,7 @@ void LObjects::ini(EQL* e) {
Q[176] = new Q177;
Q[177] = new Q178;
Q[178] = new Q179;
- Q[184] = new Q185;
+ Q[179] = new Q180;
Q[185] = new Q186;
Q[186] = new Q187;
Q[187] = new Q188;
@@ -601,7 +603,7 @@ void LObjects::ini(EQL* e) {
Q[190] = new Q191;
Q[191] = new Q192;
Q[192] = new Q193;
- Q[195] = new Q196;
+ Q[193] = new Q194;
Q[196] = new Q197;
Q[197] = new Q198;
Q[198] = new Q199;
@@ -610,7 +612,7 @@ void LObjects::ini(EQL* e) {
Q[201] = new Q202;
Q[202] = new Q203;
Q[203] = new Q204;
- Q[206] = new Q207;
+ Q[204] = new Q205;
Q[207] = new Q208;
Q[208] = new Q209;
Q[209] = new Q210;
@@ -627,17 +629,18 @@ void LObjects::ini(EQL* e) {
Q[220] = new Q221;
Q[221] = new Q222;
Q[222] = new Q223;
- Q[224] = new Q225;
+ Q[223] = new Q224;
Q[225] = new Q226;
Q[226] = new Q227;
Q[227] = new Q228;
Q[228] = new Q229;
Q[229] = new Q230;
- Q[238] = new Q239;
+ Q[230] = new Q231;
Q[239] = new Q240;
Q[240] = new Q241;
Q[241] = new Q242;
Q[242] = new Q243;
+ Q[243] = new Q244;
N[0] = new N1;
N[1] = new N2;
N[2] = new N3;
@@ -722,11 +725,11 @@ void LObjects::ini(EQL* e) {
N[92] = new N93;
N[93] = new N94;
N[94] = new N95;
- N[97] = new N98;
+ N[95] = new N96;
N[98] = new N99;
N[99] = new N100;
N[100] = new N101;
- N[109] = new N110;
+ N[101] = new N102;
N[110] = new N111;
N[111] = new N112;
N[112] = new N113;
@@ -759,13 +762,13 @@ void LObjects::ini(EQL* e) {
N[139] = new N140;
N[140] = new N141;
N[141] = new N142;
- N[155] = new N156;
+ N[142] = new N143;
N[156] = new N157;
N[157] = new N158;
N[158] = new N159;
N[159] = new N160;
N[160] = new N161;
- N[162] = new N163;
+ N[161] = new N162;
N[163] = new N164;
N[164] = new N165;
N[165] = new N166;
@@ -807,12 +810,13 @@ void LObjects::ini(EQL* e) {
N[201] = new N202;
N[202] = new N203;
N[203] = new N204;
- N[215] = new N216;
+ N[204] = new N205;
N[216] = new N217;
N[217] = new N218;
N[218] = new N219;
N[219] = new N220;
N[220] = new N221;
+ N[221] = new N222;
q_names["QAbstractAnimation"] = 1;
q_names["QAbstractButton"] = 2;
q_names["QAbstractItemDelegate"] = 3;
@@ -916,146 +920,147 @@ void LObjects::ini(EQL* e) {
q_names["QHelpSearchResultWidget"] = 101;
q_names["QHistoryState"] = 102;
q_names["QIODevice"] = 103;
- q_names["QInputDialog"] = 104;
- q_names["QIntValidator"] = 105;
- q_names["QItemDelegate"] = 106;
- q_names["QItemSelectionModel"] = 107;
- q_names["QKeyEventTransition"] = 108;
- q_names["QLCDNumber"] = 109;
- q_names["QLabel"] = 110;
- q_names["QLayout"] = 111;
- q_names["QLibrary"] = 112;
- q_names["QLineEdit"] = 113;
- q_names["QListView"] = 114;
- q_names["QListWidget"] = 115;
- q_names["QLocalServer"] = 116;
- q_names["QLocalSocket"] = 117;
- q_names["QMainWindow"] = 118;
- q_names["QMdiArea"] = 119;
- q_names["QMdiSubWindow"] = 120;
- q_names["QMediaObject"] = 121;
- q_names["QMediaPlayer"] = 122;
- q_names["QMediaPlaylist"] = 123;
- q_names["QMediaRecorder"] = 124;
- q_names["QMediaService"] = 125;
- q_names["QMenu"] = 126;
- q_names["QMenuBar"] = 127;
- q_names["QMessageBox"] = 128;
- q_names["QMimeData"] = 129;
- q_names["QMouseEventTransition"] = 130;
- q_names["QMovie"] = 131;
- q_names["QNetworkAccessManager"] = 132;
- q_names["QNetworkCookieJar"] = 133;
- q_names["QNetworkDiskCache"] = 134;
- q_names["QNetworkReply"] = 135;
- q_names["QObject"] = 136;
- q_names["QOpenGLContext"] = 137;
- q_names["QOpenGLShader"] = 138;
- q_names["QOpenGLShaderProgram"] = 139;
- q_names["QOpenGLWidget"] = 140;
- q_names["QOpenGLWindow"] = 141;
- q_names["QPageSetupDialog"] = 142;
- q_names["QPaintDeviceWindow"] = 143;
- q_names["QPanGesture"] = 144;
- q_names["QParallelAnimationGroup"] = 145;
- q_names["QPauseAnimation"] = 146;
- q_names["QPdfWriter"] = 147;
- q_names["QPinchGesture"] = 148;
- q_names["QPlainTextDocumentLayout"] = 149;
- q_names["QPlainTextEdit"] = 150;
- q_names["QPluginLoader"] = 151;
- q_names["QPrintDialog"] = 152;
- q_names["QPrintPreviewDialog"] = 153;
- q_names["QPrintPreviewWidget"] = 154;
- q_names["QProcess"] = 155;
- q_names["QProgressBar"] = 156;
- q_names["QProgressDialog"] = 157;
- q_names["QPropertyAnimation"] = 158;
- q_names["QProxyStyle"] = 159;
- q_names["QPushButton"] = 160;
- q_names["QRadioButton"] = 161;
- q_names["QRadioTuner"] = 162;
- q_names["QRegExpValidator"] = 163;
- q_names["QRubberBand"] = 164;
- q_names["QScreen"] = 165;
- q_names["QScrollArea"] = 166;
- q_names["QScrollBar"] = 167;
- q_names["QSequentialAnimationGroup"] = 168;
- q_names["QSessionManager"] = 169;
- q_names["QSettings"] = 170;
- q_names["QShortcut"] = 171;
- q_names["QSignalTransition"] = 172;
- q_names["QSizeGrip"] = 173;
- q_names["QSlider"] = 174;
- q_names["QSortFilterProxyModel"] = 175;
- q_names["QSpinBox"] = 176;
- q_names["QSplashScreen"] = 177;
- q_names["QSplitter"] = 178;
- q_names["QSplitterHandle"] = 179;
- q_names["QSqlDriver"] = 180;
- q_names["QSqlQueryModel"] = 181;
- q_names["QSqlRelationalDelegate"] = 182;
- q_names["QSqlRelationalTableModel"] = 183;
- q_names["QSqlTableModel"] = 184;
- q_names["QStackedLayout"] = 185;
- q_names["QStackedWidget"] = 186;
- q_names["QStandardItemModel"] = 187;
- q_names["QState"] = 188;
- q_names["QStateMachine"] = 189;
- q_names["QStatusBar"] = 190;
- q_names["QStringListModel"] = 191;
- q_names["QStyle"] = 192;
- q_names["QStyledItemDelegate"] = 193;
- q_names["QSvgRenderer"] = 194;
- q_names["QSvgWidget"] = 195;
- q_names["QSwipeGesture"] = 196;
- q_names["QSyntaxHighlighter"] = 197;
- q_names["QSystemTrayIcon"] = 198;
- q_names["QTabBar"] = 199;
- q_names["QTabWidget"] = 200;
- q_names["QTableView"] = 201;
- q_names["QTableWidget"] = 202;
- q_names["QTapAndHoldGesture"] = 203;
- q_names["QTapGesture"] = 204;
- q_names["QTcpServer"] = 205;
- q_names["QTcpSocket"] = 206;
- q_names["QTextBlockGroup"] = 207;
- q_names["QTextBrowser"] = 208;
- q_names["QTextDocument"] = 209;
- q_names["QTextEdit"] = 210;
- q_names["QTextFrame"] = 211;
- q_names["QTextList"] = 212;
- q_names["QTextObject"] = 213;
- q_names["QTextTable"] = 214;
- q_names["QTimeEdit"] = 215;
- q_names["QTimeLine"] = 216;
- q_names["QTimer"] = 217;
- q_names["QToolBar"] = 218;
- q_names["QToolBox"] = 219;
- q_names["QToolButton"] = 220;
- q_names["QTranslator"] = 221;
- q_names["QTreeView"] = 222;
- q_names["QTreeWidget"] = 223;
- q_names["QUdpSocket"] = 224;
- q_names["QUndoGroup"] = 225;
- q_names["QUndoStack"] = 226;
- q_names["QUndoView"] = 227;
- q_names["QVBoxLayout"] = 228;
- q_names["QValidator"] = 229;
- q_names["QVariantAnimation"] = 230;
- q_names["QVideoWidget"] = 231;
- q_names["QVideoWidgetControl"] = 232;
- q_names["QWebFrame"] = 233;
- q_names["QWebHistoryInterface"] = 234;
- q_names["QWebInspector"] = 235;
- q_names["QWebPage"] = 236;
- q_names["QWebPluginFactory"] = 237;
- q_names["QWebView"] = 238;
- q_names["QWidget"] = 239;
- q_names["QWidgetAction"] = 240;
- q_names["QWindow"] = 241;
- q_names["QWizard"] = 242;
- q_names["QWizardPage"] = 243;
+ q_names["QIdentityProxyModel"] = 104;
+ q_names["QInputDialog"] = 105;
+ q_names["QIntValidator"] = 106;
+ q_names["QItemDelegate"] = 107;
+ q_names["QItemSelectionModel"] = 108;
+ q_names["QKeyEventTransition"] = 109;
+ q_names["QLCDNumber"] = 110;
+ q_names["QLabel"] = 111;
+ q_names["QLayout"] = 112;
+ q_names["QLibrary"] = 113;
+ q_names["QLineEdit"] = 114;
+ q_names["QListView"] = 115;
+ q_names["QListWidget"] = 116;
+ q_names["QLocalServer"] = 117;
+ q_names["QLocalSocket"] = 118;
+ q_names["QMainWindow"] = 119;
+ q_names["QMdiArea"] = 120;
+ q_names["QMdiSubWindow"] = 121;
+ q_names["QMediaObject"] = 122;
+ q_names["QMediaPlayer"] = 123;
+ q_names["QMediaPlaylist"] = 124;
+ q_names["QMediaRecorder"] = 125;
+ q_names["QMediaService"] = 126;
+ q_names["QMenu"] = 127;
+ q_names["QMenuBar"] = 128;
+ q_names["QMessageBox"] = 129;
+ q_names["QMimeData"] = 130;
+ q_names["QMouseEventTransition"] = 131;
+ q_names["QMovie"] = 132;
+ q_names["QNetworkAccessManager"] = 133;
+ q_names["QNetworkCookieJar"] = 134;
+ q_names["QNetworkDiskCache"] = 135;
+ q_names["QNetworkReply"] = 136;
+ q_names["QObject"] = 137;
+ q_names["QOpenGLContext"] = 138;
+ q_names["QOpenGLShader"] = 139;
+ q_names["QOpenGLShaderProgram"] = 140;
+ q_names["QOpenGLWidget"] = 141;
+ q_names["QOpenGLWindow"] = 142;
+ q_names["QPageSetupDialog"] = 143;
+ q_names["QPaintDeviceWindow"] = 144;
+ q_names["QPanGesture"] = 145;
+ q_names["QParallelAnimationGroup"] = 146;
+ q_names["QPauseAnimation"] = 147;
+ q_names["QPdfWriter"] = 148;
+ q_names["QPinchGesture"] = 149;
+ q_names["QPlainTextDocumentLayout"] = 150;
+ q_names["QPlainTextEdit"] = 151;
+ q_names["QPluginLoader"] = 152;
+ q_names["QPrintDialog"] = 153;
+ q_names["QPrintPreviewDialog"] = 154;
+ q_names["QPrintPreviewWidget"] = 155;
+ q_names["QProcess"] = 156;
+ q_names["QProgressBar"] = 157;
+ q_names["QProgressDialog"] = 158;
+ q_names["QPropertyAnimation"] = 159;
+ q_names["QProxyStyle"] = 160;
+ q_names["QPushButton"] = 161;
+ q_names["QRadioButton"] = 162;
+ q_names["QRadioTuner"] = 163;
+ q_names["QRegExpValidator"] = 164;
+ q_names["QRubberBand"] = 165;
+ q_names["QScreen"] = 166;
+ q_names["QScrollArea"] = 167;
+ q_names["QScrollBar"] = 168;
+ q_names["QSequentialAnimationGroup"] = 169;
+ q_names["QSessionManager"] = 170;
+ q_names["QSettings"] = 171;
+ q_names["QShortcut"] = 172;
+ q_names["QSignalTransition"] = 173;
+ q_names["QSizeGrip"] = 174;
+ q_names["QSlider"] = 175;
+ q_names["QSortFilterProxyModel"] = 176;
+ q_names["QSpinBox"] = 177;
+ q_names["QSplashScreen"] = 178;
+ q_names["QSplitter"] = 179;
+ q_names["QSplitterHandle"] = 180;
+ q_names["QSqlDriver"] = 181;
+ q_names["QSqlQueryModel"] = 182;
+ q_names["QSqlRelationalDelegate"] = 183;
+ q_names["QSqlRelationalTableModel"] = 184;
+ q_names["QSqlTableModel"] = 185;
+ q_names["QStackedLayout"] = 186;
+ q_names["QStackedWidget"] = 187;
+ q_names["QStandardItemModel"] = 188;
+ q_names["QState"] = 189;
+ q_names["QStateMachine"] = 190;
+ q_names["QStatusBar"] = 191;
+ q_names["QStringListModel"] = 192;
+ q_names["QStyle"] = 193;
+ q_names["QStyledItemDelegate"] = 194;
+ q_names["QSvgRenderer"] = 195;
+ q_names["QSvgWidget"] = 196;
+ q_names["QSwipeGesture"] = 197;
+ q_names["QSyntaxHighlighter"] = 198;
+ q_names["QSystemTrayIcon"] = 199;
+ q_names["QTabBar"] = 200;
+ q_names["QTabWidget"] = 201;
+ q_names["QTableView"] = 202;
+ q_names["QTableWidget"] = 203;
+ q_names["QTapAndHoldGesture"] = 204;
+ q_names["QTapGesture"] = 205;
+ q_names["QTcpServer"] = 206;
+ q_names["QTcpSocket"] = 207;
+ q_names["QTextBlockGroup"] = 208;
+ q_names["QTextBrowser"] = 209;
+ q_names["QTextDocument"] = 210;
+ q_names["QTextEdit"] = 211;
+ q_names["QTextFrame"] = 212;
+ q_names["QTextList"] = 213;
+ q_names["QTextObject"] = 214;
+ q_names["QTextTable"] = 215;
+ q_names["QTimeEdit"] = 216;
+ q_names["QTimeLine"] = 217;
+ q_names["QTimer"] = 218;
+ q_names["QToolBar"] = 219;
+ q_names["QToolBox"] = 220;
+ q_names["QToolButton"] = 221;
+ q_names["QTranslator"] = 222;
+ q_names["QTreeView"] = 223;
+ q_names["QTreeWidget"] = 224;
+ q_names["QUdpSocket"] = 225;
+ q_names["QUndoGroup"] = 226;
+ q_names["QUndoStack"] = 227;
+ q_names["QUndoView"] = 228;
+ q_names["QVBoxLayout"] = 229;
+ q_names["QValidator"] = 230;
+ q_names["QVariantAnimation"] = 231;
+ q_names["QVideoWidget"] = 232;
+ q_names["QVideoWidgetControl"] = 233;
+ q_names["QWebFrame"] = 234;
+ q_names["QWebHistoryInterface"] = 235;
+ q_names["QWebInspector"] = 236;
+ q_names["QWebPage"] = 237;
+ q_names["QWebPluginFactory"] = 238;
+ q_names["QWebView"] = 239;
+ q_names["QWidget"] = 240;
+ q_names["QWidgetAction"] = 241;
+ q_names["QWindow"] = 242;
+ q_names["QWizard"] = 243;
+ q_names["QWizardPage"] = 244;
n_names["QAbstractGraphicsShapeItem"] = 1;
n_names["QAccessible"] = 2;
n_names["QAccessibleEvent"] = 3;
@@ -1138,145 +1143,146 @@ void LObjects::ini(EQL* e) {
n_names["QImageEncoderSettings"] = 80;
n_names["QInputEvent"] = 81;
n_names["QInputMethodEvent"] = 82;
- n_names["QItemEditorFactory"] = 83;
- n_names["QItemSelectionRange"] = 84;
- n_names["QKeyEvent"] = 85;
- n_names["QKeySequence"] = 86;
- n_names["QLayoutItem"] = 87;
- n_names["QLibraryInfo"] = 88;
- n_names["QLinearGradient"] = 89;
- n_names["QListWidgetItem"] = 90;
- n_names["QLocale"] = 91;
- n_names["QMargins"] = 92;
- n_names["QMarginsF"] = 93;
- n_names["QMatrix"] = 94;
- n_names["QMatrix4x4"] = 95;
- n_names["QMediaContent"] = 96;
- n_names["QMediaResource"] = 97;
- n_names["QMetaObject"] = 98;
- n_names["QModelIndex"] = 99;
- n_names["QMouseEvent"] = 100;
- n_names["QMoveEvent"] = 101;
- n_names["QNetworkAddressEntry"] = 102;
- n_names["QNetworkCacheMetaData"] = 103;
- n_names["QNetworkCookie"] = 104;
- n_names["QNetworkInterface"] = 105;
- n_names["QNetworkProxy"] = 106;
- n_names["QNetworkProxyFactory"] = 107;
- n_names["QNetworkProxyQuery"] = 108;
- n_names["QNetworkRequest"] = 109;
- n_names["QOpenGLPaintDevice"] = 110;
- n_names["QOpenGLTexture"] = 111;
- n_names["QPageLayout"] = 112;
- n_names["QPageSize"] = 113;
- n_names["QPagedPaintDevice"] = 114;
- n_names["QPaintDevice"] = 115;
- n_names["QPaintEvent"] = 116;
- n_names["QPainter"] = 117;
- n_names["QPainterPath"] = 118;
- n_names["QPainterPathStroker"] = 119;
- n_names["QPalette"] = 120;
- n_names["QPen"] = 121;
- n_names["QPersistentModelIndex"] = 122;
- n_names["QPicture"] = 123;
- n_names["QPixmap"] = 124;
- n_names["QPixmapCache"] = 125;
- n_names["QPrinter"] = 126;
- n_names["QPrinterInfo"] = 127;
- n_names["QProcessEnvironment"] = 128;
- n_names["QQuaternion"] = 129;
- n_names["QRadialGradient"] = 130;
- n_names["QReadLocker"] = 131;
- n_names["QReadWriteLock"] = 132;
- n_names["QRegExp"] = 133;
- n_names["QRegion"] = 134;
- n_names["QRegularExpression"] = 135;
- n_names["QResizeEvent"] = 136;
- n_names["QRunnable"] = 137;
- n_names["QSemaphore"] = 138;
- n_names["QShortcutEvent"] = 139;
- n_names["QShowEvent"] = 140;
- n_names["QSizePolicy"] = 141;
- n_names["QSpacerItem"] = 142;
- n_names["QSqlDatabase"] = 143;
- n_names["QSqlError"] = 144;
- n_names["QSqlField"] = 145;
- n_names["QSqlIndex"] = 146;
- n_names["QSqlQuery"] = 147;
- n_names["QSqlRecord"] = 148;
- n_names["QSqlRelation"] = 149;
- n_names["QSqlResult"] = 150;
- n_names["QSslCertificate"] = 151;
- n_names["QSslCipher"] = 152;
- n_names["QSslConfiguration"] = 153;
- n_names["QSslError"] = 154;
- n_names["QSslKey"] = 155;
- n_names["QStandardItem"] = 156;
- n_names["QStandardPaths"] = 157;
- n_names["QStatusTipEvent"] = 158;
- n_names["QStyleOption"] = 159;
- n_names["QStyleOptionGraphicsItem"] = 160;
- n_names["QSurface"] = 161;
- n_names["QSvgGenerator"] = 162;
- n_names["QSysInfo"] = 163;
- n_names["QSystemSemaphore"] = 164;
- n_names["QTableWidgetItem"] = 165;
- n_names["QTableWidgetSelectionRange"] = 166;
- n_names["QTabletEvent"] = 167;
- n_names["QTextBlock"] = 168;
- n_names["QTextBlockFormat"] = 169;
- n_names["QTextBlockUserData"] = 170;
- n_names["QTextBoundaryFinder"] = 171;
- n_names["QTextCharFormat"] = 172;
- n_names["QTextCodec"] = 173;
- n_names["QTextCursor"] = 174;
- n_names["QTextDecoder"] = 175;
- n_names["QTextDocumentFragment"] = 176;
- n_names["QTextDocumentWriter"] = 177;
- n_names["QTextEncoder"] = 178;
- n_names["QTextFormat"] = 179;
- n_names["QTextFragment"] = 180;
- n_names["QTextFrameFormat"] = 181;
- n_names["QTextImageFormat"] = 182;
- n_names["QTextLayout"] = 183;
- n_names["QTextLength"] = 184;
- n_names["QTextLine"] = 185;
- n_names["QTextListFormat"] = 186;
- n_names["QTextOption"] = 187;
- n_names["QTextTableCell"] = 188;
- n_names["QTextTableCellFormat"] = 189;
- n_names["QTextTableFormat"] = 190;
- n_names["QTime"] = 191;
- n_names["QTimeZone"] = 192;
- n_names["QTimerEvent"] = 193;
- n_names["QToolTip"] = 194;
- n_names["QTouchDevice"] = 195;
- n_names["QTouchEvent"] = 196;
- n_names["QTransform"] = 197;
- n_names["QTreeWidgetItem"] = 198;
- n_names["QUndoCommand"] = 199;
- n_names["QUrl"] = 200;
- n_names["QVariant"] = 201;
- n_names["QVector2D"] = 202;
- n_names["QVector3D"] = 203;
- n_names["QVector4D"] = 204;
- n_names["QVideoEncoderSettings"] = 205;
- n_names["QVideoFrame"] = 206;
- n_names["QVideoSurfaceFormat"] = 207;
- n_names["QWebDatabase"] = 208;
- n_names["QWebElement"] = 209;
- n_names["QWebElementCollection"] = 210;
- n_names["QWebHistory"] = 211;
- n_names["QWebHistoryItem"] = 212;
- n_names["QWebHitTestResult"] = 213;
- n_names["QWebSecurityOrigin"] = 214;
- n_names["QWebSettings"] = 215;
- n_names["QWhatsThis"] = 216;
- n_names["QWhatsThisClickedEvent"] = 217;
- n_names["QWheelEvent"] = 218;
- n_names["QWidgetItem"] = 219;
- n_names["QWindowStateChangeEvent"] = 220;
- n_names["QWriteLocker"] = 221;
+ n_names["QItemEditorCreatorBase"] = 83;
+ n_names["QItemEditorFactory"] = 84;
+ n_names["QItemSelectionRange"] = 85;
+ n_names["QKeyEvent"] = 86;
+ n_names["QKeySequence"] = 87;
+ n_names["QLayoutItem"] = 88;
+ n_names["QLibraryInfo"] = 89;
+ n_names["QLinearGradient"] = 90;
+ n_names["QListWidgetItem"] = 91;
+ n_names["QLocale"] = 92;
+ n_names["QMargins"] = 93;
+ n_names["QMarginsF"] = 94;
+ n_names["QMatrix"] = 95;
+ n_names["QMatrix4x4"] = 96;
+ n_names["QMediaContent"] = 97;
+ n_names["QMediaResource"] = 98;
+ n_names["QMetaObject"] = 99;
+ n_names["QModelIndex"] = 100;
+ n_names["QMouseEvent"] = 101;
+ n_names["QMoveEvent"] = 102;
+ n_names["QNetworkAddressEntry"] = 103;
+ n_names["QNetworkCacheMetaData"] = 104;
+ n_names["QNetworkCookie"] = 105;
+ n_names["QNetworkInterface"] = 106;
+ n_names["QNetworkProxy"] = 107;
+ n_names["QNetworkProxyFactory"] = 108;
+ n_names["QNetworkProxyQuery"] = 109;
+ n_names["QNetworkRequest"] = 110;
+ n_names["QOpenGLPaintDevice"] = 111;
+ n_names["QOpenGLTexture"] = 112;
+ n_names["QPageLayout"] = 113;
+ n_names["QPageSize"] = 114;
+ n_names["QPagedPaintDevice"] = 115;
+ n_names["QPaintDevice"] = 116;
+ n_names["QPaintEvent"] = 117;
+ n_names["QPainter"] = 118;
+ n_names["QPainterPath"] = 119;
+ n_names["QPainterPathStroker"] = 120;
+ n_names["QPalette"] = 121;
+ n_names["QPen"] = 122;
+ n_names["QPersistentModelIndex"] = 123;
+ n_names["QPicture"] = 124;
+ n_names["QPixmap"] = 125;
+ n_names["QPixmapCache"] = 126;
+ n_names["QPrinter"] = 127;
+ n_names["QPrinterInfo"] = 128;
+ n_names["QProcessEnvironment"] = 129;
+ n_names["QQuaternion"] = 130;
+ n_names["QRadialGradient"] = 131;
+ n_names["QReadLocker"] = 132;
+ n_names["QReadWriteLock"] = 133;
+ n_names["QRegExp"] = 134;
+ n_names["QRegion"] = 135;
+ n_names["QRegularExpression"] = 136;
+ n_names["QResizeEvent"] = 137;
+ n_names["QRunnable"] = 138;
+ n_names["QSemaphore"] = 139;
+ n_names["QShortcutEvent"] = 140;
+ n_names["QShowEvent"] = 141;
+ n_names["QSizePolicy"] = 142;
+ n_names["QSpacerItem"] = 143;
+ n_names["QSqlDatabase"] = 144;
+ n_names["QSqlError"] = 145;
+ n_names["QSqlField"] = 146;
+ n_names["QSqlIndex"] = 147;
+ n_names["QSqlQuery"] = 148;
+ n_names["QSqlRecord"] = 149;
+ n_names["QSqlRelation"] = 150;
+ n_names["QSqlResult"] = 151;
+ n_names["QSslCertificate"] = 152;
+ n_names["QSslCipher"] = 153;
+ n_names["QSslConfiguration"] = 154;
+ n_names["QSslError"] = 155;
+ n_names["QSslKey"] = 156;
+ n_names["QStandardItem"] = 157;
+ n_names["QStandardPaths"] = 158;
+ n_names["QStatusTipEvent"] = 159;
+ n_names["QStyleOption"] = 160;
+ n_names["QStyleOptionGraphicsItem"] = 161;
+ n_names["QSurface"] = 162;
+ n_names["QSvgGenerator"] = 163;
+ n_names["QSysInfo"] = 164;
+ n_names["QSystemSemaphore"] = 165;
+ n_names["QTableWidgetItem"] = 166;
+ n_names["QTableWidgetSelectionRange"] = 167;
+ n_names["QTabletEvent"] = 168;
+ n_names["QTextBlock"] = 169;
+ n_names["QTextBlockFormat"] = 170;
+ n_names["QTextBlockUserData"] = 171;
+ n_names["QTextBoundaryFinder"] = 172;
+ n_names["QTextCharFormat"] = 173;
+ n_names["QTextCodec"] = 174;
+ n_names["QTextCursor"] = 175;
+ n_names["QTextDecoder"] = 176;
+ n_names["QTextDocumentFragment"] = 177;
+ n_names["QTextDocumentWriter"] = 178;
+ n_names["QTextEncoder"] = 179;
+ n_names["QTextFormat"] = 180;
+ n_names["QTextFragment"] = 181;
+ n_names["QTextFrameFormat"] = 182;
+ n_names["QTextImageFormat"] = 183;
+ n_names["QTextLayout"] = 184;
+ n_names["QTextLength"] = 185;
+ n_names["QTextLine"] = 186;
+ n_names["QTextListFormat"] = 187;
+ n_names["QTextOption"] = 188;
+ n_names["QTextTableCell"] = 189;
+ n_names["QTextTableCellFormat"] = 190;
+ n_names["QTextTableFormat"] = 191;
+ n_names["QTime"] = 192;
+ n_names["QTimeZone"] = 193;
+ n_names["QTimerEvent"] = 194;
+ n_names["QToolTip"] = 195;
+ n_names["QTouchDevice"] = 196;
+ n_names["QTouchEvent"] = 197;
+ n_names["QTransform"] = 198;
+ n_names["QTreeWidgetItem"] = 199;
+ n_names["QUndoCommand"] = 200;
+ n_names["QUrl"] = 201;
+ n_names["QVariant"] = 202;
+ n_names["QVector2D"] = 203;
+ n_names["QVector3D"] = 204;
+ n_names["QVector4D"] = 205;
+ n_names["QVideoEncoderSettings"] = 206;
+ n_names["QVideoFrame"] = 207;
+ n_names["QVideoSurfaceFormat"] = 208;
+ n_names["QWebDatabase"] = 209;
+ n_names["QWebElement"] = 210;
+ n_names["QWebElementCollection"] = 211;
+ n_names["QWebHistory"] = 212;
+ n_names["QWebHistoryItem"] = 213;
+ n_names["QWebHitTestResult"] = 214;
+ n_names["QWebSecurityOrigin"] = 215;
+ n_names["QWebSettings"] = 216;
+ n_names["QWhatsThis"] = 217;
+ n_names["QWhatsThisClickedEvent"] = 218;
+ n_names["QWheelEvent"] = 219;
+ n_names["QWidgetItem"] = 220;
+ n_names["QWindowStateChangeEvent"] = 221;
+ n_names["QWriteLocker"] = 222;
override_function_ids["duration()"] = 1;
override_function_ids["updateCurrentTime(int)"] = 2;
override_function_ids["updateDirection(QAbstractAnimation::Direction)"] = 3;
@@ -1730,52 +1736,53 @@ void LObjects::ini(EQL* e) {
override_function_ids["type(QFileInfo)"] = 451;
override_function_ids["removeAt(int)"] = 452;
override_function_ids["widgetEvent(QEvent*)"] = 453;
- override_function_ids["createEditor(int,QWidget*)"] = 454;
- override_function_ids["valuePropertyName(int)"] = 455;
- override_function_ids["spacerItem()"] = 456;
- override_function_ids["widget()"] = 457;
- override_function_ids["clone()"] = 458;
- override_function_ids["data(int)"] = 459;
- override_function_ids["setData(int,QVariant)"] = 460;
- override_function_ids["queryProxy(QNetworkProxyQuery)"] = 461;
- override_function_ids["ensureActiveTarget()"] = 462;
- override_function_ids["metric(QPaintDevice::PaintDeviceMetric)"] = 463;
- override_function_ids["setData(const char*,uint)"] = 464;
- override_function_ids["setPageSize(PageSize)"] = 465;
- override_function_ids["setPageSizeMM(QSizeF)"] = 466;
- override_function_ids["run()"] = 467;
- override_function_ids["bindValue(int,QVariant,QSql::ParamType)"] = 468;
- override_function_ids["bindValue(QString,QVariant,QSql::ParamType)"] = 469;
- override_function_ids["fetch(int)"] = 470;
- override_function_ids["fetchFirst()"] = 471;
- override_function_ids["fetchLast()"] = 472;
- override_function_ids["fetchNext()"] = 473;
- override_function_ids["fetchPrevious()"] = 474;
- override_function_ids["isNull(int)"] = 475;
- override_function_ids["lastInsertId()"] = 476;
- override_function_ids["numRowsAffected()"] = 477;
- override_function_ids["prepare(QString)"] = 478;
- override_function_ids["record()"] = 479;
- override_function_ids["reset(QString)"] = 480;
- override_function_ids["savePrepare(QString)"] = 481;
- override_function_ids["setActive(bool)"] = 482;
- override_function_ids["setAt(int)"] = 483;
- override_function_ids["setForwardOnly(bool)"] = 484;
- override_function_ids["setQuery(QString)"] = 485;
- override_function_ids["setSelect(bool)"] = 486;
- override_function_ids["setData(QVariant,int)"] = 487;
- override_function_ids["aliases()"] = 488;
- override_function_ids["mibEnum()"] = 489;
- override_function_ids["name()"] = 490;
- override_function_ids["convertFromUnicode(QChar*,int,ConverterState*)"] = 491;
- override_function_ids["convertToUnicode(const char*,int,ConverterState*)"] = 492;
- override_function_ids["data(int,int)"] = 493;
- override_function_ids["setData(int,int,QVariant)"] = 494;
- override_function_ids["id()"] = 495;
- override_function_ids["mergeWith(QUndoCommand*)"] = 496;
- override_function_ids["redo()"] = 497;
- override_function_ids["undo()"] = 498;
- override_arg_types = new const char** [498];
+ override_function_ids["valuePropertyName()"] = 454;
+ override_function_ids["createEditor(int,QWidget*)"] = 455;
+ override_function_ids["valuePropertyName(int)"] = 456;
+ override_function_ids["spacerItem()"] = 457;
+ override_function_ids["widget()"] = 458;
+ override_function_ids["clone()"] = 459;
+ override_function_ids["data(int)"] = 460;
+ override_function_ids["setData(int,QVariant)"] = 461;
+ override_function_ids["queryProxy(QNetworkProxyQuery)"] = 462;
+ override_function_ids["ensureActiveTarget()"] = 463;
+ override_function_ids["metric(QPaintDevice::PaintDeviceMetric)"] = 464;
+ override_function_ids["setData(const char*,uint)"] = 465;
+ override_function_ids["setPageSize(PageSize)"] = 466;
+ override_function_ids["setPageSizeMM(QSizeF)"] = 467;
+ override_function_ids["run()"] = 468;
+ override_function_ids["bindValue(int,QVariant,QSql::ParamType)"] = 469;
+ override_function_ids["bindValue(QString,QVariant,QSql::ParamType)"] = 470;
+ override_function_ids["fetch(int)"] = 471;
+ override_function_ids["fetchFirst()"] = 472;
+ override_function_ids["fetchLast()"] = 473;
+ override_function_ids["fetchNext()"] = 474;
+ override_function_ids["fetchPrevious()"] = 475;
+ override_function_ids["isNull(int)"] = 476;
+ override_function_ids["lastInsertId()"] = 477;
+ override_function_ids["numRowsAffected()"] = 478;
+ override_function_ids["prepare(QString)"] = 479;
+ override_function_ids["record()"] = 480;
+ override_function_ids["reset(QString)"] = 481;
+ override_function_ids["savePrepare(QString)"] = 482;
+ override_function_ids["setActive(bool)"] = 483;
+ override_function_ids["setAt(int)"] = 484;
+ override_function_ids["setForwardOnly(bool)"] = 485;
+ override_function_ids["setQuery(QString)"] = 486;
+ override_function_ids["setSelect(bool)"] = 487;
+ override_function_ids["setData(QVariant,int)"] = 488;
+ override_function_ids["aliases()"] = 489;
+ override_function_ids["mibEnum()"] = 490;
+ override_function_ids["name()"] = 491;
+ override_function_ids["convertFromUnicode(QChar*,int,ConverterState*)"] = 492;
+ override_function_ids["convertToUnicode(const char*,int,ConverterState*)"] = 493;
+ override_function_ids["data(int,int)"] = 494;
+ override_function_ids["setData(int,int,QVariant)"] = 495;
+ override_function_ids["id()"] = 496;
+ override_function_ids["mergeWith(QUndoCommand*)"] = 497;
+ override_function_ids["redo()"] = 498;
+ override_function_ids["undo()"] = 499;
+ override_arg_types = new const char** [499];
{ 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; }
@@ -2229,56 +2236,57 @@ void LObjects::ini(EQL* e) {
{ static const char* s[] = { "QString", "QFileInfo", 0 }; override_arg_types[450] = s; }
{ static const char* s[] = { 0, "int", 0 }; override_arg_types[451] = s; }
{ static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[452] = s; }
- { static const char* s[] = { "QWidget*", "int", "QWidget*", 0 }; override_arg_types[453] = s; }
- { static const char* s[] = { "QByteArray", "int", 0 }; override_arg_types[454] = s; }
- { static const char* s[] = { "QSpacerItem*", 0 }; override_arg_types[455] = s; }
- { static const char* s[] = { "QWidget*", 0 }; override_arg_types[456] = s; }
- { static const char* s[] = { "QListWidgetItem*", 0 }; override_arg_types[457] = s; }
- { static const char* s[] = { "QVariant", "int", 0 }; override_arg_types[458] = s; }
- { static const char* s[] = { 0, "int", "QVariant", 0 }; override_arg_types[459] = s; }
- { static const char* s[] = { "QList", "QNetworkProxyQuery", 0 }; override_arg_types[460] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[461] = s; }
- { static const char* s[] = { "int", "QPaintDevice::PaintDeviceMetric", 0 }; override_arg_types[462] = s; }
- { static const char* s[] = { 0, "const char*", "uint", 0 }; override_arg_types[463] = s; }
- { static const char* s[] = { 0, "PageSize", 0 }; override_arg_types[464] = s; }
- { static const char* s[] = { 0, "QSizeF", 0 }; override_arg_types[465] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[466] = s; }
- { static const char* s[] = { 0, "int", "QVariant", "QSql::ParamType", 0 }; override_arg_types[467] = s; }
- { static const char* s[] = { 0, "QString", "QVariant", "QSql::ParamType", 0 }; override_arg_types[468] = s; }
- { static const char* s[] = { "bool", "int", 0 }; override_arg_types[469] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[470] = s; }
+ { static const char* s[] = { "QByteArray", 0 }; override_arg_types[453] = s; }
+ { static const char* s[] = { "QWidget*", "int", "QWidget*", 0 }; override_arg_types[454] = s; }
+ { static const char* s[] = { "QByteArray", "int", 0 }; override_arg_types[455] = s; }
+ { static const char* s[] = { "QSpacerItem*", 0 }; override_arg_types[456] = s; }
+ { static const char* s[] = { "QWidget*", 0 }; override_arg_types[457] = s; }
+ { static const char* s[] = { "QListWidgetItem*", 0 }; override_arg_types[458] = s; }
+ { static const char* s[] = { "QVariant", "int", 0 }; override_arg_types[459] = s; }
+ { static const char* s[] = { 0, "int", "QVariant", 0 }; override_arg_types[460] = s; }
+ { static const char* s[] = { "QList", "QNetworkProxyQuery", 0 }; override_arg_types[461] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[462] = s; }
+ { static const char* s[] = { "int", "QPaintDevice::PaintDeviceMetric", 0 }; override_arg_types[463] = s; }
+ { static const char* s[] = { 0, "const char*", "uint", 0 }; override_arg_types[464] = s; }
+ { static const char* s[] = { 0, "PageSize", 0 }; override_arg_types[465] = s; }
+ { static const char* s[] = { 0, "QSizeF", 0 }; override_arg_types[466] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[467] = s; }
+ { static const char* s[] = { 0, "int", "QVariant", "QSql::ParamType", 0 }; override_arg_types[468] = s; }
+ { static const char* s[] = { 0, "QString", "QVariant", "QSql::ParamType", 0 }; override_arg_types[469] = s; }
+ { static const char* s[] = { "bool", "int", 0 }; override_arg_types[470] = s; }
{ static const char* s[] = { "bool", 0 }; override_arg_types[471] = s; }
{ static const char* s[] = { "bool", 0 }; override_arg_types[472] = s; }
{ static const char* s[] = { "bool", 0 }; override_arg_types[473] = s; }
- { static const char* s[] = { "bool", "int", 0 }; override_arg_types[474] = s; }
- { static const char* s[] = { "QVariant", 0 }; override_arg_types[475] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[476] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[477] = s; }
- { static const char* s[] = { "QSqlRecord", 0 }; override_arg_types[478] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[479] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[474] = s; }
+ { static const char* s[] = { "bool", "int", 0 }; override_arg_types[475] = s; }
+ { static const char* s[] = { "QVariant", 0 }; override_arg_types[476] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[477] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[478] = s; }
+ { static const char* s[] = { "QSqlRecord", 0 }; override_arg_types[479] = s; }
{ static const char* s[] = { "bool", "QString", 0 }; override_arg_types[480] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[481] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[482] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[483] = s; }
- { static const char* s[] = { 0, "QString", 0 }; override_arg_types[484] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[485] = s; }
- { static const char* s[] = { 0, "QVariant", "int", 0 }; override_arg_types[486] = s; }
- { static const char* s[] = { "QList", 0 }; override_arg_types[487] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[488] = s; }
- { static const char* s[] = { "QByteArray", 0 }; override_arg_types[489] = s; }
- { static const char* s[] = { "QByteArray", "QChar*", "int", "ConverterState*", 0 }; override_arg_types[490] = s; }
- { static const char* s[] = { "QString", "const char*", "int", "ConverterState*", 0 }; override_arg_types[491] = s; }
- { static const char* s[] = { "QVariant", "int", "int", 0 }; override_arg_types[492] = s; }
- { static const char* s[] = { 0, "int", "int", "QVariant", 0 }; override_arg_types[493] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[494] = s; }
- { static const char* s[] = { "bool", "QUndoCommand*", 0 }; override_arg_types[495] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[496] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[481] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[482] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[483] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[484] = s; }
+ { static const char* s[] = { 0, "QString", 0 }; override_arg_types[485] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[486] = s; }
+ { static const char* s[] = { 0, "QVariant", "int", 0 }; override_arg_types[487] = s; }
+ { static const char* s[] = { "QList", 0 }; override_arg_types[488] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[489] = s; }
+ { static const char* s[] = { "QByteArray", 0 }; override_arg_types[490] = s; }
+ { static const char* s[] = { "QByteArray", "QChar*", "int", "ConverterState*", 0 }; override_arg_types[491] = s; }
+ { static const char* s[] = { "QString", "const char*", "int", "ConverterState*", 0 }; override_arg_types[492] = s; }
+ { static const char* s[] = { "QVariant", "int", "int", 0 }; override_arg_types[493] = s; }
+ { static const char* s[] = { 0, "int", "int", "QVariant", 0 }; override_arg_types[494] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[495] = s; }
+ { static const char* s[] = { "bool", "QUndoCommand*", 0 }; override_arg_types[496] = s; }
{ static const char* s[] = { 0, 0 }; override_arg_types[497] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[498] = s; }
qNames = q_names.keys();
nNames = n_names.keys(); }}
quint64 LObjects::override_id(uint unique, int id) {
- return (220 * (quint64)unique + id); }
+ return (221 * (quint64)unique + id); }
void* LObjects::overrideFun(quint64 id) {
return override_lisp_functions.value(id, 0); }
@@ -2293,35 +2301,35 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) {
n = -LObjects::n_names.value(name, 0); }}
const QMetaObject* m = 0;
switch(n) {
- case -220: m = &QWindowStateChangeEvent::staticMetaObject; break;
- case -218: m = &QWheelEvent::staticMetaObject; break;
- case -217: m = &QWhatsThisClickedEvent::staticMetaObject; break;
- case -196: m = &QTouchEvent::staticMetaObject; break;
- case -195: m = &QTouchDevice::staticMetaObject; break;
- case -193: m = &QTimerEvent::staticMetaObject; break;
- case -190: m = &QTextTableFormat::staticMetaObject; break;
- case -189: m = &QTextTableCellFormat::staticMetaObject; break;
- case -186: m = &QTextListFormat::staticMetaObject; break;
- case -182: m = &QTextImageFormat::staticMetaObject; break;
- case -181: m = &QTextFrameFormat::staticMetaObject; break;
- case -179: m = &QTextFormat::staticMetaObject; break;
- case -172: m = &QTextCharFormat::staticMetaObject; break;
- case -169: m = &QTextBlockFormat::staticMetaObject; break;
- case -167: m = &QTabletEvent::staticMetaObject; break;
- case -158: m = &QStatusTipEvent::staticMetaObject; break;
- case -141: m = &QSizePolicy::staticMetaObject; break;
- case -140: m = &QShowEvent::staticMetaObject; break;
- case -139: m = &QShortcutEvent::staticMetaObject; break;
- case -136: m = &QResizeEvent::staticMetaObject; break;
- case -130: m = &QRadialGradient::staticMetaObject; break;
- case -120: m = &QPalette::staticMetaObject; break;
- case -117: m = &QPainter::staticMetaObject; break;
- case -116: m = &QPaintEvent::staticMetaObject; break;
- case -101: m = &QMoveEvent::staticMetaObject; break;
- case -100: m = &QMouseEvent::staticMetaObject; break;
- case -91: m = &QLocale::staticMetaObject; break;
- case -89: m = &QLinearGradient::staticMetaObject; break;
- case -85: m = &QKeyEvent::staticMetaObject; break;
+ case -221: m = &QWindowStateChangeEvent::staticMetaObject; break;
+ case -219: m = &QWheelEvent::staticMetaObject; break;
+ case -218: m = &QWhatsThisClickedEvent::staticMetaObject; break;
+ case -197: m = &QTouchEvent::staticMetaObject; break;
+ case -196: m = &QTouchDevice::staticMetaObject; break;
+ case -194: m = &QTimerEvent::staticMetaObject; break;
+ case -191: m = &QTextTableFormat::staticMetaObject; break;
+ case -190: m = &QTextTableCellFormat::staticMetaObject; break;
+ case -187: m = &QTextListFormat::staticMetaObject; break;
+ case -183: m = &QTextImageFormat::staticMetaObject; break;
+ case -182: m = &QTextFrameFormat::staticMetaObject; break;
+ case -180: m = &QTextFormat::staticMetaObject; break;
+ case -173: m = &QTextCharFormat::staticMetaObject; break;
+ case -170: m = &QTextBlockFormat::staticMetaObject; break;
+ case -168: m = &QTabletEvent::staticMetaObject; break;
+ case -159: m = &QStatusTipEvent::staticMetaObject; break;
+ case -142: m = &QSizePolicy::staticMetaObject; break;
+ case -141: m = &QShowEvent::staticMetaObject; break;
+ case -140: m = &QShortcutEvent::staticMetaObject; break;
+ case -137: m = &QResizeEvent::staticMetaObject; break;
+ case -131: m = &QRadialGradient::staticMetaObject; break;
+ case -121: m = &QPalette::staticMetaObject; break;
+ case -118: m = &QPainter::staticMetaObject; break;
+ case -117: m = &QPaintEvent::staticMetaObject; break;
+ case -102: m = &QMoveEvent::staticMetaObject; break;
+ case -101: m = &QMouseEvent::staticMetaObject; break;
+ case -92: m = &QLocale::staticMetaObject; break;
+ case -90: m = &QLinearGradient::staticMetaObject; break;
+ case -86: m = &QKeyEvent::staticMetaObject; break;
case -82: m = &QInputMethodEvent::staticMetaObject; break;
case -81: m = &QInputEvent::staticMetaObject; break;
case -78: m = &QIconDragEvent::staticMetaObject; break;
@@ -2436,116 +2444,117 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) {
case 93: m = &QHeaderView::staticMetaObject; break;
case 102: m = &QHistoryState::staticMetaObject; break;
case 103: m = &QIODevice::staticMetaObject; break;
- case 104: m = &QInputDialog::staticMetaObject; break;
- case 105: m = &QIntValidator::staticMetaObject; break;
- case 106: m = &QItemDelegate::staticMetaObject; break;
- case 107: m = &QItemSelectionModel::staticMetaObject; break;
- case 108: m = &QKeyEventTransition::staticMetaObject; break;
- case 109: m = &QLCDNumber::staticMetaObject; break;
- case 110: m = &QLabel::staticMetaObject; break;
- case 111: m = &QLayout::staticMetaObject; break;
- case 112: m = &QLibrary::staticMetaObject; break;
- case 113: m = &QLineEdit::staticMetaObject; break;
- case 114: m = &QListView::staticMetaObject; break;
- case 115: m = &QListWidget::staticMetaObject; break;
- case 118: m = &QMainWindow::staticMetaObject; break;
- case 119: m = &QMdiArea::staticMetaObject; break;
- case 120: m = &QMdiSubWindow::staticMetaObject; break;
- case 126: m = &QMenu::staticMetaObject; break;
- case 127: m = &QMenuBar::staticMetaObject; break;
- case 128: m = &QMessageBox::staticMetaObject; break;
- case 129: m = &QMimeData::staticMetaObject; break;
- case 130: m = &QMouseEventTransition::staticMetaObject; break;
- case 131: m = &QMovie::staticMetaObject; break;
- case 136: m = &QObject::staticMetaObject; break;
- case 137: m = &QOpenGLContext::staticMetaObject; break;
- case 138: m = &QOpenGLShader::staticMetaObject; break;
- case 139: m = &QOpenGLShaderProgram::staticMetaObject; break;
- case 140: m = &QOpenGLWidget::staticMetaObject; break;
- case 141: m = &QOpenGLWindow::staticMetaObject; break;
- case 142: m = &QPageSetupDialog::staticMetaObject; break;
- case 143: m = &QPaintDeviceWindow::staticMetaObject; break;
- case 144: m = &QPanGesture::staticMetaObject; break;
- case 145: m = &QParallelAnimationGroup::staticMetaObject; break;
- case 146: m = &QPauseAnimation::staticMetaObject; break;
- case 147: m = &QPdfWriter::staticMetaObject; break;
- case 148: m = &QPinchGesture::staticMetaObject; break;
- case 149: m = &QPlainTextDocumentLayout::staticMetaObject; break;
- case 150: m = &QPlainTextEdit::staticMetaObject; break;
- case 151: m = &QPluginLoader::staticMetaObject; break;
- case 152: m = &QPrintDialog::staticMetaObject; break;
- case 153: m = &QPrintPreviewDialog::staticMetaObject; break;
- case 154: m = &QPrintPreviewWidget::staticMetaObject; break;
- case 155: m = &QProcess::staticMetaObject; break;
- case 156: m = &QProgressBar::staticMetaObject; break;
- case 157: m = &QProgressDialog::staticMetaObject; break;
- case 158: m = &QPropertyAnimation::staticMetaObject; break;
- case 159: m = &QProxyStyle::staticMetaObject; break;
- case 160: m = &QPushButton::staticMetaObject; break;
- case 161: m = &QRadioButton::staticMetaObject; break;
- case 163: m = &QRegExpValidator::staticMetaObject; break;
- case 164: m = &QRubberBand::staticMetaObject; break;
- case 165: m = &QScreen::staticMetaObject; break;
- case 166: m = &QScrollArea::staticMetaObject; break;
- case 167: m = &QScrollBar::staticMetaObject; break;
- case 168: m = &QSequentialAnimationGroup::staticMetaObject; break;
- case 169: m = &QSessionManager::staticMetaObject; break;
- case 170: m = &QSettings::staticMetaObject; break;
- case 171: m = &QShortcut::staticMetaObject; break;
- case 172: m = &QSignalTransition::staticMetaObject; break;
- case 173: m = &QSizeGrip::staticMetaObject; break;
- case 174: m = &QSlider::staticMetaObject; break;
- case 175: m = &QSortFilterProxyModel::staticMetaObject; break;
- case 176: m = &QSpinBox::staticMetaObject; break;
- case 177: m = &QSplashScreen::staticMetaObject; break;
- case 178: m = &QSplitter::staticMetaObject; break;
- case 179: m = &QSplitterHandle::staticMetaObject; break;
- case 185: m = &QStackedLayout::staticMetaObject; break;
- case 186: m = &QStackedWidget::staticMetaObject; break;
- case 187: m = &QStandardItemModel::staticMetaObject; break;
- case 188: m = &QState::staticMetaObject; break;
- case 189: m = &QStateMachine::staticMetaObject; break;
- case 190: m = &QStatusBar::staticMetaObject; break;
- case 191: m = &QStringListModel::staticMetaObject; break;
- case 192: m = &QStyle::staticMetaObject; break;
- case 193: m = &QStyledItemDelegate::staticMetaObject; break;
- case 196: m = &QSwipeGesture::staticMetaObject; break;
- case 197: m = &QSyntaxHighlighter::staticMetaObject; break;
- case 198: m = &QSystemTrayIcon::staticMetaObject; break;
- case 199: m = &QTabBar::staticMetaObject; break;
- case 200: m = &QTabWidget::staticMetaObject; break;
- case 201: m = &QTableView::staticMetaObject; break;
- case 202: m = &QTableWidget::staticMetaObject; break;
- case 203: m = &QTapAndHoldGesture::staticMetaObject; break;
- case 204: m = &QTapGesture::staticMetaObject; break;
- case 207: m = &QTextBlockGroup::staticMetaObject; break;
- case 208: m = &QTextBrowser::staticMetaObject; break;
- case 209: m = &QTextDocument::staticMetaObject; break;
- case 210: m = &QTextEdit::staticMetaObject; break;
- case 211: m = &QTextFrame::staticMetaObject; break;
- case 212: m = &QTextList::staticMetaObject; break;
- case 213: m = &QTextObject::staticMetaObject; break;
- case 214: m = &QTextTable::staticMetaObject; break;
- case 215: m = &QTimeEdit::staticMetaObject; break;
- case 216: m = &QTimeLine::staticMetaObject; break;
- case 217: m = &QTimer::staticMetaObject; break;
- case 218: m = &QToolBar::staticMetaObject; break;
- case 219: m = &QToolBox::staticMetaObject; break;
- case 220: m = &QToolButton::staticMetaObject; break;
- case 221: m = &QTranslator::staticMetaObject; break;
- case 222: m = &QTreeView::staticMetaObject; break;
- case 223: m = &QTreeWidget::staticMetaObject; break;
- case 225: m = &QUndoGroup::staticMetaObject; break;
- case 226: m = &QUndoStack::staticMetaObject; break;
- case 227: m = &QUndoView::staticMetaObject; break;
- case 228: m = &QVBoxLayout::staticMetaObject; break;
- case 229: m = &QValidator::staticMetaObject; break;
- case 230: m = &QVariantAnimation::staticMetaObject; break;
- case 239: m = &QWidget::staticMetaObject; break;
- case 240: m = &QWidgetAction::staticMetaObject; break;
- case 241: m = &QWindow::staticMetaObject; break;
- case 242: m = &QWizard::staticMetaObject; break;
- case 243: m = &QWizardPage::staticMetaObject; break;
+ case 104: m = &QIdentityProxyModel::staticMetaObject; break;
+ case 105: m = &QInputDialog::staticMetaObject; break;
+ case 106: m = &QIntValidator::staticMetaObject; break;
+ case 107: m = &QItemDelegate::staticMetaObject; break;
+ case 108: m = &QItemSelectionModel::staticMetaObject; break;
+ case 109: m = &QKeyEventTransition::staticMetaObject; break;
+ case 110: m = &QLCDNumber::staticMetaObject; break;
+ case 111: m = &QLabel::staticMetaObject; break;
+ case 112: m = &QLayout::staticMetaObject; break;
+ case 113: m = &QLibrary::staticMetaObject; break;
+ case 114: m = &QLineEdit::staticMetaObject; break;
+ case 115: m = &QListView::staticMetaObject; break;
+ case 116: m = &QListWidget::staticMetaObject; break;
+ case 119: m = &QMainWindow::staticMetaObject; break;
+ case 120: m = &QMdiArea::staticMetaObject; break;
+ case 121: m = &QMdiSubWindow::staticMetaObject; break;
+ case 127: m = &QMenu::staticMetaObject; break;
+ case 128: m = &QMenuBar::staticMetaObject; break;
+ case 129: m = &QMessageBox::staticMetaObject; break;
+ case 130: m = &QMimeData::staticMetaObject; break;
+ case 131: m = &QMouseEventTransition::staticMetaObject; break;
+ case 132: m = &QMovie::staticMetaObject; break;
+ case 137: m = &QObject::staticMetaObject; break;
+ case 138: m = &QOpenGLContext::staticMetaObject; break;
+ case 139: m = &QOpenGLShader::staticMetaObject; break;
+ case 140: m = &QOpenGLShaderProgram::staticMetaObject; break;
+ case 141: m = &QOpenGLWidget::staticMetaObject; break;
+ case 142: m = &QOpenGLWindow::staticMetaObject; break;
+ case 143: m = &QPageSetupDialog::staticMetaObject; break;
+ case 144: m = &QPaintDeviceWindow::staticMetaObject; break;
+ case 145: m = &QPanGesture::staticMetaObject; break;
+ case 146: m = &QParallelAnimationGroup::staticMetaObject; break;
+ case 147: m = &QPauseAnimation::staticMetaObject; break;
+ case 148: m = &QPdfWriter::staticMetaObject; break;
+ case 149: m = &QPinchGesture::staticMetaObject; break;
+ case 150: m = &QPlainTextDocumentLayout::staticMetaObject; break;
+ case 151: m = &QPlainTextEdit::staticMetaObject; break;
+ case 152: m = &QPluginLoader::staticMetaObject; break;
+ case 153: m = &QPrintDialog::staticMetaObject; break;
+ case 154: m = &QPrintPreviewDialog::staticMetaObject; break;
+ case 155: m = &QPrintPreviewWidget::staticMetaObject; break;
+ case 156: m = &QProcess::staticMetaObject; break;
+ case 157: m = &QProgressBar::staticMetaObject; break;
+ case 158: m = &QProgressDialog::staticMetaObject; break;
+ case 159: m = &QPropertyAnimation::staticMetaObject; break;
+ case 160: m = &QProxyStyle::staticMetaObject; break;
+ case 161: m = &QPushButton::staticMetaObject; break;
+ case 162: m = &QRadioButton::staticMetaObject; break;
+ case 164: m = &QRegExpValidator::staticMetaObject; break;
+ case 165: m = &QRubberBand::staticMetaObject; break;
+ case 166: m = &QScreen::staticMetaObject; break;
+ case 167: m = &QScrollArea::staticMetaObject; break;
+ case 168: m = &QScrollBar::staticMetaObject; break;
+ case 169: m = &QSequentialAnimationGroup::staticMetaObject; break;
+ case 170: m = &QSessionManager::staticMetaObject; break;
+ case 171: m = &QSettings::staticMetaObject; break;
+ case 172: m = &QShortcut::staticMetaObject; break;
+ case 173: m = &QSignalTransition::staticMetaObject; break;
+ case 174: m = &QSizeGrip::staticMetaObject; break;
+ case 175: m = &QSlider::staticMetaObject; break;
+ case 176: m = &QSortFilterProxyModel::staticMetaObject; break;
+ case 177: m = &QSpinBox::staticMetaObject; break;
+ case 178: m = &QSplashScreen::staticMetaObject; break;
+ case 179: m = &QSplitter::staticMetaObject; break;
+ case 180: m = &QSplitterHandle::staticMetaObject; break;
+ case 186: m = &QStackedLayout::staticMetaObject; break;
+ case 187: m = &QStackedWidget::staticMetaObject; break;
+ case 188: m = &QStandardItemModel::staticMetaObject; break;
+ case 189: m = &QState::staticMetaObject; break;
+ case 190: m = &QStateMachine::staticMetaObject; break;
+ case 191: m = &QStatusBar::staticMetaObject; break;
+ case 192: m = &QStringListModel::staticMetaObject; break;
+ case 193: m = &QStyle::staticMetaObject; break;
+ case 194: m = &QStyledItemDelegate::staticMetaObject; break;
+ case 197: m = &QSwipeGesture::staticMetaObject; break;
+ case 198: m = &QSyntaxHighlighter::staticMetaObject; break;
+ case 199: m = &QSystemTrayIcon::staticMetaObject; break;
+ case 200: m = &QTabBar::staticMetaObject; break;
+ case 201: m = &QTabWidget::staticMetaObject; break;
+ case 202: m = &QTableView::staticMetaObject; break;
+ case 203: m = &QTableWidget::staticMetaObject; break;
+ case 204: m = &QTapAndHoldGesture::staticMetaObject; break;
+ case 205: m = &QTapGesture::staticMetaObject; break;
+ case 208: m = &QTextBlockGroup::staticMetaObject; break;
+ case 209: m = &QTextBrowser::staticMetaObject; break;
+ case 210: m = &QTextDocument::staticMetaObject; break;
+ case 211: m = &QTextEdit::staticMetaObject; break;
+ case 212: m = &QTextFrame::staticMetaObject; break;
+ case 213: m = &QTextList::staticMetaObject; break;
+ case 214: m = &QTextObject::staticMetaObject; break;
+ case 215: m = &QTextTable::staticMetaObject; break;
+ case 216: m = &QTimeEdit::staticMetaObject; break;
+ case 217: m = &QTimeLine::staticMetaObject; break;
+ case 218: m = &QTimer::staticMetaObject; break;
+ case 219: m = &QToolBar::staticMetaObject; break;
+ case 220: m = &QToolBox::staticMetaObject; break;
+ case 221: m = &QToolButton::staticMetaObject; break;
+ case 222: m = &QTranslator::staticMetaObject; break;
+ case 223: m = &QTreeView::staticMetaObject; break;
+ case 224: m = &QTreeWidget::staticMetaObject; break;
+ case 226: m = &QUndoGroup::staticMetaObject; break;
+ case 227: m = &QUndoStack::staticMetaObject; break;
+ case 228: m = &QUndoView::staticMetaObject; break;
+ case 229: m = &QVBoxLayout::staticMetaObject; break;
+ case 230: m = &QValidator::staticMetaObject; break;
+ case 231: m = &QVariantAnimation::staticMetaObject; break;
+ case 240: m = &QWidget::staticMetaObject; break;
+ case 241: m = &QWidgetAction::staticMetaObject; break;
+ case 242: m = &QWindow::staticMetaObject; break;
+ case 243: m = &QWizard::staticMetaObject; break;
+ case 244: m = &QWizardPage::staticMetaObject; break;
case 94:
case 95:
case 96:
@@ -2567,52 +2576,52 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) {
case 33:
case 34:
case 85:
- case 121:
case 122:
case 123:
case 124:
case 125:
- case 162:
- case 231:
+ case 126:
+ case 163:
case 232:
+ case 233:
if(staticMetaObject_multimedia) {
m = staticMetaObject_multimedia(n); }
break;
case 7:
case 12:
- case 116:
case 117:
- case 132:
+ case 118:
case 133:
case 134:
case 135:
- case 205:
+ case 136:
case 206:
- case 224:
+ case 207:
+ case 225:
if(staticMetaObject_network) {
m = staticMetaObject_network(n); }
break;
- case 180:
case 181:
case 182:
case 183:
case 184:
+ case 185:
if(staticMetaObject_sql) {
m = staticMetaObject_sql(n); }
break;
case 82:
- case 194:
case 195:
+ case 196:
if(staticMetaObject_svg) {
m = staticMetaObject_svg(n); }
break;
case 87:
- case 233:
case 234:
case 235:
case 236:
case 237:
case 238:
+ case 239:
if(staticMetaObject_webkit) {
m = staticMetaObject_webkit(n); }
break; }
@@ -2688,105 +2697,106 @@ void LObjects::deleteNObject(int n, void* p, int gc) {
case 79: if(gc) delete (QImage*)p; else delete (LImage*)p; break;
case 81: if(gc) delete (QInputEvent*)p; else delete (LInputEvent*)p; break;
case 82: if(gc) delete (QInputMethodEvent*)p; else delete (LInputMethodEvent*)p; break;
- case 83: if(gc) delete (QItemEditorFactory*)p; else delete (LItemEditorFactory*)p; break;
- case 84: if(gc) delete (QItemSelectionRange*)p; else delete (LItemSelectionRange*)p; break;
- case 85: if(gc) delete (QKeyEvent*)p; else delete (LKeyEvent*)p; break;
- case 86: if(gc) delete (QKeySequence*)p; else delete (LKeySequence*)p; break;
- case 87: if(gc) delete (QLayoutItem*)p; else delete (LLayoutItem*)p; break;
- case 88: if(gc) delete (QLibraryInfo*)p; else delete (LLibraryInfo*)p; break;
- case 89: if(gc) delete (QLinearGradient*)p; else delete (LLinearGradient*)p; break;
- case 90: if(gc) delete (QListWidgetItem*)p; else delete (LListWidgetItem*)p; break;
- case 91: if(gc) delete (QLocale*)p; else delete (LLocale*)p; break;
- case 92: if(gc) delete (QMargins*)p; else delete (LMargins*)p; break;
- case 93: if(gc) delete (QMarginsF*)p; else delete (LMarginsF*)p; break;
- case 94: if(gc) delete (QMatrix*)p; else delete (LMatrix*)p; break;
- case 95: if(gc) delete (QMatrix4x4*)p; else delete (LMatrix4x4*)p; break;
- case 98: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break;
- case 99: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break;
- case 100: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break;
- case 101: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break;
- case 110: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break;
- case 111: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break;
- case 112: if(gc) delete (QPageLayout*)p; else delete (LPageLayout*)p; break;
- case 113: if(gc) delete (QPageSize*)p; else delete (LPageSize*)p; break;
- case 116: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break;
- case 117: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break;
- case 118: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break;
- case 119: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break;
- case 120: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break;
- case 121: if(gc) delete (QPen*)p; else delete (LPen*)p; break;
- case 122: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break;
- case 123: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break;
- case 124: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break;
- case 125: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break;
- case 126: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break;
- case 127: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break;
- case 128: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break;
- case 129: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break;
- case 130: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break;
- case 131: if(gc) delete (QReadLocker*)p; else delete (LReadLocker*)p; break;
- case 132: if(gc) delete (QReadWriteLock*)p; else delete (LReadWriteLock*)p; break;
- case 133: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break;
- case 134: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break;
- case 135: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break;
- case 136: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break;
- case 137: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break;
- case 138: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break;
- case 139: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break;
- case 140: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break;
- case 141: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break;
- case 142: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break;
- case 156: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break;
- case 158: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break;
- case 159: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break;
- case 160: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break;
- case 164: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break;
- case 165: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break;
- case 166: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break;
- case 167: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break;
- case 168: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break;
- case 169: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break;
- case 170: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break;
- case 171: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break;
- case 172: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break;
- case 173: if(gc) /* nothing */; else delete (LTextCodec*)p; break;
- case 174: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break;
- case 175: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break;
- case 176: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break;
- case 177: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break;
- case 178: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break;
- case 179: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break;
- case 180: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break;
- case 181: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break;
- case 182: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break;
- case 183: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break;
- case 184: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break;
- case 185: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break;
- case 186: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break;
- case 187: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break;
- case 188: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break;
- case 189: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break;
- case 190: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break;
- case 191: if(gc) delete (QTime*)p; else delete (LTime*)p; break;
- case 192: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break;
- case 193: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break;
- case 194: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break;
- case 195: if(gc) delete (QTouchDevice*)p; else delete (LTouchDevice*)p; break;
- case 196: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break;
- case 197: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break;
- case 198: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break;
- case 199: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break;
- case 200: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break;
- case 201: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break;
- case 202: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break;
- case 203: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break;
- case 204: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break;
- case 216: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break;
- case 217: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break;
- case 218: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break;
- case 219: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break;
- case 220: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break;
- case 221: if(gc) delete (QWriteLocker*)p; else delete (LWriteLocker*)p; break;
+ case 83: if(gc) delete (QItemEditorCreatorBase*)p; else delete (LItemEditorCreatorBase*)p; break;
+ case 84: if(gc) delete (QItemEditorFactory*)p; else delete (LItemEditorFactory*)p; break;
+ case 85: if(gc) delete (QItemSelectionRange*)p; else delete (LItemSelectionRange*)p; break;
+ case 86: if(gc) delete (QKeyEvent*)p; else delete (LKeyEvent*)p; break;
+ case 87: if(gc) delete (QKeySequence*)p; else delete (LKeySequence*)p; break;
+ case 88: if(gc) delete (QLayoutItem*)p; else delete (LLayoutItem*)p; break;
+ case 89: if(gc) delete (QLibraryInfo*)p; else delete (LLibraryInfo*)p; break;
+ case 90: if(gc) delete (QLinearGradient*)p; else delete (LLinearGradient*)p; break;
+ case 91: if(gc) delete (QListWidgetItem*)p; else delete (LListWidgetItem*)p; break;
+ case 92: if(gc) delete (QLocale*)p; else delete (LLocale*)p; break;
+ case 93: if(gc) delete (QMargins*)p; else delete (LMargins*)p; break;
+ case 94: if(gc) delete (QMarginsF*)p; else delete (LMarginsF*)p; break;
+ case 95: if(gc) delete (QMatrix*)p; else delete (LMatrix*)p; break;
+ case 96: if(gc) delete (QMatrix4x4*)p; else delete (LMatrix4x4*)p; break;
+ case 99: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break;
+ case 100: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break;
+ case 101: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break;
+ case 102: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break;
+ case 111: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break;
+ case 112: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break;
+ case 113: if(gc) delete (QPageLayout*)p; else delete (LPageLayout*)p; break;
+ case 114: if(gc) delete (QPageSize*)p; else delete (LPageSize*)p; break;
+ case 117: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break;
+ case 118: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break;
+ case 119: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break;
+ case 120: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break;
+ case 121: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break;
+ case 122: if(gc) delete (QPen*)p; else delete (LPen*)p; break;
+ case 123: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break;
+ case 124: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break;
+ case 125: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break;
+ case 126: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break;
+ case 127: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break;
+ case 128: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break;
+ case 129: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break;
+ case 130: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break;
+ case 131: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break;
+ case 132: if(gc) delete (QReadLocker*)p; else delete (LReadLocker*)p; break;
+ case 133: if(gc) delete (QReadWriteLock*)p; else delete (LReadWriteLock*)p; break;
+ case 134: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break;
+ case 135: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break;
+ case 136: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break;
+ case 137: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break;
+ case 138: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break;
+ case 139: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break;
+ case 140: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break;
+ case 141: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break;
+ case 142: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break;
+ case 143: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break;
+ case 157: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break;
+ case 159: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break;
+ case 160: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break;
+ case 161: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break;
+ case 165: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break;
+ case 166: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break;
+ case 167: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break;
+ case 168: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break;
+ case 169: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break;
+ case 170: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break;
+ case 171: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break;
+ case 172: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break;
+ case 173: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break;
+ case 174: if(gc) /* nothing */; else delete (LTextCodec*)p; break;
+ case 175: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break;
+ case 176: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break;
+ case 177: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break;
+ case 178: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break;
+ case 179: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break;
+ case 180: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break;
+ case 181: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break;
+ case 182: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break;
+ case 183: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break;
+ case 184: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break;
+ case 185: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break;
+ case 186: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break;
+ case 187: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break;
+ case 188: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break;
+ case 189: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break;
+ case 190: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break;
+ case 191: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break;
+ case 192: if(gc) delete (QTime*)p; else delete (LTime*)p; break;
+ case 193: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break;
+ case 194: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break;
+ case 195: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break;
+ case 196: if(gc) delete (QTouchDevice*)p; else delete (LTouchDevice*)p; break;
+ case 197: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break;
+ case 198: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break;
+ case 199: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break;
+ case 200: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break;
+ case 201: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break;
+ case 202: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break;
+ case 203: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break;
+ case 204: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break;
+ case 205: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break;
+ case 217: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break;
+ case 218: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break;
+ case 219: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break;
+ case 220: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break;
+ case 221: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break;
+ case 222: if(gc) delete (QWriteLocker*)p; else delete (LWriteLocker*)p; break;
case 70:
case 72:
if(deleteNObject_help) {
@@ -2798,18 +2808,17 @@ void LObjects::deleteNObject(int n, void* p, int gc) {
case 16:
case 17:
case 80:
- case 96:
case 97:
- case 205:
+ case 98:
case 206:
case 207:
+ case 208:
if(deleteNObject_multimedia) {
deleteNObject_multimedia(n, p, gc); }
break;
case 11:
case 74:
case 75:
- case 102:
case 103:
case 104:
case 105:
@@ -2817,15 +2826,15 @@ void LObjects::deleteNObject(int n, void* p, int gc) {
case 107:
case 108:
case 109:
- case 151:
+ case 110:
case 152:
case 153:
case 154:
case 155:
+ case 156:
if(deleteNObject_network) {
deleteNObject_network(n, p, gc); }
break;
- case 143:
case 144:
case 145:
case 146:
@@ -2833,14 +2842,14 @@ void LObjects::deleteNObject(int n, void* p, int gc) {
case 148:
case 149:
case 150:
+ case 151:
if(deleteNObject_sql) {
deleteNObject_sql(n, p, gc); }
break;
- case 162:
+ case 163:
if(deleteNObject_svg) {
deleteNObject_svg(n, p, gc); }
break;
- case 208:
case 209:
case 210:
case 211:
@@ -2848,6 +2857,7 @@ void LObjects::deleteNObject(int n, void* p, int gc) {
case 213:
case 214:
case 215:
+ case 216:
if(deleteNObject_webkit) {
deleteNObject_webkit(n, p, gc); }
break; }}
@@ -2900,39 +2910,39 @@ const char* LObjects::nObjectSuperClass(const QByteArray& name) {
case 79: s = "QPaintDevice"; break;
case 81: s = "QEvent"; break;
case 82: s = "QEvent"; break;
- case 85: s = "QInputEvent"; break;
- case 89: s = "QGradient"; break;
- case 100: s = "QInputEvent"; break;
- case 101: s = "QEvent"; break;
- case 110: s = "QPaintDevice"; break;
- case 114: s = "QPaintDevice"; break;
- case 116: s = "QEvent"; break;
- case 123: s = "QPaintDevice"; break;
+ case 86: s = "QInputEvent"; break;
+ case 90: s = "QGradient"; break;
+ case 101: s = "QInputEvent"; break;
+ case 102: s = "QEvent"; break;
+ case 111: s = "QPaintDevice"; break;
+ case 115: s = "QPaintDevice"; break;
+ case 117: s = "QEvent"; break;
case 124: s = "QPaintDevice"; break;
- case 126: s = "QPagedPaintDevice"; break;
- case 130: s = "QGradient"; break;
- case 136: s = "QEvent"; break;
- case 139: s = "QEvent"; break;
+ case 125: s = "QPaintDevice"; break;
+ case 127: s = "QPagedPaintDevice"; break;
+ case 131: s = "QGradient"; break;
+ case 137: s = "QEvent"; break;
case 140: s = "QEvent"; break;
- case 142: s = "QLayoutItem"; break;
- case 146: s = "QSqlRecord"; break;
- case 158: s = "QEvent"; break;
- case 160: s = "QStyleOption"; break;
- case 162: s = "QPaintDevice"; break;
- case 167: s = "QInputEvent"; break;
- case 169: s = "QTextFormat"; break;
- case 172: s = "QTextFormat"; break;
- case 181: s = "QTextFormat"; break;
- case 182: s = "QTextCharFormat"; break;
- case 186: s = "QTextFormat"; break;
- case 189: s = "QTextCharFormat"; break;
- case 190: s = "QTextFrameFormat"; break;
- case 193: s = "QEvent"; break;
- case 196: s = "QInputEvent"; break;
- case 217: s = "QEvent"; break;
- case 218: s = "QInputEvent"; break;
- case 219: s = "QLayoutItem"; break;
- case 220: s = "QEvent"; break; }
+ case 141: s = "QEvent"; break;
+ case 143: s = "QLayoutItem"; break;
+ case 147: s = "QSqlRecord"; break;
+ case 159: s = "QEvent"; break;
+ case 161: s = "QStyleOption"; break;
+ case 163: s = "QPaintDevice"; break;
+ case 168: s = "QInputEvent"; break;
+ case 170: s = "QTextFormat"; break;
+ case 173: s = "QTextFormat"; break;
+ case 182: s = "QTextFormat"; break;
+ case 183: s = "QTextCharFormat"; break;
+ case 187: s = "QTextFormat"; break;
+ case 190: s = "QTextCharFormat"; break;
+ case 191: s = "QTextFrameFormat"; break;
+ case 194: s = "QEvent"; break;
+ case 197: s = "QInputEvent"; break;
+ case 218: s = "QEvent"; break;
+ case 219: s = "QInputEvent"; break;
+ case 220: s = "QLayoutItem"; break;
+ case 221: s = "QEvent"; break; }
return s; }
StrList LObjects::overrideFunctions(const QByteArray& name) {
@@ -3016,112 +3026,113 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 93: ids = LHeaderView::overrideIds; break;
case 102: ids = LHistoryState::overrideIds; break;
case 103: ids = LIODevice::overrideIds; break;
- case 104: ids = LInputDialog::overrideIds; break;
- case 105: ids = LIntValidator::overrideIds; break;
- case 106: ids = LItemDelegate::overrideIds; break;
- case 107: ids = LItemSelectionModel::overrideIds; break;
- case 108: ids = LKeyEventTransition::overrideIds; break;
- case 109: ids = LLCDNumber::overrideIds; break;
- case 110: ids = LLabel::overrideIds; break;
- case 112: ids = LLibrary::overrideIds; break;
- case 113: ids = LLineEdit::overrideIds; break;
- case 114: ids = LListView::overrideIds; break;
- case 115: ids = LListWidget::overrideIds; break;
- case 118: ids = LMainWindow::overrideIds; break;
- case 119: ids = LMdiArea::overrideIds; break;
- case 120: ids = LMdiSubWindow::overrideIds; break;
- case 126: ids = LMenu::overrideIds; break;
- case 127: ids = LMenuBar::overrideIds; break;
- case 128: ids = LMessageBox::overrideIds; break;
- case 129: ids = LMimeData::overrideIds; break;
- case 130: ids = LMouseEventTransition::overrideIds; break;
- case 131: ids = LMovie::overrideIds; break;
- case 136: ids = LObject::overrideIds; break;
- case 137: ids = LOpenGLContext::overrideIds; break;
- case 138: ids = LOpenGLShader::overrideIds; break;
- case 139: ids = LOpenGLShaderProgram::overrideIds; break;
- case 140: ids = LOpenGLWidget::overrideIds; break;
- case 141: ids = LOpenGLWindow::overrideIds; break;
- case 142: ids = LPageSetupDialog::overrideIds; break;
- case 143: ids = LPaintDeviceWindow::overrideIds; break;
- case 144: ids = LPanGesture::overrideIds; break;
- case 145: ids = LParallelAnimationGroup::overrideIds; break;
- case 146: ids = LPauseAnimation::overrideIds; break;
- case 147: ids = LPdfWriter::overrideIds; break;
- case 148: ids = LPinchGesture::overrideIds; break;
- case 149: ids = LPlainTextDocumentLayout::overrideIds; break;
- case 150: ids = LPlainTextEdit::overrideIds; break;
- case 151: ids = LPluginLoader::overrideIds; break;
- case 152: ids = LPrintDialog::overrideIds; break;
- case 153: ids = LPrintPreviewDialog::overrideIds; break;
- case 154: ids = LPrintPreviewWidget::overrideIds; break;
- case 155: ids = LProcess::overrideIds; break;
- case 156: ids = LProgressBar::overrideIds; break;
- case 157: ids = LProgressDialog::overrideIds; break;
- case 158: ids = LPropertyAnimation::overrideIds; break;
- case 159: ids = LProxyStyle::overrideIds; break;
- case 160: ids = LPushButton::overrideIds; break;
- case 161: ids = LRadioButton::overrideIds; break;
- case 163: ids = LRegExpValidator::overrideIds; break;
- case 164: ids = LRubberBand::overrideIds; break;
- case 166: ids = LScrollArea::overrideIds; break;
- case 167: ids = LScrollBar::overrideIds; break;
- case 168: ids = LSequentialAnimationGroup::overrideIds; break;
- case 170: ids = LSettings::overrideIds; break;
- case 171: ids = LShortcut::overrideIds; break;
- case 172: ids = LSignalTransition::overrideIds; break;
- case 173: ids = LSizeGrip::overrideIds; break;
- case 174: ids = LSlider::overrideIds; break;
- case 175: ids = LSortFilterProxyModel::overrideIds; break;
- case 176: ids = LSpinBox::overrideIds; break;
- case 177: ids = LSplashScreen::overrideIds; break;
- case 178: ids = LSplitter::overrideIds; break;
- case 179: ids = LSplitterHandle::overrideIds; break;
- case 185: ids = LStackedLayout::overrideIds; break;
- case 186: ids = LStackedWidget::overrideIds; break;
- case 187: ids = LStandardItemModel::overrideIds; break;
- case 188: ids = LState::overrideIds; break;
- case 189: ids = LStateMachine::overrideIds; break;
- case 190: ids = LStatusBar::overrideIds; break;
- case 191: ids = LStringListModel::overrideIds; break;
- case 193: ids = LStyledItemDelegate::overrideIds; break;
- case 196: ids = LSwipeGesture::overrideIds; break;
- case 197: ids = LSyntaxHighlighter::overrideIds; break;
- case 198: ids = LSystemTrayIcon::overrideIds; break;
- case 199: ids = LTabBar::overrideIds; break;
- case 200: ids = LTabWidget::overrideIds; break;
- case 201: ids = LTableView::overrideIds; break;
- case 202: ids = LTableWidget::overrideIds; break;
- case 203: ids = LTapAndHoldGesture::overrideIds; break;
- case 204: ids = LTapGesture::overrideIds; break;
- case 207: ids = LTextBlockGroup::overrideIds; break;
- case 208: ids = LTextBrowser::overrideIds; break;
- case 209: ids = LTextDocument::overrideIds; break;
- case 210: ids = LTextEdit::overrideIds; break;
- case 211: ids = LTextFrame::overrideIds; break;
- case 212: ids = LTextList::overrideIds; break;
- case 213: ids = LTextObject::overrideIds; break;
- case 214: ids = LTextTable::overrideIds; break;
- case 215: ids = LTimeEdit::overrideIds; break;
- case 216: ids = LTimeLine::overrideIds; break;
- case 217: ids = LTimer::overrideIds; break;
- case 218: ids = LToolBar::overrideIds; break;
- case 219: ids = LToolBox::overrideIds; break;
- case 220: ids = LToolButton::overrideIds; break;
- case 221: ids = LTranslator::overrideIds; break;
- case 222: ids = LTreeView::overrideIds; break;
- case 223: ids = LTreeWidget::overrideIds; break;
- case 225: ids = LUndoGroup::overrideIds; break;
- case 226: ids = LUndoStack::overrideIds; break;
- case 227: ids = LUndoView::overrideIds; break;
- case 228: ids = LVBoxLayout::overrideIds; break;
- case 229: ids = LValidator::overrideIds; break;
- case 230: ids = LVariantAnimation::overrideIds; break;
- case 239: ids = LWidget::overrideIds; break;
- case 240: ids = LWidgetAction::overrideIds; break;
- case 241: ids = LWindow::overrideIds; break;
- case 242: ids = LWizard::overrideIds; break;
- case 243: ids = LWizardPage::overrideIds; break;
+ case 104: ids = LIdentityProxyModel::overrideIds; break;
+ case 105: ids = LInputDialog::overrideIds; break;
+ case 106: ids = LIntValidator::overrideIds; break;
+ case 107: ids = LItemDelegate::overrideIds; break;
+ case 108: ids = LItemSelectionModel::overrideIds; break;
+ case 109: ids = LKeyEventTransition::overrideIds; break;
+ case 110: ids = LLCDNumber::overrideIds; break;
+ case 111: ids = LLabel::overrideIds; break;
+ case 113: ids = LLibrary::overrideIds; break;
+ case 114: ids = LLineEdit::overrideIds; break;
+ case 115: ids = LListView::overrideIds; break;
+ case 116: ids = LListWidget::overrideIds; break;
+ case 119: ids = LMainWindow::overrideIds; break;
+ case 120: ids = LMdiArea::overrideIds; break;
+ case 121: ids = LMdiSubWindow::overrideIds; break;
+ case 127: ids = LMenu::overrideIds; break;
+ case 128: ids = LMenuBar::overrideIds; break;
+ case 129: ids = LMessageBox::overrideIds; break;
+ case 130: ids = LMimeData::overrideIds; break;
+ case 131: ids = LMouseEventTransition::overrideIds; break;
+ case 132: ids = LMovie::overrideIds; break;
+ case 137: ids = LObject::overrideIds; break;
+ case 138: ids = LOpenGLContext::overrideIds; break;
+ case 139: ids = LOpenGLShader::overrideIds; break;
+ case 140: ids = LOpenGLShaderProgram::overrideIds; break;
+ case 141: ids = LOpenGLWidget::overrideIds; break;
+ case 142: ids = LOpenGLWindow::overrideIds; break;
+ case 143: ids = LPageSetupDialog::overrideIds; break;
+ case 144: ids = LPaintDeviceWindow::overrideIds; break;
+ case 145: ids = LPanGesture::overrideIds; break;
+ case 146: ids = LParallelAnimationGroup::overrideIds; break;
+ case 147: ids = LPauseAnimation::overrideIds; break;
+ case 148: ids = LPdfWriter::overrideIds; break;
+ case 149: ids = LPinchGesture::overrideIds; break;
+ case 150: ids = LPlainTextDocumentLayout::overrideIds; break;
+ case 151: ids = LPlainTextEdit::overrideIds; break;
+ case 152: ids = LPluginLoader::overrideIds; break;
+ case 153: ids = LPrintDialog::overrideIds; break;
+ case 154: ids = LPrintPreviewDialog::overrideIds; break;
+ case 155: ids = LPrintPreviewWidget::overrideIds; break;
+ case 156: ids = LProcess::overrideIds; break;
+ case 157: ids = LProgressBar::overrideIds; break;
+ case 158: ids = LProgressDialog::overrideIds; break;
+ case 159: ids = LPropertyAnimation::overrideIds; break;
+ case 160: ids = LProxyStyle::overrideIds; break;
+ case 161: ids = LPushButton::overrideIds; break;
+ case 162: ids = LRadioButton::overrideIds; break;
+ case 164: ids = LRegExpValidator::overrideIds; break;
+ case 165: ids = LRubberBand::overrideIds; break;
+ case 167: ids = LScrollArea::overrideIds; break;
+ case 168: ids = LScrollBar::overrideIds; break;
+ case 169: ids = LSequentialAnimationGroup::overrideIds; break;
+ case 171: ids = LSettings::overrideIds; break;
+ case 172: ids = LShortcut::overrideIds; break;
+ case 173: ids = LSignalTransition::overrideIds; break;
+ case 174: ids = LSizeGrip::overrideIds; break;
+ case 175: ids = LSlider::overrideIds; break;
+ case 176: ids = LSortFilterProxyModel::overrideIds; break;
+ case 177: ids = LSpinBox::overrideIds; break;
+ case 178: ids = LSplashScreen::overrideIds; break;
+ case 179: ids = LSplitter::overrideIds; break;
+ case 180: ids = LSplitterHandle::overrideIds; break;
+ case 186: ids = LStackedLayout::overrideIds; break;
+ case 187: ids = LStackedWidget::overrideIds; break;
+ case 188: ids = LStandardItemModel::overrideIds; break;
+ case 189: ids = LState::overrideIds; break;
+ case 190: ids = LStateMachine::overrideIds; break;
+ case 191: ids = LStatusBar::overrideIds; break;
+ case 192: ids = LStringListModel::overrideIds; break;
+ case 194: ids = LStyledItemDelegate::overrideIds; break;
+ case 197: ids = LSwipeGesture::overrideIds; break;
+ case 198: ids = LSyntaxHighlighter::overrideIds; break;
+ case 199: ids = LSystemTrayIcon::overrideIds; break;
+ case 200: ids = LTabBar::overrideIds; break;
+ case 201: ids = LTabWidget::overrideIds; break;
+ case 202: ids = LTableView::overrideIds; break;
+ case 203: ids = LTableWidget::overrideIds; break;
+ case 204: ids = LTapAndHoldGesture::overrideIds; break;
+ case 205: ids = LTapGesture::overrideIds; break;
+ case 208: ids = LTextBlockGroup::overrideIds; break;
+ case 209: ids = LTextBrowser::overrideIds; break;
+ case 210: ids = LTextDocument::overrideIds; break;
+ case 211: ids = LTextEdit::overrideIds; break;
+ case 212: ids = LTextFrame::overrideIds; break;
+ case 213: ids = LTextList::overrideIds; break;
+ case 214: ids = LTextObject::overrideIds; break;
+ case 215: ids = LTextTable::overrideIds; break;
+ case 216: ids = LTimeEdit::overrideIds; break;
+ case 217: ids = LTimeLine::overrideIds; break;
+ case 218: ids = LTimer::overrideIds; break;
+ case 219: ids = LToolBar::overrideIds; break;
+ case 220: ids = LToolBox::overrideIds; break;
+ case 221: ids = LToolButton::overrideIds; break;
+ case 222: ids = LTranslator::overrideIds; break;
+ case 223: ids = LTreeView::overrideIds; break;
+ case 224: ids = LTreeWidget::overrideIds; break;
+ case 226: ids = LUndoGroup::overrideIds; break;
+ case 227: ids = LUndoStack::overrideIds; break;
+ case 228: ids = LUndoView::overrideIds; break;
+ case 229: ids = LVBoxLayout::overrideIds; break;
+ case 230: ids = LValidator::overrideIds; break;
+ case 231: ids = LVariantAnimation::overrideIds; break;
+ case 240: ids = LWidget::overrideIds; break;
+ case 241: ids = LWidgetAction::overrideIds; break;
+ case 242: ids = LWindow::overrideIds; break;
+ case 243: ids = LWizard::overrideIds; break;
+ case 244: ids = LWizardPage::overrideIds; break;
case 94:
case 95:
case 96:
@@ -3145,14 +3156,14 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 33:
case 34:
case 85:
- case 121:
case 122:
case 123:
case 124:
case 125:
- case 162:
- case 231:
+ case 126:
+ case 163:
case 232:
+ case 233:
if(override_multimedia) {
NumList* _ids = override_multimedia(name);
if(_ids) {
@@ -3160,45 +3171,45 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
break;
case 7:
case 12:
- case 116:
case 117:
- case 132:
+ case 118:
case 133:
case 134:
case 135:
- case 205:
+ case 136:
case 206:
- case 224:
+ case 207:
+ case 225:
if(override_network) {
NumList* _ids = override_network(name);
if(_ids) {
ids = *_ids; }}
break;
- case 180:
case 181:
case 182:
case 183:
case 184:
+ case 185:
if(override_sql) {
NumList* _ids = override_sql(name);
if(_ids) {
ids = *_ids; }}
break;
case 82:
- case 194:
case 195:
+ case 196:
if(override_svg) {
NumList* _ids = override_svg(name);
if(_ids) {
ids = *_ids; }}
break;
case 87:
- case 233:
case 234:
case 235:
case 236:
case 237:
case 238:
+ case 239:
if(override_webkit) {
NumList* _ids = override_webkit(name);
if(_ids) {
@@ -3275,105 +3286,106 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 79: ids = LImage::overrideIds; break;
case 81: ids = LInputEvent::overrideIds; break;
case 82: ids = LInputMethodEvent::overrideIds; break;
- case 83: ids = LItemEditorFactory::overrideIds; break;
- case 84: ids = LItemSelectionRange::overrideIds; break;
- case 85: ids = LKeyEvent::overrideIds; break;
- case 86: ids = LKeySequence::overrideIds; break;
- case 87: ids = LLayoutItem::overrideIds; break;
- case 88: ids = LLibraryInfo::overrideIds; break;
- case 89: ids = LLinearGradient::overrideIds; break;
- case 90: ids = LListWidgetItem::overrideIds; break;
- case 91: ids = LLocale::overrideIds; break;
- case 92: ids = LMargins::overrideIds; break;
- case 93: ids = LMarginsF::overrideIds; break;
- case 94: ids = LMatrix::overrideIds; break;
- case 95: ids = LMatrix4x4::overrideIds; break;
- case 98: ids = LMetaObject::overrideIds; break;
- case 99: ids = LModelIndex::overrideIds; break;
- case 100: ids = LMouseEvent::overrideIds; break;
- case 101: ids = LMoveEvent::overrideIds; break;
- case 110: ids = LOpenGLPaintDevice::overrideIds; break;
- case 111: ids = LOpenGLTexture::overrideIds; break;
- case 112: ids = LPageLayout::overrideIds; break;
- case 113: ids = LPageSize::overrideIds; break;
- case 116: ids = LPaintEvent::overrideIds; break;
- case 117: ids = LPainter::overrideIds; break;
- case 118: ids = LPainterPath::overrideIds; break;
- case 119: ids = LPainterPathStroker::overrideIds; break;
- case 120: ids = LPalette::overrideIds; break;
- case 121: ids = LPen::overrideIds; break;
- case 122: ids = LPersistentModelIndex::overrideIds; break;
- case 123: ids = LPicture::overrideIds; break;
- case 124: ids = LPixmap::overrideIds; break;
- case 125: ids = LPixmapCache::overrideIds; break;
- case 126: ids = LPrinter::overrideIds; break;
- case 127: ids = LPrinterInfo::overrideIds; break;
- case 128: ids = LProcessEnvironment::overrideIds; break;
- case 129: ids = LQuaternion::overrideIds; break;
- case 130: ids = LRadialGradient::overrideIds; break;
- case 131: ids = LReadLocker::overrideIds; break;
- case 132: ids = LReadWriteLock::overrideIds; break;
- case 133: ids = LRegExp::overrideIds; break;
- case 134: ids = LRegion::overrideIds; break;
- case 135: ids = LRegularExpression::overrideIds; break;
- case 136: ids = LResizeEvent::overrideIds; break;
- case 137: ids = LRunnable::overrideIds; break;
- case 138: ids = LSemaphore::overrideIds; break;
- case 139: ids = LShortcutEvent::overrideIds; break;
- case 140: ids = LShowEvent::overrideIds; break;
- case 141: ids = LSizePolicy::overrideIds; break;
- case 142: ids = LSpacerItem::overrideIds; break;
- case 156: ids = LStandardItem::overrideIds; break;
- case 158: ids = LStatusTipEvent::overrideIds; break;
- case 159: ids = LStyleOption::overrideIds; break;
- case 160: ids = LStyleOptionGraphicsItem::overrideIds; break;
- case 164: ids = LSystemSemaphore::overrideIds; break;
- case 165: ids = LTableWidgetItem::overrideIds; break;
- case 166: ids = LTableWidgetSelectionRange::overrideIds; break;
- case 167: ids = LTabletEvent::overrideIds; break;
- case 168: ids = LTextBlock::overrideIds; break;
- case 169: ids = LTextBlockFormat::overrideIds; break;
- case 170: ids = LTextBlockUserData::overrideIds; break;
- case 171: ids = LTextBoundaryFinder::overrideIds; break;
- case 172: ids = LTextCharFormat::overrideIds; break;
- case 173: ids = LTextCodec::overrideIds; break;
- case 174: ids = LTextCursor::overrideIds; break;
- case 175: ids = LTextDecoder::overrideIds; break;
- case 176: ids = LTextDocumentFragment::overrideIds; break;
- case 177: ids = LTextDocumentWriter::overrideIds; break;
- case 178: ids = LTextEncoder::overrideIds; break;
- case 179: ids = LTextFormat::overrideIds; break;
- case 180: ids = LTextFragment::overrideIds; break;
- case 181: ids = LTextFrameFormat::overrideIds; break;
- case 182: ids = LTextImageFormat::overrideIds; break;
- case 183: ids = LTextLayout::overrideIds; break;
- case 184: ids = LTextLength::overrideIds; break;
- case 185: ids = LTextLine::overrideIds; break;
- case 186: ids = LTextListFormat::overrideIds; break;
- case 187: ids = LTextOption::overrideIds; break;
- case 188: ids = LTextTableCell::overrideIds; break;
- case 189: ids = LTextTableCellFormat::overrideIds; break;
- case 190: ids = LTextTableFormat::overrideIds; break;
- case 191: ids = LTime::overrideIds; break;
- case 192: ids = LTimeZone::overrideIds; break;
- case 193: ids = LTimerEvent::overrideIds; break;
- case 194: ids = LToolTip::overrideIds; break;
- case 195: ids = LTouchDevice::overrideIds; break;
- case 196: ids = LTouchEvent::overrideIds; break;
- case 197: ids = LTransform::overrideIds; break;
- case 198: ids = LTreeWidgetItem::overrideIds; break;
- case 199: ids = LUndoCommand::overrideIds; break;
- case 200: ids = LUrl::overrideIds; break;
- case 201: ids = LVariant::overrideIds; break;
- case 202: ids = LVector2D::overrideIds; break;
- case 203: ids = LVector3D::overrideIds; break;
- case 204: ids = LVector4D::overrideIds; break;
- case 216: ids = LWhatsThis::overrideIds; break;
- case 217: ids = LWhatsThisClickedEvent::overrideIds; break;
- case 218: ids = LWheelEvent::overrideIds; break;
- case 219: ids = LWidgetItem::overrideIds; break;
- case 220: ids = LWindowStateChangeEvent::overrideIds; break;
- case 221: ids = LWriteLocker::overrideIds; break;
+ case 83: ids = LItemEditorCreatorBase::overrideIds; break;
+ case 84: ids = LItemEditorFactory::overrideIds; break;
+ case 85: ids = LItemSelectionRange::overrideIds; break;
+ case 86: ids = LKeyEvent::overrideIds; break;
+ case 87: ids = LKeySequence::overrideIds; break;
+ case 88: ids = LLayoutItem::overrideIds; break;
+ case 89: ids = LLibraryInfo::overrideIds; break;
+ case 90: ids = LLinearGradient::overrideIds; break;
+ case 91: ids = LListWidgetItem::overrideIds; break;
+ case 92: ids = LLocale::overrideIds; break;
+ case 93: ids = LMargins::overrideIds; break;
+ case 94: ids = LMarginsF::overrideIds; break;
+ case 95: ids = LMatrix::overrideIds; break;
+ case 96: ids = LMatrix4x4::overrideIds; break;
+ case 99: ids = LMetaObject::overrideIds; break;
+ case 100: ids = LModelIndex::overrideIds; break;
+ case 101: ids = LMouseEvent::overrideIds; break;
+ case 102: ids = LMoveEvent::overrideIds; break;
+ case 111: ids = LOpenGLPaintDevice::overrideIds; break;
+ case 112: ids = LOpenGLTexture::overrideIds; break;
+ case 113: ids = LPageLayout::overrideIds; break;
+ case 114: ids = LPageSize::overrideIds; break;
+ case 117: ids = LPaintEvent::overrideIds; break;
+ case 118: ids = LPainter::overrideIds; break;
+ case 119: ids = LPainterPath::overrideIds; break;
+ case 120: ids = LPainterPathStroker::overrideIds; break;
+ case 121: ids = LPalette::overrideIds; break;
+ case 122: ids = LPen::overrideIds; break;
+ case 123: ids = LPersistentModelIndex::overrideIds; break;
+ case 124: ids = LPicture::overrideIds; break;
+ case 125: ids = LPixmap::overrideIds; break;
+ case 126: ids = LPixmapCache::overrideIds; break;
+ case 127: ids = LPrinter::overrideIds; break;
+ case 128: ids = LPrinterInfo::overrideIds; break;
+ case 129: ids = LProcessEnvironment::overrideIds; break;
+ case 130: ids = LQuaternion::overrideIds; break;
+ case 131: ids = LRadialGradient::overrideIds; break;
+ case 132: ids = LReadLocker::overrideIds; break;
+ case 133: ids = LReadWriteLock::overrideIds; break;
+ case 134: ids = LRegExp::overrideIds; break;
+ case 135: ids = LRegion::overrideIds; break;
+ case 136: ids = LRegularExpression::overrideIds; break;
+ case 137: ids = LResizeEvent::overrideIds; break;
+ case 138: ids = LRunnable::overrideIds; break;
+ case 139: ids = LSemaphore::overrideIds; break;
+ case 140: ids = LShortcutEvent::overrideIds; break;
+ case 141: ids = LShowEvent::overrideIds; break;
+ case 142: ids = LSizePolicy::overrideIds; break;
+ case 143: ids = LSpacerItem::overrideIds; break;
+ case 157: ids = LStandardItem::overrideIds; break;
+ case 159: ids = LStatusTipEvent::overrideIds; break;
+ case 160: ids = LStyleOption::overrideIds; break;
+ case 161: ids = LStyleOptionGraphicsItem::overrideIds; break;
+ case 165: ids = LSystemSemaphore::overrideIds; break;
+ case 166: ids = LTableWidgetItem::overrideIds; break;
+ case 167: ids = LTableWidgetSelectionRange::overrideIds; break;
+ case 168: ids = LTabletEvent::overrideIds; break;
+ case 169: ids = LTextBlock::overrideIds; break;
+ case 170: ids = LTextBlockFormat::overrideIds; break;
+ case 171: ids = LTextBlockUserData::overrideIds; break;
+ case 172: ids = LTextBoundaryFinder::overrideIds; break;
+ case 173: ids = LTextCharFormat::overrideIds; break;
+ case 174: ids = LTextCodec::overrideIds; break;
+ case 175: ids = LTextCursor::overrideIds; break;
+ case 176: ids = LTextDecoder::overrideIds; break;
+ case 177: ids = LTextDocumentFragment::overrideIds; break;
+ case 178: ids = LTextDocumentWriter::overrideIds; break;
+ case 179: ids = LTextEncoder::overrideIds; break;
+ case 180: ids = LTextFormat::overrideIds; break;
+ case 181: ids = LTextFragment::overrideIds; break;
+ case 182: ids = LTextFrameFormat::overrideIds; break;
+ case 183: ids = LTextImageFormat::overrideIds; break;
+ case 184: ids = LTextLayout::overrideIds; break;
+ case 185: ids = LTextLength::overrideIds; break;
+ case 186: ids = LTextLine::overrideIds; break;
+ case 187: ids = LTextListFormat::overrideIds; break;
+ case 188: ids = LTextOption::overrideIds; break;
+ case 189: ids = LTextTableCell::overrideIds; break;
+ case 190: ids = LTextTableCellFormat::overrideIds; break;
+ case 191: ids = LTextTableFormat::overrideIds; break;
+ case 192: ids = LTime::overrideIds; break;
+ case 193: ids = LTimeZone::overrideIds; break;
+ case 194: ids = LTimerEvent::overrideIds; break;
+ case 195: ids = LToolTip::overrideIds; break;
+ case 196: ids = LTouchDevice::overrideIds; break;
+ case 197: ids = LTouchEvent::overrideIds; break;
+ case 198: ids = LTransform::overrideIds; break;
+ case 199: ids = LTreeWidgetItem::overrideIds; break;
+ case 200: ids = LUndoCommand::overrideIds; break;
+ case 201: ids = LUrl::overrideIds; break;
+ case 202: ids = LVariant::overrideIds; break;
+ case 203: ids = LVector2D::overrideIds; break;
+ case 204: ids = LVector3D::overrideIds; break;
+ case 205: ids = LVector4D::overrideIds; break;
+ case 217: ids = LWhatsThis::overrideIds; break;
+ case 218: ids = LWhatsThisClickedEvent::overrideIds; break;
+ case 219: ids = LWheelEvent::overrideIds; break;
+ case 220: ids = LWidgetItem::overrideIds; break;
+ case 221: ids = LWindowStateChangeEvent::overrideIds; break;
+ case 222: ids = LWriteLocker::overrideIds; break;
case 70:
case 72:
if(override_help) {
@@ -3387,11 +3399,11 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 16:
case 17:
case 80:
- case 96:
case 97:
- case 205:
+ case 98:
case 206:
case 207:
+ case 208:
if(override_multimedia) {
NumList* _ids = override_multimedia(name);
if(_ids) {
@@ -3400,7 +3412,6 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 11:
case 74:
case 75:
- case 102:
case 103:
case 104:
case 105:
@@ -3408,17 +3419,17 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 107:
case 108:
case 109:
- case 151:
+ case 110:
case 152:
case 153:
case 154:
case 155:
+ case 156:
if(override_network) {
NumList* _ids = override_network(name);
if(_ids) {
ids = *_ids; }}
break;
- case 143:
case 144:
case 145:
case 146:
@@ -3426,18 +3437,18 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 148:
case 149:
case 150:
+ case 151:
if(override_sql) {
NumList* _ids = override_sql(name);
if(_ids) {
ids = *_ids; }}
break;
- case 162:
+ case 163:
if(override_svg) {
NumList* _ids = override_svg(name);
if(_ids) {
ids = *_ids; }}
break;
- case 208:
case 209:
case 210:
case 211:
@@ -3445,6 +3456,7 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 213:
case 214:
case 215:
+ case 216:
if(override_webkit) {
NumList* _ids = override_webkit(name);
if(_ids) {
diff --git a/src/gen/_main_n_classes.h b/src/gen/_main_n_classes.h
index b12ed11..d55dfb5 100644
--- a/src/gen/_main_n_classes.h
+++ b/src/gen/_main_n_classes.h
@@ -953,20 +953,31 @@ public:
uint unique;
};
-class LItemEditorFactory : public QItemEditorFactory {
+class LItemEditorCreatorBase : public QItemEditorCreatorBase {
friend class N83;
public:
+
+ static NumList overrideIds;
+ uint unique;
+
+ QWidget* createWidget(QWidget* x1) const { quint64 id = LObjects::override_id(unique, 416); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWidget*)callOverrideFun(fun, 416, args, id).value(); } return ret; }
+ QByteArray valuePropertyName() const { quint64 id = LObjects::override_id(unique, 454); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 454, 0, id).value(); } return ret; }
+};
+
+class LItemEditorFactory : public QItemEditorFactory {
+ friend class N84;
+public:
LItemEditorFactory(uint u) : unique(u) {}
static NumList overrideIds;
uint unique;
- QWidget* createEditor(int x1, QWidget* x2) const { quint64 id = LObjects::override_id(unique, 454); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QWidget*)callOverrideFun(fun, 454, 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, 455); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 455, 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, 455); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QWidget*)callOverrideFun(fun, 455, 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, 456); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 456, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::valuePropertyName(x1); } return ret; }
};
class LItemSelectionRange : public QItemSelectionRange {
- friend class N84;
+ friend class N85;
public:
LItemSelectionRange(uint u) : unique(u) {}
LItemSelectionRange(uint u, const QItemSelectionRange& x1) : QItemSelectionRange(x1), unique(u) {}
@@ -978,7 +989,7 @@ public:
};
class LKeyEvent : public QKeyEvent {
- friend class N85;
+ friend class N86;
public:
LKeyEvent(uint u, Type x1, int x2, Qt::KeyboardModifiers x3, const QString& x4 = QString(), bool x5 = false, ushort x6 = 1) : QKeyEvent(x1, x2, x3, x4, x5, x6), unique(u) {}
LKeyEvent(uint u, Type x1, int x2, Qt::KeyboardModifiers x3, quint32 x4, quint32 x5, quint32 x6, const QString& x7 = QString(), bool x8 = false, ushort x9 = 1) : QKeyEvent(x1, x2, x3, x4, x5, x6, x7, x8, x9), unique(u) {}
@@ -988,7 +999,7 @@ public:
};
class LKeySequence : public QKeySequence {
- friend class N86;
+ friend class N87;
public:
LKeySequence(uint u) : unique(u) {}
LKeySequence(uint u, const QString& x1, SequenceFormat x2 = NativeText) : QKeySequence(x1, x2), unique(u) {}
@@ -1001,7 +1012,7 @@ public:
};
class LLayoutItem : public QLayoutItem {
- friend class N87;
+ friend class N88;
public:
LLayoutItem(uint u, Qt::Alignment x1 = 0) : QLayoutItem(x1), unique(u) {}
@@ -1021,12 +1032,12 @@ public:
QSize minimumSize() const { quint64 id = LObjects::override_id(unique, 169); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 169, 0, id).value(); } return ret; }
void setGeometry(const QRect& x1) { quint64 id = LObjects::override_id(unique, 170); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 170, args, id); }}
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value(); } return ret; }
- QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 456); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 456, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::spacerItem(); } return ret; }
- QWidget* widget() { quint64 id = LObjects::override_id(unique, 457); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 457, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::widget(); } return ret; }
+ QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 457); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 457, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::spacerItem(); } return ret; }
+ QWidget* widget() { quint64 id = LObjects::override_id(unique, 458); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 458, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::widget(); } return ret; }
};
class LLibraryInfo : public QLibraryInfo {
- friend class N88;
+ friend class N89;
public:
static NumList overrideIds;
@@ -1034,7 +1045,7 @@ public:
};
class LLinearGradient : public QLinearGradient {
- friend class N89;
+ friend class N90;
public:
LLinearGradient(uint u) : unique(u) {}
LLinearGradient(uint u, const QPointF& x1, const QPointF& x2) : QLinearGradient(x1, x2), unique(u) {}
@@ -1045,7 +1056,7 @@ public:
};
class LListWidgetItem : public QListWidgetItem {
- friend class N90;
+ friend class N91;
public:
LListWidgetItem(uint u, QListWidget* x1 = 0, int x2 = Type) : QListWidgetItem(x1, x2), unique(u) {}
LListWidgetItem(uint u, const QString& x1, QListWidget* x2 = 0, int x3 = Type) : QListWidgetItem(x1, x2, x3), unique(u) {}
@@ -1055,13 +1066,13 @@ public:
static NumList overrideIds;
uint unique;
- QListWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 458); void* fun = LObjects::overrideFun(id); QListWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QListWidgetItem*)callOverrideFun(fun, 458, 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, 459); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 459, 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, 460); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 460, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QListWidgetItem::setData(x1, x2); }}
+ QListWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 459); void* fun = LObjects::overrideFun(id); QListWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QListWidgetItem*)callOverrideFun(fun, 459, 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, 460); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 460, 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, 461); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 461, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QListWidgetItem::setData(x1, x2); }}
};
class LLocale : public QLocale {
- friend class N91;
+ friend class N92;
public:
LLocale(uint u) : unique(u) {}
LLocale(uint u, const QString& x1) : QLocale(x1), unique(u) {}
@@ -1074,7 +1085,7 @@ public:
};
class LMargins : public QMargins {
- friend class N92;
+ friend class N93;
public:
LMargins(uint u) : unique(u) {}
LMargins(uint u, int x1, int x2, int x3, int x4) : QMargins(x1, x2, x3, x4), unique(u) {}
@@ -1084,7 +1095,7 @@ public:
};
class LMarginsF : public QMarginsF {
- friend class N93;
+ friend class N94;
public:
LMarginsF(uint u) : unique(u) {}
LMarginsF(uint u, qreal x1, qreal x2, qreal x3, qreal x4) : QMarginsF(x1, x2, x3, x4), unique(u) {}
@@ -1095,7 +1106,7 @@ public:
};
class LMatrix : public QMatrix {
- friend class N94;
+ friend class N95;
public:
LMatrix(uint u) : unique(u) {}
LMatrix(uint u, qreal x1, qreal x2, qreal x3, qreal x4, qreal x5, qreal x6) : QMatrix(x1, x2, x3, x4, x5, x6), unique(u) {}
@@ -1106,7 +1117,7 @@ public:
};
class LMatrix4x4 : public QMatrix4x4 {
- friend class N95;
+ friend class N96;
public:
LMatrix4x4(uint u) : unique(u) {}
LMatrix4x4(uint u, float x1, float x2, float x3, float x4, float x5, float x6, float x7, float x8, float x9, float x10, float x11, float x12, float x13, float x14, float x15, float x16) : QMatrix4x4(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16), unique(u) {}
@@ -1118,7 +1129,7 @@ public:
};
class LMetaObject : public QMetaObject {
- friend class N98;
+ friend class N99;
public:
static NumList overrideIds;
@@ -1126,7 +1137,7 @@ public:
};
class LModelIndex : public QModelIndex {
- friend class N99;
+ friend class N100;
public:
LModelIndex(uint u) : unique(u) {}
@@ -1135,7 +1146,7 @@ public:
};
class LMouseEvent : public QMouseEvent {
- friend class N100;
+ friend class N101;
public:
LMouseEvent(uint u, Type x1, const QPointF& x2, Qt::MouseButton x3, Qt::MouseButtons x4, Qt::KeyboardModifiers x5) : QMouseEvent(x1, x2, x3, x4, x5), unique(u) {}
LMouseEvent(uint u, Type x1, const QPointF& x2, const QPointF& x3, Qt::MouseButton x4, Qt::MouseButtons x5, Qt::KeyboardModifiers x6) : QMouseEvent(x1, x2, x3, x4, x5, x6), unique(u) {}
@@ -1146,7 +1157,7 @@ public:
};
class LMoveEvent : public QMoveEvent {
- friend class N101;
+ friend class N102;
public:
LMoveEvent(uint u, const QPoint& x1, const QPoint& x2) : QMoveEvent(x1, x2), unique(u) {}
@@ -1155,7 +1166,7 @@ public:
};
class LOpenGLPaintDevice : public QOpenGLPaintDevice {
- friend class N110;
+ friend class N111;
public:
LOpenGLPaintDevice(uint u) : unique(u) {}
LOpenGLPaintDevice(uint u, const QSize& x1) : QOpenGLPaintDevice(x1), unique(u) {}
@@ -1164,12 +1175,12 @@ public:
static NumList overrideIds;
uint unique;
- void ensureActiveTarget() { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 462, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QOpenGLPaintDevice::ensureActiveTarget(); }}
- int metric(QPaintDevice::PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 463, 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, 463); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 463, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QOpenGLPaintDevice::ensureActiveTarget(); }}
+ int metric(QPaintDevice::PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 464, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QOpenGLPaintDevice::metric(x1); } return ret; }
};
class LOpenGLTexture : public QOpenGLTexture {
- friend class N111;
+ friend class N112;
public:
LOpenGLTexture(uint u, Target x1) : QOpenGLTexture(x1), unique(u) {}
LOpenGLTexture(uint u, const QImage& x1, MipMapGeneration x2 = GenerateMipMaps) : QOpenGLTexture(x1, x2), unique(u) {}
@@ -1179,7 +1190,7 @@ public:
};
class LPageLayout : public QPageLayout {
- friend class N112;
+ friend class N113;
public:
LPageLayout(uint u) : unique(u) {}
LPageLayout(uint u, const QPageSize& x1, Orientation x2, const QMarginsF& x3, Unit x4 = Point, const QMarginsF& x5 = QMarginsF_DEFAULT) : QPageLayout(x1, x2, x3, x4, x5), unique(u) {}
@@ -1190,7 +1201,7 @@ public:
};
class LPageSize : public QPageSize {
- friend class N113;
+ friend class N114;
public:
LPageSize(uint u) : unique(u) {}
LPageSize(uint u, PageSizeId x1) : QPageSize(x1), unique(u) {}
@@ -1203,7 +1214,7 @@ public:
};
class LPaintEvent : public QPaintEvent {
- friend class N116;
+ friend class N117;
public:
LPaintEvent(uint u, const QRegion& x1) : QPaintEvent(x1), unique(u) {}
LPaintEvent(uint u, const QRect& x1) : QPaintEvent(x1), unique(u) {}
@@ -1213,7 +1224,7 @@ public:
};
class LPainter : public QPainter {
- friend class N117;
+ friend class N118;
public:
LPainter(uint u, QImage* x1) : QPainter(x1), unique(u) {}
LPainter(uint u, QPdfWriter* x1) : QPainter(x1), unique(u) {}
@@ -1228,7 +1239,7 @@ public:
};
class LPainterPath : public QPainterPath {
- friend class N118;
+ friend class N119;
public:
LPainterPath(uint u) : unique(u) {}
LPainterPath(uint u, const QPointF& x1) : QPainterPath(x1), unique(u) {}
@@ -1239,7 +1250,7 @@ public:
};
class LPainterPathStroker : public QPainterPathStroker {
- friend class N119;
+ friend class N120;
public:
LPainterPathStroker(uint u) : unique(u) {}
LPainterPathStroker(uint u, const QPen& x1) : QPainterPathStroker(x1), unique(u) {}
@@ -1249,7 +1260,7 @@ public:
};
class LPalette : public QPalette {
- friend class N120;
+ friend class N121;
public:
LPalette(uint u) : unique(u) {}
LPalette(uint u, const QColor& x1) : QPalette(x1), unique(u) {}
@@ -1263,7 +1274,7 @@ public:
};
class LPen : public QPen {
- friend class N121;
+ friend class N122;
public:
LPen(uint u) : unique(u) {}
LPen(uint u, Qt::PenStyle x1) : QPen(x1), unique(u) {}
@@ -1276,7 +1287,7 @@ public:
};
class LPersistentModelIndex : public QPersistentModelIndex {
- friend class N122;
+ friend class N123;
public:
LPersistentModelIndex(uint u, const QModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {}
LPersistentModelIndex(uint u, const QPersistentModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {}
@@ -1286,7 +1297,7 @@ public:
};
class LPicture : public QPicture {
- friend class N123;
+ friend class N124;
public:
LPicture(uint u, int x1 = -1) : QPicture(x1), unique(u) {}
LPicture(uint u, const QPicture& x1) : QPicture(x1), unique(u) {}
@@ -1294,12 +1305,12 @@ public:
static NumList overrideIds;
uint unique;
- void setData(const char* x1, uint x2) { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 464, 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, 465); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 465, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPicture::setData(x1, x2); }}
int metric(PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 45); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 45, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QPicture::metric(x1); } return ret; }
};
class LPixmap : public QPixmap {
- friend class N124;
+ friend class N125;
public:
LPixmap(uint u) : unique(u) {}
LPixmap(uint u, int x1, int x2) : QPixmap(x1, x2), unique(u) {}
@@ -1314,7 +1325,7 @@ public:
};
class LPixmapCache : public QPixmapCache {
- friend class N125;
+ friend class N126;
public:
static NumList overrideIds;
@@ -1322,7 +1333,7 @@ public:
};
class LPrinter : public QPrinter {
- friend class N126;
+ friend class N127;
public:
LPrinter(uint u, PrinterMode x1 = ScreenResolution) : QPrinter(x1), unique(u) {}
@@ -1330,12 +1341,12 @@ 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, 465); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 465, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSize(x1); }}
- void setPageSizeMM(const QSizeF& x1) { quint64 id = LObjects::override_id(unique, 466); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 466, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSizeMM(x1); }}
+ void setPageSize(PageSize x1) { quint64 id = LObjects::override_id(unique, 466); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 466, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSize(x1); }}
+ void setPageSizeMM(const QSizeF& x1) { quint64 id = LObjects::override_id(unique, 467); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 467, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSizeMM(x1); }}
};
class LPrinterInfo : public QPrinterInfo {
- friend class N127;
+ friend class N128;
public:
static NumList overrideIds;
@@ -1343,7 +1354,7 @@ public:
};
class LProcessEnvironment : public QProcessEnvironment {
- friend class N128;
+ friend class N129;
public:
LProcessEnvironment(uint u) : unique(u) {}
LProcessEnvironment(uint u, const QProcessEnvironment& x1) : QProcessEnvironment(x1), unique(u) {}
@@ -1353,7 +1364,7 @@ public:
};
class LQuaternion : public QQuaternion {
- friend class N129;
+ friend class N130;
public:
LQuaternion(uint u) : unique(u) {}
LQuaternion(uint u, float x1, float x2, float x3, float x4) : QQuaternion(x1, x2, x3, x4), unique(u) {}
@@ -1365,7 +1376,7 @@ public:
};
class LRadialGradient : public QRadialGradient {
- friend class N130;
+ friend class N131;
public:
LRadialGradient(uint u) : unique(u) {}
LRadialGradient(uint u, const QPointF& x1, qreal x2, const QPointF& x3) : QRadialGradient(x1, x2, x3), unique(u) {}
@@ -1380,7 +1391,7 @@ public:
};
class LReadLocker : public QReadLocker {
- friend class N131;
+ friend class N132;
public:
LReadLocker(uint u, QReadWriteLock* x1) : QReadLocker(x1), unique(u) {}
@@ -1389,7 +1400,7 @@ public:
};
class LReadWriteLock : public QReadWriteLock {
- friend class N132;
+ friend class N133;
public:
LReadWriteLock(uint u, RecursionMode x1 = NonRecursive) : QReadWriteLock(x1), unique(u) {}
@@ -1398,7 +1409,7 @@ public:
};
class LRegExp : public QRegExp {
- friend class N133;
+ friend class N134;
public:
LRegExp(uint u) : unique(u) {}
LRegExp(uint u, const QString& x1, Qt::CaseSensitivity x2 = Qt::CaseSensitive, PatternSyntax x3 = RegExp) : QRegExp(x1, x2, x3), unique(u) {}
@@ -1409,7 +1420,7 @@ public:
};
class LRegion : public QRegion {
- friend class N134;
+ friend class N135;
public:
LRegion(uint u) : unique(u) {}
LRegion(uint u, int x1, int x2, int x3, int x4, RegionType x5 = Rectangle) : QRegion(x1, x2, x3, x4, x5), unique(u) {}
@@ -1423,7 +1434,7 @@ public:
};
class LRegularExpression : public QRegularExpression {
- friend class N135;
+ friend class N136;
public:
LRegularExpression(uint u) : unique(u) {}
LRegularExpression(uint u, const QString& x1, PatternOptions x2 = NoPatternOption) : QRegularExpression(x1, x2), unique(u) {}
@@ -1434,7 +1445,7 @@ public:
};
class LResizeEvent : public QResizeEvent {
- friend class N136;
+ friend class N137;
public:
LResizeEvent(uint u, const QSize& x1, const QSize& x2) : QResizeEvent(x1, x2), unique(u) {}
@@ -1443,18 +1454,18 @@ public:
};
class LRunnable : public QRunnable {
- friend class N137;
+ friend class N138;
public:
LRunnable(uint u) : unique(u) {}
static NumList overrideIds;
uint unique;
- void run() { quint64 id = LObjects::override_id(unique, 467); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 467, 0, id); }}
+ void run() { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 468, 0, id); }}
};
class LSemaphore : public QSemaphore {
- friend class N138;
+ friend class N139;
public:
LSemaphore(uint u, int x1 = 0) : QSemaphore(x1), unique(u) {}
@@ -1463,7 +1474,7 @@ public:
};
class LShortcutEvent : public QShortcutEvent {
- friend class N139;
+ friend class N140;
public:
LShortcutEvent(uint u, const QKeySequence& x1, int x2, bool x3 = false) : QShortcutEvent(x1, x2, x3), unique(u) {}
@@ -1472,7 +1483,7 @@ public:
};
class LShowEvent : public QShowEvent {
- friend class N140;
+ friend class N141;
public:
LShowEvent(uint u) : unique(u) {}
@@ -1481,7 +1492,7 @@ public:
};
class LSizePolicy : public QSizePolicy {
- friend class N141;
+ friend class N142;
public:
LSizePolicy(uint u) : unique(u) {}
LSizePolicy(uint u, Policy x1, Policy x2, ControlType x3 = DefaultType) : QSizePolicy(x1, x2, x3), unique(u) {}
@@ -1491,7 +1502,7 @@ public:
};
class LSpacerItem : public QSpacerItem {
- friend class N142;
+ friend class N143;
public:
LSpacerItem(uint u, int x1, int x2, QSizePolicy::Policy x3 = QSizePolicy::Minimum, QSizePolicy::Policy x4 = QSizePolicy::Minimum) : QSpacerItem(x1, x2, x3, x4), unique(u) {}
@@ -1505,18 +1516,18 @@ public:
QSize minimumSize() const { quint64 id = LObjects::override_id(unique, 169); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 169, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::minimumSize(); } return ret; }
void setGeometry(const QRect& x1) { quint64 id = LObjects::override_id(unique, 170); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 170, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSpacerItem::setGeometry(x1); }}
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::sizeHint(); } return ret; }
- QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 456); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 456, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::spacerItem(); } return ret; }
+ QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 457); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 457, 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, 457); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 457, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::widget(); } return ret; }
+ QWidget* widget() { quint64 id = LObjects::override_id(unique, 458); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 458, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::widget(); } return ret; }
};
class LStandardItem : public QStandardItem {
- friend class N156;
+ friend class N157;
public:
LStandardItem(uint u) : unique(u) {}
LStandardItem(uint u, const QString& x1) : QStandardItem(x1), unique(u) {}
@@ -1526,14 +1537,14 @@ public:
static NumList overrideIds;
uint unique;
- QStandardItem* clone() const { quint64 id = LObjects::override_id(unique, 458); void* fun = LObjects::overrideFun(id); QStandardItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QStandardItem*)callOverrideFun(fun, 458, 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, 459); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 459, 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, 487); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 487, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QStandardItem::setData(x1, x2); }}
+ QStandardItem* clone() const { quint64 id = LObjects::override_id(unique, 459); void* fun = LObjects::overrideFun(id); QStandardItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QStandardItem*)callOverrideFun(fun, 459, 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, 460); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 460, 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, 488); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 488, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QStandardItem::setData(x1, x2); }}
int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStandardItem::type(); } return ret; }
};
class LStatusTipEvent : public QStatusTipEvent {
- friend class N158;
+ friend class N159;
public:
LStatusTipEvent(uint u, const QString& x1) : QStatusTipEvent(x1), unique(u) {}
@@ -1542,7 +1553,7 @@ public:
};
class LStyleOption : public QStyleOption {
- friend class N159;
+ friend class N160;
public:
LStyleOption(uint u, int x1 = QStyleOption::Version, int x2 = SO_Default) : QStyleOption(x1, x2), unique(u) {}
LStyleOption(uint u, const QStyleOption& x1) : QStyleOption(x1), unique(u) {}
@@ -1552,7 +1563,7 @@ public:
};
class LStyleOptionGraphicsItem : public QStyleOptionGraphicsItem {
- friend class N160;
+ friend class N161;
public:
LStyleOptionGraphicsItem(uint u) : unique(u) {}
LStyleOptionGraphicsItem(uint u, const QStyleOptionGraphicsItem& x1) : QStyleOptionGraphicsItem(x1), unique(u) {}
@@ -1562,7 +1573,7 @@ public:
};
class LSystemSemaphore : public QSystemSemaphore {
- friend class N164;
+ friend class N165;
public:
LSystemSemaphore(uint u, const QString& x1, int x2 = 0, AccessMode x3 = Open) : QSystemSemaphore(x1, x2, x3), unique(u) {}
@@ -1571,7 +1582,7 @@ public:
};
class LTableWidgetItem : public QTableWidgetItem {
- friend class N165;
+ friend class N166;
public:
LTableWidgetItem(uint u, int x1 = Type) : QTableWidgetItem(x1), unique(u) {}
LTableWidgetItem(uint u, const QString& x1, int x2 = Type) : QTableWidgetItem(x1, x2), unique(u) {}
@@ -1581,13 +1592,13 @@ public:
static NumList overrideIds;
uint unique;
- QTableWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 458); void* fun = LObjects::overrideFun(id); QTableWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTableWidgetItem*)callOverrideFun(fun, 458, 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, 459); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 459, 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, 460); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 460, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTableWidgetItem::setData(x1, x2); }}
+ QTableWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 459); void* fun = LObjects::overrideFun(id); QTableWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTableWidgetItem*)callOverrideFun(fun, 459, 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, 460); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 460, 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, 461); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 461, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTableWidgetItem::setData(x1, x2); }}
};
class LTableWidgetSelectionRange : public QTableWidgetSelectionRange {
- friend class N166;
+ friend class N167;
public:
LTableWidgetSelectionRange(uint u) : unique(u) {}
LTableWidgetSelectionRange(uint u, int x1, int x2, int x3, int x4) : QTableWidgetSelectionRange(x1, x2, x3, x4), unique(u) {}
@@ -1598,7 +1609,7 @@ public:
};
class LTabletEvent : public QTabletEvent {
- friend class N167;
+ friend class N168;
public:
LTabletEvent(uint u, Type x1, const QPointF& x2, const QPointF& x3, int x4, int x5, qreal x6, int x7, int x8, qreal x9, qreal x10, int x11, Qt::KeyboardModifiers x12, qint64 x13, Qt::MouseButton x14, Qt::MouseButtons x15) : QTabletEvent(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15), unique(u) {}
@@ -1607,7 +1618,7 @@ public:
};
class LTextBlock : public QTextBlock {
- friend class N168;
+ friend class N169;
public:
LTextBlock(uint u, const QTextBlock& x1) : QTextBlock(x1), unique(u) {}
@@ -1616,7 +1627,7 @@ public:
};
class LTextBlockFormat : public QTextBlockFormat {
- friend class N169;
+ friend class N170;
public:
LTextBlockFormat(uint u) : unique(u) {}
@@ -1625,7 +1636,7 @@ public:
};
class LTextBlockUserData : public QTextBlockUserData {
- friend class N170;
+ friend class N171;
public:
static NumList overrideIds;
@@ -1633,7 +1644,7 @@ public:
};
class LTextBoundaryFinder : public QTextBoundaryFinder {
- friend class N171;
+ friend class N172;
public:
LTextBoundaryFinder(uint u) : unique(u) {}
LTextBoundaryFinder(uint u, const QTextBoundaryFinder& x1) : QTextBoundaryFinder(x1), unique(u) {}
@@ -1645,7 +1656,7 @@ public:
};
class LTextCharFormat : public QTextCharFormat {
- friend class N172;
+ friend class N173;
public:
LTextCharFormat(uint u) : unique(u) {}
@@ -1654,21 +1665,21 @@ public:
};
class LTextCodec : public QTextCodec {
- friend class N173;
+ friend class N174;
public:
static NumList overrideIds;
uint unique;
- QList aliases() const { quint64 id = LObjects::override_id(unique, 488); void* fun = LObjects::overrideFun(id); QList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 488, 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, 489); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 489, 0, id).toInt(); } return ret; }
- QByteArray name() const { quint64 id = LObjects::override_id(unique, 490); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 490, 0, id).value(); } return ret; }
- QByteArray convertFromUnicode(const QChar* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 491); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 491, args, id).value(); } return ret; }
- QString convertToUnicode(const char* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 492); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 492, args, id).value(); } return ret; }
+ QList aliases() const { quint64 id = LObjects::override_id(unique, 489); void* fun = LObjects::overrideFun(id); QList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 489, 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, 490); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 490, 0, id).toInt(); } return ret; }
+ QByteArray name() const { quint64 id = LObjects::override_id(unique, 491); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 491, 0, id).value(); } return ret; }
+ QByteArray convertFromUnicode(const QChar* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 492); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 492, args, id).value(); } return ret; }
+ QString convertToUnicode(const char* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 493); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 493, args, id).value(); } return ret; }
};
class LTextCursor : public QTextCursor {
- friend class N174;
+ friend class N175;
public:
LTextCursor(uint u) : unique(u) {}
LTextCursor(uint u, QTextDocument* x1) : QTextCursor(x1), unique(u) {}
@@ -1681,7 +1692,7 @@ public:
};
class LTextDecoder : public QTextDecoder {
- friend class N175;
+ friend class N176;
public:
LTextDecoder(uint u, const QTextCodec* x1) : QTextDecoder(x1), unique(u) {}
LTextDecoder(uint u, const QTextCodec* x1, QTextCodec::ConversionFlags x2) : QTextDecoder(x1, x2), unique(u) {}
@@ -1691,7 +1702,7 @@ public:
};
class LTextDocumentFragment : public QTextDocumentFragment {
- friend class N176;
+ friend class N177;
public:
LTextDocumentFragment(uint u) : unique(u) {}
LTextDocumentFragment(uint u, const QTextDocument* x1) : QTextDocumentFragment(x1), unique(u) {}
@@ -1703,7 +1714,7 @@ public:
};
class LTextDocumentWriter : public QTextDocumentWriter {
- friend class N177;
+ friend class N178;
public:
LTextDocumentWriter(uint u) : unique(u) {}
LTextDocumentWriter(uint u, const QString& x1, const QByteArray& x2 = QByteArray()) : QTextDocumentWriter(x1, x2), unique(u) {}
@@ -1713,7 +1724,7 @@ public:
};
class LTextEncoder : public QTextEncoder {
- friend class N178;
+ friend class N179;
public:
LTextEncoder(uint u, const QTextCodec* x1) : QTextEncoder(x1), unique(u) {}
LTextEncoder(uint u, const QTextCodec* x1, QTextCodec::ConversionFlags x2) : QTextEncoder(x1, x2), unique(u) {}
@@ -1723,7 +1734,7 @@ public:
};
class LTextFormat : public QTextFormat {
- friend class N179;
+ friend class N180;
public:
LTextFormat(uint u) : unique(u) {}
LTextFormat(uint u, int x1) : QTextFormat(x1), unique(u) {}
@@ -1734,7 +1745,7 @@ public:
};
class LTextFragment : public QTextFragment {
- friend class N180;
+ friend class N181;
public:
LTextFragment(uint u) : unique(u) {}
LTextFragment(uint u, const QTextFragment& x1) : QTextFragment(x1), unique(u) {}
@@ -1744,7 +1755,7 @@ public:
};
class LTextFrameFormat : public QTextFrameFormat {
- friend class N181;
+ friend class N182;
public:
LTextFrameFormat(uint u) : unique(u) {}
@@ -1753,7 +1764,7 @@ public:
};
class LTextImageFormat : public QTextImageFormat {
- friend class N182;
+ friend class N183;
public:
LTextImageFormat(uint u) : unique(u) {}
@@ -1762,7 +1773,7 @@ public:
};
class LTextLayout : public QTextLayout {
- friend class N183;
+ friend class N184;
public:
LTextLayout(uint u) : unique(u) {}
LTextLayout(uint u, const QString& x1) : QTextLayout(x1), unique(u) {}
@@ -1773,7 +1784,7 @@ public:
};
class LTextLength : public QTextLength {
- friend class N184;
+ friend class N185;
public:
LTextLength(uint u) : unique(u) {}
LTextLength(uint u, Type x1, qreal x2) : QTextLength(x1, x2), unique(u) {}
@@ -1783,7 +1794,7 @@ public:
};
class LTextLine : public QTextLine {
- friend class N185;
+ friend class N186;
public:
LTextLine(uint u) : unique(u) {}
@@ -1792,7 +1803,7 @@ public:
};
class LTextListFormat : public QTextListFormat {
- friend class N186;
+ friend class N187;
public:
LTextListFormat(uint u) : unique(u) {}
@@ -1801,7 +1812,7 @@ public:
};
class LTextOption : public QTextOption {
- friend class N187;
+ friend class N188;
public:
LTextOption(uint u) : unique(u) {}
LTextOption(uint u, Qt::Alignment x1) : QTextOption(x1), unique(u) {}
@@ -1812,7 +1823,7 @@ public:
};
class LTextTableCell : public QTextTableCell {
- friend class N188;
+ friend class N189;
public:
LTextTableCell(uint u) : unique(u) {}
LTextTableCell(uint u, const QTextTableCell& x1) : QTextTableCell(x1), unique(u) {}
@@ -1822,7 +1833,7 @@ public:
};
class LTextTableCellFormat : public QTextTableCellFormat {
- friend class N189;
+ friend class N190;
public:
LTextTableCellFormat(uint u) : unique(u) {}
@@ -1831,7 +1842,7 @@ public:
};
class LTextTableFormat : public QTextTableFormat {
- friend class N190;
+ friend class N191;
public:
LTextTableFormat(uint u) : unique(u) {}
@@ -1840,7 +1851,7 @@ public:
};
class LTime : public QTime {
- friend class N191;
+ friend class N192;
public:
LTime(uint u) : unique(u) {}
LTime(uint u, int x1, int x2, int x3 = 0, int x4 = 0) : QTime(x1, x2, x3, x4), unique(u) {}
@@ -1850,7 +1861,7 @@ public:
};
class LTimeZone : public QTimeZone {
- friend class N192;
+ friend class N193;
public:
LTimeZone(uint u) : unique(u) {}
LTimeZone(uint u, const QByteArray& x1) : QTimeZone(x1), unique(u) {}
@@ -1863,7 +1874,7 @@ public:
};
class LTimerEvent : public QTimerEvent {
- friend class N193;
+ friend class N194;
public:
LTimerEvent(uint u, int x1) : QTimerEvent(x1), unique(u) {}
@@ -1872,7 +1883,7 @@ public:
};
class LToolTip : public QToolTip {
- friend class N194;
+ friend class N195;
public:
static NumList overrideIds;
@@ -1880,7 +1891,7 @@ public:
};
class LTouchDevice : public QTouchDevice {
- friend class N195;
+ friend class N196;
public:
LTouchDevice(uint u) : unique(u) {}
@@ -1889,7 +1900,7 @@ public:
};
class LTouchEvent : public QTouchEvent {
- friend class N196;
+ friend class N197;
public:
LTouchEvent(uint u, QEvent::Type x1, QTouchDevice* x2 = 0, Qt::KeyboardModifiers x3 = Qt::NoModifier, Qt::TouchPointStates x4 = 0, const QList& x5 = QList()) : QTouchEvent(x1, x2, x3, x4, x5), unique(u) {}
@@ -1898,7 +1909,7 @@ public:
};
class LTransform : public QTransform {
- friend class N197;
+ friend class N198;
public:
LTransform(uint u) : unique(u) {}
LTransform(uint u, qreal x1, qreal x2, qreal x3, qreal x4, qreal x5, qreal x6, qreal x7, qreal x8, qreal x9 = 1.0) : QTransform(x1, x2, x3, x4, x5, x6, x7, x8, x9), unique(u) {}
@@ -1910,7 +1921,7 @@ public:
};
class LTreeWidgetItem : public QTreeWidgetItem {
- friend class N198;
+ friend class N199;
public:
LTreeWidgetItem(uint u, int x1 = Type) : QTreeWidgetItem(x1), unique(u) {}
LTreeWidgetItem(uint u, const QStringList& x1, int x2 = Type) : QTreeWidgetItem(x1, x2), unique(u) {}
@@ -1925,13 +1936,13 @@ public:
static NumList overrideIds;
uint unique;
- QTreeWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 458); void* fun = LObjects::overrideFun(id); QTreeWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTreeWidgetItem*)callOverrideFun(fun, 458, 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, 493); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 493, 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, 494); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 494, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTreeWidgetItem::setData(x1, x2, x3); }}
+ QTreeWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 459); void* fun = LObjects::overrideFun(id); QTreeWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTreeWidgetItem*)callOverrideFun(fun, 459, 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, 494); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 494, 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, 495); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 495, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTreeWidgetItem::setData(x1, x2, x3); }}
};
class LUndoCommand : public QUndoCommand {
- friend class N199;
+ friend class N200;
public:
LUndoCommand(uint u, QUndoCommand* x1 = 0) : QUndoCommand(x1), unique(u) {}
LUndoCommand(uint u, const QString& x1, QUndoCommand* x2 = 0) : QUndoCommand(x1, x2), unique(u) {}
@@ -1939,14 +1950,14 @@ public:
static NumList overrideIds;
uint unique;
- int id() const { quint64 id = LObjects::override_id(unique, 495); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 495, 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, 496); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 496, 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, 497); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 497, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QUndoCommand::redo(); }}
- void undo() { quint64 id = LObjects::override_id(unique, 498); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 498, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QUndoCommand::undo(); }}
+ int id() const { quint64 id = LObjects::override_id(unique, 496); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 496, 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, 497); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 497, 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, 498); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 498, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QUndoCommand::redo(); }}
+ void undo() { quint64 id = LObjects::override_id(unique, 499); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 499, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QUndoCommand::undo(); }}
};
class LUrl : public QUrl {
- friend class N200;
+ friend class N201;
public:
LUrl(uint u) : unique(u) {}
LUrl(uint u, const QUrl& x1) : QUrl(x1), unique(u) {}
@@ -1957,7 +1968,7 @@ public:
};
class LVariant : public QVariant {
- friend class N201;
+ friend class N202;
public:
LVariant(uint u, const QCursor& x1) : QVariant(x1), unique(u) {}
LVariant(uint u) : unique(u) {}
@@ -2006,7 +2017,7 @@ public:
};
class LVector2D : public QVector2D {
- friend class N202;
+ friend class N203;
public:
LVector2D(uint u) : unique(u) {}
LVector2D(uint u, float x1, float x2) : QVector2D(x1, x2), unique(u) {}
@@ -2020,7 +2031,7 @@ public:
};
class LVector3D : public QVector3D {
- friend class N203;
+ friend class N204;
public:
LVector3D(uint u) : unique(u) {}
LVector3D(uint u, float x1, float x2, float x3) : QVector3D(x1, x2, x3), unique(u) {}
@@ -2035,7 +2046,7 @@ public:
};
class LVector4D : public QVector4D {
- friend class N204;
+ friend class N205;
public:
LVector4D(uint u) : unique(u) {}
LVector4D(uint u, float x1, float x2, float x3, float x4) : QVector4D(x1, x2, x3, x4), unique(u) {}
@@ -2051,7 +2062,7 @@ public:
};
class LWhatsThis : public QWhatsThis {
- friend class N216;
+ friend class N217;
public:
static NumList overrideIds;
@@ -2059,7 +2070,7 @@ public:
};
class LWhatsThisClickedEvent : public QWhatsThisClickedEvent {
- friend class N217;
+ friend class N218;
public:
LWhatsThisClickedEvent(uint u, const QString& x1) : QWhatsThisClickedEvent(x1), unique(u) {}
@@ -2068,7 +2079,7 @@ public:
};
class LWheelEvent : public QWheelEvent {
- friend class N218;
+ friend class N219;
public:
LWheelEvent(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8) : QWheelEvent(x1, x2, x3, x4, x5, x6, x7, x8), unique(u) {}
LWheelEvent(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8, Qt::ScrollPhase x9) : QWheelEvent(x1, x2, x3, x4, x5, x6, x7, x8, x9), unique(u) {}
@@ -2079,7 +2090,7 @@ public:
};
class LWidgetItem : public QWidgetItem {
- friend class N219;
+ friend class N220;
public:
LWidgetItem(uint u, QWidget* x1) : QWidgetItem(x1), unique(u) {}
@@ -2096,15 +2107,15 @@ public:
QSize minimumSize() const { quint64 id = LObjects::override_id(unique, 169); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 169, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::minimumSize(); } return ret; }
void setGeometry(const QRect& x1) { quint64 id = LObjects::override_id(unique, 170); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 170, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWidgetItem::setGeometry(x1); }}
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::sizeHint(); } return ret; }
- QWidget* widget() { quint64 id = LObjects::override_id(unique, 457); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 457, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::widget(); } return ret; }
+ QWidget* widget() { quint64 id = LObjects::override_id(unique, 458); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 458, 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, 456); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 456, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::spacerItem(); } return ret; }
+ QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 457); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 457, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::spacerItem(); } return ret; }
};
class LWindowStateChangeEvent : public QWindowStateChangeEvent {
- friend class N220;
+ friend class N221;
public:
static NumList overrideIds;
@@ -2112,7 +2123,7 @@ public:
};
class LWriteLocker : public QWriteLocker {
- friend class N221;
+ friend class N222;
public:
LWriteLocker(uint u, QReadWriteLock* x1) : QWriteLocker(x1), unique(u) {}
diff --git a/src/gen/_main_n_methods.h b/src/gen/_main_n_methods.h
index 62b96c7..20be2af 100644
--- a/src/gen/_main_n_methods.h
+++ b/src/gen/_main_n_methods.h
@@ -946,7 +946,14 @@ public:
Q_INVOKABLE QStringList SthemeSearchPaths() { return QIcon::themeSearchPaths(); }
};
-class EQL_EXPORT N83 : public QObject { // QItemEditorFactory
+class EQL_EXPORT N83 : public QObject { // QItemEditorCreatorBase
+ Q_OBJECT
+public:
+ Q_INVOKABLE QWidget* McreateWidget(QItemEditorCreatorBase* o, QWidget* x1) const { return o->createWidget(x1); }
+ Q_INVOKABLE QByteArray MvaluePropertyName(QItemEditorCreatorBase* o) const { return o->valuePropertyName(); }
+};
+
+class EQL_EXPORT N84 : public QObject { // QItemEditorFactory
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LItemEditorFactory(u); }
@@ -957,7 +964,7 @@ public:
Q_INVOKABLE void SsetDefaultFactory(QItemEditorFactory* x1) { QItemEditorFactory::setDefaultFactory(x1); }
};
-class EQL_EXPORT N84 : public QObject { // QItemSelectionRange
+class EQL_EXPORT N85 : public QObject { // QItemSelectionRange
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LItemSelectionRange(u); }
@@ -983,7 +990,7 @@ public:
Q_INVOKABLE int Mwidth(QItemSelectionRange* o) const { return o->width(); }
};
-class EQL_EXPORT N86 : public QObject { // QKeySequence
+class EQL_EXPORT N87 : public QObject { // QKeySequence
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LKeySequence(u); }
@@ -1003,7 +1010,7 @@ public:
Q_INVOKABLE QKeySequence Smnemonic(const QString& x1) { return QKeySequence::mnemonic(x1); }
};
-class EQL_EXPORT N87 : public QObject { // QLayoutItem
+class EQL_EXPORT N88 : public QObject { // QLayoutItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, Qt::Alignment x1 = 0) { return new LLayoutItem(u, x1); }
@@ -1026,7 +1033,7 @@ public:
Q_INVOKABLE QWidget* Mwidget(QLayoutItem* o) { return o->widget(); }
};
-class EQL_EXPORT N88 : public QObject { // QLibraryInfo
+class EQL_EXPORT N89 : public QObject { // QLibraryInfo
Q_OBJECT
public:
Q_INVOKABLE bool SisDebugBuild() { return QLibraryInfo::isDebugBuild(); }
@@ -1035,7 +1042,7 @@ public:
Q_INVOKABLE QString Slocation(QLibraryInfo::LibraryLocation x1) { return QLibraryInfo::location(x1); }
};
-class EQL_EXPORT N90 : public QObject { // QListWidgetItem
+class EQL_EXPORT N91 : public QObject { // QListWidgetItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QListWidget* x1 = 0, int x2 = QListWidgetItem::Type) { return new LListWidgetItem(u, x1, x2); }
@@ -1077,7 +1084,7 @@ public:
Q_INVOKABLE QString MwhatsThis(QListWidgetItem* o) const { return o->whatsThis(); }
};
-class EQL_EXPORT N91 : public QObject { // QLocale
+class EQL_EXPORT N92 : public QObject { // QLocale
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LLocale(u); }
@@ -1172,7 +1179,7 @@ public:
Q_INVOKABLE QLocale Ssystem() { return QLocale::system(); }
};
-class EQL_EXPORT N92 : public QObject { // QMargins
+class EQL_EXPORT N93 : public QObject { // QMargins
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMargins(u); }
@@ -1188,7 +1195,7 @@ public:
Q_INVOKABLE int Mtop(QMargins* o) const { return o->top(); }
};
-class EQL_EXPORT N93 : public QObject { // QMarginsF
+class EQL_EXPORT N94 : public QObject { // QMarginsF
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMarginsF(u); }
@@ -1206,7 +1213,7 @@ public:
Q_INVOKABLE qreal Mtop(QMarginsF* o) const { return o->top(); }
};
-class EQL_EXPORT N94 : public QObject { // QMatrix
+class EQL_EXPORT N95 : public QObject { // QMatrix
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMatrix(u); }
@@ -1241,7 +1248,7 @@ public:
Q_INVOKABLE QMatrix Mtranslate(QMatrix* o, qreal x1, qreal x2) { return o->translate(x1, x2); }
};
-class EQL_EXPORT N95 : public QObject { // QMatrix4x4
+class EQL_EXPORT N96 : public QObject { // QMatrix4x4
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMatrix4x4(u); }
@@ -1290,7 +1297,7 @@ public:
Q_INVOKABLE void Mviewport(QMatrix4x4* o, const QRectF& x1) { o->viewport(x1); }
};
-class EQL_EXPORT N98 : public QObject { // QMetaObject
+class EQL_EXPORT N99 : public QObject { // QMetaObject
Q_OBJECT
public:
Q_INVOKABLE int MclassInfoCount(QMetaObject* o) const { return o->classInfoCount(); }
@@ -1317,7 +1324,7 @@ public:
Q_INVOKABLE QByteArray SnormalizedType(const char* x1) { return QMetaObject::normalizedType(x1); }
};
-class EQL_EXPORT N99 : public QObject { // QModelIndex
+class EQL_EXPORT N100 : public QObject { // QModelIndex
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LModelIndex(u); }
@@ -1332,7 +1339,7 @@ public:
Q_INVOKABLE QModelIndex Msibling(QModelIndex* o, int x1, int x2) const { return o->sibling(x1, x2); }
};
-class EQL_EXPORT N111 : public QObject { // QOpenGLTexture
+class EQL_EXPORT N112 : public QObject { // QOpenGLTexture
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QOpenGLTexture::Target x1) { return new LOpenGLTexture(u, x1); }
@@ -1415,7 +1422,7 @@ public:
Q_INVOKABLE bool ShasFeature(QOpenGLTexture::Feature x1) { return QOpenGLTexture::hasFeature(x1); }
};
-class EQL_EXPORT N112 : public QObject { // QPageLayout
+class EQL_EXPORT N113 : public QObject { // QPageLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPageLayout(u); }
@@ -1452,7 +1459,7 @@ public:
Q_INVOKABLE int Munits(QPageLayout* o) const { return o->units(); }
};
-class EQL_EXPORT N113 : public QObject { // QPageSize
+class EQL_EXPORT N114 : public QObject { // QPageSize
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPageSize(u); }
@@ -1488,7 +1495,7 @@ public:
Q_INVOKABLE int SwindowsId(QPageSize::PageSizeId x1) { return QPageSize::windowsId(x1); }
};
-class EQL_EXPORT N115 : public QObject { // QPaintDevice
+class EQL_EXPORT N116 : public QObject { // QPaintDevice
Q_OBJECT
public:
Q_INVOKABLE int McolorCount(QPaintDevice* o) const { return o->colorCount(); }
@@ -1505,7 +1512,7 @@ public:
Q_INVOKABLE int MwidthMM(QPaintDevice* o) const { return o->widthMM(); }
};
-class EQL_EXPORT N117 : public QObject { // QPainter
+class EQL_EXPORT N118 : public QObject { // QPainter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QImage* x1) { return new LPainter(u, x1); }
@@ -1702,7 +1709,7 @@ public:
Q_INVOKABLE QTransform MworldTransform(QPainter* o) const { return o->worldTransform(); }
};
-class EQL_EXPORT N118 : public QObject { // QPainterPath
+class EQL_EXPORT N119 : public QObject { // QPainterPath
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPainterPath(u); }
@@ -1770,7 +1777,7 @@ public:
Q_INVOKABLE QPainterPath Munited(QPainterPath* o, const QPainterPath& x1) const { return o->united(x1); }
};
-class EQL_EXPORT N119 : public QObject { // QPainterPathStroker
+class EQL_EXPORT N120 : public QObject { // QPainterPathStroker
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPainterPathStroker(u); }
@@ -1793,7 +1800,7 @@ public:
Q_INVOKABLE qreal Mwidth(QPainterPathStroker* o) const { return o->width(); }
};
-class EQL_EXPORT N120 : public QObject { // QPalette
+class EQL_EXPORT N121 : public QObject { // QPalette
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPalette(u); }
@@ -1840,7 +1847,7 @@ public:
Q_INVOKABLE QBrush MwindowText(QPalette* o) const { return o->windowText(); }
};
-class EQL_EXPORT N121 : public QObject { // QPen
+class EQL_EXPORT N122 : public QObject { // QPen
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPen(u); }
@@ -1874,7 +1881,7 @@ public:
Q_INVOKABLE qreal MwidthF(QPen* o) const { return o->widthF(); }
};
-class EQL_EXPORT N122 : public QObject { // QPersistentModelIndex
+class EQL_EXPORT N123 : public QObject { // QPersistentModelIndex
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QModelIndex& x1) { return new LPersistentModelIndex(u, x1); }
@@ -1891,7 +1898,7 @@ public:
Q_INVOKABLE void Mswap(QPersistentModelIndex* o, QPersistentModelIndex& x1) { o->swap(x1); }
};
-class EQL_EXPORT N125 : public QObject { // QPixmapCache
+class EQL_EXPORT N126 : public QObject { // QPixmapCache
Q_OBJECT
public:
Q_INVOKABLE int ScacheLimit() { return QPixmapCache::cacheLimit(); }
@@ -1902,7 +1909,7 @@ public:
Q_INVOKABLE void SsetCacheLimit(int x1) { QPixmapCache::setCacheLimit(x1); }
};
-class EQL_EXPORT N127 : public QObject { // QPrinterInfo
+class EQL_EXPORT N128 : public QObject { // QPrinterInfo
Q_OBJECT
public:
Q_INVOKABLE int MdefaultDuplexMode(QPrinterInfo* o) const { return o->defaultDuplexMode(); }
@@ -1925,7 +1932,7 @@ public:
Q_INVOKABLE QString SdefaultPrinterName() { return QPrinterInfo::defaultPrinterName(); }
};
-class EQL_EXPORT N128 : public QObject { // QProcessEnvironment
+class EQL_EXPORT N129 : public QObject { // QProcessEnvironment
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LProcessEnvironment(u); }
@@ -1943,7 +1950,7 @@ public:
Q_INVOKABLE QProcessEnvironment SsystemEnvironment() { return QProcessEnvironment::systemEnvironment(); }
};
-class EQL_EXPORT N129 : public QObject { // QQuaternion
+class EQL_EXPORT N130 : public QObject { // QQuaternion
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LQuaternion(u); }
@@ -1984,7 +1991,7 @@ public:
Q_INVOKABLE QQuaternion Sslerp(const QQuaternion& x1, const QQuaternion& x2, float x3) { return QQuaternion::slerp(x1, x2, x3); }
};
-class EQL_EXPORT N131 : public QObject { // QReadLocker
+class EQL_EXPORT N132 : public QObject { // QReadLocker
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QReadWriteLock* x1) { return new LReadLocker(u, x1); }
@@ -1993,7 +2000,7 @@ public:
Q_INVOKABLE void Munlock(QReadLocker* o) { o->unlock(); }
};
-class EQL_EXPORT N132 : public QObject { // QReadWriteLock
+class EQL_EXPORT N133 : public QObject { // QReadWriteLock
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QReadWriteLock::RecursionMode x1 = QReadWriteLock::NonRecursive) { return new LReadWriteLock(u, x1); }
@@ -2006,7 +2013,7 @@ public:
Q_INVOKABLE void Munlock(QReadWriteLock* o) { o->unlock(); }
};
-class EQL_EXPORT N133 : public QObject { // QRegExp
+class EQL_EXPORT N134 : public QObject { // QRegExp
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LRegExp(u); }
@@ -2035,7 +2042,7 @@ public:
Q_INVOKABLE QString Sescape(const QString& x1) { return QRegExp::escape(x1); }
};
-class EQL_EXPORT N134 : public QObject { // QRegion
+class EQL_EXPORT N135 : public QObject { // QRegion
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LRegion(u); }
@@ -2067,7 +2074,7 @@ public:
Q_INVOKABLE QRegion Mxored(QRegion* o, const QRegion& x1) const { return o->xored(x1); }
};
-class EQL_EXPORT N135 : public QObject { // QRegularExpression
+class EQL_EXPORT N136 : public QObject { // QRegularExpression
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LRegularExpression(u); }
@@ -2091,7 +2098,7 @@ public:
Q_INVOKABLE QString Sescape(const QString& x1) { return QRegularExpression::escape(x1); }
};
-class EQL_EXPORT N137 : public QObject { // QRunnable
+class EQL_EXPORT N138 : public QObject { // QRunnable
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LRunnable(u); }
@@ -2100,7 +2107,7 @@ public:
Q_INVOKABLE void MsetAutoDelete(QRunnable* o, bool x1) { o->setAutoDelete(x1); }
};
-class EQL_EXPORT N138 : public QObject { // QSemaphore
+class EQL_EXPORT N139 : public QObject { // QSemaphore
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1 = 0) { return new LSemaphore(u, x1); }
@@ -2111,7 +2118,7 @@ public:
Q_INVOKABLE bool MtryAcquire(QSemaphore* o, int x1, int x2) { return o->tryAcquire(x1, x2); }
};
-class EQL_EXPORT N141 : public QObject { // QSizePolicy
+class EQL_EXPORT N142 : public QObject { // QSizePolicy
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LSizePolicy(u); }
@@ -2136,7 +2143,7 @@ public:
Q_INVOKABLE int MverticalStretch(QSizePolicy* o) const { return o->verticalStretch(); }
};
-class EQL_EXPORT N156 : public QObject { // QStandardItem
+class EQL_EXPORT N157 : public QObject { // QStandardItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LStandardItem(u); }
@@ -2223,7 +2230,7 @@ public:
Q_INVOKABLE void MemitDataChanged(QStandardItem* o) { ((LStandardItem*)o)->emitDataChanged(); }
};
-class EQL_EXPORT N157 : public QObject { // QStandardPaths
+class EQL_EXPORT N158 : public QObject { // QStandardPaths
Q_OBJECT
public:
Q_INVOKABLE QString SdisplayName(QStandardPaths::StandardLocation x1) { return QStandardPaths::displayName(x1); }
@@ -2235,7 +2242,7 @@ public:
Q_INVOKABLE QString SwritableLocation(QStandardPaths::StandardLocation x1) { return QStandardPaths::writableLocation(x1); }
};
-class EQL_EXPORT N159 : public QObject { // QStyleOption
+class EQL_EXPORT N160 : public QObject { // QStyleOption
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1 = QStyleOption::Version, int x2 = QStyleOption::SO_Default) { return new LStyleOption(u, x1, x2); }
@@ -2243,7 +2250,7 @@ public:
Q_INVOKABLE void MinitFrom(QStyleOption* o, const QWidget* x1) { o->initFrom(x1); }
};
-class EQL_EXPORT N161 : public QObject { // QSurface
+class EQL_EXPORT N162 : public QObject { // QSurface
Q_OBJECT
public:
Q_INVOKABLE QSurfaceFormat Mformat(QSurface* o) const { return o->format(); }
@@ -2253,7 +2260,7 @@ public:
Q_INVOKABLE int MsurfaceType(QSurface* o) const { return o->surfaceType(); }
};
-class EQL_EXPORT N163 : public QObject { // QSysInfo
+class EQL_EXPORT N164 : public QObject { // QSysInfo
Q_OBJECT
public:
Q_INVOKABLE QString SbuildAbi() { return QSysInfo::buildAbi(); }
@@ -2268,7 +2275,7 @@ public:
Q_INVOKABLE int SwindowsVersion() { return QSysInfo::windowsVersion(); }
};
-class EQL_EXPORT N164 : public QObject { // QSystemSemaphore
+class EQL_EXPORT N165 : public QObject { // QSystemSemaphore
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1, int x2 = 0, QSystemSemaphore::AccessMode x3 = QSystemSemaphore::Open) { return new LSystemSemaphore(u, x1, x2, x3); }
@@ -2280,7 +2287,7 @@ public:
Q_INVOKABLE void MsetKey(QSystemSemaphore* o, const QString& x1, int x2 = 0, QSystemSemaphore::AccessMode x3 = QSystemSemaphore::Open) { o->setKey(x1, x2, x3); }
};
-class EQL_EXPORT N165 : public QObject { // QTableWidgetItem
+class EQL_EXPORT N166 : public QObject { // QTableWidgetItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1 = QTableWidgetItem::Type) { return new LTableWidgetItem(u, x1); }
@@ -2322,7 +2329,7 @@ public:
Q_INVOKABLE QString MwhatsThis(QTableWidgetItem* o) const { return o->whatsThis(); }
};
-class EQL_EXPORT N166 : public QObject { // QTableWidgetSelectionRange
+class EQL_EXPORT N167 : public QObject { // QTableWidgetSelectionRange
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTableWidgetSelectionRange(u); }
@@ -2336,7 +2343,7 @@ public:
Q_INVOKABLE int MtopRow(QTableWidgetSelectionRange* o) const { return o->topRow(); }
};
-class EQL_EXPORT N168 : public QObject { // QTextBlock
+class EQL_EXPORT N169 : public QObject { // QTextBlock
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QTextBlock& x1) { return new LTextBlock(u, x1); }
@@ -2371,12 +2378,12 @@ public:
Q_INVOKABLE int MuserState(QTextBlock* o) const { return o->userState(); }
};
-class EQL_EXPORT N170 : public QObject { // QTextBlockUserData
+class EQL_EXPORT N171 : public QObject { // QTextBlockUserData
Q_OBJECT
public:
};
-class EQL_EXPORT N171 : public QObject { // QTextBoundaryFinder
+class EQL_EXPORT N172 : public QObject { // QTextBoundaryFinder
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextBoundaryFinder(u); }
@@ -2396,7 +2403,7 @@ public:
Q_INVOKABLE int Mtype(QTextBoundaryFinder* o) const { return o->type(); }
};
-class EQL_EXPORT N173 : public QObject { // QTextCodec
+class EQL_EXPORT N174 : public QObject { // QTextCodec
Q_OBJECT
public:
Q_INVOKABLE QList Maliases(QTextCodec* o) const { return o->aliases(); }
@@ -2424,7 +2431,7 @@ public:
Q_INVOKABLE void SsetCodecForLocale(QTextCodec* x1) { QTextCodec::setCodecForLocale(x1); }
};
-class EQL_EXPORT N174 : public QObject { // QTextCursor
+class EQL_EXPORT N175 : public QObject { // QTextCursor
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextCursor(u); }
@@ -2500,7 +2507,7 @@ public:
Q_INVOKABLE bool MvisualNavigation(QTextCursor* o) const { return o->visualNavigation(); }
};
-class EQL_EXPORT N175 : public QObject { // QTextDecoder
+class EQL_EXPORT N176 : public QObject { // QTextDecoder
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QTextCodec* x1) { return new LTextDecoder(u, x1); }
@@ -2510,7 +2517,7 @@ public:
Q_INVOKABLE QString MtoUnicode(QTextDecoder* o, const QByteArray& x1) { return o->toUnicode(x1); }
};
-class EQL_EXPORT N176 : public QObject { // QTextDocumentFragment
+class EQL_EXPORT N177 : public QObject { // QTextDocumentFragment
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextDocumentFragment(u); }
@@ -2525,7 +2532,7 @@ public:
Q_INVOKABLE QTextDocumentFragment SfromPlainText(const QString& x1) { return QTextDocumentFragment::fromPlainText(x1); }
};
-class EQL_EXPORT N177 : public QObject { // QTextDocumentWriter
+class EQL_EXPORT N178 : public QObject { // QTextDocumentWriter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextDocumentWriter(u); }
@@ -2541,7 +2548,7 @@ public:
Q_INVOKABLE QList SsupportedDocumentFormats() { return QTextDocumentWriter::supportedDocumentFormats(); }
};
-class EQL_EXPORT N178 : public QObject { // QTextEncoder
+class EQL_EXPORT N179 : public QObject { // QTextEncoder
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QTextCodec* x1) { return new LTextEncoder(u, x1); }
@@ -2550,7 +2557,7 @@ public:
Q_INVOKABLE QByteArray MfromUnicode(QTextEncoder* o, const QChar* x1, int x2) { return o->fromUnicode(x1, x2); }
};
-class EQL_EXPORT N179 : public QObject { // QTextFormat
+class EQL_EXPORT N180 : public QObject { // QTextFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextFormat(u); }
@@ -2604,7 +2611,7 @@ public:
Q_INVOKABLE int Mtype(QTextFormat* o) const { return o->type(); }
};
-class EQL_EXPORT N180 : public QObject { // QTextFragment
+class EQL_EXPORT N181 : public QObject { // QTextFragment
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextFragment(u); }
@@ -2619,7 +2626,7 @@ public:
Q_INVOKABLE QString Mtext(QTextFragment* o) const { return o->text(); }
};
-class EQL_EXPORT N183 : public QObject { // QTextLayout
+class EQL_EXPORT N184 : public QObject { // QTextLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextLayout(u); }
@@ -2661,7 +2668,7 @@ public:
Q_INVOKABLE QTextOption MtextOption(QTextLayout* o) const { return o->textOption(); }
};
-class EQL_EXPORT N184 : public QObject { // QTextLength
+class EQL_EXPORT N185 : public QObject { // QTextLength
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextLength(u); }
@@ -2671,7 +2678,7 @@ public:
Q_INVOKABLE qreal Mvalue(QTextLength* o, qreal x1) const { return o->value(x1); }
};
-class EQL_EXPORT N185 : public QObject { // QTextLine
+class EQL_EXPORT N186 : public QObject { // QTextLine
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextLine(u); }
@@ -2703,7 +2710,7 @@ public:
Q_INVOKABLE qreal My(QTextLine* o) const { return o->y(); }
};
-class EQL_EXPORT N187 : public QObject { // QTextOption
+class EQL_EXPORT N188 : public QObject { // QTextOption
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextOption(u); }
@@ -2725,7 +2732,7 @@ public:
Q_INVOKABLE int MwrapMode(QTextOption* o) const { return o->wrapMode(); }
};
-class EQL_EXPORT N188 : public QObject { // QTextTableCell
+class EQL_EXPORT N189 : public QObject { // QTextTableCell
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextTableCell(u); }
@@ -2742,7 +2749,7 @@ public:
Q_INVOKABLE int MtableCellFormatIndex(QTextTableCell* o) const { return o->tableCellFormatIndex(); }
};
-class EQL_EXPORT N191 : public QObject { // QTime
+class EQL_EXPORT N192 : public QObject { // QTime
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTime(u); }
@@ -2771,7 +2778,7 @@ public:
Q_INVOKABLE bool SisValid(int x1, int x2, int x3, int x4 = 0) { return QTime::isValid(x1, x2, x3, x4); }
};
-class EQL_EXPORT N192 : public QObject { // QTimeZone
+class EQL_EXPORT N193 : public QObject { // QTimeZone
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTimeZone(u); }
@@ -2807,7 +2814,7 @@ public:
Q_INVOKABLE QList SwindowsIdToIanaIds(const QByteArray& x1, QLocale::Country x2) { return QTimeZone::windowsIdToIanaIds(x1, x2); }
};
-class EQL_EXPORT N194 : public QObject { // QToolTip
+class EQL_EXPORT N195 : public QObject { // QToolTip
Q_OBJECT
public:
Q_INVOKABLE QFont Sfont() { return QToolTip::font(); }
@@ -2822,7 +2829,7 @@ public:
Q_INVOKABLE QString Stext() { return QToolTip::text(); }
};
-class EQL_EXPORT N195 : public QObject { // QTouchDevice
+class EQL_EXPORT N196 : public QObject { // QTouchDevice
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTouchDevice(u); }
@@ -2837,7 +2844,7 @@ public:
Q_INVOKABLE QList Sdevices() { return QTouchDevice::devices(); }
};
-class EQL_EXPORT N197 : public QObject { // QTransform
+class EQL_EXPORT N198 : public QObject { // QTransform
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTransform(u); }
@@ -2892,7 +2899,7 @@ public:
Q_INVOKABLE bool SsquareToQuad(const QPolygonF& x1, QTransform& x2) { return QTransform::squareToQuad(x1, x2); }
};
-class EQL_EXPORT N198 : public QObject { // QTreeWidgetItem
+class EQL_EXPORT N199 : public QObject { // QTreeWidgetItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1 = QTreeWidgetItem::Type) { return new LTreeWidgetItem(u, x1); }
@@ -2961,7 +2968,7 @@ public:
Q_INVOKABLE void MemitDataChanged(QTreeWidgetItem* o) { ((LTreeWidgetItem*)o)->emitDataChanged(); }
};
-class EQL_EXPORT N199 : public QObject { // QUndoCommand
+class EQL_EXPORT N200 : public QObject { // QUndoCommand
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QUndoCommand* x1 = 0) { return new LUndoCommand(u, x1); }
@@ -2977,7 +2984,7 @@ public:
Q_INVOKABLE void Mundo(QUndoCommand* o) { o->undo(); }
};
-class EQL_EXPORT N200 : public QObject { // QUrl
+class EQL_EXPORT N201 : public QObject { // QUrl
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LUrl(u); }
@@ -3039,7 +3046,7 @@ public:
Q_INVOKABLE QStringList StoStringList(const QList& x1, QUrl::FormattingOptions x2 = QUrl::PrettyDecoded) { return QUrl::toStringList(x1, x2); }
};
-class EQL_EXPORT N201 : public QObject { // QVariant
+class EQL_EXPORT N202 : public QObject { // QVariant
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QCursor& x1) { return new LVariant(u, x1); }
@@ -3132,7 +3139,7 @@ public:
Q_INVOKABLE const char* StypeToName(int x1) { return QVariant::typeToName(x1); }
};
-class EQL_EXPORT N202 : public QObject { // QVector2D
+class EQL_EXPORT N203 : public QObject { // QVector2D
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVector2D(u); }
@@ -3159,7 +3166,7 @@ public:
Q_INVOKABLE float SdotProduct(const QVector2D& x1, const QVector2D& x2) { return QVector2D::dotProduct(x1, x2); }
};
-class EQL_EXPORT N203 : public QObject { // QVector3D
+class EQL_EXPORT N204 : public QObject { // QVector3D
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVector3D(u); }
@@ -3196,7 +3203,7 @@ public:
Q_INVOKABLE QVector3D Snormal(const QVector3D& x1, const QVector3D& x2, const QVector3D& x3) { return QVector3D::normal(x1, x2, x3); }
};
-class EQL_EXPORT N204 : public QObject { // QVector4D
+class EQL_EXPORT N205 : public QObject { // QVector4D
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVector4D(u); }
@@ -3229,7 +3236,7 @@ public:
Q_INVOKABLE float SdotProduct(const QVector4D& x1, const QVector4D& x2) { return QVector4D::dotProduct(x1, x2); }
};
-class EQL_EXPORT N216 : public QObject { // QWhatsThis
+class EQL_EXPORT N217 : public QObject { // QWhatsThis
Q_OBJECT
public:
Q_INVOKABLE QAction* ScreateAction(QObject* x1 = 0) { return QWhatsThis::createAction(x1); }
@@ -3240,7 +3247,7 @@ public:
Q_INVOKABLE void SshowText(const QPoint& x1, const QString& x2, QWidget* x3 = 0) { QWhatsThis::showText(x1, x2, x3); }
};
-class EQL_EXPORT N221 : public QObject { // QWriteLocker
+class EQL_EXPORT N222 : public QObject { // QWriteLocker
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QReadWriteLock* x1) { return new LWriteLocker(u, x1); }
@@ -3686,7 +3693,7 @@ public:
Q_INVOKABLE void* C(uint u) { return new LIconDragEvent(u); }
};
-class EQL_EXPORT N79 : public N115 { // QImage
+class EQL_EXPORT N79 : public N116 { // QImage
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LImage(u); }
@@ -3788,7 +3795,7 @@ public:
Q_INVOKABLE void MsetCommitString(QInputMethodEvent* o, const QString& x1, int x2 = 0, int x3 = 0) { o->setCommitString(x1, x2, x3); }
};
-class EQL_EXPORT N85 : public N81 { // QKeyEvent
+class EQL_EXPORT N86 : public N81 { // QKeyEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QKeyEvent::Type x1, int x2, Qt::KeyboardModifiers x3, const QString& x4 = QString(), bool x5 = false, ushort x6 = 1) { return new LKeyEvent(u, x1, x2, x3, x4, x5, x6); }
@@ -3804,7 +3811,7 @@ public:
Q_INVOKABLE QString Mtext(QKeyEvent* o) const { return o->text(); }
};
-class EQL_EXPORT N89 : public N46 { // QLinearGradient
+class EQL_EXPORT N90 : public N46 { // QLinearGradient
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LLinearGradient(u); }
@@ -3818,7 +3825,7 @@ public:
Q_INVOKABLE QPointF Mstart(QLinearGradient* o) const { return o->start(); }
};
-class EQL_EXPORT N100 : public N81 { // QMouseEvent
+class EQL_EXPORT N101 : public N81 { // QMouseEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QMouseEvent::Type x1, const QPointF& x2, Qt::MouseButton x3, Qt::MouseButtons x4, Qt::KeyboardModifiers x5) { return new LMouseEvent(u, x1, x2, x3, x4, x5); }
@@ -3839,7 +3846,7 @@ public:
Q_INVOKABLE int My(QMouseEvent* o) const { return o->y(); }
};
-class EQL_EXPORT N101 : public N36 { // QMoveEvent
+class EQL_EXPORT N102 : public N36 { // QMoveEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QPoint& x1, const QPoint& x2) { return new LMoveEvent(u, x1, x2); }
@@ -3847,7 +3854,7 @@ public:
Q_INVOKABLE QPoint Mpos(QMoveEvent* o) const { return o->pos(); }
};
-class EQL_EXPORT N110 : public N115 { // QOpenGLPaintDevice
+class EQL_EXPORT N111 : public N116 { // QOpenGLPaintDevice
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LOpenGLPaintDevice(u); }
@@ -3866,7 +3873,7 @@ public:
Q_INVOKABLE QSize Msize(QOpenGLPaintDevice* o) const { return o->size(); }
};
-class EQL_EXPORT N114 : public N115 { // QPagedPaintDevice
+class EQL_EXPORT N115 : public N116 { // QPagedPaintDevice
Q_OBJECT
public:
Q_INVOKABLE bool MnewPage(QPagedPaintDevice* o) { return o->newPage(); }
@@ -3882,7 +3889,7 @@ public:
Q_INVOKABLE void MsetPageSizeMM(QPagedPaintDevice* o, const QSizeF& x1) { o->setPageSizeMM(x1); }
};
-class EQL_EXPORT N116 : public N36 { // QPaintEvent
+class EQL_EXPORT N117 : public N36 { // QPaintEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QRegion& x1) { return new LPaintEvent(u, x1); }
@@ -3891,7 +3898,7 @@ public:
Q_INVOKABLE QRegion Mregion(QPaintEvent* o) const { return o->region(); }
};
-class EQL_EXPORT N123 : public N115 { // QPicture
+class EQL_EXPORT N124 : public N116 { // QPicture
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1 = -1) { return new LPicture(u, x1); }
@@ -3908,7 +3915,7 @@ public:
Q_INVOKABLE void Mswap(QPicture* o, QPicture& x1) { o->swap(x1); }
};
-class EQL_EXPORT N124 : public N115 { // QPixmap
+class EQL_EXPORT N125 : public N116 { // QPixmap
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LPixmap(u); }
@@ -3957,7 +3964,7 @@ public:
Q_INVOKABLE QMatrix StrueMatrix(const QMatrix& x1, int x2, int x3) { return QPixmap::trueMatrix(x1, x2, x3); }
};
-class EQL_EXPORT N126 : public N114 { // QPrinter
+class EQL_EXPORT N127 : public N115 { // QPrinter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QPrinter::PrinterMode x1 = QPrinter::ScreenResolution) { return new LPrinter(u, x1); }
@@ -4012,7 +4019,7 @@ public:
Q_INVOKABLE bool MnewPage(QPrinter* o) { return o->newPage(); }
};
-class EQL_EXPORT N130 : public N46 { // QRadialGradient
+class EQL_EXPORT N131 : public N46 { // QRadialGradient
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LRadialGradient(u); }
@@ -4036,7 +4043,7 @@ public:
Q_INVOKABLE void MsetRadius(QRadialGradient* o, qreal x1) { o->setRadius(x1); }
};
-class EQL_EXPORT N136 : public N36 { // QResizeEvent
+class EQL_EXPORT N137 : public N36 { // QResizeEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QSize& x1, const QSize& x2) { return new LResizeEvent(u, x1, x2); }
@@ -4044,7 +4051,7 @@ public:
Q_INVOKABLE QSize Msize(QResizeEvent* o) const { return o->size(); }
};
-class EQL_EXPORT N139 : public N36 { // QShortcutEvent
+class EQL_EXPORT N140 : public N36 { // QShortcutEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QKeySequence& x1, int x2, bool x3 = false) { return new LShortcutEvent(u, x1, x2, x3); }
@@ -4053,13 +4060,13 @@ public:
Q_INVOKABLE int MshortcutId(QShortcutEvent* o) const { return o->shortcutId(); }
};
-class EQL_EXPORT N140 : public N36 { // QShowEvent
+class EQL_EXPORT N141 : public N36 { // QShowEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LShowEvent(u); }
};
-class EQL_EXPORT N142 : public N87 { // QSpacerItem
+class EQL_EXPORT N143 : public N88 { // QSpacerItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1, int x2, QSizePolicy::Policy x3 = QSizePolicy::Minimum, QSizePolicy::Policy x4 = QSizePolicy::Minimum) { return new LSpacerItem(u, x1, x2, x3, x4); }
@@ -4075,14 +4082,14 @@ public:
Q_INVOKABLE QSpacerItem* MspacerItem(QSpacerItem* o) { return o->spacerItem(); }
};
-class EQL_EXPORT N158 : public N36 { // QStatusTipEvent
+class EQL_EXPORT N159 : public N36 { // QStatusTipEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1) { return new LStatusTipEvent(u, x1); }
Q_INVOKABLE QString Mtip(QStatusTipEvent* o) const { return o->tip(); }
};
-class EQL_EXPORT N160 : public N159 { // QStyleOptionGraphicsItem
+class EQL_EXPORT N161 : public N160 { // QStyleOptionGraphicsItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LStyleOptionGraphicsItem(u); }
@@ -4090,7 +4097,7 @@ public:
Q_INVOKABLE qreal SlevelOfDetailFromTransform(const QTransform& x1) { return QStyleOptionGraphicsItem::levelOfDetailFromTransform(x1); }
};
-class EQL_EXPORT N167 : public N81 { // QTabletEvent
+class EQL_EXPORT N168 : public N81 { // QTabletEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QTabletEvent::Type x1, const QPointF& x2, const QPointF& x3, int x4, int x5, qreal x6, int x7, int x8, qreal x9, qreal x10, int x11, Qt::KeyboardModifiers x12, qint64 x13, Qt::MouseButton x14, Qt::MouseButtons x15) { return new LTabletEvent(u, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15); }
@@ -4117,7 +4124,7 @@ public:
Q_INVOKABLE int Mz(QTabletEvent* o) const { return o->z(); }
};
-class EQL_EXPORT N169 : public N179 { // QTextBlockFormat
+class EQL_EXPORT N170 : public N180 { // QTextBlockFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextBlockFormat(u); }
@@ -4148,7 +4155,7 @@ public:
Q_INVOKABLE qreal MtopMargin(QTextBlockFormat* o) const { return o->topMargin(); }
};
-class EQL_EXPORT N172 : public N179 { // QTextCharFormat
+class EQL_EXPORT N173 : public N180 { // QTextCharFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextCharFormat(u); }
@@ -4208,7 +4215,7 @@ public:
Q_INVOKABLE int MverticalAlignment(QTextCharFormat* o) const { return o->verticalAlignment(); }
};
-class EQL_EXPORT N181 : public N179 { // QTextFrameFormat
+class EQL_EXPORT N182 : public N180 { // QTextFrameFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextFrameFormat(u); }
@@ -4243,7 +4250,7 @@ public:
Q_INVOKABLE QTextLength Mwidth(QTextFrameFormat* o) const { return o->width(); }
};
-class EQL_EXPORT N182 : public N172 { // QTextImageFormat
+class EQL_EXPORT N183 : public N173 { // QTextImageFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextImageFormat(u); }
@@ -4256,7 +4263,7 @@ public:
Q_INVOKABLE qreal Mwidth(QTextImageFormat* o) const { return o->width(); }
};
-class EQL_EXPORT N186 : public N179 { // QTextListFormat
+class EQL_EXPORT N187 : public N180 { // QTextListFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextListFormat(u); }
@@ -4271,7 +4278,7 @@ public:
Q_INVOKABLE int Mstyle(QTextListFormat* o) const { return o->style(); }
};
-class EQL_EXPORT N189 : public N172 { // QTextTableCellFormat
+class EQL_EXPORT N190 : public N173 { // QTextTableCellFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextTableCellFormat(u); }
@@ -4287,7 +4294,7 @@ public:
Q_INVOKABLE qreal MtopPadding(QTextTableCellFormat* o) const { return o->topPadding(); }
};
-class EQL_EXPORT N190 : public N181 { // QTextTableFormat
+class EQL_EXPORT N191 : public N182 { // QTextTableFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LTextTableFormat(u); }
@@ -4306,14 +4313,14 @@ public:
Q_INVOKABLE void MsetHeaderRowCount(QTextTableFormat* o, int x1) { o->setHeaderRowCount(x1); }
};
-class EQL_EXPORT N193 : public N36 { // QTimerEvent
+class EQL_EXPORT N194 : public N36 { // QTimerEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1) { return new LTimerEvent(u, x1); }
Q_INVOKABLE int MtimerId(QTimerEvent* o) const { return o->timerId(); }
};
-class EQL_EXPORT N196 : public N81 { // QTouchEvent
+class EQL_EXPORT N197 : public N81 { // QTouchEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QEvent::Type x1, QTouchDevice* x2 = 0, Qt::KeyboardModifiers x3 = Qt::NoModifier, Qt::TouchPointStates x4 = 0, const QList& x5 = QList()) { return new LTouchEvent(u, x1, x2, x3, x4, x5); }
@@ -4324,14 +4331,14 @@ public:
Q_INVOKABLE QWindow* Mwindow(QTouchEvent* o) const { return o->window(); }
};
-class EQL_EXPORT N217 : public N36 { // QWhatsThisClickedEvent
+class EQL_EXPORT N218 : public N36 { // QWhatsThisClickedEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1) { return new LWhatsThisClickedEvent(u, x1); }
Q_INVOKABLE QString Mhref(QWhatsThisClickedEvent* o) const { return o->href(); }
};
-class EQL_EXPORT N218 : public N81 { // QWheelEvent
+class EQL_EXPORT N219 : public N81 { // QWheelEvent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8) { return new LWheelEvent(u, x1, x2, x3, x4, x5, x6, x7, x8); }
@@ -4352,7 +4359,7 @@ public:
Q_INVOKABLE int My(QWheelEvent* o) const { return o->y(); }
};
-class EQL_EXPORT N219 : public N87 { // QWidgetItem
+class EQL_EXPORT N220 : public N88 { // QWidgetItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LWidgetItem(u, x1); }
@@ -4369,13 +4376,13 @@ public:
Q_INVOKABLE QWidget* Mwidget(QWidgetItem* o) { return o->widget(); }
};
-class EQL_EXPORT N220 : public N36 { // QWindowStateChangeEvent
+class EQL_EXPORT N221 : public N36 { // QWindowStateChangeEvent
Q_OBJECT
public:
Q_INVOKABLE int MoldState(QWindowStateChangeEvent* o) const { return o->oldState(); }
};
-class EQL_EXPORT N14 : public N124 { // QBitmap
+class EQL_EXPORT N14 : public N125 { // QBitmap
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LBitmap(u); }
diff --git a/src/gen/_main_q_classes.h b/src/gen/_main_q_classes.h
index a652519..4fe34e9 100644
--- a/src/gen/_main_q_classes.h
+++ b/src/gen/_main_q_classes.h
@@ -2771,9 +2771,60 @@ public:
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QIODevice::timerEvent(x1); }}
};
-class LInputDialog : public QInputDialog {
+class LIdentityProxyModel : public QIdentityProxyModel {
Q_OBJECT
friend class Q104;
+public:
+ LIdentityProxyModel(uint u, QObject* x1 = 0) : QIdentityProxyModel(x1), unique(u) {}
+
+ static NumList overrideIds;
+ uint unique;
+
+ 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 = QIdentityProxyModel::columnCount(x1); } return ret; }
+ bool dropMimeData(const QMimeData* x1, Qt::DropAction x2, int x3, int x4, const QModelIndex& x5) { quint64 id = LObjects::override_id(unique, 60); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4, &x5 }; ret = callOverrideFun(fun, 60, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::dropMimeData(x1, x2, x3, x4, x5); } 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 = QIdentityProxyModel::headerData(x1, x2, x3); } return ret; }
+ QModelIndex index(int x1, int x2, const QModelIndex& x3 = QModelIndex()) const { quint64 id = LObjects::override_id(unique, 65); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 65, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::index(x1, x2, x3); } return ret; }
+ 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 = QIdentityProxyModel::insertColumns(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 = QIdentityProxyModel::insertRows(x1, x2, x3); } return ret; }
+ QModelIndex mapFromSource(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 109); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 109, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::mapFromSource(x1); } return ret; }
+ QItemSelection mapSelectionFromSource(const QItemSelection& x1) const { quint64 id = LObjects::override_id(unique, 110); void* fun = LObjects::overrideFun(id); QItemSelection ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 110, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::mapSelectionFromSource(x1); } return ret; }
+ QItemSelection mapSelectionToSource(const QItemSelection& x1) const { quint64 id = LObjects::override_id(unique, 111); void* fun = LObjects::overrideFun(id); QItemSelection ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 111, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::mapSelectionToSource(x1); } return ret; }
+ QModelIndex mapToSource(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 112); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 112, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::mapToSource(x1); } return ret; }
+ QModelIndexList match(const QModelIndex& x1, int x2, const QVariant& x3, int x4 = 1, Qt::MatchFlags x5 = Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap)) const { quint64 id = LObjects::override_id(unique, 68); void* fun = LObjects::overrideFun(id); QModelIndexList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4, &x5 }; ret = callOverrideFun(fun, 68, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::match(x1, x2, x3, x4, x5); } return ret; }
+ QModelIndex parent(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 73); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 73, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::parent(x1); } 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 = QIdentityProxyModel::removeColumns(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 = QIdentityProxyModel::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 = QIdentityProxyModel::rowCount(x1); } return ret; }
+ void setSourceModel(QAbstractItemModel* x1) { quint64 id = LObjects::override_id(unique, 113); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 113, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QIdentityProxyModel::setSourceModel(x1); }}
+ QModelIndex sibling(int x1, int x2, const QModelIndex& x3) const { quint64 id = LObjects::override_id(unique, 79); void* fun = LObjects::overrideFun(id); QModelIndex ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 79, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::sibling(x1, x2, x3); } 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 = QIdentityProxyModel::buddy(x1); } return ret; }
+ bool canDropMimeData(const QMimeData* x1, Qt::DropAction x2, int x3, int x4, const QModelIndex& x5) const { quint64 id = LObjects::override_id(unique, 56); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4, &x5 }; ret = callOverrideFun(fun, 56, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::canDropMimeData(x1, x2, x3, x4, x5); } 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 = QIdentityProxyModel::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 = QIdentityProxyModel::data(x1, x2); } return ret; }
+ void fetchMore(const QModelIndex& x1) { 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)) { QIdentityProxyModel::fetchMore(x1); }}
+ 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 = QIdentityProxyModel::flags(x1); } return ret; }
+ bool hasChildren(const QModelIndex& x1 = QModelIndex()) const { quint64 id = LObjects::override_id(unique, 63); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 63, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::hasChildren(x1); } return ret; }
+ QMimeData* mimeData(const QModelIndexList& x1) const { quint64 id = LObjects::override_id(unique, 69); void* fun = LObjects::overrideFun(id); QMimeData* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QMimeData*)callOverrideFun(fun, 69, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::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 = QIdentityProxyModel::mimeTypes(); } return ret; }
+ void revert() { quint64 id = LObjects::override_id(unique, 114); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 114, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QIdentityProxyModel::revert(); }}
+ 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 = QIdentityProxyModel::setData(x1, x2, x3); } return ret; }
+ bool setHeaderData(int x1, Qt::Orientation x2, const QVariant& x3, int x4 = Qt::EditRole) { quint64 id = LObjects::override_id(unique, 78); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 78, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::setHeaderData(x1, x2, x3, x4); } return ret; }
+ void sort(int x1, Qt::SortOrder x2 = Qt::AscendingOrder) { 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)) { QIdentityProxyModel::sort(x1, x2); }}
+ QSize span(const QModelIndex& x1) const { quint64 id = LObjects::override_id(unique, 81); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 81, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::span(x1); } return ret; }
+ bool submit() { quint64 id = LObjects::override_id(unique, 115); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 115, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::submit(); } return ret; }
+ Qt::DropActions supportedDragActions() const { quint64 id = LObjects::override_id(unique, 82); void* fun = LObjects::overrideFun(id); Qt::DropActions ret = (Qt::DropActions)0; if(fun && (LObjects::calling != id)) { ret = (Qt::DropActions)callOverrideFun(fun, 82, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::supportedDragActions(); } 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 = QIdentityProxyModel::supportedDropActions(); } return ret; }
+ bool moveColumns(const QModelIndex& x1, int x2, int x3, const QModelIndex& x4, int x5) { quint64 id = LObjects::override_id(unique, 71); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4, &x5 }; ret = callOverrideFun(fun, 71, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::moveColumns(x1, x2, x3, x4, x5); } return ret; }
+ bool moveRows(const QModelIndex& x1, int x2, int x3, const QModelIndex& x4, int x5) { quint64 id = LObjects::override_id(unique, 72); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4, &x5 }; ret = callOverrideFun(fun, 72, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QIdentityProxyModel::moveRows(x1, x2, x3, x4, x5); } 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 = QIdentityProxyModel::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)) { QIdentityProxyModel::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)) { QIdentityProxyModel::customEvent(x1); }}
+ void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QIdentityProxyModel::timerEvent(x1); }}
+};
+
+class LInputDialog : public QInputDialog {
+ Q_OBJECT
+ friend class Q105;
public:
LInputDialog(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QInputDialog(x1, x2), unique(u) {}
@@ -2824,7 +2875,7 @@ public:
class LIntValidator : public QIntValidator {
Q_OBJECT
- friend class Q105;
+ friend class Q106;
public:
LIntValidator(uint u, QObject* x1 = 0) : QIntValidator(x1), unique(u) {}
LIntValidator(uint u, int x1, int x2, QObject* x3 = 0) : QIntValidator(x1, x2, x3), unique(u) {}
@@ -2843,7 +2894,7 @@ public:
class LItemDelegate : public QItemDelegate {
Q_OBJECT
- friend class Q106;
+ friend class Q107;
public:
LItemDelegate(uint u, QObject* x1 = 0) : QItemDelegate(x1), unique(u) {}
@@ -2871,7 +2922,7 @@ public:
class LItemSelectionModel : public QItemSelectionModel {
Q_OBJECT
- friend class Q107;
+ friend class Q108;
public:
LItemSelectionModel(uint u, QAbstractItemModel* x1 = 0) : QItemSelectionModel(x1), unique(u) {}
LItemSelectionModel(uint u, QAbstractItemModel* x1, QObject* x2) : QItemSelectionModel(x1, x2), unique(u) {}
@@ -2887,7 +2938,7 @@ public:
class LKeyEventTransition : public QKeyEventTransition {
Q_OBJECT
- friend class Q108;
+ friend class Q109;
public:
LKeyEventTransition(uint u, QState* x1 = 0) : QKeyEventTransition(x1), unique(u) {}
LKeyEventTransition(uint u, QObject* x1, QEvent::Type x2, int x3, QState* x4 = 0) : QKeyEventTransition(x1, x2, x3, x4), unique(u) {}
@@ -2905,7 +2956,7 @@ public:
class LLCDNumber : public QLCDNumber {
Q_OBJECT
- friend class Q109;
+ friend class Q110;
public:
LLCDNumber(uint u, QWidget* x1 = 0) : QLCDNumber(x1), unique(u) {}
LLCDNumber(uint u, uint x1, QWidget* x2 = 0) : QLCDNumber(x1, x2), unique(u) {}
@@ -2955,7 +3006,7 @@ public:
class LLabel : public QLabel {
Q_OBJECT
- friend class Q110;
+ friend class Q111;
public:
LLabel(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QLabel(x1, x2), unique(u) {}
LLabel(uint u, const QString& x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) : QLabel(x1, x2, x3), unique(u) {}
@@ -3005,7 +3056,7 @@ public:
class LLibrary : public QLibrary {
Q_OBJECT
- friend class Q112;
+ friend class Q113;
public:
LLibrary(uint u, QObject* x1 = 0) : QLibrary(x1), unique(u) {}
LLibrary(uint u, const QString& x1, QObject* x2 = 0) : QLibrary(x1, x2), unique(u) {}
@@ -3023,7 +3074,7 @@ public:
class LLineEdit : public QLineEdit {
Q_OBJECT
- friend class Q113;
+ friend class Q114;
public:
LLineEdit(uint u, QWidget* x1 = 0) : QLineEdit(x1), unique(u) {}
LLineEdit(uint u, const QString& x1, QWidget* x2 = 0) : QLineEdit(x1, x2), unique(u) {}
@@ -3073,7 +3124,7 @@ public:
class LListView : public QListView {
Q_OBJECT
- friend class Q114;
+ friend class Q115;
public:
LListView(uint u, QWidget* x1 = 0) : QListView(x1), unique(u) {}
@@ -3151,7 +3202,7 @@ public:
class LListWidget : public QListWidget {
Q_OBJECT
- friend class Q115;
+ friend class Q116;
public:
LListWidget(uint u, QWidget* x1 = 0) : QListWidget(x1), unique(u) {}
@@ -3232,7 +3283,7 @@ public:
class LMainWindow : public QMainWindow {
Q_OBJECT
- friend class Q118;
+ friend class Q119;
public:
LMainWindow(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QMainWindow(x1, x2), unique(u) {}
@@ -3282,7 +3333,7 @@ public:
class LMdiArea : public QMdiArea {
Q_OBJECT
- friend class Q119;
+ friend class Q120;
public:
LMdiArea(uint u, QWidget* x1 = 0) : QMdiArea(x1), unique(u) {}
@@ -3335,7 +3386,7 @@ public:
class LMdiSubWindow : public QMdiSubWindow {
Q_OBJECT
- friend class Q120;
+ friend class Q121;
public:
LMdiSubWindow(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QMdiSubWindow(x1, x2), unique(u) {}
@@ -3384,7 +3435,7 @@ public:
class LMenu : public QMenu {
Q_OBJECT
- friend class Q126;
+ friend class Q127;
public:
LMenu(uint u, QWidget* x1 = 0) : QMenu(x1), unique(u) {}
LMenu(uint u, const QString& x1, QWidget* x2 = 0) : QMenu(x1, x2), unique(u) {}
@@ -3434,7 +3485,7 @@ public:
class LMenuBar : public QMenuBar {
Q_OBJECT
- friend class Q127;
+ friend class Q128;
public:
LMenuBar(uint u, QWidget* x1 = 0) : QMenuBar(x1), unique(u) {}
@@ -3483,7 +3534,7 @@ public:
class LMessageBox : public QMessageBox {
Q_OBJECT
- friend class Q128;
+ friend class Q129;
public:
LMessageBox(uint u, QWidget* x1 = 0) : QMessageBox(x1), unique(u) {}
LMessageBox(uint u, Icon x1, const QString& x2, const QString& x3, StandardButtons x4 = NoButton, QWidget* x5 = 0, Qt::WindowFlags x6 = Qt::Dialog|Qt::MSWindowsFixedSizeDialogHint) : QMessageBox(x1, x2, x3, x4, x5, x6), unique(u) {}
@@ -3534,7 +3585,7 @@ public:
class LMimeData : public QMimeData {
Q_OBJECT
- friend class Q129;
+ friend class Q130;
public:
LMimeData(uint u) : unique(u) {}
@@ -3552,7 +3603,7 @@ public:
class LMouseEventTransition : public QMouseEventTransition {
Q_OBJECT
- friend class Q130;
+ friend class Q131;
public:
LMouseEventTransition(uint u, QState* x1 = 0) : QMouseEventTransition(x1), unique(u) {}
LMouseEventTransition(uint u, QObject* x1, QEvent::Type x2, Qt::MouseButton x3, QState* x4 = 0) : QMouseEventTransition(x1, x2, x3, x4), unique(u) {}
@@ -3570,7 +3621,7 @@ public:
class LMovie : public QMovie {
Q_OBJECT
- friend class Q131;
+ friend class Q132;
public:
LMovie(uint u, QObject* x1 = 0) : QMovie(x1), unique(u) {}
LMovie(uint u, const QString& x1, const QByteArray& x2 = QByteArray(), QObject* x3 = 0) : QMovie(x1, x2, x3), unique(u) {}
@@ -3586,7 +3637,7 @@ public:
class LObject : public QObject {
Q_OBJECT
- friend class Q136;
+ friend class Q137;
public:
LObject(uint u, QObject* x1 = 0) : QObject(x1), unique(u) {}
@@ -3601,7 +3652,7 @@ public:
class LOpenGLContext : public QOpenGLContext {
Q_OBJECT
- friend class Q137;
+ friend class Q138;
public:
LOpenGLContext(uint u, QObject* x1 = 0) : QOpenGLContext(x1), unique(u) {}
@@ -3616,7 +3667,7 @@ public:
class LOpenGLShader : public QOpenGLShader {
Q_OBJECT
- friend class Q138;
+ friend class Q139;
public:
LOpenGLShader(uint u, QOpenGLShader::ShaderType x1, QObject* x2 = 0) : QOpenGLShader(x1, x2), unique(u) {}
@@ -3631,7 +3682,7 @@ public:
class LOpenGLShaderProgram : public QOpenGLShaderProgram {
Q_OBJECT
- friend class Q139;
+ friend class Q140;
public:
LOpenGLShaderProgram(uint u, QObject* x1 = 0) : QOpenGLShaderProgram(x1), unique(u) {}
@@ -3647,7 +3698,7 @@ public:
class LOpenGLWidget : public QOpenGLWidget {
Q_OBJECT
- friend class Q140;
+ friend class Q141;
public:
LOpenGLWidget(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QOpenGLWidget(x1, x2), unique(u) {}
@@ -3699,7 +3750,7 @@ public:
class LOpenGLWindow : public QOpenGLWindow {
Q_OBJECT
- friend class Q141;
+ friend class Q142;
public:
LOpenGLWindow(uint u, UpdateBehavior x1 = NoPartialUpdate, QWindow* x2 = 0) : QOpenGLWindow(x1, x2), unique(u) {}
LOpenGLWindow(uint u, QOpenGLContext* x1, UpdateBehavior x2 = NoPartialUpdate, QWindow* x3 = 0) : QOpenGLWindow(x1, x2, x3), unique(u) {}
@@ -3741,7 +3792,7 @@ public:
class LPageSetupDialog : public QPageSetupDialog {
Q_OBJECT
- friend class Q142;
+ friend class Q143;
public:
LPageSetupDialog(uint u, QPrinter* x1, QWidget* x2 = 0) : QPageSetupDialog(x1, x2), unique(u) {}
LPageSetupDialog(uint u, QWidget* x1 = 0) : QPageSetupDialog(x1), unique(u) {}
@@ -3794,7 +3845,7 @@ public:
class LPaintDeviceWindow : public QPaintDeviceWindow {
Q_OBJECT
- friend class Q143;
+ friend class Q144;
public:
static NumList overrideIds;
@@ -3829,7 +3880,7 @@ public:
class LPanGesture : public QPanGesture {
Q_OBJECT
- friend class Q144;
+ friend class Q145;
public:
static NumList overrideIds;
@@ -3843,7 +3894,7 @@ public:
class LParallelAnimationGroup : public QParallelAnimationGroup {
Q_OBJECT
- friend class Q145;
+ friend class Q146;
public:
LParallelAnimationGroup(uint u, QObject* x1 = 0) : QParallelAnimationGroup(x1), unique(u) {}
@@ -3862,7 +3913,7 @@ public:
class LPauseAnimation : public QPauseAnimation {
Q_OBJECT
- friend class Q146;
+ friend class Q147;
public:
LPauseAnimation(uint u, QObject* x1 = 0) : QPauseAnimation(x1), unique(u) {}
LPauseAnimation(uint u, int x1, QObject* x2 = 0) : QPauseAnimation(x1, x2), unique(u) {}
@@ -3882,7 +3933,7 @@ public:
class LPdfWriter : public QPdfWriter {
Q_OBJECT
- friend class Q147;
+ friend class Q148;
public:
LPdfWriter(uint u, const QString& x1) : QPdfWriter(x1), unique(u) {}
@@ -3898,7 +3949,7 @@ public:
class LPinchGesture : public QPinchGesture {
Q_OBJECT
- friend class Q148;
+ friend class Q149;
public:
static NumList overrideIds;
@@ -3912,7 +3963,7 @@ public:
class LPlainTextDocumentLayout : public QPlainTextDocumentLayout {
Q_OBJECT
- friend class Q149;
+ friend class Q150;
public:
LPlainTextDocumentLayout(uint u, QTextDocument* x1) : QPlainTextDocumentLayout(x1), unique(u) {}
@@ -3937,7 +3988,7 @@ public:
class LPlainTextEdit : public QPlainTextEdit {
Q_OBJECT
- friend class Q150;
+ friend class Q151;
public:
LPlainTextEdit(uint u, QWidget* x1 = 0) : QPlainTextEdit(x1), unique(u) {}
LPlainTextEdit(uint u, const QString& x1, QWidget* x2 = 0) : QPlainTextEdit(x1, x2), unique(u) {}
@@ -3995,7 +4046,7 @@ public:
class LPluginLoader : public QPluginLoader {
Q_OBJECT
- friend class Q151;
+ friend class Q152;
public:
LPluginLoader(uint u, QObject* x1 = 0) : QPluginLoader(x1), unique(u) {}
LPluginLoader(uint u, const QString& x1, QObject* x2 = 0) : QPluginLoader(x1, x2), unique(u) {}
@@ -4011,7 +4062,7 @@ public:
class LPrintDialog : public QPrintDialog {
Q_OBJECT
- friend class Q152;
+ friend class Q153;
public:
LPrintDialog(uint u, QPrinter* x1, QWidget* x2 = 0) : QPrintDialog(x1, x2), unique(u) {}
LPrintDialog(uint u, QWidget* x1 = 0) : QPrintDialog(x1), unique(u) {}
@@ -4064,7 +4115,7 @@ public:
class LPrintPreviewDialog : public QPrintPreviewDialog {
Q_OBJECT
- friend class Q153;
+ friend class Q154;
public:
LPrintPreviewDialog(uint u, QPrinter* x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) : QPrintPreviewDialog(x1, x2, x3), unique(u) {}
LPrintPreviewDialog(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QPrintPreviewDialog(x1, x2), unique(u) {}
@@ -4116,7 +4167,7 @@ public:
class LPrintPreviewWidget : public QPrintPreviewWidget {
Q_OBJECT
- friend class Q154;
+ friend class Q155;
public:
LPrintPreviewWidget(uint u, QPrinter* x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) : QPrintPreviewWidget(x1, x2, x3), unique(u) {}
LPrintPreviewWidget(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QPrintPreviewWidget(x1, x2), unique(u) {}
@@ -4167,7 +4218,7 @@ public:
class LProcess : public QProcess {
Q_OBJECT
- friend class Q155;
+ friend class Q156;
public:
LProcess(uint u, QObject* x1 = 0) : QProcess(x1), unique(u) {}
@@ -4199,7 +4250,7 @@ public:
class LProgressBar : public QProgressBar {
Q_OBJECT
- friend class Q156;
+ friend class Q157;
public:
LProgressBar(uint u, QWidget* x1 = 0) : QProgressBar(x1), unique(u) {}
@@ -4249,7 +4300,7 @@ public:
class LProgressDialog : public QProgressDialog {
Q_OBJECT
- friend class Q157;
+ friend class Q158;
public:
LProgressDialog(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QProgressDialog(x1, x2), unique(u) {}
LProgressDialog(uint u, const QString& x1, const QString& x2, int x3, int x4, QWidget* x5 = 0, Qt::WindowFlags x6 = 0) : QProgressDialog(x1, x2, x3, x4, x5, x6), unique(u) {}
@@ -4300,7 +4351,7 @@ public:
class LPropertyAnimation : public QPropertyAnimation {
Q_OBJECT
- friend class Q158;
+ friend class Q159;
public:
LPropertyAnimation(uint u, QObject* x1 = 0) : QPropertyAnimation(x1), unique(u) {}
LPropertyAnimation(uint u, QObject* x1, const QByteArray& x2, QObject* x3 = 0) : QPropertyAnimation(x1, x2, x3), unique(u) {}
@@ -4322,7 +4373,7 @@ public:
class LProxyStyle : public QProxyStyle {
Q_OBJECT
- friend class Q159;
+ friend class Q160;
public:
LProxyStyle(uint u, QStyle* x1 = 0) : QProxyStyle(x1), unique(u) {}
LProxyStyle(uint u, const QString& x1) : QProxyStyle(x1), unique(u) {}
@@ -4358,7 +4409,7 @@ public:
class LPushButton : public QPushButton {
Q_OBJECT
- friend class Q160;
+ friend class Q161;
public:
LPushButton(uint u, QWidget* x1 = 0) : QPushButton(x1), unique(u) {}
LPushButton(uint u, const QString& x1, QWidget* x2 = 0) : QPushButton(x1, x2), unique(u) {}
@@ -4412,7 +4463,7 @@ public:
class LRadioButton : public QRadioButton {
Q_OBJECT
- friend class Q161;
+ friend class Q162;
public:
LRadioButton(uint u, QWidget* x1 = 0) : QRadioButton(x1), unique(u) {}
LRadioButton(uint u, const QString& x1, QWidget* x2 = 0) : QRadioButton(x1, x2), unique(u) {}
@@ -4465,7 +4516,7 @@ public:
class LRegExpValidator : public QRegExpValidator {
Q_OBJECT
- friend class Q163;
+ friend class Q164;
public:
LRegExpValidator(uint u, QObject* x1 = 0) : QRegExpValidator(x1), unique(u) {}
LRegExpValidator(uint u, const QRegExp& x1, QObject* x2 = 0) : QRegExpValidator(x1, x2), unique(u) {}
@@ -4483,7 +4534,7 @@ public:
class LRubberBand : public QRubberBand {
Q_OBJECT
- friend class Q164;
+ friend class Q165;
public:
LRubberBand(uint u, Shape x1, QWidget* x2 = 0) : QRubberBand(x1, x2), unique(u) {}
@@ -4532,7 +4583,7 @@ public:
class LScrollArea : public QScrollArea {
Q_OBJECT
- friend class Q166;
+ friend class Q167;
public:
LScrollArea(uint u, QWidget* x1 = 0) : QScrollArea(x1), unique(u) {}
@@ -4585,7 +4636,7 @@ public:
class LScrollBar : public QScrollBar {
Q_OBJECT
- friend class Q167;
+ friend class Q168;
public:
LScrollBar(uint u, QWidget* x1 = 0) : QScrollBar(x1), unique(u) {}
LScrollBar(uint u, Qt::Orientation x1, QWidget* x2 = 0) : QScrollBar(x1, x2), unique(u) {}
@@ -4636,7 +4687,7 @@ public:
class LSequentialAnimationGroup : public QSequentialAnimationGroup {
Q_OBJECT
- friend class Q168;
+ friend class Q169;
public:
LSequentialAnimationGroup(uint u, QObject* x1 = 0) : QSequentialAnimationGroup(x1), unique(u) {}
@@ -4655,7 +4706,7 @@ public:
class LSettings : public QSettings {
Q_OBJECT
- friend class Q170;
+ friend class Q171;
public:
LSettings(uint u, const QString& x1, const QString& x2 = QString(), QObject* x3 = 0) : QSettings(x1, x2, x3), unique(u) {}
LSettings(uint u, Scope x1, const QString& x2, const QString& x3 = QString(), QObject* x4 = 0) : QSettings(x1, x2, x3, x4), unique(u) {}
@@ -4674,7 +4725,7 @@ public:
class LShortcut : public QShortcut {
Q_OBJECT
- friend class Q171;
+ friend class Q172;
public:
LShortcut(uint u, QWidget* x1) : QShortcut(x1), unique(u) {}
LShortcut(uint u, const QKeySequence& x1, QWidget* x2, const char* x3 = 0, const char* x4 = 0, Qt::ShortcutContext x5 = Qt::WindowShortcut) : QShortcut(x1, x2, x3, x4, x5), unique(u) {}
@@ -4690,7 +4741,7 @@ public:
class LSignalTransition : public QSignalTransition {
Q_OBJECT
- friend class Q172;
+ friend class Q173;
public:
LSignalTransition(uint u, QState* x1 = 0) : QSignalTransition(x1), unique(u) {}
LSignalTransition(uint u, const QObject* x1, const char* x2, QState* x3 = 0) : QSignalTransition(x1, x2, x3), unique(u) {}
@@ -4708,7 +4759,7 @@ public:
class LSizeGrip : public QSizeGrip {
Q_OBJECT
- friend class Q173;
+ friend class Q174;
public:
LSizeGrip(uint u, QWidget* x1) : QSizeGrip(x1), unique(u) {}
@@ -4758,7 +4809,7 @@ public:
class LSlider : public QSlider {
Q_OBJECT
- friend class Q174;
+ friend class Q175;
public:
LSlider(uint u, QWidget* x1 = 0) : QSlider(x1), unique(u) {}
LSlider(uint u, Qt::Orientation x1, QWidget* x2 = 0) : QSlider(x1, x2), unique(u) {}
@@ -4809,7 +4860,7 @@ public:
class LSortFilterProxyModel : public QSortFilterProxyModel {
Q_OBJECT
- friend class Q175;
+ friend class Q176;
public:
LSortFilterProxyModel(uint u, QObject* x1 = 0) : QSortFilterProxyModel(x1), unique(u) {}
@@ -4863,7 +4914,7 @@ public:
class LSpinBox : public QSpinBox {
Q_OBJECT
- friend class Q176;
+ friend class Q177;
public:
LSpinBox(uint u, QWidget* x1 = 0) : QSpinBox(x1), unique(u) {}
@@ -4918,7 +4969,7 @@ public:
class LSplashScreen : public QSplashScreen {
Q_OBJECT
- friend class Q177;
+ friend class Q178;
public:
LSplashScreen(uint u, const QPixmap& x1 = QPixmap(), Qt::WindowFlags x2 = 0) : QSplashScreen(x1, x2), unique(u) {}
LSplashScreen(uint u, QWidget* x1, const QPixmap& x2 = QPixmap(), Qt::WindowFlags x3 = 0) : QSplashScreen(x1, x2, x3), unique(u) {}
@@ -4969,7 +5020,7 @@ public:
class LSplitter : public QSplitter {
Q_OBJECT
- friend class Q178;
+ friend class Q179;
public:
LSplitter(uint u, QWidget* x1 = 0) : QSplitter(x1), unique(u) {}
LSplitter(uint u, Qt::Orientation x1, QWidget* x2 = 0) : QSplitter(x1, x2), unique(u) {}
@@ -5019,7 +5070,7 @@ public:
class LSplitterHandle : public QSplitterHandle {
Q_OBJECT
- friend class Q179;
+ friend class Q180;
public:
static NumList overrideIds;
@@ -5067,7 +5118,7 @@ public:
class LStackedLayout : public QStackedLayout {
Q_OBJECT
- friend class Q185;
+ friend class Q186;
public:
LStackedLayout(uint u) : unique(u) {}
LStackedLayout(uint u, QWidget* x1) : QStackedLayout(x1), unique(u) {}
@@ -5101,7 +5152,7 @@ public:
class LStackedWidget : public QStackedWidget {
Q_OBJECT
- friend class Q186;
+ friend class Q187;
public:
LStackedWidget(uint u, QWidget* x1 = 0) : QStackedWidget(x1), unique(u) {}
@@ -5150,7 +5201,7 @@ public:
class LStandardItemModel : public QStandardItemModel {
Q_OBJECT
- friend class Q187;
+ friend class Q188;
public:
LStandardItemModel(uint u, QObject* x1 = 0) : QStandardItemModel(x1), unique(u) {}
LStandardItemModel(uint u, int x1, int x2, QObject* x3 = 0) : QStandardItemModel(x1, x2, x3), unique(u) {}
@@ -5195,7 +5246,7 @@ public:
class LState : public QState {
Q_OBJECT
- friend class Q188;
+ friend class Q189;
public:
LState(uint u, QState* x1 = 0) : QState(x1), unique(u) {}
LState(uint u, ChildMode x1, QState* x2 = 0) : QState(x1, x2), unique(u) {}
@@ -5213,7 +5264,7 @@ public:
class LStateMachine : public QStateMachine {
Q_OBJECT
- friend class Q189;
+ friend class Q190;
public:
LStateMachine(uint u, QObject* x1 = 0) : QStateMachine(x1), unique(u) {}
LStateMachine(uint u, QState::ChildMode x1, QObject* x2 = 0) : QStateMachine(x1, x2), unique(u) {}
@@ -5231,7 +5282,7 @@ public:
class LStatusBar : public QStatusBar {
Q_OBJECT
- friend class Q190;
+ friend class Q191;
public:
LStatusBar(uint u, QWidget* x1 = 0) : QStatusBar(x1), unique(u) {}
@@ -5280,7 +5331,7 @@ public:
class LStringListModel : public QStringListModel {
Q_OBJECT
- friend class Q191;
+ friend class Q192;
public:
LStringListModel(uint u, QObject* x1 = 0) : QStringListModel(x1), unique(u) {}
LStringListModel(uint u, const QStringList& x1, QObject* x2 = 0) : QStringListModel(x1, x2), unique(u) {}
@@ -5322,7 +5373,7 @@ public:
class LStyledItemDelegate : public QStyledItemDelegate {
Q_OBJECT
- friend class Q193;
+ friend class Q194;
public:
LStyledItemDelegate(uint u, QObject* x1 = 0) : QStyledItemDelegate(x1), unique(u) {}
@@ -5348,7 +5399,7 @@ public:
class LSwipeGesture : public QSwipeGesture {
Q_OBJECT
- friend class Q196;
+ friend class Q197;
public:
static NumList overrideIds;
@@ -5362,7 +5413,7 @@ public:
class LSyntaxHighlighter : public QSyntaxHighlighter {
Q_OBJECT
- friend class Q197;
+ friend class Q198;
public:
LSyntaxHighlighter(uint u, QObject* x1) : QSyntaxHighlighter(x1), unique(u) {}
LSyntaxHighlighter(uint u, QTextDocument* x1) : QSyntaxHighlighter(x1), unique(u) {}
@@ -5379,7 +5430,7 @@ public:
class LSystemTrayIcon : public QSystemTrayIcon {
Q_OBJECT
- friend class Q198;
+ friend class Q199;
public:
LSystemTrayIcon(uint u, QObject* x1 = 0) : QSystemTrayIcon(x1), unique(u) {}
LSystemTrayIcon(uint u, const QIcon& x1, QObject* x2 = 0) : QSystemTrayIcon(x1, x2), unique(u) {}
@@ -5395,7 +5446,7 @@ public:
class LTabBar : public QTabBar {
Q_OBJECT
- friend class Q199;
+ friend class Q200;
public:
LTabBar(uint u, QWidget* x1 = 0) : QTabBar(x1), unique(u) {}
@@ -5449,7 +5500,7 @@ public:
class LTabWidget : public QTabWidget {
Q_OBJECT
- friend class Q200;
+ friend class Q201;
public:
LTabWidget(uint u, QWidget* x1 = 0) : QTabWidget(x1), unique(u) {}
@@ -5500,7 +5551,7 @@ public:
class LTableView : public QTableView {
Q_OBJECT
- friend class Q201;
+ friend class Q202;
public:
LTableView(uint u, QWidget* x1 = 0) : QTableView(x1), unique(u) {}
@@ -5576,7 +5627,7 @@ public:
class LTableWidget : public QTableWidget {
Q_OBJECT
- friend class Q202;
+ friend class Q203;
public:
LTableWidget(uint u, QWidget* x1 = 0) : QTableWidget(x1), unique(u) {}
LTableWidget(uint u, int x1, int x2, QWidget* x3 = 0) : QTableWidget(x1, x2, x3), unique(u) {}
@@ -5656,7 +5707,7 @@ public:
class LTapAndHoldGesture : public QTapAndHoldGesture {
Q_OBJECT
- friend class Q203;
+ friend class Q204;
public:
static NumList overrideIds;
@@ -5670,7 +5721,7 @@ public:
class LTapGesture : public QTapGesture {
Q_OBJECT
- friend class Q204;
+ friend class Q205;
public:
static NumList overrideIds;
@@ -5684,7 +5735,7 @@ public:
class LTextBlockGroup : public QTextBlockGroup {
Q_OBJECT
- friend class Q207;
+ friend class Q208;
public:
static NumList overrideIds;
@@ -5701,7 +5752,7 @@ public:
class LTextBrowser : public QTextBrowser {
Q_OBJECT
- friend class Q208;
+ friend class Q209;
public:
LTextBrowser(uint u, QWidget* x1 = 0) : QTextBrowser(x1), unique(u) {}
@@ -5758,7 +5809,7 @@ public:
class LTextDocument : public QTextDocument {
Q_OBJECT
- friend class Q209;
+ friend class Q210;
public:
LTextDocument(uint u, QObject* x1 = 0) : QTextDocument(x1), unique(u) {}
LTextDocument(uint u, const QString& x1, QObject* x2 = 0) : QTextDocument(x1, x2), unique(u) {}
@@ -5777,7 +5828,7 @@ public:
class LTextEdit : public QTextEdit {
Q_OBJECT
- friend class Q210;
+ friend class Q211;
public:
LTextEdit(uint u, QWidget* x1 = 0) : QTextEdit(x1), unique(u) {}
LTextEdit(uint u, const QString& x1, QWidget* x2 = 0) : QTextEdit(x1, x2), unique(u) {}
@@ -5835,7 +5886,7 @@ public:
class LTextFrame : public QTextFrame {
Q_OBJECT
- friend class Q211;
+ friend class Q212;
public:
LTextFrame(uint u, QTextDocument* x1) : QTextFrame(x1), unique(u) {}
@@ -5850,7 +5901,7 @@ public:
class LTextList : public QTextList {
Q_OBJECT
- friend class Q212;
+ friend class Q213;
public:
static NumList overrideIds;
@@ -5867,7 +5918,7 @@ public:
class LTextObject : public QTextObject {
Q_OBJECT
- friend class Q213;
+ friend class Q214;
public:
static NumList overrideIds;
@@ -5881,7 +5932,7 @@ public:
class LTextTable : public QTextTable {
Q_OBJECT
- friend class Q214;
+ friend class Q215;
public:
static NumList overrideIds;
@@ -5895,7 +5946,7 @@ public:
class LTimeEdit : public QTimeEdit {
Q_OBJECT
- friend class Q215;
+ friend class Q216;
public:
LTimeEdit(uint u, QWidget* x1 = 0) : QTimeEdit(x1), unique(u) {}
LTimeEdit(uint u, const QTime& x1, QWidget* x2 = 0) : QTimeEdit(x1, x2), unique(u) {}
@@ -5952,7 +6003,7 @@ public:
class LTimeLine : public QTimeLine {
Q_OBJECT
- friend class Q216;
+ friend class Q217;
public:
LTimeLine(uint u, int x1 = 1000, QObject* x2 = 0) : QTimeLine(x1, x2), unique(u) {}
@@ -5968,7 +6019,7 @@ public:
class LTimer : public QTimer {
Q_OBJECT
- friend class Q217;
+ friend class Q218;
public:
LTimer(uint u, QObject* x1 = 0) : QTimer(x1), unique(u) {}
@@ -5983,7 +6034,7 @@ public:
class LToolBar : public QToolBar {
Q_OBJECT
- friend class Q218;
+ friend class Q219;
public:
LToolBar(uint u, const QString& x1, QWidget* x2 = 0) : QToolBar(x1, x2), unique(u) {}
LToolBar(uint u, QWidget* x1 = 0) : QToolBar(x1), unique(u) {}
@@ -6033,7 +6084,7 @@ public:
class LToolBox : public QToolBox {
Q_OBJECT
- friend class Q219;
+ friend class Q220;
public:
LToolBox(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QToolBox(x1, x2), unique(u) {}
@@ -6084,7 +6135,7 @@ public:
class LToolButton : public QToolButton {
Q_OBJECT
- friend class Q220;
+ friend class Q221;
public:
LToolButton(uint u, QWidget* x1 = 0) : QToolButton(x1), unique(u) {}
@@ -6136,7 +6187,7 @@ public:
class LTranslator : public QTranslator {
Q_OBJECT
- friend class Q221;
+ friend class Q222;
public:
LTranslator(uint u, QObject* x1 = 0) : QTranslator(x1), unique(u) {}
@@ -6153,7 +6204,7 @@ public:
class LTreeView : public QTreeView {
Q_OBJECT
- friend class Q222;
+ friend class Q223;
public:
LTreeView(uint u, QWidget* x1 = 0) : QTreeView(x1), unique(u) {}
@@ -6236,7 +6287,7 @@ public:
class LTreeWidget : public QTreeWidget {
Q_OBJECT
- friend class Q223;
+ friend class Q224;
public:
LTreeWidget(uint u, QWidget* x1 = 0) : QTreeWidget(x1), unique(u) {}
@@ -6322,7 +6373,7 @@ public:
class LUndoGroup : public QUndoGroup {
Q_OBJECT
- friend class Q225;
+ friend class Q226;
public:
LUndoGroup(uint u, QObject* x1 = 0) : QUndoGroup(x1), unique(u) {}
@@ -6337,7 +6388,7 @@ public:
class LUndoStack : public QUndoStack {
Q_OBJECT
- friend class Q226;
+ friend class Q227;
public:
LUndoStack(uint u, QObject* x1 = 0) : QUndoStack(x1), unique(u) {}
@@ -6352,7 +6403,7 @@ public:
class LUndoView : public QUndoView {
Q_OBJECT
- friend class Q227;
+ friend class Q228;
public:
LUndoView(uint u, QWidget* x1 = 0) : QUndoView(x1), unique(u) {}
LUndoView(uint u, QUndoStack* x1, QWidget* x2 = 0) : QUndoView(x1, x2), unique(u) {}
@@ -6432,7 +6483,7 @@ public:
class LVBoxLayout : public QVBoxLayout {
Q_OBJECT
- friend class Q228;
+ friend class Q229;
public:
LVBoxLayout(uint u) : unique(u) {}
LVBoxLayout(uint u, QWidget* x1) : QVBoxLayout(x1), unique(u) {}
@@ -6466,7 +6517,7 @@ public:
class LValidator : public QValidator {
Q_OBJECT
- friend class Q229;
+ friend class Q230;
public:
LValidator(uint u, QObject* x1 = 0) : QValidator(x1), unique(u) {}
@@ -6483,7 +6534,7 @@ public:
class LVariantAnimation : public QVariantAnimation {
Q_OBJECT
- friend class Q230;
+ friend class Q231;
public:
LVariantAnimation(uint u, QObject* x1 = 0) : QVariantAnimation(x1), unique(u) {}
@@ -6504,7 +6555,7 @@ public:
class LWidget : public QWidget {
Q_OBJECT
- friend class Q239;
+ friend class Q240;
public:
LWidget(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QWidget(x1, x2), unique(u) {}
@@ -6553,7 +6604,7 @@ public:
class LWidgetAction : public QWidgetAction {
Q_OBJECT
- friend class Q240;
+ friend class Q241;
public:
LWidgetAction(uint u, QObject* x1) : QWidgetAction(x1), unique(u) {}
@@ -6570,7 +6621,7 @@ public:
class LWindow : public QWindow {
Q_OBJECT
- friend class Q241;
+ friend class Q242;
public:
LWindow(uint u, QScreen* x1 = 0) : QWindow(x1), unique(u) {}
LWindow(uint u, QWindow* x1) : QWindow(x1), unique(u) {}
@@ -6606,7 +6657,7 @@ public:
class LWizard : public QWizard {
Q_OBJECT
- friend class Q242;
+ friend class Q243;
public:
LWizard(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QWizard(x1, x2), unique(u) {}
@@ -6661,7 +6712,7 @@ public:
class LWizardPage : public QWizardPage {
Q_OBJECT
- friend class Q243;
+ friend class Q244;
public:
LWizardPage(uint u, QWidget* x1 = 0) : QWizardPage(x1), unique(u) {}
diff --git a/src/gen/_main_q_methods.h b/src/gen/_main_q_methods.h
index b034c93..897f319 100644
--- a/src/gen/_main_q_methods.h
+++ b/src/gen/_main_q_methods.h
@@ -11,7 +11,7 @@
QT_BEGIN_NAMESPACE
-class EQL_EXPORT Q136 : public QObject { // QObject
+class EQL_EXPORT Q137 : public QObject { // QObject
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LObject(u, x1); }
@@ -45,7 +45,7 @@ public:
Q_INVOKABLE QString Str(const char* x1, const char* x2 = 0, int x3 = -1) { return QObject::tr(x1, x2, x3); }
};
-class EQL_EXPORT Q1 : public Q136 { // QAbstractAnimation
+class EQL_EXPORT Q1 : public Q137 { // QAbstractAnimation
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LAbstractAnimation(u, x1); }
@@ -62,7 +62,7 @@ public:
Q_INVOKABLE int MtotalDuration(QAbstractAnimation* o) const { return o->totalDuration(); }
};
-class EQL_EXPORT Q3 : public Q136 { // QAbstractItemDelegate
+class EQL_EXPORT Q3 : public Q137 { // QAbstractItemDelegate
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LAbstractItemDelegate(u, x1); }
@@ -77,7 +77,7 @@ public:
Q_INVOKABLE void MupdateEditorGeometry(QAbstractItemDelegate* o, QWidget* x1, const QStyleOptionViewItem& x2, const QModelIndex& x3) const { o->updateEditorGeometry(x1, x2, x3); }
};
-class EQL_EXPORT Q4 : public Q136 { // QAbstractItemModel
+class EQL_EXPORT Q4 : public Q137 { // QAbstractItemModel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LAbstractItemModel(u, x1); }
@@ -178,7 +178,7 @@ public:
Q_INVOKABLE int MsupportedDropActions(QAbstractProxyModel* o) const { return o->supportedDropActions(); }
};
-class EQL_EXPORT Q14 : public Q136 { // QAbstractState
+class EQL_EXPORT Q14 : public Q137 { // QAbstractState
Q_OBJECT
public:
Q_INVOKABLE bool Mactive(QAbstractState* o) const { return o->active(); }
@@ -195,7 +195,7 @@ public:
Q_INVOKABLE QModelIndex Msibling(QAbstractTableModel* o, int x1, int x2, const QModelIndex& x3) const { return o->sibling(x1, x2, x3); }
};
-class EQL_EXPORT Q16 : public Q136 { // QAbstractTextDocumentLayout
+class EQL_EXPORT Q16 : public Q137 { // QAbstractTextDocumentLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QTextDocument* x1) { return new LAbstractTextDocumentLayout(u, x1); }
@@ -211,7 +211,7 @@ public:
Q_INVOKABLE QTextCharFormat Mformat(QAbstractTextDocumentLayout* o, int x1) { return ((LAbstractTextDocumentLayout*)o)->format(x1); }
};
-class EQL_EXPORT Q17 : public Q136 { // QAbstractTransition
+class EQL_EXPORT Q17 : public Q137 { // QAbstractTransition
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LAbstractTransition(u, x1); }
@@ -228,7 +228,7 @@ public:
Q_INVOKABLE int MtransitionType(QAbstractTransition* o) const { return o->transitionType(); }
};
-class EQL_EXPORT Q19 : public Q136 { // QAction
+class EQL_EXPORT Q19 : public Q137 { // QAction
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1) { return new LAction(u, x1); }
@@ -283,7 +283,7 @@ public:
Q_INVOKABLE QString MwhatsThis(QAction* o) const { return o->whatsThis(); }
};
-class EQL_EXPORT Q20 : public Q136 { // QActionGroup
+class EQL_EXPORT Q20 : public Q137 { // QActionGroup
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1) { return new LActionGroup(u, x1); }
@@ -312,7 +312,7 @@ public:
Q_INVOKABLE QAbstractAnimation* MtakeAnimation(QAnimationGroup* o, int x1) { return o->takeAnimation(x1); }
};
-class EQL_EXPORT Q27 : public Q136 { // QButtonGroup
+class EQL_EXPORT Q27 : public Q137 { // QButtonGroup
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LButtonGroup(u, x1); }
@@ -328,7 +328,7 @@ public:
Q_INVOKABLE void MsetId(QButtonGroup* o, QAbstractButton* x1, int x2) { o->setId(x1, x2); }
};
-class EQL_EXPORT Q36 : public Q136 { // QClipboard
+class EQL_EXPORT Q36 : public Q137 { // QClipboard
Q_OBJECT
public:
Q_INVOKABLE void Mclear(QClipboard* o, QClipboard::Mode x1 = QClipboard::Clipboard) { o->clear(x1); }
@@ -348,7 +348,7 @@ public:
Q_INVOKABLE QString Mtext(QClipboard* o, QString& x1, QClipboard::Mode x2 = QClipboard::Clipboard) const { return o->text(x1, x2); }
};
-class EQL_EXPORT Q42 : public Q136 { // QCompleter
+class EQL_EXPORT Q42 : public Q137 { // QCompleter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LCompleter(u, x1); }
@@ -386,7 +386,7 @@ public:
Q_INVOKABLE bool MwrapAround(QCompleter* o) const { return o->wrapAround(); }
};
-class EQL_EXPORT Q43 : public Q136 { // QCoreApplication
+class EQL_EXPORT Q43 : public Q137 { // QCoreApplication
Q_OBJECT
public:
Q_INVOKABLE void MinstallNativeEventFilter(QCoreApplication* o, QAbstractNativeEventFilter* x1) { o->installNativeEventFilter(x1); }
@@ -433,7 +433,7 @@ public:
Q_INVOKABLE QString Stranslate(const char* x1, const char* x2, const char* x3 = 0, int x4 = -1) { return QCoreApplication::translate(x1, x2, x3, x4); }
};
-class EQL_EXPORT Q44 : public Q136 { // QDataWidgetMapper
+class EQL_EXPORT Q44 : public Q137 { // QDataWidgetMapper
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LDataWidgetMapper(u, x1); }
@@ -501,7 +501,7 @@ public:
Q_INVOKABLE int MsupportedDropActions(QDirModel* o) const { return o->supportedDropActions(); }
};
-class EQL_EXPORT Q55 : public Q136 { // QDrag
+class EQL_EXPORT Q55 : public Q137 { // QDrag
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1) { return new LDrag(u, x1); }
@@ -520,7 +520,7 @@ public:
Q_INVOKABLE QObject* Mtarget(QDrag* o) const { return o->target(); }
};
-class EQL_EXPORT Q57 : public Q136 { // QEventLoop
+class EQL_EXPORT Q57 : public Q137 { // QEventLoop
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LEventLoop(u, x1); }
@@ -595,7 +595,7 @@ public:
Q_INVOKABLE int MsupportedDropActions(QFileSystemModel* o) const { return o->supportedDropActions(); }
};
-class EQL_EXPORT Q63 : public Q136 { // QFileSystemWatcher
+class EQL_EXPORT Q63 : public Q137 { // QFileSystemWatcher
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LFileSystemWatcher(u, x1); }
@@ -614,7 +614,7 @@ public:
Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LFinalState(u, x1); }
};
-class EQL_EXPORT Q70 : public Q136 { // QGesture
+class EQL_EXPORT Q70 : public Q137 { // QGesture
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LGesture(u, x1); }
@@ -628,7 +628,7 @@ public:
Q_INVOKABLE void MunsetHotSpot(QGesture* o) { o->unsetHotSpot(); }
};
-class EQL_EXPORT Q71 : public Q136 { // QGraphicsAnchor
+class EQL_EXPORT Q71 : public Q137 { // QGraphicsAnchor
Q_OBJECT
public:
Q_INVOKABLE void MsetSizePolicy(QGraphicsAnchor* o, QSizePolicy::Policy x1) { o->setSizePolicy(x1); }
@@ -638,7 +638,7 @@ public:
Q_INVOKABLE void MunsetSpacing(QGraphicsAnchor* o) { o->unsetSpacing(); }
};
-class EQL_EXPORT Q75 : public Q136 { // QGraphicsEffect
+class EQL_EXPORT Q75 : public Q137 { // QGraphicsEffect
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LGraphicsEffect(u, x1); }
@@ -651,7 +651,7 @@ public:
Q_INVOKABLE void MupdateBoundingRect(QGraphicsEffect* o) { ((LGraphicsEffect*)o)->updateBoundingRect(); }
};
-class EQL_EXPORT Q76 : public Q136 { // QGraphicsObject
+class EQL_EXPORT Q76 : public Q137 { // QGraphicsObject
Q_OBJECT
public:
Q_INVOKABLE void MgrabGesture(QGraphicsObject* o, Qt::GestureType x1, Qt::GestureFlags x2 = Qt::GestureFlags()) { o->grabGesture(x1, x2); }
@@ -666,7 +666,7 @@ public:
Q_INVOKABLE QBrush MopacityMask(QGraphicsOpacityEffect* o) const { return o->opacityMask(); }
};
-class EQL_EXPORT Q81 : public Q136 { // QGraphicsScene
+class EQL_EXPORT Q81 : public Q137 { // QGraphicsScene
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LGraphicsScene(u, x1); }
@@ -780,7 +780,7 @@ public:
Q_INVOKABLE int Mtype(QGraphicsTextItem* o) const { return o->type(); }
};
-class EQL_EXPORT Q84 : public Q136 { // QGraphicsTransform
+class EQL_EXPORT Q84 : public Q137 { // QGraphicsTransform
Q_OBJECT
public:
};
@@ -905,7 +905,7 @@ public:
Q_INVOKABLE void MsetHistoryType(QHistoryState* o, QHistoryState::HistoryType x1) { o->setHistoryType(x1); }
};
-class EQL_EXPORT Q103 : public Q136 { // QIODevice
+class EQL_EXPORT Q103 : public Q137 { // QIODevice
Q_OBJECT
public:
Q_INVOKABLE bool MatEnd(QIODevice* o) const { return o->atEnd(); }
@@ -945,7 +945,30 @@ public:
Q_INVOKABLE void MsetOpenMode(QIODevice* o, QIODevice::OpenMode x1) { ((LIODevice*)o)->setOpenMode(x1); }
};
-class EQL_EXPORT Q106 : public Q3 { // QItemDelegate
+class EQL_EXPORT Q104 : public Q9 { // QIdentityProxyModel
+ Q_OBJECT
+public:
+ Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LIdentityProxyModel(u, x1); }
+ Q_INVOKABLE int McolumnCount(QIdentityProxyModel* o, const QModelIndex& x1 = QModelIndex()) const { return o->columnCount(x1); }
+ Q_INVOKABLE bool MdropMimeData(QIdentityProxyModel* o, const QMimeData* x1, Qt::DropAction x2, int x3, int x4, const QModelIndex& x5) { return o->dropMimeData(x1, x2, x3, x4, x5); }
+ Q_INVOKABLE QVariant MheaderData(QIdentityProxyModel* o, int x1, Qt::Orientation x2, int x3 = Qt::DisplayRole) const { return o->headerData(x1, x2, x3); }
+ Q_INVOKABLE QModelIndex Mindex(QIdentityProxyModel* o, int x1, int x2, const QModelIndex& x3 = QModelIndex()) const { return o->index(x1, x2, x3); }
+ Q_INVOKABLE bool MinsertColumns(QIdentityProxyModel* o, int x1, int x2, const QModelIndex& x3 = QModelIndex()) { return o->insertColumns(x1, x2, x3); }
+ Q_INVOKABLE bool MinsertRows(QIdentityProxyModel* o, int x1, int x2, const QModelIndex& x3 = QModelIndex()) { return o->insertRows(x1, x2, x3); }
+ Q_INVOKABLE QModelIndex MmapFromSource(QIdentityProxyModel* o, const QModelIndex& x1) const { return o->mapFromSource(x1); }
+ Q_INVOKABLE QItemSelection MmapSelectionFromSource(QIdentityProxyModel* o, const QItemSelection& x1) const { return o->mapSelectionFromSource(x1); }
+ Q_INVOKABLE QItemSelection MmapSelectionToSource(QIdentityProxyModel* o, const QItemSelection& x1) const { return o->mapSelectionToSource(x1); }
+ Q_INVOKABLE QModelIndex MmapToSource(QIdentityProxyModel* o, const QModelIndex& x1) const { return o->mapToSource(x1); }
+ Q_INVOKABLE QModelIndexList Mmatch(QIdentityProxyModel* o, const QModelIndex& x1, int x2, const QVariant& x3, int x4 = 1, Qt::MatchFlags x5 = Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap)) const { return o->match(x1, x2, x3, x4, x5); }
+ Q_INVOKABLE QModelIndex Mparent(QIdentityProxyModel* o, const QModelIndex& x1) const { return o->parent(x1); }
+ Q_INVOKABLE bool MremoveColumns(QIdentityProxyModel* o, int x1, int x2, const QModelIndex& x3 = QModelIndex()) { return o->removeColumns(x1, x2, x3); }
+ Q_INVOKABLE bool MremoveRows(QIdentityProxyModel* o, int x1, int x2, const QModelIndex& x3 = QModelIndex()) { return o->removeRows(x1, x2, x3); }
+ Q_INVOKABLE int MrowCount(QIdentityProxyModel* o, const QModelIndex& x1 = QModelIndex()) const { return o->rowCount(x1); }
+ Q_INVOKABLE void MsetSourceModel(QIdentityProxyModel* o, QAbstractItemModel* x1) { o->setSourceModel(x1); }
+ Q_INVOKABLE QModelIndex Msibling(QIdentityProxyModel* o, int x1, int x2, const QModelIndex& x3) const { return o->sibling(x1, x2, x3); }
+};
+
+class EQL_EXPORT Q107 : public Q3 { // QItemDelegate
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LItemDelegate(u, x1); }
@@ -962,7 +985,7 @@ public:
Q_INVOKABLE void MupdateEditorGeometry(QItemDelegate* o, QWidget* x1, const QStyleOptionViewItem& x2, const QModelIndex& x3) const { o->updateEditorGeometry(x1, x2, x3); }
};
-class EQL_EXPORT Q107 : public Q136 { // QItemSelectionModel
+class EQL_EXPORT Q108 : public Q137 { // QItemSelectionModel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QAbstractItemModel* x1 = 0) { return new LItemSelectionModel(u, x1); }
@@ -984,7 +1007,7 @@ public:
Q_INVOKABLE void MemitSelectionChanged(QItemSelectionModel* o, const QItemSelection& x1, const QItemSelection& x2) { ((LItemSelectionModel*)o)->emitSelectionChanged(x1, x2); }
};
-class EQL_EXPORT Q108 : public Q58 { // QKeyEventTransition
+class EQL_EXPORT Q109 : public Q58 { // QKeyEventTransition
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LKeyEventTransition(u, x1); }
@@ -995,7 +1018,7 @@ public:
Q_INVOKABLE void MsetModifierMask(QKeyEventTransition* o, Qt::KeyboardModifiers x1) { o->setModifierMask(x1); }
};
-class EQL_EXPORT Q111 : public Q136 { // QLayout
+class EQL_EXPORT Q112 : public Q137 { // QLayout
Q_OBJECT
public:
Q_INVOKABLE bool Mactivate(QLayout* o) { return o->activate(); }
@@ -1036,7 +1059,7 @@ public:
Q_INVOKABLE QSize SclosestAcceptableSize(const QWidget* x1, const QSize& x2) { return QLayout::closestAcceptableSize(x1, x2); }
};
-class EQL_EXPORT Q112 : public Q136 { // QLibrary
+class EQL_EXPORT Q113 : public Q137 { // QLibrary
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LLibrary(u, x1); }
@@ -1060,7 +1083,7 @@ public:
Q_INVOKABLE QFunctionPointer Sresolve(const QString& x1, const QString& x2, const char* x3) { return QLibrary::resolve(x1, x2, x3); }
};
-class EQL_EXPORT Q129 : public Q136 { // QMimeData
+class EQL_EXPORT Q130 : public Q137 { // QMimeData
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMimeData(u); }
@@ -1087,7 +1110,7 @@ public:
Q_INVOKABLE QList Murls(QMimeData* o) const { return o->urls(); }
};
-class EQL_EXPORT Q130 : public Q58 { // QMouseEventTransition
+class EQL_EXPORT Q131 : public Q58 { // QMouseEventTransition
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LMouseEventTransition(u, x1); }
@@ -1100,7 +1123,7 @@ public:
Q_INVOKABLE void MsetModifierMask(QMouseEventTransition* o, Qt::KeyboardModifiers x1) { o->setModifierMask(x1); }
};
-class EQL_EXPORT Q131 : public Q136 { // QMovie
+class EQL_EXPORT Q132 : public Q137 { // QMovie
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LMovie(u, x1); }
@@ -1129,7 +1152,7 @@ public:
Q_INVOKABLE QList SsupportedFormats() { return QMovie::supportedFormats(); }
};
-class EQL_EXPORT Q137 : public Q136 { // QOpenGLContext
+class EQL_EXPORT Q138 : public Q137 { // QOpenGLContext
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LOpenGLContext(u, x1); }
@@ -1158,7 +1181,7 @@ public:
Q_INVOKABLE bool SsupportsThreadedOpenGL() { return QOpenGLContext::supportsThreadedOpenGL(); }
};
-class EQL_EXPORT Q138 : public Q136 { // QOpenGLShader
+class EQL_EXPORT Q139 : public Q137 { // QOpenGLShader
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QOpenGLShader::ShaderType x1, QObject* x2 = 0) { return new LOpenGLShader(u, x1, x2); }
@@ -1174,7 +1197,7 @@ public:
Q_INVOKABLE bool ShasOpenGLShaders(QOpenGLShader::ShaderType x1, QOpenGLContext* x2 = 0) { return QOpenGLShader::hasOpenGLShaders(x1, x2); }
};
-class EQL_EXPORT Q139 : public Q136 { // QOpenGLShaderProgram
+class EQL_EXPORT Q140 : public Q137 { // QOpenGLShaderProgram
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LOpenGLShaderProgram(u, x1); }
@@ -1266,7 +1289,7 @@ public:
Q_INVOKABLE bool ShasOpenGLShaderPrograms(QOpenGLContext* x1 = 0) { return QOpenGLShaderProgram::hasOpenGLShaderPrograms(x1); }
};
-class EQL_EXPORT Q144 : public Q70 { // QPanGesture
+class EQL_EXPORT Q145 : public Q70 { // QPanGesture
Q_OBJECT
public:
Q_INVOKABLE qreal Macceleration(QPanGesture* o) const { return o->acceleration(); }
@@ -1278,14 +1301,14 @@ public:
Q_INVOKABLE void MsetOffset(QPanGesture* o, const QPointF& x1) { o->setOffset(x1); }
};
-class EQL_EXPORT Q145 : public Q21 { // QParallelAnimationGroup
+class EQL_EXPORT Q146 : public Q21 { // QParallelAnimationGroup
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LParallelAnimationGroup(u, x1); }
Q_INVOKABLE int Mduration(QParallelAnimationGroup* o) const { return o->duration(); }
};
-class EQL_EXPORT Q146 : public Q1 { // QPauseAnimation
+class EQL_EXPORT Q147 : public Q1 { // QPauseAnimation
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LPauseAnimation(u, x1); }
@@ -1294,7 +1317,7 @@ public:
Q_INVOKABLE int Mduration(QPauseAnimation* o) const { return o->duration(); }
};
-class EQL_EXPORT Q147 : public Q136 { // QPdfWriter
+class EQL_EXPORT Q148 : public Q137 { // QPdfWriter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1) { return new LPdfWriter(u, x1); }
@@ -1313,7 +1336,7 @@ public:
Q_INVOKABLE bool MnewPage(QPdfWriter* o) { return o->newPage(); }
};
-class EQL_EXPORT Q148 : public Q70 { // QPinchGesture
+class EQL_EXPORT Q149 : public Q70 { // QPinchGesture
Q_OBJECT
public:
Q_INVOKABLE QPointF McenterPoint(QPinchGesture* o) const { return o->centerPoint(); }
@@ -1340,7 +1363,7 @@ public:
Q_INVOKABLE qreal MtotalScaleFactor(QPinchGesture* o) const { return o->totalScaleFactor(); }
};
-class EQL_EXPORT Q149 : public Q16 { // QPlainTextDocumentLayout
+class EQL_EXPORT Q150 : public Q16 { // QPlainTextDocumentLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QTextDocument* x1) { return new LPlainTextDocumentLayout(u, x1); }
@@ -1356,7 +1379,7 @@ public:
Q_INVOKABLE int MpageCount(QPlainTextDocumentLayout* o) const { return o->pageCount(); }
};
-class EQL_EXPORT Q151 : public Q136 { // QPluginLoader
+class EQL_EXPORT Q152 : public Q137 { // QPluginLoader
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LPluginLoader(u, x1); }
@@ -1375,7 +1398,7 @@ public:
Q_INVOKABLE QVector SstaticPlugins() { return QPluginLoader::staticPlugins(); }
};
-class EQL_EXPORT Q155 : public Q103 { // QProcess
+class EQL_EXPORT Q156 : public Q103 { // QProcess
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LProcess(u, x1); }
@@ -1429,7 +1452,7 @@ public:
Q_INVOKABLE QStringList SsystemEnvironment() { return QProcess::systemEnvironment(); }
};
-class EQL_EXPORT Q165 : public Q136 { // QScreen
+class EQL_EXPORT Q166 : public Q137 { // QScreen
Q_OBJECT
public:
Q_INVOKABLE int MangleBetween(QScreen* o, Qt::ScreenOrientation x1, Qt::ScreenOrientation x2) const { return o->angleBetween(x1, x2); }
@@ -1466,7 +1489,7 @@ public:
Q_INVOKABLE QSize MvirtualSize(QScreen* o) const { return o->virtualSize(); }
};
-class EQL_EXPORT Q168 : public Q21 { // QSequentialAnimationGroup
+class EQL_EXPORT Q169 : public Q21 { // QSequentialAnimationGroup
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSequentialAnimationGroup(u, x1); }
@@ -1476,7 +1499,7 @@ public:
Q_INVOKABLE int Mduration(QSequentialAnimationGroup* o) const { return o->duration(); }
};
-class EQL_EXPORT Q169 : public Q136 { // QSessionManager
+class EQL_EXPORT Q170 : public Q137 { // QSessionManager
Q_OBJECT
public:
Q_INVOKABLE bool MallowsErrorInteraction(QSessionManager* o) { return o->allowsErrorInteraction(); }
@@ -1497,7 +1520,7 @@ public:
Q_INVOKABLE void MsetRestartHint(QSessionManager* o, QSessionManager::RestartHint x1) { o->setRestartHint(x1); }
};
-class EQL_EXPORT Q170 : public Q136 { // QSettings
+class EQL_EXPORT Q171 : public Q137 { // QSettings
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1, const QString& x2 = QString(), QObject* x3 = 0) { return new LSettings(u, x1, x2, x3); }
@@ -1539,7 +1562,7 @@ public:
Q_INVOKABLE void SsetPath(QSettings::Format x1, QSettings::Scope x2, const QString& x3) { QSettings::setPath(x1, x2, x3); }
};
-class EQL_EXPORT Q171 : public Q136 { // QShortcut
+class EQL_EXPORT Q172 : public Q137 { // QShortcut
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LShortcut(u, x1); }
@@ -1558,7 +1581,7 @@ public:
Q_INVOKABLE QString MwhatsThis(QShortcut* o) const { return o->whatsThis(); }
};
-class EQL_EXPORT Q172 : public Q17 { // QSignalTransition
+class EQL_EXPORT Q173 : public Q17 { // QSignalTransition
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LSignalTransition(u, x1); }
@@ -1569,7 +1592,7 @@ public:
Q_INVOKABLE QByteArray Msignal(QSignalTransition* o) const { return o->signal(); }
};
-class EQL_EXPORT Q175 : public Q9 { // QSortFilterProxyModel
+class EQL_EXPORT Q176 : public Q9 { // QSortFilterProxyModel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSortFilterProxyModel(u, x1); }
@@ -1624,7 +1647,7 @@ public:
Q_INVOKABLE int MsupportedDropActions(QSortFilterProxyModel* o) const { return o->supportedDropActions(); }
};
-class EQL_EXPORT Q185 : public Q111 { // QStackedLayout
+class EQL_EXPORT Q186 : public Q112 { // QStackedLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LStackedLayout(u); }
@@ -1648,7 +1671,7 @@ public:
Q_INVOKABLE QLayoutItem* MtakeAt(QStackedLayout* o, int x1) { return o->takeAt(x1); }
};
-class EQL_EXPORT Q187 : public Q4 { // QStandardItemModel
+class EQL_EXPORT Q188 : public Q4 { // QStandardItemModel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LStandardItemModel(u, x1); }
@@ -1708,7 +1731,7 @@ public:
Q_INVOKABLE int MsupportedDropActions(QStandardItemModel* o) const { return o->supportedDropActions(); }
};
-class EQL_EXPORT Q188 : public Q14 { // QState
+class EQL_EXPORT Q189 : public Q14 { // QState
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LState(u, x1); }
@@ -1727,7 +1750,7 @@ public:
Q_INVOKABLE QList Mtransitions(QState* o) const { return o->transitions(); }
};
-class EQL_EXPORT Q189 : public Q188 { // QStateMachine
+class EQL_EXPORT Q190 : public Q189 { // QStateMachine
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LStateMachine(u, x1); }
@@ -1751,7 +1774,7 @@ public:
Q_INVOKABLE bool MeventFilter(QStateMachine* o, QObject* x1, QEvent* x2) { return o->eventFilter(x1, x2); }
};
-class EQL_EXPORT Q191 : public Q6 { // QStringListModel
+class EQL_EXPORT Q192 : public Q6 { // QStringListModel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LStringListModel(u, x1); }
@@ -1769,7 +1792,7 @@ public:
Q_INVOKABLE int MsupportedDropActions(QStringListModel* o) const { return o->supportedDropActions(); }
};
-class EQL_EXPORT Q192 : public Q136 { // QStyle
+class EQL_EXPORT Q193 : public Q137 { // QStyle
Q_OBJECT
public:
Q_INVOKABLE int McombinedLayoutSpacing(QStyle* o, QSizePolicy::ControlTypes x1, QSizePolicy::ControlTypes x2, Qt::Orientation x3, QStyleOption* x4 = 0, QWidget* x5 = 0) const { return o->combinedLayoutSpacing(x1, x2, x3, x4, x5); }
@@ -1804,7 +1827,7 @@ public:
Q_INVOKABLE QRect SvisualRect(Qt::LayoutDirection x1, const QRect& x2, const QRect& x3) { return QStyle::visualRect(x1, x2, x3); }
};
-class EQL_EXPORT Q193 : public Q3 { // QStyledItemDelegate
+class EQL_EXPORT Q194 : public Q3 { // QStyledItemDelegate
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LStyledItemDelegate(u, x1); }
@@ -1819,7 +1842,7 @@ public:
Q_INVOKABLE void MupdateEditorGeometry(QStyledItemDelegate* o, QWidget* x1, const QStyleOptionViewItem& x2, const QModelIndex& x3) const { o->updateEditorGeometry(x1, x2, x3); }
};
-class EQL_EXPORT Q196 : public Q70 { // QSwipeGesture
+class EQL_EXPORT Q197 : public Q70 { // QSwipeGesture
Q_OBJECT
public:
Q_INVOKABLE int MhorizontalDirection(QSwipeGesture* o) const { return o->horizontalDirection(); }
@@ -1828,7 +1851,7 @@ public:
Q_INVOKABLE int MverticalDirection(QSwipeGesture* o) const { return o->verticalDirection(); }
};
-class EQL_EXPORT Q197 : public Q136 { // QSyntaxHighlighter
+class EQL_EXPORT Q198 : public Q137 { // QSyntaxHighlighter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1) { return new LSyntaxHighlighter(u, x1); }
@@ -1847,7 +1870,7 @@ public:
Q_INVOKABLE void MsetFormat(QSyntaxHighlighter* o, int x1, int x2, const QFont& x3) { ((LSyntaxHighlighter*)o)->setFormat(x1, x2, x3); }
};
-class EQL_EXPORT Q198 : public Q136 { // QSystemTrayIcon
+class EQL_EXPORT Q199 : public Q137 { // QSystemTrayIcon
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSystemTrayIcon(u, x1); }
@@ -1864,7 +1887,7 @@ public:
Q_INVOKABLE bool SsupportsMessages() { return QSystemTrayIcon::supportsMessages(); }
};
-class EQL_EXPORT Q203 : public Q70 { // QTapAndHoldGesture
+class EQL_EXPORT Q204 : public Q70 { // QTapAndHoldGesture
Q_OBJECT
public:
Q_INVOKABLE QPointF Mposition(QTapAndHoldGesture* o) const { return o->position(); }
@@ -1873,14 +1896,14 @@ public:
Q_INVOKABLE int Stimeout() { return QTapAndHoldGesture::timeout(); }
};
-class EQL_EXPORT Q204 : public Q70 { // QTapGesture
+class EQL_EXPORT Q205 : public Q70 { // QTapGesture
Q_OBJECT
public:
Q_INVOKABLE QPointF Mposition(QTapGesture* o) const { return o->position(); }
Q_INVOKABLE void MsetPosition(QTapGesture* o, const QPointF& x1) { o->setPosition(x1); }
};
-class EQL_EXPORT Q209 : public Q136 { // QTextDocument
+class EQL_EXPORT Q210 : public Q137 { // QTextDocument
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTextDocument(u, x1); }
@@ -1961,7 +1984,7 @@ public:
Q_INVOKABLE bool MuseDesignMetrics(QTextDocument* o) const { return o->useDesignMetrics(); }
};
-class EQL_EXPORT Q213 : public Q136 { // QTextObject
+class EQL_EXPORT Q214 : public Q137 { // QTextObject
Q_OBJECT
public:
Q_INVOKABLE QTextDocument* Mdocument(QTextObject* o) const { return o->document(); }
@@ -1971,7 +1994,7 @@ public:
Q_INVOKABLE void MsetFormat(QTextObject* o, const QTextFormat& x1) { ((LTextObject*)o)->setFormat(x1); }
};
-class EQL_EXPORT Q216 : public Q136 { // QTimeLine
+class EQL_EXPORT Q217 : public Q137 { // QTimeLine
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, int x1 = 1000, QObject* x2 = 0) { return new LTimeLine(u, x1, x2); }
@@ -2000,7 +2023,7 @@ public:
Q_INVOKABLE qreal MvalueForTime(QTimeLine* o, int x1) const { return o->valueForTime(x1); }
};
-class EQL_EXPORT Q217 : public Q136 { // QTimer
+class EQL_EXPORT Q218 : public Q137 { // QTimer
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTimer(u, x1); }
@@ -2014,7 +2037,7 @@ public:
Q_INVOKABLE int MtimerType(QTimer* o) const { return o->timerType(); }
};
-class EQL_EXPORT Q221 : public Q136 { // QTranslator
+class EQL_EXPORT Q222 : public Q137 { // QTranslator
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTranslator(u, x1); }
@@ -2024,7 +2047,7 @@ public:
Q_INVOKABLE QString Mtranslate(QTranslator* o, const char* x1, const char* x2, const char* x3 = 0, int x4 = -1) const { return o->translate(x1, x2, x3, x4); }
};
-class EQL_EXPORT Q225 : public Q136 { // QUndoGroup
+class EQL_EXPORT Q226 : public Q137 { // QUndoGroup
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LUndoGroup(u, x1); }
@@ -2041,7 +2064,7 @@ public:
Q_INVOKABLE QString MundoText(QUndoGroup* o) const { return o->undoText(); }
};
-class EQL_EXPORT Q226 : public Q136 { // QUndoStack
+class EQL_EXPORT Q227 : public Q137 { // QUndoStack
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LUndoStack(u, x1); }
@@ -2066,7 +2089,7 @@ public:
Q_INVOKABLE QString MundoText(QUndoStack* o) const { return o->undoText(); }
};
-class EQL_EXPORT Q229 : public Q136 { // QValidator
+class EQL_EXPORT Q230 : public Q137 { // QValidator
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LValidator(u, x1); }
@@ -2076,7 +2099,7 @@ public:
Q_INVOKABLE int Mvalidate(QValidator* o, QString& x1, int& x2) const { return o->validate(x1, x2); }
};
-class EQL_EXPORT Q230 : public Q1 { // QVariantAnimation
+class EQL_EXPORT Q231 : public Q1 { // QVariantAnimation
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LVariantAnimation(u, x1); }
@@ -2092,7 +2115,7 @@ public:
Q_INVOKABLE int Mduration(QVariantAnimation* o) const { return o->duration(); }
};
-class EQL_EXPORT Q239 : public Q136 { // QWidget
+class EQL_EXPORT Q240 : public Q137 { // QWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LWidget(u, x1, x2); }
@@ -2312,7 +2335,7 @@ public:
Q_INVOKABLE void SsetTabOrder(QWidget* x1, QWidget* x2) { QWidget::setTabOrder(x1, x2); }
};
-class EQL_EXPORT Q240 : public Q19 { // QWidgetAction
+class EQL_EXPORT Q241 : public Q19 { // QWidgetAction
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1) { return new LWidgetAction(u, x1); }
@@ -2323,7 +2346,7 @@ public:
Q_INVOKABLE QList McreatedWidgets(QWidgetAction* o) const { return ((LWidgetAction*)o)->createdWidgets(); }
};
-class EQL_EXPORT Q241 : public Q136 { // QWindow
+class EQL_EXPORT Q242 : public Q137 { // QWindow
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QScreen* x1 = 0) { return new LWindow(u, x1); }
@@ -2409,7 +2432,7 @@ public:
Q_INVOKABLE QWindow* SfromWinId(WId x1) { return QWindow::fromWinId(x1); }
};
-class EQL_EXPORT Q243 : public Q239 { // QWizardPage
+class EQL_EXPORT Q244 : public Q240 { // QWizardPage
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LWizardPage(u, x1); }
@@ -2436,7 +2459,7 @@ public:
Q_INVOKABLE QWizard* Mwizard(QWizardPage* o) const { return ((LWizardPage*)o)->wizard(); }
};
-class EQL_EXPORT Q2 : public Q239 { // QAbstractButton
+class EQL_EXPORT Q2 : public Q240 { // QAbstractButton
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LAbstractButton(u, x1); }
@@ -2463,7 +2486,7 @@ public:
Q_INVOKABLE QString Mtext(QAbstractButton* o) const { return o->text(); }
};
-class EQL_EXPORT Q11 : public Q239 { // QAbstractSlider
+class EQL_EXPORT Q11 : public Q240 { // QAbstractSlider
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LAbstractSlider(u, x1); }
@@ -2492,7 +2515,7 @@ public:
Q_INVOKABLE void MsetRepeatAction(QAbstractSlider* o, QAbstractSlider::SliderAction x1, int x2 = 500, int x3 = 50) { ((LAbstractSlider*)o)->setRepeatAction(x1, x2, x3); }
};
-class EQL_EXPORT Q13 : public Q239 { // QAbstractSpinBox
+class EQL_EXPORT Q13 : public Q240 { // QAbstractSpinBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LAbstractSpinBox(u, x1); }
@@ -2584,7 +2607,7 @@ public:
Q_INVOKABLE QIcon SwindowIcon() { return QApplication::windowIcon(); }
};
-class EQL_EXPORT Q25 : public Q111 { // QBoxLayout
+class EQL_EXPORT Q25 : public Q112 { // QBoxLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QBoxLayout::Direction x1, QWidget* x2 = 0) { return new LBoxLayout(u, x1, x2); }
@@ -2641,7 +2664,7 @@ public:
Q_INVOKABLE qlonglong Msize(QBuffer* o) const { return o->size(); }
};
-class EQL_EXPORT Q28 : public Q239 { // QCalendarWidget
+class EQL_EXPORT Q28 : public Q240 { // QCalendarWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LCalendarWidget(u, x1); }
@@ -2692,7 +2715,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QCheckBox* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q39 : public Q239 { // QComboBox
+class EQL_EXPORT Q39 : public Q240 { // QComboBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LComboBox(u, x1); }
@@ -2759,7 +2782,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QComboBox* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q41 : public Q192 { // QCommonStyle
+class EQL_EXPORT Q41 : public Q193 { // QCommonStyle
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LCommonStyle(u); }
@@ -2837,7 +2860,7 @@ public:
Q_INVOKABLE void MstepBy(QDateTimeEdit* o, int x1) { o->stepBy(x1); }
};
-class EQL_EXPORT Q47 : public Q239 { // QDesktopWidget
+class EQL_EXPORT Q47 : public Q240 { // QDesktopWidget
Q_OBJECT
public:
Q_INVOKABLE const QRect MavailableGeometry(QDesktopWidget* o, int x1 = -1) const { return o->availableGeometry(x1); }
@@ -2868,7 +2891,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QDial* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q49 : public Q239 { // QDialog
+class EQL_EXPORT Q49 : public Q240 { // QDialog
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LDialog(u, x1, x2); }
@@ -2882,7 +2905,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QDialog* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q50 : public Q239 { // QDialogButtonBox
+class EQL_EXPORT Q50 : public Q240 { // QDialogButtonBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LDialogButtonBox(u, x1); }
@@ -2906,7 +2929,7 @@ public:
Q_INVOKABLE int MstandardButtons(QDialogButtonBox* o) const { return o->standardButtons(); }
};
-class EQL_EXPORT Q52 : public Q239 { // QDockWidget
+class EQL_EXPORT Q52 : public Q240 { // QDockWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) { return new LDockWidget(u, x1, x2, x3); }
@@ -2951,7 +2974,7 @@ public:
Q_INVOKABLE int Mvalidate(QDoubleSpinBox* o, QString& x1, int& x2) const { return o->validate(x1, x2); }
};
-class EQL_EXPORT Q54 : public Q229 { // QDoubleValidator
+class EQL_EXPORT Q54 : public Q230 { // QDoubleValidator
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LDoubleValidator(u, x1); }
@@ -3055,7 +3078,7 @@ public:
Q_INVOKABLE QUrl SgetSaveFileUrl(QWidget* x1 = 0, const QString& x2 = QString(), const QUrl& x3 = QUrl(), const QString& x4 = QString(), QString* x5 = 0, QFileDialog::Options x6 = 0, const QStringList& x7 = QStringList()) { return QFileDialog::getSaveFileUrl(x1, x2, x3, x4, x5, x6, x7); }
};
-class EQL_EXPORT Q65 : public Q239 { // QFocusFrame
+class EQL_EXPORT Q65 : public Q240 { // QFocusFrame
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LFocusFrame(u, x1); }
@@ -3094,7 +3117,7 @@ public:
Q_INVOKABLE QFont SgetFont(bool* x1, QWidget* x2 = 0) { return QFontDialog::getFont(x1, x2); }
};
-class EQL_EXPORT Q68 : public Q111 { // QFormLayout
+class EQL_EXPORT Q68 : public Q112 { // QFormLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LFormLayout(u, x1); }
@@ -3144,7 +3167,7 @@ public:
Q_INVOKABLE QLayoutItem* MtakeAt(QFormLayout* o, int x1) { return o->takeAt(x1); }
};
-class EQL_EXPORT Q69 : public Q239 { // QFrame
+class EQL_EXPORT Q69 : public Q240 { // QFrame
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LFrame(u, x1, x2); }
@@ -3234,7 +3257,7 @@ public:
Q_INVOKABLE qreal MzScale(QGraphicsScale* o) const { return o->zScale(); }
};
-class EQL_EXPORT Q89 : public Q111 { // QGridLayout
+class EQL_EXPORT Q89 : public Q112 { // QGridLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LGridLayout(u, x1); }
@@ -3278,7 +3301,7 @@ public:
Q_INVOKABLE QLayoutItem* MtakeAt(QGridLayout* o, int x1) { return o->takeAt(x1); }
};
-class EQL_EXPORT Q90 : public Q239 { // QGroupBox
+class EQL_EXPORT Q90 : public Q240 { // QGroupBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LGroupBox(u, x1); }
@@ -3303,7 +3326,7 @@ public:
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LHBoxLayout(u, x1); }
};
-class EQL_EXPORT Q104 : public Q49 { // QInputDialog
+class EQL_EXPORT Q105 : public Q49 { // QInputDialog
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LInputDialog(u, x1, x2); }
@@ -3357,7 +3380,7 @@ public:
Q_INVOKABLE QString SgetText(QWidget* x1, const QString& x2, const QString& x3, QLineEdit::EchoMode x4 = QLineEdit::Normal, const QString& x5 = QString(), bool* x6 = 0, Qt::WindowFlags x7 = 0, Qt::InputMethodHints x8 = Qt::ImhNone) { return QInputDialog::getText(x1, x2, x3, x4, x5, x6, x7, x8); }
};
-class EQL_EXPORT Q105 : public Q229 { // QIntValidator
+class EQL_EXPORT Q106 : public Q230 { // QIntValidator
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LIntValidator(u, x1); }
@@ -3371,7 +3394,7 @@ public:
Q_INVOKABLE int Mvalidate(QIntValidator* o, QString& x1, int& x2) const { return o->validate(x1, x2); }
};
-class EQL_EXPORT Q109 : public Q69 { // QLCDNumber
+class EQL_EXPORT Q110 : public Q69 { // QLCDNumber
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LLCDNumber(u, x1); }
@@ -3390,7 +3413,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QLCDNumber* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q110 : public Q69 { // QLabel
+class EQL_EXPORT Q111 : public Q69 { // QLabel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LLabel(u, x1, x2); }
@@ -3426,7 +3449,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QLabel* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q113 : public Q239 { // QLineEdit
+class EQL_EXPORT Q114 : public Q240 { // QLineEdit
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LLineEdit(u, x1); }
@@ -3491,7 +3514,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QLineEdit* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q118 : public Q239 { // QMainWindow
+class EQL_EXPORT Q119 : public Q240 { // QMainWindow
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LMainWindow(u, x1, x2); }
@@ -3544,7 +3567,7 @@ public:
Q_INVOKABLE bool MunifiedTitleAndToolBarOnMac(QMainWindow* o) const { return o->unifiedTitleAndToolBarOnMac(); }
};
-class EQL_EXPORT Q120 : public Q239 { // QMdiSubWindow
+class EQL_EXPORT Q121 : public Q240 { // QMdiSubWindow
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LMdiSubWindow(u, x1, x2); }
@@ -3564,7 +3587,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QMdiSubWindow* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q126 : public Q239 { // QMenu
+class EQL_EXPORT Q127 : public Q240 { // QMenu
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMenu(u, x1); }
@@ -3611,7 +3634,7 @@ public:
Q_INVOKABLE QAction* Sexec(const QList& x1, const QPoint& x2, QAction* x3 = 0, QWidget* x4 = 0) { return QMenu::exec(x1, x2, x3, x4); }
};
-class EQL_EXPORT Q127 : public Q239 { // QMenuBar
+class EQL_EXPORT Q128 : public Q240 { // QMenuBar
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMenuBar(u, x1); }
@@ -3640,7 +3663,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QMenuBar* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q128 : public Q49 { // QMessageBox
+class EQL_EXPORT Q129 : public Q49 { // QMessageBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMessageBox(u, x1); }
@@ -3690,7 +3713,7 @@ public:
Q_INVOKABLE int Swarning(QWidget* x1, const QString& x2, const QString& x3, QMessageBox::StandardButtons x4 = QMessageBox::Ok, QMessageBox::StandardButton x5 = QMessageBox::NoButton) { return QMessageBox::warning(x1, x2, x3, x4, x5); }
};
-class EQL_EXPORT Q140 : public Q239 { // QOpenGLWidget
+class EQL_EXPORT Q141 : public Q240 { // QOpenGLWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LOpenGLWidget(u, x1, x2); }
@@ -3706,7 +3729,7 @@ public:
Q_INVOKABLE int MupdateBehavior(QOpenGLWidget* o) const { return o->updateBehavior(); }
};
-class EQL_EXPORT Q142 : public Q49 { // QPageSetupDialog
+class EQL_EXPORT Q143 : public Q49 { // QPageSetupDialog
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QPrinter* x1, QWidget* x2 = 0) { return new LPageSetupDialog(u, x1, x2); }
@@ -3718,14 +3741,14 @@ public:
Q_INVOKABLE void MsetVisible(QPageSetupDialog* o, bool x1) { o->setVisible(x1); }
};
-class EQL_EXPORT Q143 : public Q241 { // QPaintDeviceWindow
+class EQL_EXPORT Q144 : public Q242 { // QPaintDeviceWindow
Q_OBJECT
public:
Q_INVOKABLE void Mupdate(QPaintDeviceWindow* o, const QRect& x1) { o->update(x1); }
Q_INVOKABLE void Mupdate(QPaintDeviceWindow* o, const QRegion& x1) { o->update(x1); }
};
-class EQL_EXPORT Q153 : public Q49 { // QPrintPreviewDialog
+class EQL_EXPORT Q154 : public Q49 { // QPrintPreviewDialog
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QPrinter* x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) { return new LPrintPreviewDialog(u, x1, x2, x3); }
@@ -3736,7 +3759,7 @@ public:
Q_INVOKABLE void MsetVisible(QPrintPreviewDialog* o, bool x1) { o->setVisible(x1); }
};
-class EQL_EXPORT Q154 : public Q239 { // QPrintPreviewWidget
+class EQL_EXPORT Q155 : public Q240 { // QPrintPreviewWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QPrinter* x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) { return new LPrintPreviewWidget(u, x1, x2, x3); }
@@ -3750,7 +3773,7 @@ public:
Q_INVOKABLE void MsetVisible(QPrintPreviewWidget* o, bool x1) { o->setVisible(x1); }
};
-class EQL_EXPORT Q156 : public Q239 { // QProgressBar
+class EQL_EXPORT Q157 : public Q240 { // QProgressBar
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LProgressBar(u, x1); }
@@ -3775,7 +3798,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QProgressBar* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q157 : public Q49 { // QProgressDialog
+class EQL_EXPORT Q158 : public Q49 { // QProgressDialog
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LProgressDialog(u, x1, x2); }
@@ -3797,7 +3820,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QProgressDialog* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q158 : public Q230 { // QPropertyAnimation
+class EQL_EXPORT Q159 : public Q231 { // QPropertyAnimation
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LPropertyAnimation(u, x1); }
@@ -3808,7 +3831,7 @@ public:
Q_INVOKABLE QObject* MtargetObject(QPropertyAnimation* o) const { return o->targetObject(); }
};
-class EQL_EXPORT Q159 : public Q41 { // QProxyStyle
+class EQL_EXPORT Q160 : public Q41 { // QProxyStyle
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QStyle* x1 = 0) { return new LProxyStyle(u, x1); }
@@ -3840,7 +3863,7 @@ public:
Q_INVOKABLE void Munpolish(QProxyStyle* o, QApplication* x1) { o->unpolish(x1); }
};
-class EQL_EXPORT Q160 : public Q2 { // QPushButton
+class EQL_EXPORT Q161 : public Q2 { // QPushButton
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LPushButton(u, x1); }
@@ -3859,7 +3882,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QPushButton* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q161 : public Q2 { // QRadioButton
+class EQL_EXPORT Q162 : public Q2 { // QRadioButton
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LRadioButton(u, x1); }
@@ -3869,7 +3892,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QRadioButton* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q163 : public Q229 { // QRegExpValidator
+class EQL_EXPORT Q164 : public Q230 { // QRegExpValidator
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LRegExpValidator(u, x1); }
@@ -3879,7 +3902,7 @@ public:
Q_INVOKABLE int Mvalidate(QRegExpValidator* o, QString& x1, int& x2) const { return o->validate(x1, x2); }
};
-class EQL_EXPORT Q164 : public Q239 { // QRubberBand
+class EQL_EXPORT Q165 : public Q240 { // QRubberBand
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QRubberBand::Shape x1, QWidget* x2 = 0) { return new LRubberBand(u, x1, x2); }
@@ -3893,7 +3916,7 @@ public:
Q_INVOKABLE void MinitStyleOption(QRubberBand* o, QStyleOptionRubberBand* x1) const { ((LRubberBand*)o)->initStyleOption(x1); }
};
-class EQL_EXPORT Q167 : public Q11 { // QScrollBar
+class EQL_EXPORT Q168 : public Q11 { // QScrollBar
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LScrollBar(u, x1); }
@@ -3903,7 +3926,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QScrollBar* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q173 : public Q239 { // QSizeGrip
+class EQL_EXPORT Q174 : public Q240 { // QSizeGrip
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LSizeGrip(u, x1); }
@@ -3911,7 +3934,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QSizeGrip* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q174 : public Q11 { // QSlider
+class EQL_EXPORT Q175 : public Q11 { // QSlider
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LSlider(u, x1); }
@@ -3926,7 +3949,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QSlider* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q176 : public Q13 { // QSpinBox
+class EQL_EXPORT Q177 : public Q13 { // QSpinBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LSpinBox(u, x1); }
@@ -3947,7 +3970,7 @@ public:
Q_INVOKABLE int Mvalue(QSpinBox* o) const { return o->value(); }
};
-class EQL_EXPORT Q177 : public Q239 { // QSplashScreen
+class EQL_EXPORT Q178 : public Q240 { // QSplashScreen
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QPixmap& x1 = QPixmap(), Qt::WindowFlags x2 = 0) { return new LSplashScreen(u, x1, x2); }
@@ -3959,7 +3982,7 @@ public:
Q_INVOKABLE void MsetPixmap(QSplashScreen* o, const QPixmap& x1) { o->setPixmap(x1); }
};
-class EQL_EXPORT Q178 : public Q69 { // QSplitter
+class EQL_EXPORT Q179 : public Q69 { // QSplitter
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LSplitter(u, x1); }
@@ -3991,7 +4014,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QSplitter* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q179 : public Q239 { // QSplitterHandle
+class EQL_EXPORT Q180 : public Q240 { // QSplitterHandle
Q_OBJECT
public:
Q_INVOKABLE bool MopaqueResize(QSplitterHandle* o) const { return o->opaqueResize(); }
@@ -4003,7 +4026,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QSplitterHandle* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q186 : public Q69 { // QStackedWidget
+class EQL_EXPORT Q187 : public Q69 { // QStackedWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LStackedWidget(u, x1); }
@@ -4017,7 +4040,7 @@ public:
Q_INVOKABLE QWidget* Mwidget(QStackedWidget* o, int x1) const { return o->widget(x1); }
};
-class EQL_EXPORT Q190 : public Q239 { // QStatusBar
+class EQL_EXPORT Q191 : public Q240 { // QStatusBar
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LStatusBar(u, x1); }
@@ -4033,7 +4056,7 @@ public:
Q_INVOKABLE void Mreformat(QStatusBar* o) { ((LStatusBar*)o)->reformat(); }
};
-class EQL_EXPORT Q199 : public Q239 { // QTabBar
+class EQL_EXPORT Q200 : public Q240 { // QTabBar
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTabBar(u, x1); }
@@ -4092,7 +4115,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QTabBar* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q200 : public Q239 { // QTabWidget
+class EQL_EXPORT Q201 : public Q240 { // QTabWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTabWidget(u, x1); }
@@ -4146,13 +4169,13 @@ public:
Q_INVOKABLE QSize MsizeHint(QTabWidget* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q207 : public Q213 { // QTextBlockGroup
+class EQL_EXPORT Q208 : public Q214 { // QTextBlockGroup
Q_OBJECT
public:
Q_INVOKABLE QList MblockList(QTextBlockGroup* o) const { return ((LTextBlockGroup*)o)->blockList(); }
};
-class EQL_EXPORT Q211 : public Q213 { // QTextFrame
+class EQL_EXPORT Q212 : public Q214 { // QTextFrame
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QTextDocument* x1) { return new LTextFrame(u, x1); }
@@ -4166,7 +4189,7 @@ public:
Q_INVOKABLE void MsetFrameFormat(QTextFrame* o, const QTextFrameFormat& x1) { o->setFrameFormat(x1); }
};
-class EQL_EXPORT Q212 : public Q207 { // QTextList
+class EQL_EXPORT Q213 : public Q208 { // QTextList
Q_OBJECT
public:
Q_INVOKABLE void Madd(QTextList* o, const QTextBlock& x1) { o->add(x1); }
@@ -4180,7 +4203,7 @@ public:
Q_INVOKABLE void MsetFormat(QTextList* o, const QTextListFormat& x1) { o->setFormat(x1); }
};
-class EQL_EXPORT Q214 : public Q211 { // QTextTable
+class EQL_EXPORT Q215 : public Q212 { // QTextTable
Q_OBJECT
public:
Q_INVOKABLE void MappendColumns(QTextTable* o, int x1) { o->appendColumns(x1); }
@@ -4204,14 +4227,14 @@ public:
Q_INVOKABLE void MsplitCell(QTextTable* o, int x1, int x2, int x3, int x4) { o->splitCell(x1, x2, x3, x4); }
};
-class EQL_EXPORT Q215 : public Q46 { // QTimeEdit
+class EQL_EXPORT Q216 : public Q46 { // QTimeEdit
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTimeEdit(u, x1); }
Q_INVOKABLE void* C(uint u, const QTime& x1, QWidget* x2 = 0) { return new LTimeEdit(u, x1, x2); }
};
-class EQL_EXPORT Q218 : public Q239 { // QToolBar
+class EQL_EXPORT Q219 : public Q240 { // QToolBar
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1, QWidget* x2 = 0) { return new LToolBar(u, x1, x2); }
@@ -4243,7 +4266,7 @@ public:
Q_INVOKABLE QWidget* MwidgetForAction(QToolBar* o, QAction* x1) const { return o->widgetForAction(x1); }
};
-class EQL_EXPORT Q219 : public Q69 { // QToolBox
+class EQL_EXPORT Q220 : public Q69 { // QToolBox
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LToolBox(u, x1, x2); }
@@ -4267,7 +4290,7 @@ public:
Q_INVOKABLE QWidget* Mwidget(QToolBox* o, int x1) const { return o->widget(x1); }
};
-class EQL_EXPORT Q220 : public Q2 { // QToolButton
+class EQL_EXPORT Q221 : public Q2 { // QToolButton
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LToolButton(u, x1); }
@@ -4285,14 +4308,14 @@ public:
Q_INVOKABLE QSize MsizeHint(QToolButton* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q228 : public Q25 { // QVBoxLayout
+class EQL_EXPORT Q229 : public Q25 { // QVBoxLayout
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVBoxLayout(u); }
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LVBoxLayout(u, x1); }
};
-class EQL_EXPORT Q242 : public Q49 { // QWizard
+class EQL_EXPORT Q243 : public Q49 { // QWizard
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LWizard(u, x1, x2); }
@@ -4402,7 +4425,7 @@ public:
Q_INVOKABLE QColor SstandardColor(int x1) { return QColorDialog::standardColor(x1); }
};
-class EQL_EXPORT Q40 : public Q160 { // QCommandLinkButton
+class EQL_EXPORT Q40 : public Q161 { // QCommandLinkButton
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LCommandLinkButton(u, x1); }
@@ -4537,7 +4560,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QGraphicsView* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q119 : public Q10 { // QMdiArea
+class EQL_EXPORT Q120 : public Q10 { // QMdiArea
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMdiArea(u, x1); }
@@ -4568,7 +4591,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QMdiArea* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q141 : public Q143 { // QOpenGLWindow
+class EQL_EXPORT Q142 : public Q144 { // QOpenGLWindow
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QOpenGLWindow::UpdateBehavior x1 = QOpenGLWindow::NoPartialUpdate, QWindow* x2 = 0) { return new LOpenGLWindow(u, x1, x2); }
@@ -4583,7 +4606,7 @@ public:
Q_INVOKABLE int MupdateBehavior(QOpenGLWindow* o) const { return o->updateBehavior(); }
};
-class EQL_EXPORT Q150 : public Q10 { // QPlainTextEdit
+class EQL_EXPORT Q151 : public Q10 { // QPlainTextEdit
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LPlainTextEdit(u, x1); }
@@ -4645,7 +4668,7 @@ public:
Q_INVOKABLE QVariant MinputMethodQuery(QPlainTextEdit* o, Qt::InputMethodQuery x1) const { return o->inputMethodQuery(x1); }
};
-class EQL_EXPORT Q152 : public Q8 { // QPrintDialog
+class EQL_EXPORT Q153 : public Q8 { // QPrintDialog
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QPrinter* x1, QWidget* x2 = 0) { return new LPrintDialog(u, x1, x2); }
@@ -4661,7 +4684,7 @@ public:
Q_INVOKABLE void MsetVisible(QPrintDialog* o, bool x1) { o->setVisible(x1); }
};
-class EQL_EXPORT Q166 : public Q10 { // QScrollArea
+class EQL_EXPORT Q167 : public Q10 { // QScrollArea
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LScrollArea(u, x1); }
@@ -4678,7 +4701,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QScrollArea* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q210 : public Q10 { // QTextEdit
+class EQL_EXPORT Q211 : public Q10 { // QTextEdit
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTextEdit(u, x1); }
@@ -4905,7 +4928,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QHeaderView* o) const { return o->sizeHint(); }
};
-class EQL_EXPORT Q114 : public Q5 { // QListView
+class EQL_EXPORT Q115 : public Q5 { // QListView
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LListView(u, x1); }
@@ -4945,7 +4968,7 @@ public:
Q_INVOKABLE QRect MvisualRect(QListView* o, const QModelIndex& x1) const { return o->visualRect(x1); }
};
-class EQL_EXPORT Q115 : public Q114 { // QListWidget
+class EQL_EXPORT Q116 : public Q115 { // QListWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LListWidget(u, x1); }
@@ -4985,7 +5008,7 @@ public:
Q_INVOKABLE void MdropEvent(QListWidget* o, QDropEvent* x1) { o->dropEvent(x1); }
};
-class EQL_EXPORT Q201 : public Q5 { // QTableView
+class EQL_EXPORT Q202 : public Q5 { // QTableView
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTableView(u, x1); }
@@ -5025,7 +5048,7 @@ public:
Q_INVOKABLE void MsetSelectionModel(QTableView* o, QItemSelectionModel* x1) { o->setSelectionModel(x1); }
};
-class EQL_EXPORT Q202 : public Q201 { // QTableWidget
+class EQL_EXPORT Q203 : public Q202 { // QTableWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTableWidget(u, x1); }
@@ -5077,7 +5100,7 @@ public:
Q_INVOKABLE QList Mitems(QTableWidget* o, const QMimeData* x1) const { return ((LTableWidget*)o)->items(x1); }
};
-class EQL_EXPORT Q208 : public Q210 { // QTextBrowser
+class EQL_EXPORT Q209 : public Q211 { // QTextBrowser
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTextBrowser(u, x1); }
@@ -5098,7 +5121,7 @@ public:
Q_INVOKABLE QVariant MloadResource(QTextBrowser* o, int x1, const QUrl& x2) { return o->loadResource(x1, x2); }
};
-class EQL_EXPORT Q222 : public Q5 { // QTreeView
+class EQL_EXPORT Q223 : public Q5 { // QTreeView
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTreeView(u, x1); }
@@ -5159,7 +5182,7 @@ public:
Q_INVOKABLE QRect MvisualRect(QTreeView* o, const QModelIndex& x1) const { return o->visualRect(x1); }
};
-class EQL_EXPORT Q223 : public Q222 { // QTreeWidget
+class EQL_EXPORT Q224 : public Q223 { // QTreeWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTreeWidget(u, x1); }
@@ -5205,7 +5228,7 @@ public:
Q_INVOKABLE void MsetSelectionModel(QTreeWidget* o, QItemSelectionModel* x1) { o->setSelectionModel(x1); }
};
-class EQL_EXPORT Q227 : public Q114 { // QUndoView
+class EQL_EXPORT Q228 : public Q115 { // QUndoView
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LUndoView(u, x1); }
diff --git a/src/gen/help/_q_methods.h b/src/gen/help/_q_methods.h
index 2ae3b74..f4cc867 100644
--- a/src/gen/help/_q_methods.h
+++ b/src/gen/help/_q_methods.h
@@ -24,7 +24,7 @@ public:
Q_INVOKABLE int MrowCount(QHelpContentModel* o, const QModelIndex& x1 = QModelIndex()) const { return o->rowCount(x1); }
};
-class Q96 : public Q136 { // QHelpEngineCore
+class Q96 : public Q137 { // QHelpEngineCore
Q_OBJECT
public:
Q_INVOKABLE bool MaddCustomFilter(QHelpEngineCore* o, const QString& x1, const QStringList& x2) { return o->addCustomFilter(x1, x2); }
@@ -56,7 +56,7 @@ public:
Q_INVOKABLE QString SnamespaceName(const QString& x1) { return QHelpEngineCore::namespaceName(x1); }
};
-class Q99 : public Q136 { // QHelpSearchEngine
+class Q99 : public Q137 { // QHelpSearchEngine
Q_OBJECT
public:
Q_INVOKABLE int MhitCount(QHelpSearchEngine* o) const { return o->hitCount(); }
@@ -65,7 +65,7 @@ public:
Q_INVOKABLE QHelpSearchResultWidget* MresultWidget(QHelpSearchEngine* o) { return o->resultWidget(); }
};
-class Q97 : public Q191 { // QHelpIndexModel
+class Q97 : public Q192 { // QHelpIndexModel
Q_OBJECT
public:
Q_INVOKABLE void McreateIndex(QHelpIndexModel* o, const QString& x1) { o->createIndex(x1); }
@@ -73,7 +73,7 @@ public:
Q_INVOKABLE bool MisCreatingIndex(QHelpIndexModel* o) const { return o->isCreatingIndex(); }
};
-class Q100 : public Q239 { // QHelpSearchQueryWidget
+class Q100 : public Q240 { // QHelpSearchQueryWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LHelpSearchQueryWidget(u, x1); }
@@ -84,19 +84,19 @@ public:
Q_INVOKABLE void MsetQuery(QHelpSearchQueryWidget* o, const QList& x1) { o->setQuery(x1); }
};
-class Q101 : public Q239 { // QHelpSearchResultWidget
+class Q101 : public Q240 { // QHelpSearchResultWidget
Q_OBJECT
public:
Q_INVOKABLE QUrl MlinkAt(QHelpSearchResultWidget* o, const QPoint& x1) { return o->linkAt(x1); }
};
-class Q95 : public Q222 { // QHelpContentWidget
+class Q95 : public Q223 { // QHelpContentWidget
Q_OBJECT
public:
Q_INVOKABLE QModelIndex MindexOf(QHelpContentWidget* o, const QUrl& x1) { return o->indexOf(x1); }
};
-class Q98 : public Q114 { // QHelpIndexWidget
+class Q98 : public Q115 { // QHelpIndexWidget
Q_OBJECT
public:
};
diff --git a/src/gen/multimedia/_ini.cpp b/src/gen/multimedia/_ini.cpp
index 8c6c218..f05ea24 100644
--- a/src/gen/multimedia/_ini.cpp
+++ b/src/gen/multimedia/_ini.cpp
@@ -44,25 +44,25 @@ void ini() {
LObjects::Q[32] = new Q33;
LObjects::Q[33] = new Q34;
LObjects::Q[84] = new Q85;
- LObjects::Q[120] = new Q121;
LObjects::Q[121] = new Q122;
LObjects::Q[122] = new Q123;
LObjects::Q[123] = new Q124;
LObjects::Q[124] = new Q125;
- LObjects::Q[161] = new Q162;
- LObjects::Q[230] = new Q231;
+ LObjects::Q[125] = new Q126;
+ LObjects::Q[162] = new Q163;
LObjects::Q[231] = new Q232;
+ LObjects::Q[232] = new Q233;
LObjects::N[7] = new N8;
LObjects::N[8] = new N9;
LObjects::N[9] = new N10;
LObjects::N[15] = new N16;
LObjects::N[16] = new N17;
LObjects::N[79] = new N80;
- LObjects::N[95] = new N96;
LObjects::N[96] = new N97;
- LObjects::N[204] = new N205;
+ LObjects::N[97] = new N98;
LObjects::N[205] = new N206;
- LObjects::N[206] = new N207; }
+ LObjects::N[206] = new N207;
+ LObjects::N[207] = new N208; }
const QMetaObject* staticMetaObject(int n) {
const QMetaObject* m = 0;
@@ -77,14 +77,14 @@ const QMetaObject* staticMetaObject(int n) {
case 33: m = &QCameraImageProcessing::staticMetaObject; break;
case 34: m = &QCameraViewfinder::staticMetaObject; break;
case 85: m = &QGraphicsVideoItem::staticMetaObject; break;
- case 121: m = &QMediaObject::staticMetaObject; break;
- case 122: m = &QMediaPlayer::staticMetaObject; break;
- case 123: m = &QMediaPlaylist::staticMetaObject; break;
- case 124: m = &QMediaRecorder::staticMetaObject; break;
- case 125: m = &QMediaService::staticMetaObject; break;
- case 162: m = &QRadioTuner::staticMetaObject; break;
- case 231: m = &QVideoWidget::staticMetaObject; break;
- case 232: m = &QVideoWidgetControl::staticMetaObject; break; }
+ case 122: m = &QMediaObject::staticMetaObject; break;
+ case 123: m = &QMediaPlayer::staticMetaObject; break;
+ case 124: m = &QMediaPlaylist::staticMetaObject; break;
+ case 125: m = &QMediaRecorder::staticMetaObject; break;
+ case 126: m = &QMediaService::staticMetaObject; break;
+ case 163: m = &QRadioTuner::staticMetaObject; break;
+ case 232: m = &QVideoWidget::staticMetaObject; break;
+ case 233: m = &QVideoWidgetControl::staticMetaObject; break; }
return m; }
void deleteNObject(int n, void* p, int gc) {
@@ -95,11 +95,11 @@ void deleteNObject(int n, void* p, int gc) {
case 16: if(gc) delete (QCameraInfo*)p; else delete (LCameraInfo*)p; break;
case 17: if(gc) delete (QCameraViewfinderSettings*)p; else delete (LCameraViewfinderSettings*)p; break;
case 80: if(gc) delete (QImageEncoderSettings*)p; else delete (LImageEncoderSettings*)p; break;
- case 96: if(gc) delete (QMediaContent*)p; else delete (LMediaContent*)p; break;
- case 97: if(gc) delete (QMediaResource*)p; else delete (LMediaResource*)p; break;
- case 205: if(gc) delete (QVideoEncoderSettings*)p; else delete (LVideoEncoderSettings*)p; break;
- case 206: if(gc) delete (QVideoFrame*)p; else delete (LVideoFrame*)p; break;
- case 207: if(gc) delete (QVideoSurfaceFormat*)p; else delete (LVideoSurfaceFormat*)p; break; }}
+ case 97: if(gc) delete (QMediaContent*)p; else delete (LMediaContent*)p; break;
+ case 98: if(gc) delete (QMediaResource*)p; else delete (LMediaResource*)p; break;
+ case 206: if(gc) delete (QVideoEncoderSettings*)p; else delete (LVideoEncoderSettings*)p; break;
+ case 207: if(gc) delete (QVideoFrame*)p; else delete (LVideoFrame*)p; break;
+ case 208: if(gc) delete (QVideoSurfaceFormat*)p; else delete (LVideoSurfaceFormat*)p; break; }}
NumList* overrideFunctions(const QByteArray& name) {
NumList* ids = 0;
@@ -112,13 +112,13 @@ NumList* overrideFunctions(const QByteArray& name) {
case 32: ids = &LCameraImageCapture::overrideIds; break;
case 34: ids = &LCameraViewfinder::overrideIds; break;
case 85: ids = &LGraphicsVideoItem::overrideIds; break;
- case 121: ids = &LMediaObject::overrideIds; break;
- case 122: ids = &LMediaPlayer::overrideIds; break;
- case 123: ids = &LMediaPlaylist::overrideIds; break;
- case 124: ids = &LMediaRecorder::overrideIds; break;
- case 162: ids = &LRadioTuner::overrideIds; break;
- case 231: ids = &LVideoWidget::overrideIds; break;
- case 232: ids = &LVideoWidgetControl::overrideIds; break; }}
+ case 122: ids = &LMediaObject::overrideIds; break;
+ case 123: ids = &LMediaPlayer::overrideIds; break;
+ case 124: ids = &LMediaPlaylist::overrideIds; break;
+ case 125: ids = &LMediaRecorder::overrideIds; break;
+ case 163: ids = &LRadioTuner::overrideIds; break;
+ case 232: ids = &LVideoWidget::overrideIds; break;
+ case 233: ids = &LVideoWidgetControl::overrideIds; break; }}
else {
n = LObjects::n_names.value(name);
switch(n) {
@@ -128,11 +128,11 @@ NumList* overrideFunctions(const QByteArray& name) {
case 16: ids = &LCameraInfo::overrideIds; break;
case 17: ids = &LCameraViewfinderSettings::overrideIds; break;
case 80: ids = &LImageEncoderSettings::overrideIds; break;
- case 96: ids = &LMediaContent::overrideIds; break;
- case 97: ids = &LMediaResource::overrideIds; break;
- case 205: ids = &LVideoEncoderSettings::overrideIds; break;
- case 206: ids = &LVideoFrame::overrideIds; break;
- case 207: ids = &LVideoSurfaceFormat::overrideIds; break; }}
+ case 97: ids = &LMediaContent::overrideIds; break;
+ case 98: ids = &LMediaResource::overrideIds; break;
+ case 206: ids = &LVideoEncoderSettings::overrideIds; break;
+ case 207: ids = &LVideoFrame::overrideIds; break;
+ case 208: ids = &LVideoSurfaceFormat::overrideIds; break; }}
return ids; }
QT_END_NAMESPACE
diff --git a/src/gen/multimedia/_n_classes.h b/src/gen/multimedia/_n_classes.h
index 65743c7..7c15df0 100644
--- a/src/gen/multimedia/_n_classes.h
+++ b/src/gen/multimedia/_n_classes.h
@@ -73,7 +73,7 @@ public:
};
class LMediaContent : public QMediaContent {
- friend class N96;
+ friend class N97;
public:
LMediaContent(uint u) : unique(u) {}
LMediaContent(uint u, const QUrl& x1) : QMediaContent(x1), unique(u) {}
@@ -88,7 +88,7 @@ public:
};
class LMediaResource : public QMediaResource {
- friend class N97;
+ friend class N98;
public:
LMediaResource(uint u) : unique(u) {}
LMediaResource(uint u, const QUrl& x1, const QString& x2 = QString()) : QMediaResource(x1, x2), unique(u) {}
@@ -100,7 +100,7 @@ public:
};
class LVideoEncoderSettings : public QVideoEncoderSettings {
- friend class N205;
+ friend class N206;
public:
LVideoEncoderSettings(uint u) : unique(u) {}
LVideoEncoderSettings(uint u, const QVideoEncoderSettings& x1) : QVideoEncoderSettings(x1), unique(u) {}
@@ -110,7 +110,7 @@ public:
};
class LVideoFrame : public QVideoFrame {
- friend class N206;
+ friend class N207;
public:
LVideoFrame(uint u) : unique(u) {}
LVideoFrame(uint u, QAbstractVideoBuffer* x1, const QSize& x2, PixelFormat x3) : QVideoFrame(x1, x2, x3), unique(u) {}
@@ -123,7 +123,7 @@ public:
};
class LVideoSurfaceFormat : public QVideoSurfaceFormat {
- friend class N207;
+ friend class N208;
public:
LVideoSurfaceFormat(uint u) : unique(u) {}
LVideoSurfaceFormat(uint u, const QVideoSurfaceFormat& x1) : QVideoSurfaceFormat(x1), unique(u) {}
diff --git a/src/gen/multimedia/_n_methods.h b/src/gen/multimedia/_n_methods.h
index 42b6da8..503fea4 100644
--- a/src/gen/multimedia/_n_methods.h
+++ b/src/gen/multimedia/_n_methods.h
@@ -134,7 +134,7 @@ public:
Q_INVOKABLE void MsetResolution(QImageEncoderSettings* o, int x1, int x2) { o->setResolution(x1, x2); }
};
-class N96 : public QObject { // QMediaContent
+class N97 : public QObject { // QMediaContent
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMediaContent(u); }
@@ -152,7 +152,7 @@ public:
Q_INVOKABLE QMediaResourceList Mresources(QMediaContent* o) const { return o->resources(); }
};
-class N97 : public QObject { // QMediaResource
+class N98 : public QObject { // QMediaResource
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LMediaResource(u); }
@@ -184,7 +184,7 @@ public:
Q_INVOKABLE QString MvideoCodec(QMediaResource* o) const { return o->videoCodec(); }
};
-class N205 : public QObject { // QVideoEncoderSettings
+class N206 : public QObject { // QVideoEncoderSettings
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVideoEncoderSettings(u); }
@@ -207,7 +207,7 @@ public:
Q_INVOKABLE void MsetResolution(QVideoEncoderSettings* o, int x1, int x2) { o->setResolution(x1, x2); }
};
-class N206 : public QObject { // QVideoFrame
+class N207 : public QObject { // QVideoFrame
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVideoFrame(u); }
@@ -243,7 +243,7 @@ public:
Q_INVOKABLE int SpixelFormatFromImageFormat(QImage::Format x1) { return QVideoFrame::pixelFormatFromImageFormat(x1); }
};
-class N207 : public QObject { // QVideoSurfaceFormat
+class N208 : public QObject { // QVideoSurfaceFormat
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LVideoSurfaceFormat(u); }
diff --git a/src/gen/multimedia/_q_classes.h b/src/gen/multimedia/_q_classes.h
index 0d80f73..298976c 100644
--- a/src/gen/multimedia/_q_classes.h
+++ b/src/gen/multimedia/_q_classes.h
@@ -151,7 +151,7 @@ public:
class LMediaObject : public QMediaObject {
Q_OBJECT
- friend class Q121;
+ friend class Q122;
public:
static NumList overrideIds;
@@ -170,7 +170,7 @@ public:
class LMediaPlayer : public QMediaPlayer {
Q_OBJECT
- friend class Q122;
+ friend class Q123;
public:
LMediaPlayer(uint u, QObject* x1 = 0, Flags x2 = 0) : QMediaPlayer(x1, x2), unique(u) {}
@@ -190,7 +190,7 @@ public:
class LMediaPlaylist : public QMediaPlaylist {
Q_OBJECT
- friend class Q123;
+ friend class Q124;
public:
LMediaPlaylist(uint u, QObject* x1 = 0) : QMediaPlaylist(x1), unique(u) {}
@@ -206,7 +206,7 @@ public:
class LMediaRecorder : public QMediaRecorder {
Q_OBJECT
- friend class Q124;
+ friend class Q125;
public:
LMediaRecorder(uint u, QMediaObject* x1, QObject* x2 = 0) : QMediaRecorder(x1, x2), unique(u) {}
@@ -222,7 +222,7 @@ public:
class LRadioTuner : public QRadioTuner {
Q_OBJECT
- friend class Q162;
+ friend class Q163;
public:
LRadioTuner(uint u, QObject* x1 = 0) : QRadioTuner(x1), unique(u) {}
@@ -242,7 +242,7 @@ public:
class LVideoWidget : public QVideoWidget {
Q_OBJECT
- friend class Q231;
+ friend class Q232;
public:
LVideoWidget(uint u, QWidget* x1 = 0) : QVideoWidget(x1), unique(u) {}
@@ -291,7 +291,7 @@ public:
class LVideoWidgetControl : public QVideoWidgetControl {
Q_OBJECT
- friend class Q232;
+ friend class Q233;
public:
static NumList overrideIds;
diff --git a/src/gen/multimedia/_q_methods.h b/src/gen/multimedia/_q_methods.h
index 96ca1d7..2ecc96b 100644
--- a/src/gen/multimedia/_q_methods.h
+++ b/src/gen/multimedia/_q_methods.h
@@ -11,7 +11,7 @@
QT_BEGIN_NAMESPACE
-class Q232 : public QObject { // QVideoWidgetControl
+class Q233 : public QObject { // QVideoWidgetControl
Q_OBJECT
public:
Q_INVOKABLE int MaspectRatioMode(QVideoWidgetControl* o) const { return o->aspectRatioMode(); }
@@ -29,7 +29,7 @@ public:
Q_INVOKABLE QWidget* MvideoWidget(QVideoWidgetControl* o) { return o->videoWidget(); }
};
-class Q18 : public Q136 { // QAbstractVideoSurface
+class Q18 : public Q137 { // QAbstractVideoSurface
Q_OBJECT
public:
Q_INVOKABLE int Merror(QAbstractVideoSurface* o) const { return o->error(); }
@@ -43,7 +43,7 @@ public:
Q_INVOKABLE QVideoSurfaceFormat MsurfaceFormat(QAbstractVideoSurface* o) const { return o->surfaceFormat(); }
};
-class Q23 : public Q136 { // QAudioOutput
+class Q23 : public Q137 { // QAudioOutput
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QAudioFormat& x1 = QAudioFormat(), QObject* x2 = 0) { return new LAudioOutput(u, x1, x2); }
@@ -69,7 +69,7 @@ public:
Q_INVOKABLE qreal Mvolume(QAudioOutput* o) const { return o->volume(); }
};
-class Q30 : public Q136 { // QCameraExposure
+class Q30 : public Q137 { // QCameraExposure
Q_OBJECT
public:
Q_INVOKABLE qreal Maperture(QCameraExposure* o) const { return o->aperture(); }
@@ -94,7 +94,7 @@ public:
Q_INVOKABLE QList MsupportedShutterSpeeds(QCameraExposure* o, bool* x1 = 0) const { return o->supportedShutterSpeeds(x1); }
};
-class Q31 : public Q136 { // QCameraFocus
+class Q31 : public Q137 { // QCameraFocus
Q_OBJECT
public:
Q_INVOKABLE QPointF McustomFocusPoint(QCameraFocus* o) const { return o->customFocusPoint(); }
@@ -114,7 +114,7 @@ public:
Q_INVOKABLE void MzoomTo(QCameraFocus* o, qreal x1, qreal x2) { o->zoomTo(x1, x2); }
};
-class Q32 : public Q136 { // QCameraImageCapture
+class Q32 : public Q137 { // QCameraImageCapture
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QMediaObject* x1, QObject* x2 = 0) { return new LCameraImageCapture(u, x1, x2); }
@@ -137,7 +137,7 @@ public:
Q_INVOKABLE QMediaObject* MmediaObject(QCameraImageCapture* o) const { return o->mediaObject(); }
};
-class Q33 : public Q136 { // QCameraImageProcessing
+class Q33 : public Q137 { // QCameraImageProcessing
Q_OBJECT
public:
Q_INVOKABLE int McolorFilter(QCameraImageProcessing* o) const { return o->colorFilter(); }
@@ -175,7 +175,7 @@ public:
Q_INVOKABLE void Mpaint(QGraphicsVideoItem* o, QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { o->paint(x1, x2, x3); }
};
-class Q121 : public Q136 { // QMediaObject
+class Q122 : public Q137 { // QMediaObject
Q_OBJECT
public:
Q_INVOKABLE int Mavailability(QMediaObject* o) const { return o->availability(); }
@@ -192,7 +192,7 @@ public:
Q_INVOKABLE void MremovePropertyWatch(QMediaObject* o, const QByteArray& x1) { ((LMediaObject*)o)->removePropertyWatch(x1); }
};
-class Q122 : public Q121 { // QMediaPlayer
+class Q123 : public Q122 { // QMediaPlayer
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0, QMediaPlayer::Flags x2 = 0) { return new LMediaPlayer(u, x1, x2); }
@@ -223,7 +223,7 @@ public:
Q_INVOKABLE int ShasSupport(const QString& x1, const QStringList& x2 = QStringList(), QMediaPlayer::Flags x3 = 0) { return QMediaPlayer::hasSupport(x1, x2, x3); }
};
-class Q123 : public Q136 { // QMediaPlaylist
+class Q124 : public Q137 { // QMediaPlaylist
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LMediaPlaylist(u, x1); }
@@ -253,7 +253,7 @@ public:
Q_INVOKABLE QMediaObject* MmediaObject(QMediaPlaylist* o) const { return o->mediaObject(); }
};
-class Q124 : public Q136 { // QMediaRecorder
+class Q125 : public Q137 { // QMediaRecorder
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QMediaObject* x1, QObject* x2 = 0) { return new LMediaRecorder(u, x1, x2); }
@@ -293,14 +293,14 @@ public:
Q_INVOKABLE QMediaObject* MmediaObject(QMediaRecorder* o) const { return o->mediaObject(); }
};
-class Q125 : public Q136 { // QMediaService
+class Q126 : public Q137 { // QMediaService
Q_OBJECT
public:
Q_INVOKABLE void MreleaseControl(QMediaService* o, QMediaControl* x1) { o->releaseControl(x1); }
Q_INVOKABLE QMediaControl* MrequestControl(QMediaService* o, const char* x1) { return o->requestControl(x1); }
};
-class Q162 : public Q121 { // QRadioTuner
+class Q163 : public Q122 { // QRadioTuner
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LRadioTuner(u, x1); }
@@ -323,7 +323,7 @@ public:
Q_INVOKABLE int Mavailability(QRadioTuner* o) const { return o->availability(); }
};
-class Q24 : public Q124 { // QAudioRecorder
+class Q24 : public Q125 { // QAudioRecorder
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LAudioRecorder(u, x1); }
@@ -333,7 +333,7 @@ public:
Q_INVOKABLE QString MdefaultAudioInput(QAudioRecorder* o) const { return o->defaultAudioInput(); }
};
-class Q29 : public Q121 { // QCamera
+class Q29 : public Q122 { // QCamera
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LCamera(u, x1); }
@@ -365,7 +365,7 @@ public:
Q_INVOKABLE int Mavailability(QCamera* o) const { return o->availability(); }
};
-class Q231 : public Q239 { // QVideoWidget
+class Q232 : public Q240 { // QVideoWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LVideoWidget(u, x1); }
@@ -379,7 +379,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QVideoWidget* o) const { return o->sizeHint(); }
};
-class Q34 : public Q231 { // QCameraViewfinder
+class Q34 : public Q232 { // QCameraViewfinder
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LCameraViewfinder(u, x1); }
diff --git a/src/gen/network/_ini.cpp b/src/gen/network/_ini.cpp
index f1d5395..7a8a57e 100644
--- a/src/gen/network/_ini.cpp
+++ b/src/gen/network/_ini.cpp
@@ -23,7 +23,7 @@ NumList LNetworkCacheMetaData::overrideIds = NumList();
NumList LNetworkCookie::overrideIds = NumList();
NumList LNetworkInterface::overrideIds = NumList();
NumList LNetworkProxy::overrideIds = NumList();
-NumList LNetworkProxyFactory::overrideIds = NumList() << 461;
+NumList LNetworkProxyFactory::overrideIds = NumList() << 462;
NumList LNetworkProxyQuery::overrideIds = NumList();
NumList LNetworkRequest::overrideIds = NumList();
NumList LSslCertificate::overrideIds = NumList();
@@ -37,19 +37,18 @@ void ini() {
ini2();
LObjects::Q[6] = new Q7;
LObjects::Q[11] = new Q12;
- LObjects::Q[115] = new Q116;
LObjects::Q[116] = new Q117;
- LObjects::Q[131] = new Q132;
+ LObjects::Q[117] = new Q118;
LObjects::Q[132] = new Q133;
LObjects::Q[133] = new Q134;
LObjects::Q[134] = new Q135;
- LObjects::Q[204] = new Q205;
+ LObjects::Q[135] = new Q136;
LObjects::Q[205] = new Q206;
- LObjects::Q[223] = new Q224;
+ LObjects::Q[206] = new Q207;
+ LObjects::Q[224] = new Q225;
LObjects::N[10] = new N11;
LObjects::N[73] = new N74;
LObjects::N[74] = new N75;
- LObjects::N[101] = new N102;
LObjects::N[102] = new N103;
LObjects::N[103] = new N104;
LObjects::N[104] = new N105;
@@ -57,26 +56,27 @@ void ini() {
LObjects::N[106] = new N107;
LObjects::N[107] = new N108;
LObjects::N[108] = new N109;
- LObjects::N[150] = new N151;
+ LObjects::N[109] = new N110;
LObjects::N[151] = new N152;
LObjects::N[152] = new N153;
LObjects::N[153] = new N154;
- LObjects::N[154] = new N155; }
+ LObjects::N[154] = new N155;
+ LObjects::N[155] = new N156; }
const QMetaObject* staticMetaObject(int n) {
const QMetaObject* m = 0;
switch(n) {
case 7: m = &QAbstractNetworkCache::staticMetaObject; break;
case 12: m = &QAbstractSocket::staticMetaObject; break;
- case 116: m = &QLocalServer::staticMetaObject; break;
- case 117: m = &QLocalSocket::staticMetaObject; break;
- case 132: m = &QNetworkAccessManager::staticMetaObject; break;
- case 133: m = &QNetworkCookieJar::staticMetaObject; break;
- case 134: m = &QNetworkDiskCache::staticMetaObject; break;
- case 135: m = &QNetworkReply::staticMetaObject; break;
- case 205: m = &QTcpServer::staticMetaObject; break;
- case 206: m = &QTcpSocket::staticMetaObject; break;
- case 224: m = &QUdpSocket::staticMetaObject; break; }
+ case 117: m = &QLocalServer::staticMetaObject; break;
+ case 118: m = &QLocalSocket::staticMetaObject; break;
+ case 133: m = &QNetworkAccessManager::staticMetaObject; break;
+ case 134: m = &QNetworkCookieJar::staticMetaObject; break;
+ case 135: m = &QNetworkDiskCache::staticMetaObject; break;
+ case 136: m = &QNetworkReply::staticMetaObject; break;
+ case 206: m = &QTcpServer::staticMetaObject; break;
+ case 207: m = &QTcpSocket::staticMetaObject; break;
+ case 225: m = &QUdpSocket::staticMetaObject; break; }
return m; }
void deleteNObject(int n, void* p, int gc) {
@@ -84,19 +84,19 @@ void deleteNObject(int n, void* p, int gc) {
case 11: if(gc) delete (QAuthenticator*)p; else delete (LAuthenticator*)p; break;
case 74: if(gc) delete (QHostAddress*)p; else delete (LHostAddress*)p; break;
case 75: if(gc) delete (QHostInfo*)p; else delete (LHostInfo*)p; break;
- case 102: if(gc) delete (QNetworkAddressEntry*)p; else delete (LNetworkAddressEntry*)p; break;
- case 103: if(gc) delete (QNetworkCacheMetaData*)p; else delete (LNetworkCacheMetaData*)p; break;
- case 104: if(gc) delete (QNetworkCookie*)p; else delete (LNetworkCookie*)p; break;
- case 105: if(gc) delete (QNetworkInterface*)p; else delete (LNetworkInterface*)p; break;
- case 106: if(gc) delete (QNetworkProxy*)p; else delete (LNetworkProxy*)p; break;
- case 107: if(gc) delete (QNetworkProxyFactory*)p; else delete (LNetworkProxyFactory*)p; break;
- case 108: if(gc) delete (QNetworkProxyQuery*)p; else delete (LNetworkProxyQuery*)p; break;
- case 109: if(gc) delete (QNetworkRequest*)p; else delete (LNetworkRequest*)p; break;
- case 151: if(gc) delete (QSslCertificate*)p; else delete (LSslCertificate*)p; break;
- case 152: if(gc) delete (QSslCipher*)p; else delete (LSslCipher*)p; break;
- case 153: if(gc) delete (QSslConfiguration*)p; else delete (LSslConfiguration*)p; break;
- case 154: if(gc) delete (QSslError*)p; else delete (LSslError*)p; break;
- case 155: if(gc) delete (QSslKey*)p; else delete (LSslKey*)p; break; }}
+ case 103: if(gc) delete (QNetworkAddressEntry*)p; else delete (LNetworkAddressEntry*)p; break;
+ case 104: if(gc) delete (QNetworkCacheMetaData*)p; else delete (LNetworkCacheMetaData*)p; break;
+ case 105: if(gc) delete (QNetworkCookie*)p; else delete (LNetworkCookie*)p; break;
+ case 106: if(gc) delete (QNetworkInterface*)p; else delete (LNetworkInterface*)p; break;
+ case 107: if(gc) delete (QNetworkProxy*)p; else delete (LNetworkProxy*)p; break;
+ case 108: if(gc) delete (QNetworkProxyFactory*)p; else delete (LNetworkProxyFactory*)p; break;
+ case 109: if(gc) delete (QNetworkProxyQuery*)p; else delete (LNetworkProxyQuery*)p; break;
+ case 110: if(gc) delete (QNetworkRequest*)p; else delete (LNetworkRequest*)p; break;
+ case 152: if(gc) delete (QSslCertificate*)p; else delete (LSslCertificate*)p; break;
+ case 153: if(gc) delete (QSslCipher*)p; else delete (LSslCipher*)p; break;
+ case 154: if(gc) delete (QSslConfiguration*)p; else delete (LSslConfiguration*)p; break;
+ case 155: if(gc) delete (QSslError*)p; else delete (LSslError*)p; break;
+ case 156: if(gc) delete (QSslKey*)p; else delete (LSslKey*)p; break; }}
NumList* overrideFunctions(const QByteArray& name) {
NumList* ids = 0;
@@ -104,33 +104,33 @@ NumList* overrideFunctions(const QByteArray& name) {
if(n != -1) {
switch(n) {
case 12: ids = &LAbstractSocket::overrideIds; break;
- case 116: ids = &LLocalServer::overrideIds; break;
- case 117: ids = &LLocalSocket::overrideIds; break;
- case 132: ids = &LNetworkAccessManager::overrideIds; break;
- case 133: ids = &LNetworkCookieJar::overrideIds; break;
- case 134: ids = &LNetworkDiskCache::overrideIds; break;
- case 205: ids = <cpServer::overrideIds; break;
- case 206: ids = <cpSocket::overrideIds; break;
- case 224: ids = &LUdpSocket::overrideIds; break; }}
+ case 117: ids = &LLocalServer::overrideIds; break;
+ case 118: ids = &LLocalSocket::overrideIds; break;
+ case 133: ids = &LNetworkAccessManager::overrideIds; break;
+ case 134: ids = &LNetworkCookieJar::overrideIds; break;
+ case 135: ids = &LNetworkDiskCache::overrideIds; break;
+ case 206: ids = <cpServer::overrideIds; break;
+ case 207: ids = <cpSocket::overrideIds; break;
+ case 225: ids = &LUdpSocket::overrideIds; break; }}
else {
n = LObjects::n_names.value(name);
switch(n) {
case 11: ids = &LAuthenticator::overrideIds; break;
case 74: ids = &LHostAddress::overrideIds; break;
case 75: ids = &LHostInfo::overrideIds; break;
- case 102: ids = &LNetworkAddressEntry::overrideIds; break;
- case 103: ids = &LNetworkCacheMetaData::overrideIds; break;
- case 104: ids = &LNetworkCookie::overrideIds; break;
- case 105: ids = &LNetworkInterface::overrideIds; break;
- case 106: ids = &LNetworkProxy::overrideIds; break;
- case 107: ids = &LNetworkProxyFactory::overrideIds; break;
- case 108: ids = &LNetworkProxyQuery::overrideIds; break;
- case 109: ids = &LNetworkRequest::overrideIds; break;
- case 151: ids = &LSslCertificate::overrideIds; break;
- case 152: ids = &LSslCipher::overrideIds; break;
- case 153: ids = &LSslConfiguration::overrideIds; break;
- case 154: ids = &LSslError::overrideIds; break;
- case 155: ids = &LSslKey::overrideIds; break; }}
+ case 103: ids = &LNetworkAddressEntry::overrideIds; break;
+ case 104: ids = &LNetworkCacheMetaData::overrideIds; break;
+ case 105: ids = &LNetworkCookie::overrideIds; break;
+ case 106: ids = &LNetworkInterface::overrideIds; break;
+ case 107: ids = &LNetworkProxy::overrideIds; break;
+ case 108: ids = &LNetworkProxyFactory::overrideIds; break;
+ case 109: ids = &LNetworkProxyQuery::overrideIds; break;
+ case 110: ids = &LNetworkRequest::overrideIds; break;
+ case 152: ids = &LSslCertificate::overrideIds; break;
+ case 153: ids = &LSslCipher::overrideIds; break;
+ case 154: ids = &LSslConfiguration::overrideIds; break;
+ case 155: ids = &LSslError::overrideIds; break;
+ case 156: ids = &LSslKey::overrideIds; break; }}
return ids; }
QT_END_NAMESPACE
diff --git a/src/gen/network/_n_classes.h b/src/gen/network/_n_classes.h
index 02a5436..e3987f1 100644
--- a/src/gen/network/_n_classes.h
+++ b/src/gen/network/_n_classes.h
@@ -45,7 +45,7 @@ public:
};
class LNetworkAddressEntry : public QNetworkAddressEntry {
- friend class N102;
+ friend class N103;
public:
LNetworkAddressEntry(uint u) : unique(u) {}
LNetworkAddressEntry(uint u, const QNetworkAddressEntry& x1) : QNetworkAddressEntry(x1), unique(u) {}
@@ -55,7 +55,7 @@ public:
};
class LNetworkCacheMetaData : public QNetworkCacheMetaData {
- friend class N103;
+ friend class N104;
public:
LNetworkCacheMetaData(uint u) : unique(u) {}
LNetworkCacheMetaData(uint u, const QNetworkCacheMetaData& x1) : QNetworkCacheMetaData(x1), unique(u) {}
@@ -65,7 +65,7 @@ public:
};
class LNetworkCookie : public QNetworkCookie {
- friend class N104;
+ friend class N105;
public:
LNetworkCookie(uint u, const QByteArray& x1 = QByteArray(), const QByteArray& x2 = QByteArray()) : QNetworkCookie(x1, x2), unique(u) {}
LNetworkCookie(uint u, const QNetworkCookie& x1) : QNetworkCookie(x1), unique(u) {}
@@ -75,7 +75,7 @@ public:
};
class LNetworkInterface : public QNetworkInterface {
- friend class N105;
+ friend class N106;
public:
LNetworkInterface(uint u) : unique(u) {}
LNetworkInterface(uint u, const QNetworkInterface& x1) : QNetworkInterface(x1), unique(u) {}
@@ -85,7 +85,7 @@ public:
};
class LNetworkProxy : public QNetworkProxy {
- friend class N106;
+ friend class N107;
public:
LNetworkProxy(uint u) : unique(u) {}
LNetworkProxy(uint u, ProxyType x1, const QString& x2 = QString(), quint16 x3 = 0, const QString& x4 = QString(), const QString& x5 = QString()) : QNetworkProxy(x1, x2, x3, x4, x5), unique(u) {}
@@ -96,18 +96,18 @@ public:
};
class LNetworkProxyFactory : public QNetworkProxyFactory {
- friend class N107;
+ friend class N108;
public:
LNetworkProxyFactory(uint u) : unique(u) {}
static NumList overrideIds;
uint unique;
- QList queryProxy(const QNetworkProxyQuery& x1 = QNetworkProxyQuery()) { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); QList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 461, args, id).value >(); } return ret; }
+ QList queryProxy(const QNetworkProxyQuery& x1 = QNetworkProxyQuery()) { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); QList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 462, args, id).value >(); } return ret; }
};
class LNetworkProxyQuery : public QNetworkProxyQuery {
- friend class N108;
+ friend class N109;
public:
LNetworkProxyQuery(uint u) : unique(u) {}
LNetworkProxyQuery(uint u, const QUrl& x1, QueryType x2 = UrlRequest) : QNetworkProxyQuery(x1, x2), unique(u) {}
@@ -123,7 +123,7 @@ public:
};
class LNetworkRequest : public QNetworkRequest {
- friend class N109;
+ friend class N110;
public:
LNetworkRequest(uint u, const QUrl& x1 = QUrl()) : QNetworkRequest(x1), unique(u) {}
LNetworkRequest(uint u, const QNetworkRequest& x1) : QNetworkRequest(x1), unique(u) {}
@@ -133,7 +133,7 @@ public:
};
class LSslCertificate : public QSslCertificate {
- friend class N151;
+ friend class N152;
public:
LSslCertificate(uint u, const QByteArray& x1 = QByteArray(), QSsl::EncodingFormat x2 = QSsl::Pem) : QSslCertificate(x1, x2), unique(u) {}
LSslCertificate(uint u, const QSslCertificate& x1) : QSslCertificate(x1), unique(u) {}
@@ -143,7 +143,7 @@ public:
};
class LSslCipher : public QSslCipher {
- friend class N152;
+ friend class N153;
public:
LSslCipher(uint u) : unique(u) {}
LSslCipher(uint u, const QString& x1) : QSslCipher(x1), unique(u) {}
@@ -155,7 +155,7 @@ public:
};
class LSslConfiguration : public QSslConfiguration {
- friend class N153;
+ friend class N154;
public:
LSslConfiguration(uint u) : unique(u) {}
LSslConfiguration(uint u, const QSslConfiguration& x1) : QSslConfiguration(x1), unique(u) {}
@@ -165,7 +165,7 @@ public:
};
class LSslError : public QSslError {
- friend class N154;
+ friend class N155;
public:
LSslError(uint u) : unique(u) {}
LSslError(uint u, SslError x1) : QSslError(x1), unique(u) {}
@@ -177,7 +177,7 @@ public:
};
class LSslKey : public QSslKey {
- friend class N155;
+ friend class N156;
public:
LSslKey(uint u) : unique(u) {}
LSslKey(uint u, const QByteArray& x1, QSsl::KeyAlgorithm x2, QSsl::EncodingFormat x3 = QSsl::Pem, QSsl::KeyType x4 = QSsl::PrivateKey, const QByteArray& x5 = QByteArray()) : QSslKey(x1, x2, x3, x4, x5), unique(u) {}
diff --git a/src/gen/network/_n_methods.h b/src/gen/network/_n_methods.h
index 6879aa4..c93aaaa 100644
--- a/src/gen/network/_n_methods.h
+++ b/src/gen/network/_n_methods.h
@@ -71,7 +71,7 @@ public:
Q_INVOKABLE int SlookupHost(const QString& x1, QObject* x2, const char* x3) { return QHostInfo::lookupHost(x1, x2, x3); }
};
-class N102 : public QObject { // QNetworkAddressEntry
+class N103 : public QObject { // QNetworkAddressEntry
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LNetworkAddressEntry(u); }
@@ -87,7 +87,7 @@ public:
Q_INVOKABLE void Mswap(QNetworkAddressEntry* o, QNetworkAddressEntry& x1) { o->swap(x1); }
};
-class N103 : public QObject { // QNetworkCacheMetaData
+class N104 : public QObject { // QNetworkCacheMetaData
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LNetworkCacheMetaData(u); }
@@ -104,7 +104,7 @@ public:
Q_INVOKABLE QUrl Murl(QNetworkCacheMetaData* o) const { return o->url(); }
};
-class N104 : public QObject { // QNetworkCookie
+class N105 : public QObject { // QNetworkCookie
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QByteArray& x1 = QByteArray(), const QByteArray& x2 = QByteArray()) { return new LNetworkCookie(u, x1, x2); }
@@ -131,7 +131,7 @@ public:
Q_INVOKABLE QList SparseCookies(const QByteArray& x1) { return QNetworkCookie::parseCookies(x1); }
};
-class N105 : public QObject { // QNetworkInterface
+class N106 : public QObject { // QNetworkInterface
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LNetworkInterface(u); }
@@ -150,7 +150,7 @@ public:
Q_INVOKABLE QNetworkInterface SinterfaceFromName(const QString& x1) { return QNetworkInterface::interfaceFromName(x1); }
};
-class N106 : public QObject { // QNetworkProxy
+class N107 : public QObject { // QNetworkProxy
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LNetworkProxy(u); }
@@ -181,7 +181,7 @@ public:
Q_INVOKABLE void SsetApplicationProxy(const QNetworkProxy& x1) { QNetworkProxy::setApplicationProxy(x1); }
};
-class N107 : public QObject { // QNetworkProxyFactory
+class N108 : public QObject { // QNetworkProxyFactory
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LNetworkProxyFactory(u); }
@@ -192,7 +192,7 @@ public:
Q_INVOKABLE QList SsystemProxyForQuery(const QNetworkProxyQuery& x1 = QNetworkProxyQuery()) { return QNetworkProxyFactory::systemProxyForQuery(x1); }
};
-class N108 : public QObject { // QNetworkProxyQuery
+class N109 : public QObject { // QNetworkProxyQuery
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LNetworkProxyQuery(u); }
@@ -220,7 +220,7 @@ public:
Q_INVOKABLE QUrl Murl(QNetworkProxyQuery* o) const { return o->url(); }
};
-class N109 : public QObject { // QNetworkRequest
+class N110 : public QObject { // QNetworkRequest
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QUrl& x1 = QUrl()) { return new LNetworkRequest(u, x1); }
@@ -244,7 +244,7 @@ public:
Q_INVOKABLE QUrl Murl(QNetworkRequest* o) const { return o->url(); }
};
-class N151 : public QObject { // QSslCertificate
+class N152 : public QObject { // QSslCertificate
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QByteArray& x1 = QByteArray(), QSsl::EncodingFormat x2 = QSsl::Pem) { return new LSslCertificate(u, x1, x2); }
@@ -276,7 +276,7 @@ public:
Q_INVOKABLE QList Sverify(const QList& x1, const QString& x2 = QString()) { return QSslCertificate::verify(x1, x2); }
};
-class N152 : public QObject { // QSslCipher
+class N153 : public QObject { // QSslCipher
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LSslCipher(u); }
@@ -295,7 +295,7 @@ public:
Q_INVOKABLE int MusedBits(QSslCipher* o) const { return o->usedBits(); }
};
-class N153 : public QObject { // QSslConfiguration
+class N154 : public QObject { // QSslConfiguration
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LSslConfiguration(u); }
@@ -340,7 +340,7 @@ public:
Q_INVOKABLE QList SsystemCaCertificates() { return QSslConfiguration::systemCaCertificates(); }
};
-class N154 : public QObject { // QSslError
+class N155 : public QObject { // QSslError
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LSslError(u); }
@@ -353,7 +353,7 @@ public:
Q_INVOKABLE void Mswap(QSslError* o, QSslError& x1) { o->swap(x1); }
};
-class N155 : public QObject { // QSslKey
+class N156 : public QObject { // QSslKey
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LSslKey(u); }
diff --git a/src/gen/network/_q_classes.h b/src/gen/network/_q_classes.h
index b400d2b..a96a980 100644
--- a/src/gen/network/_q_classes.h
+++ b/src/gen/network/_q_classes.h
@@ -52,7 +52,7 @@ public:
class LLocalServer : public QLocalServer {
Q_OBJECT
- friend class Q116;
+ friend class Q117;
public:
LLocalServer(uint u, QObject* x1 = 0) : QLocalServer(x1), unique(u) {}
@@ -69,7 +69,7 @@ public:
class LLocalSocket : public QLocalSocket {
Q_OBJECT
- friend class Q117;
+ friend class Q118;
public:
LLocalSocket(uint u, QObject* x1 = 0) : QLocalSocket(x1), unique(u) {}
@@ -100,7 +100,7 @@ public:
class LNetworkAccessManager : public QNetworkAccessManager {
Q_OBJECT
- friend class Q132;
+ friend class Q133;
public:
LNetworkAccessManager(uint u, QObject* x1 = 0) : QNetworkAccessManager(x1), unique(u) {}
@@ -115,7 +115,7 @@ public:
class LNetworkCookieJar : public QNetworkCookieJar {
Q_OBJECT
- friend class Q133;
+ friend class Q134;
public:
LNetworkCookieJar(uint u, QObject* x1 = 0) : QNetworkCookieJar(x1), unique(u) {}
@@ -136,7 +136,7 @@ public:
class LNetworkDiskCache : public QNetworkDiskCache {
Q_OBJECT
- friend class Q134;
+ friend class Q135;
public:
LNetworkDiskCache(uint u, QObject* x1 = 0) : QNetworkDiskCache(x1), unique(u) {}
@@ -156,7 +156,7 @@ public:
class LTcpServer : public QTcpServer {
Q_OBJECT
- friend class Q205;
+ friend class Q206;
public:
LTcpServer(uint u, QObject* x1 = 0) : QTcpServer(x1), unique(u) {}
@@ -173,7 +173,7 @@ public:
class LTcpSocket : public QTcpSocket {
Q_OBJECT
- friend class Q206;
+ friend class Q207;
public:
LTcpSocket(uint u, QObject* x1 = 0) : QTcpSocket(x1), unique(u) {}
@@ -212,7 +212,7 @@ public:
class LUdpSocket : public QUdpSocket {
Q_OBJECT
- friend class Q224;
+ friend class Q225;
public:
LUdpSocket(uint u, QObject* x1 = 0) : QUdpSocket(x1), unique(u) {}
diff --git a/src/gen/network/_q_methods.h b/src/gen/network/_q_methods.h
index e82c7b3..e46c1ff 100644
--- a/src/gen/network/_q_methods.h
+++ b/src/gen/network/_q_methods.h
@@ -11,7 +11,7 @@
QT_BEGIN_NAMESPACE
-class Q7 : public Q136 { // QAbstractNetworkCache
+class Q7 : public Q137 { // QAbstractNetworkCache
Q_OBJECT
public:
Q_INVOKABLE qlonglong McacheSize(QAbstractNetworkCache* o) const { return o->cacheSize(); }
@@ -20,7 +20,7 @@ public:
Q_INVOKABLE void MupdateMetaData(QAbstractNetworkCache* o, const QNetworkCacheMetaData& x1) { o->updateMetaData(x1); }
};
-class Q116 : public Q136 { // QLocalServer
+class Q117 : public Q137 { // QLocalServer
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LLocalServer(u, x1); }
@@ -41,7 +41,7 @@ public:
Q_INVOKABLE bool SremoveServer(const QString& x1) { return QLocalServer::removeServer(x1); }
};
-class Q117 : public Q103 { // QLocalSocket
+class Q118 : public Q103 { // QLocalSocket
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LLocalSocket(u, x1); }
@@ -70,7 +70,7 @@ public:
Q_INVOKABLE bool MwaitForReadyRead(QLocalSocket* o, int x1 = 30000) { return o->waitForReadyRead(x1); }
};
-class Q132 : public Q136 { // QNetworkAccessManager
+class Q133 : public Q137 { // QNetworkAccessManager
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LNetworkAccessManager(u, x1); }
@@ -100,7 +100,7 @@ public:
Q_INVOKABLE QStringList MsupportedSchemes(QNetworkAccessManager* o) const { return o->supportedSchemes(); }
};
-class Q133 : public Q136 { // QNetworkCookieJar
+class Q134 : public Q137 { // QNetworkCookieJar
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LNetworkCookieJar(u, x1); }
@@ -113,7 +113,7 @@ public:
Q_INVOKABLE void MsetAllCookies(QNetworkCookieJar* o, const QList& x1) { ((LNetworkCookieJar*)o)->setAllCookies(x1); }
};
-class Q134 : public Q7 { // QNetworkDiskCache
+class Q135 : public Q7 { // QNetworkDiskCache
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LNetworkDiskCache(u, x1); }
@@ -128,7 +128,7 @@ public:
Q_INVOKABLE void MupdateMetaData(QNetworkDiskCache* o, const QNetworkCacheMetaData& x1) { o->updateMetaData(x1); }
};
-class Q135 : public Q103 { // QNetworkReply
+class Q136 : public Q103 { // QNetworkReply
Q_OBJECT
public:
Q_INVOKABLE QVariant Mattribute(QNetworkReply* o, QNetworkRequest::Attribute x1) const { return o->attribute(x1); }
@@ -151,7 +151,7 @@ public:
Q_INVOKABLE void Mclose(QNetworkReply* o) { o->close(); }
};
-class Q205 : public Q136 { // QTcpServer
+class Q206 : public Q137 { // QTcpServer
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTcpServer(u, x1); }
@@ -222,13 +222,13 @@ public:
Q_INVOKABLE bool MwaitForReadyRead(QAbstractSocket* o, int x1 = 30000) { return o->waitForReadyRead(x1); }
};
-class Q206 : public Q12 { // QTcpSocket
+class Q207 : public Q12 { // QTcpSocket
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTcpSocket(u, x1); }
};
-class Q224 : public Q12 { // QUdpSocket
+class Q225 : public Q12 { // QUdpSocket
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LUdpSocket(u, x1); }
diff --git a/src/gen/sql/_ini.cpp b/src/gen/sql/_ini.cpp
index 9931452..eb2247f 100644
--- a/src/gen/sql/_ini.cpp
+++ b/src/gen/sql/_ini.cpp
@@ -18,67 +18,67 @@ NumList LSqlIndex::overrideIds = NumList();
NumList LSqlQuery::overrideIds = NumList();
NumList LSqlRecord::overrideIds = NumList();
NumList LSqlRelation::overrideIds = NumList();
-NumList LSqlResult::overrideIds = NumList() << 332 << 468 << 469 << 459 << 107 << 470 << 471 << 472 << 473 << 474 << 475 << 476 << 477 << 478 << 479 << 480 << 481 << 482 << 483 << 484 << 346 << 485 << 486 << 141;
+NumList LSqlResult::overrideIds = NumList() << 332 << 469 << 470 << 460 << 107 << 471 << 472 << 473 << 474 << 475 << 476 << 477 << 478 << 479 << 480 << 481 << 482 << 483 << 484 << 485 << 346 << 486 << 487 << 141;
void ini() {
static bool _ = false; if(_) return; _ = true;
ini2();
- LObjects::Q[179] = new Q180;
LObjects::Q[180] = new Q181;
LObjects::Q[181] = new Q182;
LObjects::Q[182] = new Q183;
LObjects::Q[183] = new Q184;
- LObjects::N[142] = new N143;
+ LObjects::Q[184] = new Q185;
LObjects::N[143] = new N144;
LObjects::N[144] = new N145;
LObjects::N[145] = new N146;
LObjects::N[146] = new N147;
LObjects::N[147] = new N148;
LObjects::N[148] = new N149;
- LObjects::N[149] = new N150; }
+ LObjects::N[149] = new N150;
+ LObjects::N[150] = new N151; }
const QMetaObject* staticMetaObject(int n) {
const QMetaObject* m = 0;
switch(n) {
- case 180: m = &QSqlDriver::staticMetaObject; break;
- case 181: m = &QSqlQueryModel::staticMetaObject; break;
- case 182: m = &QSqlRelationalDelegate::staticMetaObject; break;
- case 183: m = &QSqlRelationalTableModel::staticMetaObject; break;
- case 184: m = &QSqlTableModel::staticMetaObject; break; }
+ case 181: m = &QSqlDriver::staticMetaObject; break;
+ case 182: m = &QSqlQueryModel::staticMetaObject; break;
+ case 183: m = &QSqlRelationalDelegate::staticMetaObject; break;
+ case 184: m = &QSqlRelationalTableModel::staticMetaObject; break;
+ case 185: m = &QSqlTableModel::staticMetaObject; break; }
return m; }
void deleteNObject(int n, void* p, int gc) {
switch(n) {
- case 143: if(gc) delete (QSqlDatabase*)p; else delete (LSqlDatabase*)p; break;
- case 144: if(gc) delete (QSqlError*)p; else delete (LSqlError*)p; break;
- case 145: if(gc) delete (QSqlField*)p; else delete (LSqlField*)p; break;
- case 146: if(gc) delete (QSqlIndex*)p; else delete (LSqlIndex*)p; break;
- case 147: if(gc) delete (QSqlQuery*)p; else delete (LSqlQuery*)p; break;
- case 148: if(gc) delete (QSqlRecord*)p; else delete (LSqlRecord*)p; break;
- case 149: if(gc) delete (QSqlRelation*)p; else delete (LSqlRelation*)p; break;
- case 150: if(gc) delete (QSqlResult*)p; else delete (LSqlResult*)p; break; }}
+ case 144: if(gc) delete (QSqlDatabase*)p; else delete (LSqlDatabase*)p; break;
+ case 145: if(gc) delete (QSqlError*)p; else delete (LSqlError*)p; break;
+ case 146: if(gc) delete (QSqlField*)p; else delete (LSqlField*)p; break;
+ case 147: if(gc) delete (QSqlIndex*)p; else delete (LSqlIndex*)p; break;
+ case 148: if(gc) delete (QSqlQuery*)p; else delete (LSqlQuery*)p; break;
+ case 149: if(gc) delete (QSqlRecord*)p; else delete (LSqlRecord*)p; break;
+ case 150: if(gc) delete (QSqlRelation*)p; else delete (LSqlRelation*)p; break;
+ case 151: if(gc) delete (QSqlResult*)p; else delete (LSqlResult*)p; break; }}
NumList* overrideFunctions(const QByteArray& name) {
NumList* ids = 0;
int n = LObjects::q_names.value(name, -1);
if(n != -1) {
switch(n) {
- case 180: ids = &LSqlDriver::overrideIds; break;
- case 181: ids = &LSqlQueryModel::overrideIds; break;
- case 182: ids = &LSqlRelationalDelegate::overrideIds; break;
- case 183: ids = &LSqlRelationalTableModel::overrideIds; break;
- case 184: ids = &LSqlTableModel::overrideIds; break; }}
+ case 181: ids = &LSqlDriver::overrideIds; break;
+ case 182: ids = &LSqlQueryModel::overrideIds; break;
+ case 183: ids = &LSqlRelationalDelegate::overrideIds; break;
+ case 184: ids = &LSqlRelationalTableModel::overrideIds; break;
+ case 185: ids = &LSqlTableModel::overrideIds; break; }}
else {
n = LObjects::n_names.value(name);
switch(n) {
- case 143: ids = &LSqlDatabase::overrideIds; break;
- case 144: ids = &LSqlError::overrideIds; break;
- case 145: ids = &LSqlField::overrideIds; break;
- case 146: ids = &LSqlIndex::overrideIds; break;
- case 147: ids = &LSqlQuery::overrideIds; break;
- case 148: ids = &LSqlRecord::overrideIds; break;
- case 149: ids = &LSqlRelation::overrideIds; break;
- case 150: ids = &LSqlResult::overrideIds; break; }}
+ case 144: ids = &LSqlDatabase::overrideIds; break;
+ case 145: ids = &LSqlError::overrideIds; break;
+ case 146: ids = &LSqlField::overrideIds; break;
+ case 147: ids = &LSqlIndex::overrideIds; break;
+ case 148: ids = &LSqlQuery::overrideIds; break;
+ case 149: ids = &LSqlRecord::overrideIds; break;
+ case 150: ids = &LSqlRelation::overrideIds; break;
+ case 151: ids = &LSqlResult::overrideIds; break; }}
return ids; }
QT_END_NAMESPACE
diff --git a/src/gen/sql/_n_classes.h b/src/gen/sql/_n_classes.h
index a056aae..1213672 100644
--- a/src/gen/sql/_n_classes.h
+++ b/src/gen/sql/_n_classes.h
@@ -12,7 +12,7 @@
QT_BEGIN_NAMESPACE
class LSqlDatabase : public QSqlDatabase {
- friend class N143;
+ friend class N144;
public:
LSqlDatabase(uint u) : unique(u) {}
LSqlDatabase(uint u, const QSqlDatabase& x1) : QSqlDatabase(x1), unique(u) {}
@@ -22,7 +22,7 @@ public:
};
class LSqlError : public QSqlError {
- friend class N144;
+ friend class N145;
public:
LSqlError(uint u, const QString& x1 = QString(), const QString& x2 = QString(), ErrorType x3 = NoError, const QString& x4 = QString()) : QSqlError(x1, x2, x3, x4), unique(u) {}
LSqlError(uint u, const QSqlError& x1) : QSqlError(x1), unique(u) {}
@@ -32,7 +32,7 @@ public:
};
class LSqlField : public QSqlField {
- friend class N145;
+ friend class N146;
public:
LSqlField(uint u, const QString& x1 = QString(), QVariant::Type x2 = QVariant::Invalid) : QSqlField(x1, x2), unique(u) {}
LSqlField(uint u, const QSqlField& x1) : QSqlField(x1), unique(u) {}
@@ -42,7 +42,7 @@ public:
};
class LSqlIndex : public QSqlIndex {
- friend class N146;
+ friend class N147;
public:
LSqlIndex(uint u, const QString& x1 = QString(), const QString& x2 = QString()) : QSqlIndex(x1, x2), unique(u) {}
LSqlIndex(uint u, const QSqlIndex& x1) : QSqlIndex(x1), unique(u) {}
@@ -52,7 +52,7 @@ public:
};
class LSqlQuery : public QSqlQuery {
- friend class N147;
+ friend class N148;
public:
LSqlQuery(uint u, QSqlResult* x1) : QSqlQuery(x1), unique(u) {}
LSqlQuery(uint u, const QString& x1 = QString(), QSqlDatabase x2 = QSqlDatabase()) : QSqlQuery(x1, x2), unique(u) {}
@@ -64,7 +64,7 @@ public:
};
class LSqlRecord : public QSqlRecord {
- friend class N148;
+ friend class N149;
public:
LSqlRecord(uint u) : unique(u) {}
LSqlRecord(uint u, const QSqlRecord& x1) : QSqlRecord(x1), unique(u) {}
@@ -74,7 +74,7 @@ public:
};
class LSqlRelation : public QSqlRelation {
- friend class N149;
+ friend class N150;
public:
LSqlRelation(uint u) : unique(u) {}
LSqlRelation(uint u, const QString& x1, const QString& x2, const QString& x3) : QSqlRelation(x1, x2, x3), unique(u) {}
@@ -84,34 +84,34 @@ public:
};
class LSqlResult : public QSqlResult {
- friend class N150;
+ friend class N151;
public:
static NumList overrideIds;
uint unique;
QVariant handle() const { quint64 id = LObjects::override_id(unique, 332); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 332, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::handle(); } return ret; }
- void bindValue(int x1, const QVariant& x2, QSql::ParamType x3) { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 468, 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, 459); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 459, args, id).value(); } return ret; }
+ void bindValue(int x1, const QVariant& x2, QSql::ParamType x3) { quint64 id = LObjects::override_id(unique, 469); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 469, 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, 460); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 460, 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, 470); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 470, args, id).toBool(); } return ret; }
- bool fetchFirst() { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 471, 0, id).toBool(); } return ret; }
- bool fetchLast() { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 472, 0, id).toBool(); } return ret; }
- bool fetchNext() { quint64 id = LObjects::override_id(unique, 473); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 473, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::fetchNext(); } return ret; }
- bool fetchPrevious() { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 474, 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, 475); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 475, args, id).toBool(); } return ret; }
- QVariant lastInsertId() const { quint64 id = LObjects::override_id(unique, 476); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 476, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::lastInsertId(); } return ret; }
- int numRowsAffected() { quint64 id = LObjects::override_id(unique, 477); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 477, 0, id).toInt(); } return ret; }
- bool prepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 478, 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, 479); void* fun = LObjects::overrideFun(id); QSqlRecord ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 479, 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, 480); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 480, args, id).toBool(); } return ret; }
- bool savePrepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 481); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 481, 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, 482); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 482, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setActive(x1); }}
- void setAt(int x1) { quint64 id = LObjects::override_id(unique, 483); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 483, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setAt(x1); }}
- void setForwardOnly(bool x1) { quint64 id = LObjects::override_id(unique, 484); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 484, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setForwardOnly(x1); }}
+ bool fetch(int x1) { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 471, args, id).toBool(); } return ret; }
+ bool fetchFirst() { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 472, 0, id).toBool(); } return ret; }
+ bool fetchLast() { quint64 id = LObjects::override_id(unique, 473); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 473, 0, id).toBool(); } return ret; }
+ bool fetchNext() { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 474, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::fetchNext(); } return ret; }
+ bool fetchPrevious() { quint64 id = LObjects::override_id(unique, 475); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 475, 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, 476); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 476, args, id).toBool(); } return ret; }
+ QVariant lastInsertId() const { quint64 id = LObjects::override_id(unique, 477); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 477, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::lastInsertId(); } return ret; }
+ int numRowsAffected() { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 478, 0, id).toInt(); } return ret; }
+ bool prepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 479); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 479, 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, 480); void* fun = LObjects::overrideFun(id); QSqlRecord ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 480, 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, 481); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 481, args, id).toBool(); } return ret; }
+ bool savePrepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 482); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 482, 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, 483); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 483, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setActive(x1); }}
+ void setAt(int x1) { quint64 id = LObjects::override_id(unique, 484); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 484, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setAt(x1); }}
+ void setForwardOnly(bool x1) { quint64 id = LObjects::override_id(unique, 485); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 485, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setForwardOnly(x1); }}
void setLastError(const QSqlError& x1) { quint64 id = LObjects::override_id(unique, 346); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 346, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setLastError(x1); }}
- void setQuery(const QString& x1) { quint64 id = LObjects::override_id(unique, 485); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 485, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setQuery(x1); }}
- void setSelect(bool x1) { quint64 id = LObjects::override_id(unique, 486); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 486, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setSelect(x1); }}
+ void setQuery(const QString& x1) { quint64 id = LObjects::override_id(unique, 486); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 486, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setQuery(x1); }}
+ void setSelect(bool x1) { quint64 id = LObjects::override_id(unique, 487); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 487, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setSelect(x1); }}
int size() { quint64 id = LObjects::override_id(unique, 141); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 141, 0, id).toInt(); } return ret; }
};
diff --git a/src/gen/sql/_n_methods.h b/src/gen/sql/_n_methods.h
index 64a4f03..5f71137 100644
--- a/src/gen/sql/_n_methods.h
+++ b/src/gen/sql/_n_methods.h
@@ -11,7 +11,7 @@
QT_BEGIN_NAMESPACE
-class N143 : public QObject { // QSqlDatabase
+class N144 : public QObject { // QSqlDatabase
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LSqlDatabase(u); }
@@ -59,7 +59,7 @@ public:
Q_INVOKABLE void SremoveDatabase(const QString& x1) { QSqlDatabase::removeDatabase(x1); }
};
-class N144 : public QObject { // QSqlError
+class N145 : public QObject { // QSqlError
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1 = QString(), const QString& x2 = QString(), QSqlError::ErrorType x3 = QSqlError::NoError, const QString& x4 = QString()) { return new LSqlError(u, x1, x2, x3, x4); }
@@ -72,7 +72,7 @@ public:
Q_INVOKABLE int Mtype(QSqlError* o) const { return o->type(); }
};
-class N145 : public QObject { // QSqlField
+class N146 : public QObject { // QSqlField
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1 = QString(), QVariant::Type x2 = QVariant::Invalid) { return new LSqlField(u, x1, x2); }
@@ -103,7 +103,7 @@ public:
Q_INVOKABLE QVariant Mvalue(QSqlField* o) const { return o->value(); }
};
-class N147 : public QObject { // QSqlQuery
+class N148 : public QObject { // QSqlQuery
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QSqlResult* x1) { return new LSqlQuery(u, x1); }
@@ -150,7 +150,7 @@ public:
Q_INVOKABLE QVariant Mvalue(QSqlQuery* o, const QString& x1) const { return o->value(x1); }
};
-class N148 : public QObject { // QSqlRecord
+class N149 : public QObject { // QSqlRecord
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LSqlRecord(u); }
@@ -183,7 +183,7 @@ public:
Q_INVOKABLE QVariant Mvalue(QSqlRecord* o, const QString& x1) const { return o->value(x1); }
};
-class N149 : public QObject { // QSqlRelation
+class N150 : public QObject { // QSqlRelation
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LSqlRelation(u); }
@@ -194,7 +194,7 @@ public:
Q_INVOKABLE QString MtableName(QSqlRelation* o) const { return o->tableName(); }
};
-class N150 : public QObject { // QSqlResult
+class N151 : public QObject { // QSqlResult
Q_OBJECT
public:
Q_INVOKABLE QVariant Mhandle(QSqlResult* o) const { return o->handle(); }
@@ -221,7 +221,7 @@ public:
Q_INVOKABLE void MresetBindCount(QSqlResult* o) { ((LSqlResult*)o)->resetBindCount(); }
};
-class N146 : public N148 { // QSqlIndex
+class N147 : public N149 { // QSqlIndex
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QString& x1 = QString(), const QString& x2 = QString()) { return new LSqlIndex(u, x1, x2); }
diff --git a/src/gen/sql/_q_classes.h b/src/gen/sql/_q_classes.h
index 0542640..d4e6c95 100644
--- a/src/gen/sql/_q_classes.h
+++ b/src/gen/sql/_q_classes.h
@@ -13,7 +13,7 @@ QT_BEGIN_NAMESPACE
class LSqlDriver : public QSqlDriver {
Q_OBJECT
- friend class Q180;
+ friend class Q181;
public:
LSqlDriver(uint u, QObject* x1 = 0) : QSqlDriver(x1), unique(u) {}
@@ -51,7 +51,7 @@ public:
class LSqlQueryModel : public QSqlQueryModel {
Q_OBJECT
- friend class Q181;
+ friend class Q182;
public:
LSqlQueryModel(uint u, QObject* x1 = 0) : QSqlQueryModel(x1), unique(u) {}
@@ -95,7 +95,7 @@ public:
class LSqlRelationalDelegate : public QSqlRelationalDelegate {
Q_OBJECT
- friend class Q182;
+ friend class Q183;
public:
LSqlRelationalDelegate(uint u, QObject* x1 = 0) : QSqlRelationalDelegate(x1), unique(u) {}
@@ -123,7 +123,7 @@ public:
class LSqlRelationalTableModel : public QSqlRelationalTableModel {
Q_OBJECT
- friend class Q183;
+ friend class Q184;
public:
LSqlRelationalTableModel(uint u, QObject* x1 = 0, QSqlDatabase x2 = QSqlDatabase()) : QSqlRelationalTableModel(x1, x2), unique(u) {}
@@ -180,7 +180,7 @@ public:
class LSqlTableModel : public QSqlTableModel {
Q_OBJECT
- friend class Q184;
+ friend class Q185;
public:
LSqlTableModel(uint u, QObject* x1 = 0, QSqlDatabase x2 = QSqlDatabase()) : QSqlTableModel(x1, x2), unique(u) {}
diff --git a/src/gen/sql/_q_methods.h b/src/gen/sql/_q_methods.h
index 291bdc7..d6bd6fd 100644
--- a/src/gen/sql/_q_methods.h
+++ b/src/gen/sql/_q_methods.h
@@ -11,7 +11,7 @@
QT_BEGIN_NAMESPACE
-class Q180 : public Q136 { // QSqlDriver
+class Q181 : public Q137 { // QSqlDriver
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSqlDriver(u, x1); }
@@ -42,7 +42,7 @@ public:
Q_INVOKABLE bool MunsubscribeFromNotification(QSqlDriver* o, const QString& x1) { return o->unsubscribeFromNotification(x1); }
};
-class Q181 : public Q15 { // QSqlQueryModel
+class Q182 : public Q15 { // QSqlQueryModel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSqlQueryModel(u, x1); }
@@ -65,7 +65,7 @@ public:
Q_INVOKABLE bool MsetHeaderData(QSqlQueryModel* o, int x1, Qt::Orientation x2, const QVariant& x3, int x4 = Qt::EditRole) { return o->setHeaderData(x1, x2, x3, x4); }
};
-class Q182 : public Q106 { // QSqlRelationalDelegate
+class Q183 : public Q107 { // QSqlRelationalDelegate
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSqlRelationalDelegate(u, x1); }
@@ -73,7 +73,7 @@ public:
Q_INVOKABLE void MsetModelData(QSqlRelationalDelegate* o, QWidget* x1, QAbstractItemModel* x2, const QModelIndex& x3) const { o->setModelData(x1, x2, x3); }
};
-class Q184 : public Q181 { // QSqlTableModel
+class Q185 : public Q182 { // QSqlTableModel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0, QSqlDatabase x2 = QSqlDatabase()) { return new LSqlTableModel(u, x1, x2); }
@@ -109,7 +109,7 @@ public:
Q_INVOKABLE void Msort(QSqlTableModel* o, int x1, Qt::SortOrder x2) { o->sort(x1, x2); }
};
-class Q183 : public Q184 { // QSqlRelationalTableModel
+class Q184 : public Q185 { // QSqlRelationalTableModel
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0, QSqlDatabase x2 = QSqlDatabase()) { return new LSqlRelationalTableModel(u, x1, x2); }
diff --git a/src/gen/svg/_ini.cpp b/src/gen/svg/_ini.cpp
index ceac521..532a853 100644
--- a/src/gen/svg/_ini.cpp
+++ b/src/gen/svg/_ini.cpp
@@ -9,27 +9,27 @@ QT_BEGIN_NAMESPACE
NumList LGraphicsSvgItem::overrideIds = NumList() << 260 << 231 << 233;
NumList LSvgRenderer::overrideIds = NumList();
NumList LSvgWidget::overrideIds = NumList() << 25 << 20;
-NumList LSvgGenerator::overrideIds = NumList() << 463;
+NumList LSvgGenerator::overrideIds = NumList() << 464;
void ini() {
static bool _ = false; if(_) return; _ = true;
ini2();
LObjects::Q[81] = new Q82;
- LObjects::Q[193] = new Q194;
LObjects::Q[194] = new Q195;
- LObjects::N[161] = new N162; }
+ LObjects::Q[195] = new Q196;
+ LObjects::N[162] = new N163; }
const QMetaObject* staticMetaObject(int n) {
const QMetaObject* m = 0;
switch(n) {
case 82: m = &QGraphicsSvgItem::staticMetaObject; break;
- case 194: m = &QSvgRenderer::staticMetaObject; break;
- case 195: m = &QSvgWidget::staticMetaObject; break; }
+ case 195: m = &QSvgRenderer::staticMetaObject; break;
+ case 196: m = &QSvgWidget::staticMetaObject; break; }
return m; }
void deleteNObject(int n, void* p, int gc) {
switch(n) {
- case 162: if(gc) delete (QSvgGenerator*)p; else delete (LSvgGenerator*)p; break; }}
+ case 163: if(gc) delete (QSvgGenerator*)p; else delete (LSvgGenerator*)p; break; }}
NumList* overrideFunctions(const QByteArray& name) {
NumList* ids = 0;
@@ -37,12 +37,12 @@ NumList* overrideFunctions(const QByteArray& name) {
if(n != -1) {
switch(n) {
case 82: ids = &LGraphicsSvgItem::overrideIds; break;
- case 194: ids = &LSvgRenderer::overrideIds; break;
- case 195: ids = &LSvgWidget::overrideIds; break; }}
+ case 195: ids = &LSvgRenderer::overrideIds; break;
+ case 196: ids = &LSvgWidget::overrideIds; break; }}
else {
n = LObjects::n_names.value(name);
switch(n) {
- case 162: ids = &LSvgGenerator::overrideIds; break; }}
+ case 163: ids = &LSvgGenerator::overrideIds; break; }}
return ids; }
QT_END_NAMESPACE
diff --git a/src/gen/svg/_n_classes.h b/src/gen/svg/_n_classes.h
index b68e9c4..b93870c 100644
--- a/src/gen/svg/_n_classes.h
+++ b/src/gen/svg/_n_classes.h
@@ -12,14 +12,14 @@
QT_BEGIN_NAMESPACE
class LSvgGenerator : public QSvgGenerator {
- friend class N162;
+ friend class N163;
public:
LSvgGenerator(uint u) : unique(u) {}
static NumList overrideIds;
uint unique;
- int metric(QPaintDevice::PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 463, 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, 464); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 464, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSvgGenerator::metric(x1); } return ret; }
};
QT_END_NAMESPACE
diff --git a/src/gen/svg/_n_methods.h b/src/gen/svg/_n_methods.h
index 42b045b..483104f 100644
--- a/src/gen/svg/_n_methods.h
+++ b/src/gen/svg/_n_methods.h
@@ -11,7 +11,7 @@
QT_BEGIN_NAMESPACE
-class N162 : public N115 { // QSvgGenerator
+class N163 : public N116 { // QSvgGenerator
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LSvgGenerator(u); }
diff --git a/src/gen/svg/_q_classes.h b/src/gen/svg/_q_classes.h
index dfbf34d..910b596 100644
--- a/src/gen/svg/_q_classes.h
+++ b/src/gen/svg/_q_classes.h
@@ -32,7 +32,7 @@ public:
class LSvgRenderer : public QSvgRenderer {
Q_OBJECT
- friend class Q194;
+ friend class Q195;
public:
LSvgRenderer(uint u, QObject* x1 = 0) : QSvgRenderer(x1), unique(u) {}
LSvgRenderer(uint u, const QString& x1, QObject* x2 = 0) : QSvgRenderer(x1, x2), unique(u) {}
@@ -49,7 +49,7 @@ public:
class LSvgWidget : public QSvgWidget {
Q_OBJECT
- friend class Q195;
+ friend class Q196;
public:
LSvgWidget(uint u, QWidget* x1 = 0) : QSvgWidget(x1), unique(u) {}
LSvgWidget(uint u, const QString& x1, QWidget* x2 = 0) : QSvgWidget(x1, x2), unique(u) {}
diff --git a/src/gen/svg/_q_methods.h b/src/gen/svg/_q_methods.h
index af1a03b..f9dba5b 100644
--- a/src/gen/svg/_q_methods.h
+++ b/src/gen/svg/_q_methods.h
@@ -27,7 +27,7 @@ public:
Q_INVOKABLE int Mtype(QGraphicsSvgItem* o) const { return o->type(); }
};
-class Q194 : public Q136 { // QSvgRenderer
+class Q195 : public Q137 { // QSvgRenderer
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSvgRenderer(u, x1); }
@@ -47,7 +47,7 @@ public:
Q_INVOKABLE QRectF MviewBoxF(QSvgRenderer* o) const { return o->viewBoxF(); }
};
-class Q195 : public Q239 { // QSvgWidget
+class Q196 : public Q240 { // QSvgWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LSvgWidget(u, x1); }
diff --git a/src/gen/webkit/_ini.cpp b/src/gen/webkit/_ini.cpp
index 21c38f6..4072a3b 100644
--- a/src/gen/webkit/_ini.cpp
+++ b/src/gen/webkit/_ini.cpp
@@ -23,41 +23,41 @@ void ini() {
static bool _ = false; if(_) return; _ = true;
ini2();
LObjects::Q[86] = new Q87;
- LObjects::Q[232] = new Q233;
LObjects::Q[233] = new Q234;
LObjects::Q[234] = new Q235;
LObjects::Q[235] = new Q236;
LObjects::Q[236] = new Q237;
LObjects::Q[237] = new Q238;
- LObjects::N[207] = new N208;
+ LObjects::Q[238] = new Q239;
LObjects::N[208] = new N209;
LObjects::N[209] = new N210;
LObjects::N[210] = new N211;
LObjects::N[211] = new N212;
LObjects::N[212] = new N213;
LObjects::N[213] = new N214;
- LObjects::N[214] = new N215; }
+ LObjects::N[214] = new N215;
+ LObjects::N[215] = new N216; }
const QMetaObject* staticMetaObject(int n) {
const QMetaObject* m = 0;
switch(n) {
case 87: m = &QGraphicsWebView::staticMetaObject; break;
- case 233: m = &QWebFrame::staticMetaObject; break;
- case 234: m = &QWebHistoryInterface::staticMetaObject; break;
- case 235: m = &QWebInspector::staticMetaObject; break;
- case 236: m = &QWebPage::staticMetaObject; break;
- case 237: m = &QWebPluginFactory::staticMetaObject; break;
- case 238: m = &QWebView::staticMetaObject; break; }
+ case 234: m = &QWebFrame::staticMetaObject; break;
+ case 235: m = &QWebHistoryInterface::staticMetaObject; break;
+ case 236: m = &QWebInspector::staticMetaObject; break;
+ case 237: m = &QWebPage::staticMetaObject; break;
+ case 238: m = &QWebPluginFactory::staticMetaObject; break;
+ case 239: m = &QWebView::staticMetaObject; break; }
return m; }
void deleteNObject(int n, void* p, int gc) {
switch(n) {
- case 208: if(gc) delete (QWebDatabase*)p; else delete (LWebDatabase*)p; break;
- case 209: if(gc) delete (QWebElement*)p; else delete (LWebElement*)p; break;
- case 210: if(gc) delete (QWebElementCollection*)p; else delete (LWebElementCollection*)p; break;
- case 212: if(gc) delete (QWebHistoryItem*)p; else delete (LWebHistoryItem*)p; break;
- case 213: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break;
- case 214: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }}
+ case 209: if(gc) delete (QWebDatabase*)p; else delete (LWebDatabase*)p; break;
+ case 210: if(gc) delete (QWebElement*)p; else delete (LWebElement*)p; break;
+ case 211: if(gc) delete (QWebElementCollection*)p; else delete (LWebElementCollection*)p; break;
+ case 213: if(gc) delete (QWebHistoryItem*)p; else delete (LWebHistoryItem*)p; break;
+ case 214: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break;
+ case 215: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }}
NumList* overrideFunctions(const QByteArray& name) {
NumList* ids = 0;
@@ -65,20 +65,20 @@ NumList* overrideFunctions(const QByteArray& name) {
if(n != -1) {
switch(n) {
case 87: ids = &LGraphicsWebView::overrideIds; break;
- case 234: ids = &LWebHistoryInterface::overrideIds; break;
- case 235: ids = &LWebInspector::overrideIds; break;
- case 236: ids = &LWebPage::overrideIds; break;
- case 237: ids = &LWebPluginFactory::overrideIds; break;
- case 238: ids = &LWebView::overrideIds; break; }}
+ case 235: ids = &LWebHistoryInterface::overrideIds; break;
+ case 236: ids = &LWebInspector::overrideIds; break;
+ case 237: ids = &LWebPage::overrideIds; break;
+ case 238: ids = &LWebPluginFactory::overrideIds; break;
+ case 239: ids = &LWebView::overrideIds; break; }}
else {
n = LObjects::n_names.value(name);
switch(n) {
- case 208: ids = &LWebDatabase::overrideIds; break;
- case 209: ids = &LWebElement::overrideIds; break;
- case 210: ids = &LWebElementCollection::overrideIds; break;
- case 212: ids = &LWebHistoryItem::overrideIds; break;
- case 213: ids = &LWebHitTestResult::overrideIds; break;
- case 214: ids = &LWebSecurityOrigin::overrideIds; break; }}
+ case 209: ids = &LWebDatabase::overrideIds; break;
+ case 210: ids = &LWebElement::overrideIds; break;
+ case 211: ids = &LWebElementCollection::overrideIds; break;
+ case 213: ids = &LWebHistoryItem::overrideIds; break;
+ case 214: ids = &LWebHitTestResult::overrideIds; break;
+ case 215: ids = &LWebSecurityOrigin::overrideIds; break; }}
return ids; }
QT_END_NAMESPACE
diff --git a/src/gen/webkit/_n_classes.h b/src/gen/webkit/_n_classes.h
index d873ae2..477bc21 100644
--- a/src/gen/webkit/_n_classes.h
+++ b/src/gen/webkit/_n_classes.h
@@ -14,7 +14,7 @@ QT_BEGIN_NAMESPACE
typedef QList NumList;
class LWebDatabase : public QWebDatabase {
- friend class N208;
+ friend class N209;
public:
LWebDatabase(uint u, const QWebDatabase& x1) : QWebDatabase(x1), unique(u) {}
@@ -23,7 +23,7 @@ public:
};
class LWebElement : public QWebElement {
- friend class N209;
+ friend class N210;
public:
LWebElement(uint u) : unique(u) {}
LWebElement(uint u, const QWebElement& x1) : QWebElement(x1), unique(u) {}
@@ -33,7 +33,7 @@ public:
};
class LWebElementCollection : public QWebElementCollection {
- friend class N210;
+ friend class N211;
public:
LWebElementCollection(uint u) : unique(u) {}
LWebElementCollection(uint u, const QWebElement& x1, const QString& x2) : QWebElementCollection(x1, x2), unique(u) {}
@@ -44,7 +44,7 @@ public:
};
class LWebHistoryItem : public QWebHistoryItem {
- friend class N212;
+ friend class N213;
public:
LWebHistoryItem(uint u, const QWebHistoryItem& x1) : QWebHistoryItem(x1), unique(u) {}
@@ -53,7 +53,7 @@ public:
};
class LWebHitTestResult : public QWebHitTestResult {
- friend class N213;
+ friend class N214;
public:
LWebHitTestResult(uint u) : unique(u) {}
LWebHitTestResult(uint u, const QWebHitTestResult& x1) : QWebHitTestResult(x1), unique(u) {}
@@ -63,7 +63,7 @@ public:
};
class LWebSecurityOrigin : public QWebSecurityOrigin {
- friend class N214;
+ friend class N215;
public:
LWebSecurityOrigin(uint u, const QUrl& x1) : QWebSecurityOrigin(x1), unique(u) {}
LWebSecurityOrigin(uint u, const QWebSecurityOrigin& x1) : QWebSecurityOrigin(x1), unique(u) {}
diff --git a/src/gen/webkit/_n_methods.h b/src/gen/webkit/_n_methods.h
index 45d2831..deb16e5 100644
--- a/src/gen/webkit/_n_methods.h
+++ b/src/gen/webkit/_n_methods.h
@@ -11,7 +11,7 @@
QT_BEGIN_NAMESPACE
-class N208 : public QObject { // QWebDatabase
+class N209 : public QObject { // QWebDatabase
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QWebDatabase& x1) { return new LWebDatabase(u, x1); }
@@ -25,7 +25,7 @@ public:
Q_INVOKABLE void SremoveDatabase(const QWebDatabase& x1) { QWebDatabase::removeDatabase(x1); }
};
-class N209 : public QObject { // QWebElement
+class N210 : public QObject { // QWebElement
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LWebElement(u); }
@@ -93,7 +93,7 @@ public:
Q_INVOKABLE QWebFrame* MwebFrame(QWebElement* o) const { return o->webFrame(); }
};
-class N210 : public QObject { // QWebElementCollection
+class N211 : public QObject { // QWebElementCollection
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LWebElementCollection(u); }
@@ -107,7 +107,7 @@ public:
Q_INVOKABLE QList MtoList(QWebElementCollection* o) const { return o->toList(); }
};
-class N211 : public QObject { // QWebHistory
+class N212 : public QObject { // QWebHistory
Q_OBJECT
public:
Q_INVOKABLE void Mback(QWebHistory* o) { o->back(); }
@@ -129,7 +129,7 @@ public:
Q_INVOKABLE void MsetMaximumItemCount(QWebHistory* o, int x1) { o->setMaximumItemCount(x1); }
};
-class N212 : public QObject { // QWebHistoryItem
+class N213 : public QObject { // QWebHistoryItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QWebHistoryItem& x1) { return new LWebHistoryItem(u, x1); }
@@ -143,7 +143,7 @@ public:
Q_INVOKABLE QVariant MuserData(QWebHistoryItem* o) const { return o->userData(); }
};
-class N213 : public QObject { // QWebHitTestResult
+class N214 : public QObject { // QWebHitTestResult
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u) { return new LWebHitTestResult(u); }
@@ -168,7 +168,7 @@ public:
Q_INVOKABLE QString Mtitle(QWebHitTestResult* o) const { return o->title(); }
};
-class N214 : public QObject { // QWebSecurityOrigin
+class N215 : public QObject { // QWebSecurityOrigin
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, const QUrl& x1) { return new LWebSecurityOrigin(u, x1); }
@@ -189,7 +189,7 @@ public:
Q_INVOKABLE void SremoveLocalScheme(const QString& x1) { QWebSecurityOrigin::removeLocalScheme(x1); }
};
-class N215 : public QObject { // QWebSettings
+class N216 : public QObject { // QWebSettings
Q_OBJECT
public:
Q_INVOKABLE QString McssMediaType(QWebSettings* o) const { return o->cssMediaType(); }
diff --git a/src/gen/webkit/_q_classes.h b/src/gen/webkit/_q_classes.h
index e7f136e..1c27479 100644
--- a/src/gen/webkit/_q_classes.h
+++ b/src/gen/webkit/_q_classes.h
@@ -73,7 +73,7 @@ public:
class LWebHistoryInterface : public QWebHistoryInterface {
Q_OBJECT
- friend class Q234;
+ friend class Q235;
public:
LWebHistoryInterface(uint u, QObject* x1 = 0) : QWebHistoryInterface(x1), unique(u) {}
@@ -90,7 +90,7 @@ public:
class LWebInspector : public QWebInspector {
Q_OBJECT
- friend class Q235;
+ friend class Q236;
public:
LWebInspector(uint u, QWidget* x1 = 0) : QWebInspector(x1), unique(u) {}
@@ -139,7 +139,7 @@ public:
class LWebPage : public QWebPage {
Q_OBJECT
- friend class Q236;
+ friend class Q237;
public:
LWebPage(uint u, QObject* x1 = 0) : QWebPage(x1), unique(u) {}
@@ -167,7 +167,7 @@ public:
class LWebPluginFactory : public QWebPluginFactory {
Q_OBJECT
- friend class Q237;
+ friend class Q238;
public:
LWebPluginFactory(uint u, QObject* x1 = 0) : QWebPluginFactory(x1), unique(u) {}
@@ -185,7 +185,7 @@ public:
class LWebView : public QWebView {
Q_OBJECT
- friend class Q238;
+ friend class Q239;
public:
LWebView(uint u, QWidget* x1 = 0) : QWebView(x1), unique(u) {}
diff --git a/src/gen/webkit/_q_methods.h b/src/gen/webkit/_q_methods.h
index 9d6b599..b6e9d54 100644
--- a/src/gen/webkit/_q_methods.h
+++ b/src/gen/webkit/_q_methods.h
@@ -11,7 +11,7 @@
QT_BEGIN_NAMESPACE
-class Q233 : public Q136 { // QWebFrame
+class Q234 : public Q137 { // QWebFrame
Q_OBJECT
public:
Q_INVOKABLE void MaddToJavaScriptWindowObject(QWebFrame* o, const QString& x1, QObject* x2, QWebFrame::ValueOwnership x3 = QWebFrame::QtOwnership) { o->addToJavaScriptWindowObject(x1, x2, x3); }
@@ -62,7 +62,7 @@ public:
Q_INVOKABLE bool Mevent(QWebFrame* o, QEvent* x1) { return o->event(x1); }
};
-class Q234 : public Q136 { // QWebHistoryInterface
+class Q235 : public Q137 { // QWebHistoryInterface
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebHistoryInterface(u, x1); }
@@ -72,7 +72,7 @@ public:
Q_INVOKABLE void SsetDefaultInterface(QWebHistoryInterface* x1) { QWebHistoryInterface::setDefaultInterface(x1); }
};
-class Q236 : public Q136 { // QWebPage
+class Q237 : public Q137 { // QWebPage
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebPage(u, x1); }
@@ -126,7 +126,7 @@ public:
Q_INVOKABLE bool Mevent(QWebPage* o, QEvent* x1) { return o->event(x1); }
};
-class Q237 : public Q136 { // QWebPluginFactory
+class Q238 : public Q137 { // QWebPluginFactory
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebPluginFactory(u, x1); }
@@ -173,7 +173,7 @@ public:
Q_INVOKABLE void MupdateGeometry(QGraphicsWebView* o) { o->updateGeometry(); }
};
-class Q235 : public Q239 { // QWebInspector
+class Q236 : public Q240 { // QWebInspector
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LWebInspector(u, x1); }
@@ -183,7 +183,7 @@ public:
Q_INVOKABLE QSize MsizeHint(QWebInspector* o) const { return o->sizeHint(); }
};
-class Q238 : public Q239 { // QWebView
+class Q239 : public Q240 { // QWebView
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LWebView(u, x1); }
diff --git a/src/lisp/all-wrappers-1.lisp b/src/lisp/all-wrappers-1.lisp
index d9e4fd4..6129743 100644
--- a/src/lisp/all-wrappers-1.lisp
+++ b/src/lisp/all-wrappers-1.lisp
@@ -885,6 +885,7 @@
#:|createStroke|
#:|createTextureView|
#:|createUndoAction|
+ #:|createWidget|
#:|createWindowContainer.QWidget|
#:|createdWidgets|
#:|created|
@@ -1198,8 +1199,7 @@
#:|drawImage(QRect...)|
#:|drawImage(QRectF...)|
#:|drawImage(int...)|
- #:|drawImage|
- #:|drawItemPixmap|))
+ #:|drawImage|))
(in-package :eql)
@@ -1209,5 +1209,6 @@
(when (find (qt-object-id (ensure-qt-object object))
'#.(list (qid "QGraphicsSvgItem")
(qid "QGraphicsTextItem")
+ (qid "QGraphicsVideoItem")
(qid "QGraphicsWidget")))
"QGraphicsItem"))
diff --git a/src/lisp/all-wrappers-10.lisp b/src/lisp/all-wrappers-10.lisp
index 1f78def..44ec08f 100644
--- a/src/lisp/all-wrappers-10.lisp
+++ b/src/lisp/all-wrappers-10.lisp
@@ -1,5 +1,8 @@
(in-package :eql)
+(defun |searchingChanged| (object &rest arguments)
+ (%qinvoke-method object nil "searchingChanged" arguments))
+
(defun |searchingFinished| (object &rest arguments)
(%qinvoke-method object nil "searchingFinished" arguments))
@@ -3596,6 +3599,3 @@
(defun |setSpacing| (object &rest arguments)
(%qinvoke-method object nil "setSpacing" arguments))
-
-(defun |setSpanAngle| (object &rest arguments)
- (%qinvoke-method object nil "setSpanAngle" arguments))
diff --git a/src/lisp/all-wrappers-11.lisp b/src/lisp/all-wrappers-11.lisp
index faf157f..5363d4e 100644
--- a/src/lisp/all-wrappers-11.lisp
+++ b/src/lisp/all-wrappers-11.lisp
@@ -1,5 +1,8 @@
(in-package :eql)
+(defun |setSpanAngle| (object &rest arguments)
+ (%qinvoke-method object nil "setSpanAngle" arguments))
+
(defun |setSpan| (object &rest arguments)
(%qinvoke-method object nil "setSpan" arguments))
@@ -3596,6 +3599,3 @@
(defun |windowIcon| (object &rest arguments)
(%qinvoke-method object nil "windowIcon" arguments))
-
-(defun |windowModality| (object &rest arguments)
- (%qinvoke-method object nil "windowModality" arguments))
diff --git a/src/lisp/all-wrappers-12.lisp b/src/lisp/all-wrappers-12.lisp
index a4cc93d..99a5f21 100644
--- a/src/lisp/all-wrappers-12.lisp
+++ b/src/lisp/all-wrappers-12.lisp
@@ -1,5 +1,8 @@
(in-package :eql)
+(defun |windowModality| (object &rest arguments)
+ (%qinvoke-method object nil "windowModality" arguments))
+
(defun |windowOpacity| (object &rest arguments)
(%qinvoke-method object nil "windowOpacity" arguments))
diff --git a/src/lisp/all-wrappers-2.lisp b/src/lisp/all-wrappers-2.lisp
index 9fc9c63..31a29cc 100644
--- a/src/lisp/all-wrappers-2.lisp
+++ b/src/lisp/all-wrappers-2.lisp
@@ -1,5 +1,6 @@
(defpackage :eql
(:export
+ #:|drawItemPixmap|
#:|drawItemText|
#:|drawLine(QLine)|
#:|drawLine(QLineF)|
@@ -1198,5 +1199,4 @@
#:|items(QPolygon...)|
#:|items(QPolygonF)|
#:|items(QPolygonF...)|
- #:|items(QRect)|
- #:|items(QRect...)|))
+ #:|items(QRect)|))
diff --git a/src/lisp/all-wrappers-3.lisp b/src/lisp/all-wrappers-3.lisp
index 808379b..e3addf1 100644
--- a/src/lisp/all-wrappers-3.lisp
+++ b/src/lisp/all-wrappers-3.lisp
@@ -1,5 +1,6 @@
(defpackage :eql
(:export
+ #:|items(QRect...)|
#:|items(QRectF)|
#:|items(QRectF...)|
#:|items(Qt::SortOrder)|
@@ -1198,5 +1199,4 @@
#:|searchBackward|
#:|searchForward|
#:|searchPaths.QDir|
- #:|searchPaths|
- #:|searchingChanged|))
+ #:|searchPaths|))
diff --git a/src/lisp/all-wrappers-4.lisp b/src/lisp/all-wrappers-4.lisp
index 10e7e0a..ac396cd 100644
--- a/src/lisp/all-wrappers-4.lisp
+++ b/src/lisp/all-wrappers-4.lisp
@@ -1,5 +1,6 @@
(defpackage :eql
(:export
+ #:|searchingChanged|
#:|searchingFinished|
#:|searchingStarted|
#:|search|
@@ -1198,5 +1199,4 @@
#:|setSort|
#:|setSourceModel|
#:|setSource|
- #:|setSpacing|
- #:|setSpanAngle|))
+ #:|setSpacing|))
diff --git a/src/lisp/all-wrappers-5.lisp b/src/lisp/all-wrappers-5.lisp
index 2fb9cad..4fd24dd 100644
--- a/src/lisp/all-wrappers-5.lisp
+++ b/src/lisp/all-wrappers-5.lisp
@@ -1,5 +1,6 @@
(defpackage :eql
(:export
+ #:|setSpanAngle|
#:|setSpan|
#:|setSpecialValueText|
#:|setSpeed|
@@ -1198,5 +1199,4 @@
#:|windowIconChanged|
#:|windowIconTextChanged|
#:|windowIconText|
- #:|windowIcon|
- #:|windowModality|))
+ #:|windowIcon|))
diff --git a/src/lisp/all-wrappers-6.lisp b/src/lisp/all-wrappers-6.lisp
index dcefc30..1584356 100644
--- a/src/lisp/all-wrappers-6.lisp
+++ b/src/lisp/all-wrappers-6.lisp
@@ -1,5 +1,6 @@
(defpackage :eql
(:export
+ #:|windowModality|
#:|windowOpacity|
#:|windowPos|
#:|windowRole|
diff --git a/src/lisp/all-wrappers-7.lisp b/src/lisp/all-wrappers-7.lisp
index a31172d..a09d64f 100644
--- a/src/lisp/all-wrappers-7.lisp
+++ b/src/lisp/all-wrappers-7.lisp
@@ -2655,6 +2655,9 @@
(defun |createUndoAction| (object &rest arguments)
(%qinvoke-method object nil "createUndoAction" arguments))
+(defun |createWidget| (object &rest arguments)
+ (%qinvoke-method object nil "createWidget" arguments))
+
(defun |createWindowContainer.QWidget| (&rest arguments)
(%qinvoke-method "QWidget" nil "createWindowContainer" arguments))
@@ -3596,6 +3599,3 @@
(defun |drawImage| (object &rest arguments)
(%qinvoke-method object nil "drawImage" arguments))
-
-(defun |drawItemPixmap| (object &rest arguments)
- (%qinvoke-method object nil "drawItemPixmap" arguments))
diff --git a/src/lisp/all-wrappers-8.lisp b/src/lisp/all-wrappers-8.lisp
index 0a8f6b4..c7b148d 100644
--- a/src/lisp/all-wrappers-8.lisp
+++ b/src/lisp/all-wrappers-8.lisp
@@ -1,5 +1,8 @@
(in-package :eql)
+(defun |drawItemPixmap| (object &rest arguments)
+ (%qinvoke-method object nil "drawItemPixmap" arguments))
+
(defun |drawItemText| (object &rest arguments)
(%qinvoke-method object nil "drawItemText" arguments))
@@ -3596,6 +3599,3 @@
(defun |items(QRect)| (object &rest arguments)
(%qinvoke-method object nil "items(QRect)" arguments))
-
-(defun |items(QRect...)| (object &rest arguments)
- (%qinvoke-method object nil "items(QRect...)" arguments))
diff --git a/src/lisp/all-wrappers-9.lisp b/src/lisp/all-wrappers-9.lisp
index 2cad654..a6adb63 100644
--- a/src/lisp/all-wrappers-9.lisp
+++ b/src/lisp/all-wrappers-9.lisp
@@ -1,5 +1,8 @@
(in-package :eql)
+(defun |items(QRect...)| (object &rest arguments)
+ (%qinvoke-method object nil "items(QRect...)" arguments))
+
(defun |items(QRectF)| (object &rest arguments)
(%qinvoke-method object nil "items(QRectF)" arguments))
@@ -3596,6 +3599,3 @@
(defun |searchPaths| (object &rest arguments)
(%qinvoke-method object nil "searchPaths" arguments))
-
-(defun |searchingChanged| (object &rest arguments)
- (%qinvoke-method object nil "searchingChanged" arguments))
diff --git a/src/lisp/define-all-wrappers.lisp b/src/lisp/define-all-wrappers.lisp
index 527e653..c84467e 100644
--- a/src/lisp/define-all-wrappers.lisp
+++ b/src/lisp/define-all-wrappers.lisp
@@ -152,6 +152,7 @@
~% (when (find (qt-object-id (ensure-qt-object object))~
~% '#.(list (qid \"QGraphicsSvgItem\")~
~% (qid \"QGraphicsTextItem\")~
+ ~% (qid \"QGraphicsVideoItem\")~
~% (qid \"QGraphicsWidget\")))~
~% \"QGraphicsItem\"))~%")))))
(setf definitions (sort (delete-duplicates definitions :test 'string=) 'string<))