diff --git a/doc/auto-doc.htm b/doc/auto-doc.htm index c411305..83dea5b 100644 --- a/doc/auto-doc.htm +++ b/doc/auto-doc.htm @@ -352,9 +352,10 @@ Creates a new Qt object, optionally passing the given arguments to the construct
   (qnew "QWidget")
-  (qnew "QPixmap(int,int)" 50 50) ; constructor
-  (qnew "QLabel" "text" "Readme") ; set property
-  (qnew "QMatrix4x4(qreal...)" 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4)
+  (qnew "QPixmap(int,int)" 50 50)                                           ; providing constructor types
+  (qnew "QLabel" "text" "Readme")                                           ; set properties (any number); can be combined with above
+  (qnew "QMatrix4x4(qreal...)" 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4)             ; abbreviate long type lists
+  (qnew "QSizePolicy(...)" |QSizePolicy.Expanding| |QSizePolicy.Expanding|) ; will work if type unambiguous, and no properties are passed
 


QNEW-INSTANCE* (class-name &rest arguments/properties) diff --git a/examples/8-OpenGL/main-window.lisp b/examples/8-OpenGL/main-window.lisp index c3d2550..e4b6cec 100644 --- a/examples/8-OpenGL/main-window.lisp +++ b/examples/8-OpenGL/main-window.lisp @@ -15,8 +15,7 @@ (defvar *me* (qnew "QMainWindow")) (defvar *pixmap-label* (qnew "QLabel")) (defvar *pixmap-label-area* (qnew "QScrollArea" - "sizePolicy" (qnew "QSizePolicy(QSizePolicy::Policy,QSizePolicy::Policy)" - |QSizePolicy.Ignored| |QSizePolicy.Ignored|) + "sizePolicy" (qnew "QSizePolicy(...)" |QSizePolicy.Ignored| |QSizePolicy.Ignored|) "minimumSize" '(50 50))) (defun ini () @@ -25,9 +24,8 @@ "widgetResizable" t "horizontalScrollBarPolicy" |Qt.ScrollBarAlwaysOff| "verticalScrollBarPolicy" |Qt.ScrollBarAlwaysOff| - "sizePolicy" (qnew "QSizePolicy(QSizePolicy::Policy,QSizePolicy::Policy)" - |QSizePolicy.Ignored| |QSizePolicy.Ignored|) - "minimumSize" (list 50 50))) + "sizePolicy" (qnew "QSizePolicy(...)" |QSizePolicy.Ignored| |QSizePolicy.Ignored|) + "minimumSize" '(50 50))) (central-widget (qnew "QWidget")) (central-layout (qnew "QGridLayout")) (x-slider (create-slider '*x-rotation-changed* 'set-x-rotation)) diff --git a/examples/M-modules/multimedia/video-widget/ui/README.txt b/examples/M-modules/multimedia/video-widget/ui/README.txt new file mode 100644 index 0000000..97232ea --- /dev/null +++ b/examples/M-modules/multimedia/video-widget/ui/README.txt @@ -0,0 +1,3 @@ +Generated (see designer/): + + eql5 -quic video-widget.ui diff --git a/examples/M-modules/multimedia/video-widget/ui/designer/README.txt b/examples/M-modules/multimedia/video-widget/ui/designer/README.txt new file mode 100644 index 0000000..0d3f6be --- /dev/null +++ b/examples/M-modules/multimedia/video-widget/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-widget/ui/designer/video-widget.ui b/examples/M-modules/multimedia/video-widget/ui/designer/video-widget.ui new file mode 100644 index 0000000..be3a055 --- /dev/null +++ b/examples/M-modules/multimedia/video-widget/ui/designer/video-widget.ui @@ -0,0 +1,71 @@ + + + main + + + + 0 + 0 + 400 + 250 + + + + Video Widget + + + + + + + 0 + 1 + + + + + + + + + + Open... + + + + + + + + + + + + + + Qt::Horizontal + + + + + + + + + + + + + + + + + QVideoWidget + QWidget +
qvideowidget.h
+ 1 +
+
+ + +
diff --git a/examples/M-modules/multimedia/video-widget/ui/ui-video-widget.lisp b/examples/M-modules/multimedia/video-widget/ui/ui-video-widget.lisp new file mode 100644 index 0000000..27df59f --- /dev/null +++ b/examples/M-modules/multimedia/video-widget/ui/ui-video-widget.lisp @@ -0,0 +1,72 @@ +;;; THIS FILE IS GENERATED (see 'eql5 -quic') + +(defpackage :ui + (:use :common-lisp :eql) + (:export + ;; all DEFVARs except layouts, spacers + #:*error-label* + #:*main* + #:*open-button* + #:*play-button* + #:*position-slider* + #:*video-widget* + #:ini + #:retranslate-ui + #:show)) + +(in-package :ui) + +(defvar *main*) ; QWidget (main widget) +(defvar *control-layout*) ; QHBoxLayout +(defvar *error-label*) ; QLabel +(defvar *main-layout*) ; QVBoxLayout +(defvar *open-button*) ; QPushButton +(defvar *play-button*) ; QPushButton +(defvar *position-slider*) ; QSlider +(defvar *video-widget*) ; QVideoWidget + +(defun ini (&optional show) + (qlet (sizepolicy) + (let () + (setf *main* (qnew "QWidget")) + (qfun *main* "setObjectName" "main") + (qfun *main* "resize" 400 250) + (setf *main-layout* (qnew "QVBoxLayout(QWidget*)" *main*)) + (qfun *main-layout* "setObjectName" "main_layout") + (setf *video-widget* (qnew "QVideoWidget(QWidget*)" *main*)) + (qfun *video-widget* "setObjectName" "video_widget") + (setf sizepolicy (qnew "QSizePolicy(QSizePolicy::Policy,QSizePolicy::Policy)" |QSizePolicy.Preferred| |QSizePolicy.Preferred|)) + (qfun sizepolicy "setHorizontalStretch" 0) + (qfun sizepolicy "setVerticalStretch" 1) + (qfun sizepolicy "setHeightForWidth" (qfun (qfun *video-widget* "sizePolicy") "hasHeightForWidth")) + (qfun *video-widget* "setSizePolicy" sizepolicy) + (qfun *main-layout* "addWidget" *video-widget*) + (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-widget/video-widget.lisp b/examples/M-modules/multimedia/video-widget/video-widget.lisp new file mode 100644 index 0000000..b55e8f4 --- /dev/null +++ b/examples/M-modules/multimedia/video-widget/video-widget.lisp @@ -0,0 +1,85 @@ +;; port of Qt example "videowidget" (QtMultimediaWidgets) + +#-qt-wrapper-functions ; see README-OPTIONAL.txt +(load (in-home "src/lisp/all-wrappers")) + +(qrequire :multimedia) + +(defpackage :video-widget + (:nicknames :vid) + (:use :common-lisp :eql) + (:export + #:ini)) + +(in-package :video-widget) + +(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)) + +(defun ini () + (ui:ini) + ;; settings + (|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* ui:*video-widget*) + ;; 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 *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 () + (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)))))) + +(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 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/X-extras/calculator.lisp b/examples/X-extras/calculator.lisp index f65029a..293425b 100644 --- a/examples/X-extras/calculator.lisp +++ b/examples/X-extras/calculator.lisp @@ -130,8 +130,7 @@ (flet ((b () (qnew "QToolButton" "minimumSize" '(35 25) - "sizePolicy" #.(qnew "QSizePolicy(QSizePolicy::Policy,QSizePolicy::Policy)" - |QSizePolicy.Expanding| |QSizePolicy.Expanding|)))) + "sizePolicy" #.(qnew "QSizePolicy(...)" |QSizePolicy.Expanding| |QSizePolicy.Expanding|)))) (let* ((layout* (|layout| *main*)) (layout (if (qnull layout*) ; for multiple calls of RUN (qnew "QGridLayout(QWidget*)" *main*) diff --git a/helper/generate.lisp b/helper/generate.lisp index 1e2dd64..b889552 100644 --- a/helper/generate.lisp +++ b/helper/generate.lisp @@ -679,9 +679,7 @@ (when (and c-ret-arg (every (lambda (x) (not (search x c-args))) - +special-typedefs-and-classes+) - (or (not (pure-virtual-p fun class super)) - (new-p obj))) + +special-typedefs-and-classes+)) (format s " Q_INVOKABLE ~A ~A~A(~A~A~A)~A { ~A~A~A~A; }~%" c-ret-arg (if (static-p fun) "S" "M") diff --git a/helper/missing-types.txt b/helper/missing-types.txt index b5b94b8..cbfeb5f 100644 --- a/helper/missing-types.txt +++ b/helper/missing-types.txt @@ -46,8 +46,9 @@ QList QList QList QMarginsF -QMediaContent QMediaControl +QMediaResource +QMediaResourceList QMultiMap QNetworkConfiguration QOpenGLContextGroup diff --git a/helper/my-class-lists/multimedia/n-names.lisp b/helper/my-class-lists/multimedia/n-names.lisp index bdb280a..d164e14 100644 --- a/helper/my-class-lists/multimedia/n-names.lisp +++ b/helper/my-class-lists/multimedia/n-names.lisp @@ -8,6 +8,7 @@ "QCameraInfo" "QCameraViewfinderSettings" "QImageEncoderSettings" + "QMediaContent" "QVideoEncoderSettings" "QVideoFrame" "QVideoSurfaceFormat")) diff --git a/helper/no-static-meta-object.lisp b/helper/no-static-meta-object.lisp index 21d1ad8..e67cb76 100644 --- a/helper/no-static-meta-object.lisp +++ b/helper/no-static-meta-object.lisp @@ -64,6 +64,7 @@ "QMargins" "QMatrix" "QMatrix4x4" + "QMediaContent" "QMetaObject" "QModelIndex" "QNetworkAddressEntry" diff --git a/helper/parsed/n-methods.lisp b/helper/parsed/n-methods.lisp index a1ea417..2227253 100644 --- a/helper/parsed/n-methods.lisp +++ b/helper/parsed/n-methods.lisp @@ -1807,6 +1807,20 @@ "QMatrix4x4 transposed () const" "void viewport ( float , float , float , float , float = 0.0f , float = 1.0f )" "void viewport ( const QRectF & )") + (("QMediaContent" . NIL) + "new QMediaContent ()" + "new QMediaContent ( const QUrl & )" + "new QMediaContent ( const QNetworkRequest & )" + "new QMediaContent ( const QMediaResource & )" + "new QMediaContent ( const QMediaResourceList & )" + "new QMediaContent ( const QMediaContent & )" + "new QMediaContent ( QMediaPlaylist * , const QUrl & = QUrl() , bool = false )" + "QNetworkRequest canonicalRequest () const" + "QMediaResource canonicalResource () const" + "QUrl canonicalUrl () const" + "bool isNull () const" + "QMediaPlaylist * playlist () const" + "QMediaResourceList resources () const") (("QMetaObject" . NIL) "int classInfoCount () const" "int classInfoOffset () const" diff --git a/helper/parsed/n-override.lisp b/helper/parsed/n-override.lisp index 9c1d500..2acab46 100644 --- a/helper/parsed/n-override.lisp +++ b/helper/parsed/n-override.lisp @@ -267,6 +267,7 @@ (("QMargins" . NIL)) (("QMatrix" . NIL)) (("QMatrix4x4" . NIL)) + (("QMediaContent" . NIL)) (("QMetaObject" . NIL)) (("QModelIndex" . NIL)) (("QMouseEvent" . "QInputEvent")) diff --git a/src/ecl_fun.cpp b/src/ecl_fun.cpp index 2ce314b..6a02bbb 100644 --- a/src/ecl_fun.cpp +++ b/src/ecl_fun.cpp @@ -1630,9 +1630,10 @@ cl_object qnew_instance2(cl_object l_name, cl_object l_args) { /// alias: qnew /// Creates a new Qt object, optionally passing the given arguments to the constructor.
Additionally you can pass any number of property/value pairs.
Please note how you can abbreviate long type lists. /// (qnew "QWidget") - /// (qnew "QPixmap(int,int)" 50 50) ; constructor - /// (qnew "QLabel" "text" "Readme") ; set property - /// (qnew "QMatrix4x4(qreal...)" 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4) + /// (qnew "QPixmap(int,int)" 50 50) ; providing constructor types + /// (qnew "QLabel" "text" "Readme") ; set properties (any number); can be combined with above + /// (qnew "QMatrix4x4(qreal...)" 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4) ; abbreviate long type lists + /// (qnew "QSizePolicy(...)" |QSizePolicy.Expanding| |QSizePolicy.Expanding|) ; will work if type unambiguous, and no properties are passed ecl_process_env()->nvalues = 1; static QHash i_constructor; if(ECL_STRINGP(l_name)) { diff --git a/src/gen/_lobjects.cpp b/src/gen/_lobjects.cpp index 50f667c..b98fcfb 100644 --- a/src/gen/_lobjects.cpp +++ b/src/gen/_lobjects.cpp @@ -442,7 +442,7 @@ void LObjects::ini(EQL* e) { eql = e; dynObject = new DynObject; Q = new QObject* [243]; for(int i = 0; i < 243; ++i) { Q[i] = 0; } - N = new QObject* [215]; for(int i = 0; i < 215; ++i) { N[i] = 0; } + N = new QObject* [216]; for(int i = 0; i < 216; ++i) { N[i] = 0; } Q[0] = new Q1; Q[1] = new Q2; Q[2] = new Q3; @@ -717,11 +717,10 @@ void LObjects::ini(EQL* e) { N[91] = new N92; N[92] = new N93; N[93] = new N94; - N[94] = new N95; N[95] = new N96; N[96] = new N97; N[97] = new N98; - N[106] = new N107; + N[98] = new N99; N[107] = new N108; N[108] = new N109; N[109] = new N110; @@ -752,13 +751,13 @@ void LObjects::ini(EQL* e) { N[134] = new N135; N[135] = new N136; N[136] = new N137; - N[150] = new N151; + N[137] = new N138; N[151] = new N152; N[152] = new N153; N[153] = new N154; N[154] = new N155; N[155] = new N156; - N[157] = new N158; + N[156] = new N157; N[158] = new N159; N[159] = new N160; N[160] = new N161; @@ -799,12 +798,13 @@ void LObjects::ini(EQL* e) { N[195] = new N196; N[196] = new N197; N[197] = new N198; - N[209] = new N210; + N[198] = new N199; N[210] = new N211; N[211] = new N212; N[212] = new N213; N[213] = new N214; N[214] = new N215; + N[215] = new N216; q_names["QAbstractAnimation"] = 1; q_names["QAbstractButton"] = 2; q_names["QAbstractItemDelegate"] = 3; @@ -1142,127 +1142,128 @@ void LObjects::ini(EQL* e) { n_names["QMargins"] = 92; n_names["QMatrix"] = 93; n_names["QMatrix4x4"] = 94; - n_names["QMetaObject"] = 95; - n_names["QModelIndex"] = 96; - n_names["QMouseEvent"] = 97; - n_names["QMoveEvent"] = 98; - n_names["QNetworkAddressEntry"] = 99; - n_names["QNetworkCacheMetaData"] = 100; - n_names["QNetworkCookie"] = 101; - n_names["QNetworkInterface"] = 102; - n_names["QNetworkProxy"] = 103; - n_names["QNetworkProxyFactory"] = 104; - n_names["QNetworkProxyQuery"] = 105; - n_names["QNetworkRequest"] = 106; - n_names["QOpenGLPaintDevice"] = 107; - n_names["QOpenGLTexture"] = 108; - n_names["QPagedPaintDevice"] = 109; - n_names["QPaintDevice"] = 110; - n_names["QPaintEvent"] = 111; - n_names["QPainter"] = 112; - n_names["QPainterPath"] = 113; - n_names["QPainterPathStroker"] = 114; - n_names["QPalette"] = 115; - n_names["QPen"] = 116; - n_names["QPersistentModelIndex"] = 117; - n_names["QPicture"] = 118; - n_names["QPixmap"] = 119; - n_names["QPixmapCache"] = 120; - n_names["QPrinter"] = 121; - n_names["QPrinterInfo"] = 122; - n_names["QProcessEnvironment"] = 123; - n_names["QQuaternion"] = 124; - n_names["QRadialGradient"] = 125; - n_names["QReadLocker"] = 126; - n_names["QReadWriteLock"] = 127; - n_names["QRegExp"] = 128; - n_names["QRegion"] = 129; - n_names["QRegularExpression"] = 130; - n_names["QResizeEvent"] = 131; - n_names["QRunnable"] = 132; - n_names["QSemaphore"] = 133; - n_names["QShortcutEvent"] = 134; - n_names["QShowEvent"] = 135; - n_names["QSizePolicy"] = 136; - n_names["QSpacerItem"] = 137; - n_names["QSqlDatabase"] = 138; - n_names["QSqlError"] = 139; - n_names["QSqlField"] = 140; - n_names["QSqlIndex"] = 141; - n_names["QSqlQuery"] = 142; - n_names["QSqlRecord"] = 143; - n_names["QSqlRelation"] = 144; - n_names["QSqlResult"] = 145; - n_names["QSslCertificate"] = 146; - n_names["QSslCipher"] = 147; - n_names["QSslConfiguration"] = 148; - n_names["QSslError"] = 149; - n_names["QSslKey"] = 150; - n_names["QStandardItem"] = 151; - n_names["QStandardPaths"] = 152; - n_names["QStatusTipEvent"] = 153; - n_names["QStyleOption"] = 154; - n_names["QStyleOptionGraphicsItem"] = 155; - n_names["QSurface"] = 156; - n_names["QSvgGenerator"] = 157; - n_names["QSysInfo"] = 158; - n_names["QSystemSemaphore"] = 159; - n_names["QTableWidgetItem"] = 160; - n_names["QTableWidgetSelectionRange"] = 161; - n_names["QTabletEvent"] = 162; - n_names["QTextBlock"] = 163; - n_names["QTextBlockFormat"] = 164; - n_names["QTextBlockUserData"] = 165; - n_names["QTextBoundaryFinder"] = 166; - n_names["QTextCharFormat"] = 167; - n_names["QTextCodec"] = 168; - n_names["QTextCursor"] = 169; - n_names["QTextDecoder"] = 170; - n_names["QTextDocumentFragment"] = 171; - n_names["QTextDocumentWriter"] = 172; - n_names["QTextEncoder"] = 173; - n_names["QTextFormat"] = 174; - n_names["QTextFragment"] = 175; - n_names["QTextFrameFormat"] = 176; - n_names["QTextImageFormat"] = 177; - n_names["QTextLayout"] = 178; - n_names["QTextLength"] = 179; - n_names["QTextLine"] = 180; - n_names["QTextListFormat"] = 181; - n_names["QTextOption"] = 182; - n_names["QTextTableCell"] = 183; - n_names["QTextTableCellFormat"] = 184; - n_names["QTextTableFormat"] = 185; - n_names["QTime"] = 186; - n_names["QTimeZone"] = 187; - n_names["QTimerEvent"] = 188; - n_names["QToolTip"] = 189; - n_names["QTouchEvent"] = 190; - n_names["QTransform"] = 191; - n_names["QTreeWidgetItem"] = 192; - n_names["QUndoCommand"] = 193; - n_names["QUrl"] = 194; - n_names["QVariant"] = 195; - n_names["QVector2D"] = 196; - n_names["QVector3D"] = 197; - n_names["QVector4D"] = 198; - n_names["QVideoEncoderSettings"] = 199; - n_names["QVideoFrame"] = 200; - n_names["QVideoSurfaceFormat"] = 201; - n_names["QWebDatabase"] = 202; - n_names["QWebElement"] = 203; - n_names["QWebElementCollection"] = 204; - n_names["QWebHistory"] = 205; - n_names["QWebHistoryItem"] = 206; - n_names["QWebHitTestResult"] = 207; - n_names["QWebSecurityOrigin"] = 208; - n_names["QWebSettings"] = 209; - n_names["QWhatsThis"] = 210; - n_names["QWhatsThisClickedEvent"] = 211; - n_names["QWheelEvent"] = 212; - n_names["QWidgetItem"] = 213; - n_names["QWindowStateChangeEvent"] = 214; - n_names["QWriteLocker"] = 215; + n_names["QMediaContent"] = 95; + n_names["QMetaObject"] = 96; + n_names["QModelIndex"] = 97; + n_names["QMouseEvent"] = 98; + n_names["QMoveEvent"] = 99; + n_names["QNetworkAddressEntry"] = 100; + n_names["QNetworkCacheMetaData"] = 101; + n_names["QNetworkCookie"] = 102; + n_names["QNetworkInterface"] = 103; + n_names["QNetworkProxy"] = 104; + n_names["QNetworkProxyFactory"] = 105; + n_names["QNetworkProxyQuery"] = 106; + n_names["QNetworkRequest"] = 107; + n_names["QOpenGLPaintDevice"] = 108; + n_names["QOpenGLTexture"] = 109; + n_names["QPagedPaintDevice"] = 110; + n_names["QPaintDevice"] = 111; + n_names["QPaintEvent"] = 112; + n_names["QPainter"] = 113; + n_names["QPainterPath"] = 114; + n_names["QPainterPathStroker"] = 115; + n_names["QPalette"] = 116; + n_names["QPen"] = 117; + n_names["QPersistentModelIndex"] = 118; + n_names["QPicture"] = 119; + n_names["QPixmap"] = 120; + n_names["QPixmapCache"] = 121; + n_names["QPrinter"] = 122; + n_names["QPrinterInfo"] = 123; + n_names["QProcessEnvironment"] = 124; + n_names["QQuaternion"] = 125; + n_names["QRadialGradient"] = 126; + n_names["QReadLocker"] = 127; + n_names["QReadWriteLock"] = 128; + n_names["QRegExp"] = 129; + n_names["QRegion"] = 130; + n_names["QRegularExpression"] = 131; + n_names["QResizeEvent"] = 132; + n_names["QRunnable"] = 133; + n_names["QSemaphore"] = 134; + n_names["QShortcutEvent"] = 135; + n_names["QShowEvent"] = 136; + n_names["QSizePolicy"] = 137; + n_names["QSpacerItem"] = 138; + n_names["QSqlDatabase"] = 139; + n_names["QSqlError"] = 140; + n_names["QSqlField"] = 141; + n_names["QSqlIndex"] = 142; + n_names["QSqlQuery"] = 143; + n_names["QSqlRecord"] = 144; + n_names["QSqlRelation"] = 145; + n_names["QSqlResult"] = 146; + n_names["QSslCertificate"] = 147; + n_names["QSslCipher"] = 148; + n_names["QSslConfiguration"] = 149; + n_names["QSslError"] = 150; + n_names["QSslKey"] = 151; + n_names["QStandardItem"] = 152; + n_names["QStandardPaths"] = 153; + n_names["QStatusTipEvent"] = 154; + n_names["QStyleOption"] = 155; + n_names["QStyleOptionGraphicsItem"] = 156; + n_names["QSurface"] = 157; + n_names["QSvgGenerator"] = 158; + n_names["QSysInfo"] = 159; + n_names["QSystemSemaphore"] = 160; + n_names["QTableWidgetItem"] = 161; + n_names["QTableWidgetSelectionRange"] = 162; + n_names["QTabletEvent"] = 163; + n_names["QTextBlock"] = 164; + n_names["QTextBlockFormat"] = 165; + n_names["QTextBlockUserData"] = 166; + n_names["QTextBoundaryFinder"] = 167; + n_names["QTextCharFormat"] = 168; + n_names["QTextCodec"] = 169; + n_names["QTextCursor"] = 170; + n_names["QTextDecoder"] = 171; + n_names["QTextDocumentFragment"] = 172; + n_names["QTextDocumentWriter"] = 173; + n_names["QTextEncoder"] = 174; + n_names["QTextFormat"] = 175; + n_names["QTextFragment"] = 176; + n_names["QTextFrameFormat"] = 177; + n_names["QTextImageFormat"] = 178; + n_names["QTextLayout"] = 179; + n_names["QTextLength"] = 180; + n_names["QTextLine"] = 181; + n_names["QTextListFormat"] = 182; + n_names["QTextOption"] = 183; + n_names["QTextTableCell"] = 184; + n_names["QTextTableCellFormat"] = 185; + n_names["QTextTableFormat"] = 186; + n_names["QTime"] = 187; + n_names["QTimeZone"] = 188; + n_names["QTimerEvent"] = 189; + n_names["QToolTip"] = 190; + n_names["QTouchEvent"] = 191; + n_names["QTransform"] = 192; + n_names["QTreeWidgetItem"] = 193; + n_names["QUndoCommand"] = 194; + n_names["QUrl"] = 195; + n_names["QVariant"] = 196; + n_names["QVector2D"] = 197; + n_names["QVector3D"] = 198; + n_names["QVector4D"] = 199; + n_names["QVideoEncoderSettings"] = 200; + n_names["QVideoFrame"] = 201; + n_names["QVideoSurfaceFormat"] = 202; + n_names["QWebDatabase"] = 203; + n_names["QWebElement"] = 204; + n_names["QWebElementCollection"] = 205; + n_names["QWebHistory"] = 206; + n_names["QWebHistoryItem"] = 207; + n_names["QWebHitTestResult"] = 208; + n_names["QWebSecurityOrigin"] = 209; + n_names["QWebSettings"] = 210; + n_names["QWhatsThis"] = 211; + n_names["QWhatsThisClickedEvent"] = 212; + n_names["QWheelEvent"] = 213; + n_names["QWidgetItem"] = 214; + n_names["QWindowStateChangeEvent"] = 215; + n_names["QWriteLocker"] = 216; override_function_ids["duration()"] = 1; override_function_ids["updateCurrentTime(int)"] = 2; override_function_ids["updateDirection(QAbstractAnimation::Direction)"] = 3; @@ -2264,7 +2265,7 @@ void LObjects::ini(EQL* e) { nNames = n_names.keys(); }} quint64 LObjects::override_id(uint unique, int id) { - return (214 * (quint64)unique + id); } + return (215 * (quint64)unique + id); } void* LObjects::overrideFun(quint64 id) { return override_lisp_functions.value(id, 0); } @@ -2279,31 +2280,31 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) { n = -LObjects::n_names.value(name, 0); }} const QMetaObject* m = 0; switch(n) { - case -214: m = &QWindowStateChangeEvent::staticMetaObject; break; - case -212: m = &QWheelEvent::staticMetaObject; break; - case -211: m = &QWhatsThisClickedEvent::staticMetaObject; break; - case -190: m = &QTouchEvent::staticMetaObject; break; - case -188: m = &QTimerEvent::staticMetaObject; break; - case -185: m = &QTextTableFormat::staticMetaObject; break; - case -184: m = &QTextTableCellFormat::staticMetaObject; break; - case -181: m = &QTextListFormat::staticMetaObject; break; - case -177: m = &QTextImageFormat::staticMetaObject; break; - case -176: m = &QTextFrameFormat::staticMetaObject; break; - case -174: m = &QTextFormat::staticMetaObject; break; - case -167: m = &QTextCharFormat::staticMetaObject; break; - case -164: m = &QTextBlockFormat::staticMetaObject; break; - case -162: m = &QTabletEvent::staticMetaObject; break; - case -153: m = &QStatusTipEvent::staticMetaObject; break; - case -136: m = &QSizePolicy::staticMetaObject; break; - case -135: m = &QShowEvent::staticMetaObject; break; - case -134: m = &QShortcutEvent::staticMetaObject; break; - case -131: m = &QResizeEvent::staticMetaObject; break; - case -125: m = &QRadialGradient::staticMetaObject; break; - case -115: m = &QPalette::staticMetaObject; break; - case -112: m = &QPainter::staticMetaObject; break; - case -111: m = &QPaintEvent::staticMetaObject; break; - case -98: m = &QMoveEvent::staticMetaObject; break; - case -97: m = &QMouseEvent::staticMetaObject; break; + case -215: m = &QWindowStateChangeEvent::staticMetaObject; break; + case -213: m = &QWheelEvent::staticMetaObject; break; + case -212: m = &QWhatsThisClickedEvent::staticMetaObject; break; + case -191: m = &QTouchEvent::staticMetaObject; break; + case -189: m = &QTimerEvent::staticMetaObject; break; + case -186: m = &QTextTableFormat::staticMetaObject; break; + case -185: m = &QTextTableCellFormat::staticMetaObject; break; + case -182: m = &QTextListFormat::staticMetaObject; break; + case -178: m = &QTextImageFormat::staticMetaObject; break; + case -177: m = &QTextFrameFormat::staticMetaObject; break; + case -175: m = &QTextFormat::staticMetaObject; break; + case -168: m = &QTextCharFormat::staticMetaObject; break; + case -165: m = &QTextBlockFormat::staticMetaObject; break; + case -163: m = &QTabletEvent::staticMetaObject; break; + case -154: m = &QStatusTipEvent::staticMetaObject; break; + case -137: m = &QSizePolicy::staticMetaObject; break; + case -136: m = &QShowEvent::staticMetaObject; break; + case -135: m = &QShortcutEvent::staticMetaObject; break; + case -132: m = &QResizeEvent::staticMetaObject; break; + case -126: m = &QRadialGradient::staticMetaObject; break; + case -116: m = &QPalette::staticMetaObject; break; + case -113: m = &QPainter::staticMetaObject; break; + case -112: m = &QPaintEvent::staticMetaObject; break; + case -99: m = &QMoveEvent::staticMetaObject; break; + case -98: m = &QMouseEvent::staticMetaObject; break; case -91: m = &QLocale::staticMetaObject; break; case -89: m = &QLinearGradient::staticMetaObject; break; case -85: m = &QKeyEvent::staticMetaObject; break; @@ -2685,89 +2686,89 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 92: if(gc) delete (QMargins*)p; else delete (LMargins*)p; break; case 93: if(gc) delete (QMatrix*)p; else delete (LMatrix*)p; break; case 94: if(gc) delete (QMatrix4x4*)p; else delete (LMatrix4x4*)p; break; - case 95: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break; - case 96: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break; - case 97: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break; - case 98: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break; - case 107: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break; - case 108: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break; - case 111: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break; - case 112: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break; - case 113: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break; - case 114: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break; - case 115: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break; - case 116: if(gc) delete (QPen*)p; else delete (LPen*)p; break; - case 117: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break; - case 118: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break; - case 119: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break; - case 120: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break; - case 121: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break; - case 122: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break; - case 123: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break; - case 124: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break; - case 125: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break; - case 126: if(gc) delete (QReadLocker*)p; else delete (LReadLocker*)p; break; - case 127: if(gc) delete (QReadWriteLock*)p; else delete (LReadWriteLock*)p; break; - case 128: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break; - case 129: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break; - case 130: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break; - case 131: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break; - case 132: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break; - case 133: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break; - case 134: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break; - case 135: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break; - case 136: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break; - case 137: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break; - case 151: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break; - case 153: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break; - case 154: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break; - case 155: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break; - case 159: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break; - case 160: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break; - case 161: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break; - case 162: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break; - case 163: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break; - case 164: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break; - case 165: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break; - case 166: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break; - case 167: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break; - case 168: if(gc) /* nothing */; else delete (LTextCodec*)p; break; - case 169: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break; - case 170: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break; - case 171: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break; - case 172: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break; - case 173: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break; - case 174: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break; - case 175: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break; - case 176: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break; - case 177: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break; - case 178: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break; - case 179: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break; - case 180: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break; - case 181: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break; - case 182: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break; - case 183: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break; - case 184: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break; - case 185: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break; - case 186: if(gc) delete (QTime*)p; else delete (LTime*)p; break; - case 187: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break; - case 188: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break; - case 189: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break; - case 190: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break; - case 191: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break; - case 192: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break; - case 193: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break; - case 194: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break; - case 195: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break; - case 196: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break; - case 197: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break; - case 198: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break; - case 210: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break; - case 211: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break; - case 212: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break; - case 213: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break; - case 214: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break; - case 215: if(gc) delete (QWriteLocker*)p; else delete (LWriteLocker*)p; break; + case 96: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break; + case 97: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break; + case 98: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break; + case 99: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break; + case 108: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break; + case 109: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break; + case 112: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break; + case 113: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break; + case 114: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break; + case 115: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break; + case 116: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break; + case 117: if(gc) delete (QPen*)p; else delete (LPen*)p; break; + case 118: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break; + case 119: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break; + case 120: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break; + case 121: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break; + case 122: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break; + case 123: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break; + case 124: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break; + case 125: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break; + case 126: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break; + case 127: if(gc) delete (QReadLocker*)p; else delete (LReadLocker*)p; break; + case 128: if(gc) delete (QReadWriteLock*)p; else delete (LReadWriteLock*)p; break; + case 129: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break; + case 130: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break; + case 131: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break; + case 132: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break; + case 133: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break; + case 134: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break; + case 135: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break; + case 136: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break; + case 137: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break; + case 138: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break; + case 152: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break; + case 154: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break; + case 155: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break; + case 156: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break; + case 160: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break; + case 161: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break; + case 162: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break; + case 163: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break; + case 164: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break; + case 165: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break; + case 166: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break; + case 167: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break; + case 168: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break; + case 169: if(gc) /* nothing */; else delete (LTextCodec*)p; break; + case 170: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break; + case 171: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break; + case 172: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break; + case 173: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break; + case 174: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break; + case 175: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break; + case 176: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break; + case 177: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break; + case 178: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break; + case 179: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break; + case 180: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break; + case 181: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break; + case 182: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break; + case 183: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break; + case 184: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break; + case 185: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break; + case 186: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break; + case 187: if(gc) delete (QTime*)p; else delete (LTime*)p; break; + case 188: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break; + case 189: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break; + case 190: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break; + case 191: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break; + case 192: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break; + case 193: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break; + case 194: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break; + case 195: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break; + case 196: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break; + case 197: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break; + case 198: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break; + case 199: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break; + case 211: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break; + case 212: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break; + case 213: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break; + case 214: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break; + case 215: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break; + case 216: if(gc) delete (QWriteLocker*)p; else delete (LWriteLocker*)p; break; case 70: case 72: if(deleteNObject_help) { @@ -2779,16 +2780,16 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 16: case 17: case 80: - case 199: + case 95: case 200: case 201: + case 202: if(deleteNObject_multimedia) { deleteNObject_multimedia(n, p, gc); } break; case 11: case 74: case 75: - case 99: case 100: case 101: case 102: @@ -2796,15 +2797,15 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 104: case 105: case 106: - case 146: + case 107: case 147: case 148: case 149: case 150: + case 151: if(deleteNObject_network) { deleteNObject_network(n, p, gc); } break; - case 138: case 139: case 140: case 141: @@ -2812,14 +2813,14 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 143: case 144: case 145: + case 146: if(deleteNObject_sql) { deleteNObject_sql(n, p, gc); } break; - case 157: + case 158: if(deleteNObject_svg) { deleteNObject_svg(n, p, gc); } break; - case 202: case 203: case 204: case 205: @@ -2827,6 +2828,7 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 207: case 208: case 209: + case 210: if(deleteNObject_webkit) { deleteNObject_webkit(n, p, gc); } break; }} @@ -2881,37 +2883,37 @@ const char* LObjects::nObjectSuperClass(const QByteArray& name) { case 82: s = "QEvent"; break; case 85: s = "QInputEvent"; break; case 89: s = "QGradient"; break; - case 97: s = "QInputEvent"; break; - case 98: s = "QEvent"; break; - case 107: s = "QPaintDevice"; break; - case 109: s = "QPaintDevice"; break; - case 111: s = "QEvent"; break; - case 118: s = "QPaintDevice"; break; + case 98: s = "QInputEvent"; break; + case 99: s = "QEvent"; break; + case 108: s = "QPaintDevice"; break; + case 110: s = "QPaintDevice"; break; + case 112: s = "QEvent"; break; case 119: s = "QPaintDevice"; break; - case 121: s = "QPagedPaintDevice"; break; - case 125: s = "QGradient"; break; - case 131: s = "QEvent"; break; - case 134: s = "QEvent"; break; + case 120: s = "QPaintDevice"; break; + case 122: s = "QPagedPaintDevice"; break; + case 126: s = "QGradient"; break; + case 132: s = "QEvent"; break; case 135: s = "QEvent"; break; - case 137: s = "QLayoutItem"; break; - case 141: s = "QSqlRecord"; break; - case 153: s = "QEvent"; break; - case 155: s = "QStyleOption"; break; - case 157: s = "QPaintDevice"; break; - case 162: s = "QInputEvent"; break; - case 164: s = "QTextFormat"; break; - case 167: s = "QTextFormat"; break; - case 176: s = "QTextFormat"; break; - case 177: s = "QTextCharFormat"; break; - case 181: s = "QTextFormat"; break; - case 184: s = "QTextCharFormat"; break; - case 185: s = "QTextFrameFormat"; break; - case 188: s = "QEvent"; break; - case 190: s = "QInputEvent"; break; - case 211: s = "QEvent"; break; - case 212: s = "QInputEvent"; break; - case 213: s = "QLayoutItem"; break; - case 214: s = "QEvent"; break; } + case 136: s = "QEvent"; break; + case 138: s = "QLayoutItem"; break; + case 142: s = "QSqlRecord"; break; + case 154: s = "QEvent"; break; + case 156: s = "QStyleOption"; break; + case 158: s = "QPaintDevice"; break; + case 163: s = "QInputEvent"; break; + case 165: s = "QTextFormat"; break; + case 168: s = "QTextFormat"; break; + case 177: s = "QTextFormat"; break; + case 178: s = "QTextCharFormat"; break; + case 182: s = "QTextFormat"; break; + case 185: s = "QTextCharFormat"; break; + case 186: s = "QTextFrameFormat"; break; + case 189: s = "QEvent"; break; + case 191: s = "QInputEvent"; break; + case 212: s = "QEvent"; break; + case 213: s = "QInputEvent"; break; + case 214: s = "QLayoutItem"; break; + case 215: s = "QEvent"; break; } return s; } StrList LObjects::overrideFunctions(const QByteArray& name) { @@ -3266,89 +3268,89 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 92: ids = LMargins::overrideIds; break; case 93: ids = LMatrix::overrideIds; break; case 94: ids = LMatrix4x4::overrideIds; break; - case 95: ids = LMetaObject::overrideIds; break; - case 96: ids = LModelIndex::overrideIds; break; - case 97: ids = LMouseEvent::overrideIds; break; - case 98: ids = LMoveEvent::overrideIds; break; - case 107: ids = LOpenGLPaintDevice::overrideIds; break; - case 108: ids = LOpenGLTexture::overrideIds; break; - case 111: ids = LPaintEvent::overrideIds; break; - case 112: ids = LPainter::overrideIds; break; - case 113: ids = LPainterPath::overrideIds; break; - case 114: ids = LPainterPathStroker::overrideIds; break; - case 115: ids = LPalette::overrideIds; break; - case 116: ids = LPen::overrideIds; break; - case 117: ids = LPersistentModelIndex::overrideIds; break; - case 118: ids = LPicture::overrideIds; break; - case 119: ids = LPixmap::overrideIds; break; - case 120: ids = LPixmapCache::overrideIds; break; - case 121: ids = LPrinter::overrideIds; break; - case 122: ids = LPrinterInfo::overrideIds; break; - case 123: ids = LProcessEnvironment::overrideIds; break; - case 124: ids = LQuaternion::overrideIds; break; - case 125: ids = LRadialGradient::overrideIds; break; - case 126: ids = LReadLocker::overrideIds; break; - case 127: ids = LReadWriteLock::overrideIds; break; - case 128: ids = LRegExp::overrideIds; break; - case 129: ids = LRegion::overrideIds; break; - case 130: ids = LRegularExpression::overrideIds; break; - case 131: ids = LResizeEvent::overrideIds; break; - case 132: ids = LRunnable::overrideIds; break; - case 133: ids = LSemaphore::overrideIds; break; - case 134: ids = LShortcutEvent::overrideIds; break; - case 135: ids = LShowEvent::overrideIds; break; - case 136: ids = LSizePolicy::overrideIds; break; - case 137: ids = LSpacerItem::overrideIds; break; - case 151: ids = LStandardItem::overrideIds; break; - case 153: ids = LStatusTipEvent::overrideIds; break; - case 154: ids = LStyleOption::overrideIds; break; - case 155: ids = LStyleOptionGraphicsItem::overrideIds; break; - case 159: ids = LSystemSemaphore::overrideIds; break; - case 160: ids = LTableWidgetItem::overrideIds; break; - case 161: ids = LTableWidgetSelectionRange::overrideIds; break; - case 162: ids = LTabletEvent::overrideIds; break; - case 163: ids = LTextBlock::overrideIds; break; - case 164: ids = LTextBlockFormat::overrideIds; break; - case 165: ids = LTextBlockUserData::overrideIds; break; - case 166: ids = LTextBoundaryFinder::overrideIds; break; - case 167: ids = LTextCharFormat::overrideIds; break; - case 168: ids = LTextCodec::overrideIds; break; - case 169: ids = LTextCursor::overrideIds; break; - case 170: ids = LTextDecoder::overrideIds; break; - case 171: ids = LTextDocumentFragment::overrideIds; break; - case 172: ids = LTextDocumentWriter::overrideIds; break; - case 173: ids = LTextEncoder::overrideIds; break; - case 174: ids = LTextFormat::overrideIds; break; - case 175: ids = LTextFragment::overrideIds; break; - case 176: ids = LTextFrameFormat::overrideIds; break; - case 177: ids = LTextImageFormat::overrideIds; break; - case 178: ids = LTextLayout::overrideIds; break; - case 179: ids = LTextLength::overrideIds; break; - case 180: ids = LTextLine::overrideIds; break; - case 181: ids = LTextListFormat::overrideIds; break; - case 182: ids = LTextOption::overrideIds; break; - case 183: ids = LTextTableCell::overrideIds; break; - case 184: ids = LTextTableCellFormat::overrideIds; break; - case 185: ids = LTextTableFormat::overrideIds; break; - case 186: ids = LTime::overrideIds; break; - case 187: ids = LTimeZone::overrideIds; break; - case 188: ids = LTimerEvent::overrideIds; break; - case 189: ids = LToolTip::overrideIds; break; - case 190: ids = LTouchEvent::overrideIds; break; - case 191: ids = LTransform::overrideIds; break; - case 192: ids = LTreeWidgetItem::overrideIds; break; - case 193: ids = LUndoCommand::overrideIds; break; - case 194: ids = LUrl::overrideIds; break; - case 195: ids = LVariant::overrideIds; break; - case 196: ids = LVector2D::overrideIds; break; - case 197: ids = LVector3D::overrideIds; break; - case 198: ids = LVector4D::overrideIds; break; - case 210: ids = LWhatsThis::overrideIds; break; - case 211: ids = LWhatsThisClickedEvent::overrideIds; break; - case 212: ids = LWheelEvent::overrideIds; break; - case 213: ids = LWidgetItem::overrideIds; break; - case 214: ids = LWindowStateChangeEvent::overrideIds; break; - case 215: ids = LWriteLocker::overrideIds; break; + case 96: ids = LMetaObject::overrideIds; break; + case 97: ids = LModelIndex::overrideIds; break; + case 98: ids = LMouseEvent::overrideIds; break; + case 99: ids = LMoveEvent::overrideIds; break; + case 108: ids = LOpenGLPaintDevice::overrideIds; break; + case 109: ids = LOpenGLTexture::overrideIds; break; + case 112: ids = LPaintEvent::overrideIds; break; + case 113: ids = LPainter::overrideIds; break; + case 114: ids = LPainterPath::overrideIds; break; + case 115: ids = LPainterPathStroker::overrideIds; break; + case 116: ids = LPalette::overrideIds; break; + case 117: ids = LPen::overrideIds; break; + case 118: ids = LPersistentModelIndex::overrideIds; break; + case 119: ids = LPicture::overrideIds; break; + case 120: ids = LPixmap::overrideIds; break; + case 121: ids = LPixmapCache::overrideIds; break; + case 122: ids = LPrinter::overrideIds; break; + case 123: ids = LPrinterInfo::overrideIds; break; + case 124: ids = LProcessEnvironment::overrideIds; break; + case 125: ids = LQuaternion::overrideIds; break; + case 126: ids = LRadialGradient::overrideIds; break; + case 127: ids = LReadLocker::overrideIds; break; + case 128: ids = LReadWriteLock::overrideIds; break; + case 129: ids = LRegExp::overrideIds; break; + case 130: ids = LRegion::overrideIds; break; + case 131: ids = LRegularExpression::overrideIds; break; + case 132: ids = LResizeEvent::overrideIds; break; + case 133: ids = LRunnable::overrideIds; break; + case 134: ids = LSemaphore::overrideIds; break; + case 135: ids = LShortcutEvent::overrideIds; break; + case 136: ids = LShowEvent::overrideIds; break; + case 137: ids = LSizePolicy::overrideIds; break; + case 138: ids = LSpacerItem::overrideIds; break; + case 152: ids = LStandardItem::overrideIds; break; + case 154: ids = LStatusTipEvent::overrideIds; break; + case 155: ids = LStyleOption::overrideIds; break; + case 156: ids = LStyleOptionGraphicsItem::overrideIds; break; + case 160: ids = LSystemSemaphore::overrideIds; break; + case 161: ids = LTableWidgetItem::overrideIds; break; + case 162: ids = LTableWidgetSelectionRange::overrideIds; break; + case 163: ids = LTabletEvent::overrideIds; break; + case 164: ids = LTextBlock::overrideIds; break; + case 165: ids = LTextBlockFormat::overrideIds; break; + case 166: ids = LTextBlockUserData::overrideIds; break; + case 167: ids = LTextBoundaryFinder::overrideIds; break; + case 168: ids = LTextCharFormat::overrideIds; break; + case 169: ids = LTextCodec::overrideIds; break; + case 170: ids = LTextCursor::overrideIds; break; + case 171: ids = LTextDecoder::overrideIds; break; + case 172: ids = LTextDocumentFragment::overrideIds; break; + case 173: ids = LTextDocumentWriter::overrideIds; break; + case 174: ids = LTextEncoder::overrideIds; break; + case 175: ids = LTextFormat::overrideIds; break; + case 176: ids = LTextFragment::overrideIds; break; + case 177: ids = LTextFrameFormat::overrideIds; break; + case 178: ids = LTextImageFormat::overrideIds; break; + case 179: ids = LTextLayout::overrideIds; break; + case 180: ids = LTextLength::overrideIds; break; + case 181: ids = LTextLine::overrideIds; break; + case 182: ids = LTextListFormat::overrideIds; break; + case 183: ids = LTextOption::overrideIds; break; + case 184: ids = LTextTableCell::overrideIds; break; + case 185: ids = LTextTableCellFormat::overrideIds; break; + case 186: ids = LTextTableFormat::overrideIds; break; + case 187: ids = LTime::overrideIds; break; + case 188: ids = LTimeZone::overrideIds; break; + case 189: ids = LTimerEvent::overrideIds; break; + case 190: ids = LToolTip::overrideIds; break; + case 191: ids = LTouchEvent::overrideIds; break; + case 192: ids = LTransform::overrideIds; break; + case 193: ids = LTreeWidgetItem::overrideIds; break; + case 194: ids = LUndoCommand::overrideIds; break; + case 195: ids = LUrl::overrideIds; break; + case 196: ids = LVariant::overrideIds; break; + case 197: ids = LVector2D::overrideIds; break; + case 198: ids = LVector3D::overrideIds; break; + case 199: ids = LVector4D::overrideIds; break; + case 211: ids = LWhatsThis::overrideIds; break; + case 212: ids = LWhatsThisClickedEvent::overrideIds; break; + case 213: ids = LWheelEvent::overrideIds; break; + case 214: ids = LWidgetItem::overrideIds; break; + case 215: ids = LWindowStateChangeEvent::overrideIds; break; + case 216: ids = LWriteLocker::overrideIds; break; case 70: case 72: if(override_help) { @@ -3362,9 +3364,10 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 16: case 17: case 80: - case 199: + case 95: case 200: case 201: + case 202: if(override_multimedia) { NumList* _ids = override_multimedia(name); if(_ids) { @@ -3373,7 +3376,6 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 11: case 74: case 75: - case 99: case 100: case 101: case 102: @@ -3381,17 +3383,17 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 104: case 105: case 106: - case 146: + case 107: case 147: case 148: case 149: case 150: + case 151: if(override_network) { NumList* _ids = override_network(name); if(_ids) { ids = *_ids; }} break; - case 138: case 139: case 140: case 141: @@ -3399,18 +3401,18 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 143: case 144: case 145: + case 146: if(override_sql) { NumList* _ids = override_sql(name); if(_ids) { ids = *_ids; }} break; - case 157: + case 158: if(override_svg) { NumList* _ids = override_svg(name); if(_ids) { ids = *_ids; }} break; - case 202: case 203: case 204: case 205: @@ -3418,6 +3420,7 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 207: case 208: case 209: + case 210: 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 1c37704..7f417ac 100644 --- a/src/gen/_main_n_classes.h +++ b/src/gen/_main_n_classes.h @@ -1107,7 +1107,7 @@ public: }; class LMetaObject : public QMetaObject { - friend class N95; + friend class N96; public: static NumList overrideIds; @@ -1115,7 +1115,7 @@ public: }; class LModelIndex : public QModelIndex { - friend class N96; + friend class N97; public: LModelIndex(uint u) : unique(u) {} @@ -1124,7 +1124,7 @@ public: }; class LMouseEvent : public QMouseEvent { - friend class N97; + friend class N98; 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) {} @@ -1135,7 +1135,7 @@ public: }; class LMoveEvent : public QMoveEvent { - friend class N98; + friend class N99; public: LMoveEvent(uint u, const QPoint& x1, const QPoint& x2) : QMoveEvent(x1, x2), unique(u) {} @@ -1144,7 +1144,7 @@ public: }; class LOpenGLPaintDevice : public QOpenGLPaintDevice { - friend class N107; + friend class N108; public: LOpenGLPaintDevice(uint u) : unique(u) {} LOpenGLPaintDevice(uint u, const QSize& x1) : QOpenGLPaintDevice(x1), unique(u) {} @@ -1158,7 +1158,7 @@ public: }; class LOpenGLTexture : public QOpenGLTexture { - friend class N108; + friend class N109; public: LOpenGLTexture(uint u, Target x1) : QOpenGLTexture(x1), unique(u) {} LOpenGLTexture(uint u, const QImage& x1, MipMapGeneration x2 = GenerateMipMaps) : QOpenGLTexture(x1, x2), unique(u) {} @@ -1168,7 +1168,7 @@ public: }; class LPaintEvent : public QPaintEvent { - friend class N111; + friend class N112; public: LPaintEvent(uint u, const QRegion& x1) : QPaintEvent(x1), unique(u) {} LPaintEvent(uint u, const QRect& x1) : QPaintEvent(x1), unique(u) {} @@ -1178,7 +1178,7 @@ public: }; class LPainter : public QPainter { - friend class N112; + friend class N113; public: LPainter(uint u, QImage* x1) : QPainter(x1), unique(u) {} LPainter(uint u, QPdfWriter* x1) : QPainter(x1), unique(u) {} @@ -1193,7 +1193,7 @@ public: }; class LPainterPath : public QPainterPath { - friend class N113; + friend class N114; public: LPainterPath(uint u) : unique(u) {} LPainterPath(uint u, const QPointF& x1) : QPainterPath(x1), unique(u) {} @@ -1204,7 +1204,7 @@ public: }; class LPainterPathStroker : public QPainterPathStroker { - friend class N114; + friend class N115; public: LPainterPathStroker(uint u) : unique(u) {} LPainterPathStroker(uint u, const QPen& x1) : QPainterPathStroker(x1), unique(u) {} @@ -1214,7 +1214,7 @@ public: }; class LPalette : public QPalette { - friend class N115; + friend class N116; public: LPalette(uint u) : unique(u) {} LPalette(uint u, const QColor& x1) : QPalette(x1), unique(u) {} @@ -1228,7 +1228,7 @@ public: }; class LPen : public QPen { - friend class N116; + friend class N117; public: LPen(uint u) : unique(u) {} LPen(uint u, Qt::PenStyle x1) : QPen(x1), unique(u) {} @@ -1241,7 +1241,7 @@ public: }; class LPersistentModelIndex : public QPersistentModelIndex { - friend class N117; + friend class N118; public: LPersistentModelIndex(uint u, const QModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {} LPersistentModelIndex(uint u, const QPersistentModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {} @@ -1251,7 +1251,7 @@ public: }; class LPicture : public QPicture { - friend class N118; + friend class N119; public: LPicture(uint u, int x1 = -1) : QPicture(x1), unique(u) {} LPicture(uint u, const QPicture& x1) : QPicture(x1), unique(u) {} @@ -1264,7 +1264,7 @@ public: }; class LPixmap : public QPixmap { - friend class N119; + friend class N120; public: LPixmap(uint u) : unique(u) {} LPixmap(uint u, int x1, int x2) : QPixmap(x1, x2), unique(u) {} @@ -1279,7 +1279,7 @@ public: }; class LPixmapCache : public QPixmapCache { - friend class N120; + friend class N121; public: static NumList overrideIds; @@ -1287,7 +1287,7 @@ public: }; class LPrinter : public QPrinter { - friend class N121; + friend class N122; public: LPrinter(uint u, PrinterMode x1 = ScreenResolution) : QPrinter(x1), unique(u) {} @@ -1300,7 +1300,7 @@ public: }; class LPrinterInfo : public QPrinterInfo { - friend class N122; + friend class N123; public: static NumList overrideIds; @@ -1308,7 +1308,7 @@ public: }; class LProcessEnvironment : public QProcessEnvironment { - friend class N123; + friend class N124; public: LProcessEnvironment(uint u) : unique(u) {} LProcessEnvironment(uint u, const QProcessEnvironment& x1) : QProcessEnvironment(x1), unique(u) {} @@ -1318,7 +1318,7 @@ public: }; class LQuaternion : public QQuaternion { - friend class N124; + friend class N125; public: LQuaternion(uint u) : unique(u) {} LQuaternion(uint u, float x1, float x2, float x3, float x4) : QQuaternion(x1, x2, x3, x4), unique(u) {} @@ -1330,7 +1330,7 @@ public: }; class LRadialGradient : public QRadialGradient { - friend class N125; + friend class N126; public: LRadialGradient(uint u) : unique(u) {} LRadialGradient(uint u, const QPointF& x1, qreal x2, const QPointF& x3) : QRadialGradient(x1, x2, x3), unique(u) {} @@ -1345,7 +1345,7 @@ public: }; class LReadLocker : public QReadLocker { - friend class N126; + friend class N127; public: LReadLocker(uint u, QReadWriteLock* x1) : QReadLocker(x1), unique(u) {} @@ -1354,7 +1354,7 @@ public: }; class LReadWriteLock : public QReadWriteLock { - friend class N127; + friend class N128; public: LReadWriteLock(uint u, RecursionMode x1 = NonRecursive) : QReadWriteLock(x1), unique(u) {} @@ -1363,7 +1363,7 @@ public: }; class LRegExp : public QRegExp { - friend class N128; + friend class N129; 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) {} @@ -1374,7 +1374,7 @@ public: }; class LRegion : public QRegion { - friend class N129; + friend class N130; 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) {} @@ -1388,7 +1388,7 @@ public: }; class LRegularExpression : public QRegularExpression { - friend class N130; + friend class N131; public: LRegularExpression(uint u) : unique(u) {} LRegularExpression(uint u, const QString& x1, PatternOptions x2 = NoPatternOption) : QRegularExpression(x1, x2), unique(u) {} @@ -1399,7 +1399,7 @@ public: }; class LResizeEvent : public QResizeEvent { - friend class N131; + friend class N132; public: LResizeEvent(uint u, const QSize& x1, const QSize& x2) : QResizeEvent(x1, x2), unique(u) {} @@ -1408,7 +1408,7 @@ public: }; class LRunnable : public QRunnable { - friend class N132; + friend class N133; public: LRunnable(uint u) : unique(u) {} @@ -1419,7 +1419,7 @@ public: }; class LSemaphore : public QSemaphore { - friend class N133; + friend class N134; public: LSemaphore(uint u, int x1 = 0) : QSemaphore(x1), unique(u) {} @@ -1428,7 +1428,7 @@ public: }; class LShortcutEvent : public QShortcutEvent { - friend class N134; + friend class N135; public: LShortcutEvent(uint u, const QKeySequence& x1, int x2, bool x3 = false) : QShortcutEvent(x1, x2, x3), unique(u) {} @@ -1437,7 +1437,7 @@ public: }; class LShowEvent : public QShowEvent { - friend class N135; + friend class N136; public: LShowEvent(uint u) : unique(u) {} @@ -1446,7 +1446,7 @@ public: }; class LSizePolicy : public QSizePolicy { - friend class N136; + friend class N137; public: LSizePolicy(uint u) : unique(u) {} LSizePolicy(uint u, Policy x1, Policy x2, ControlType x3 = DefaultType) : QSizePolicy(x1, x2, x3), unique(u) {} @@ -1456,7 +1456,7 @@ public: }; class LSpacerItem : public QSpacerItem { - friend class N137; + friend class N138; 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) {} @@ -1481,7 +1481,7 @@ public: }; class LStandardItem : public QStandardItem { - friend class N151; + friend class N152; public: LStandardItem(uint u) : unique(u) {} LStandardItem(uint u, const QString& x1) : QStandardItem(x1), unique(u) {} @@ -1498,7 +1498,7 @@ public: }; class LStatusTipEvent : public QStatusTipEvent { - friend class N153; + friend class N154; public: LStatusTipEvent(uint u, const QString& x1) : QStatusTipEvent(x1), unique(u) {} @@ -1507,7 +1507,7 @@ public: }; class LStyleOption : public QStyleOption { - friend class N154; + friend class N155; 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) {} @@ -1517,7 +1517,7 @@ public: }; class LStyleOptionGraphicsItem : public QStyleOptionGraphicsItem { - friend class N155; + friend class N156; public: LStyleOptionGraphicsItem(uint u) : unique(u) {} LStyleOptionGraphicsItem(uint u, const QStyleOptionGraphicsItem& x1) : QStyleOptionGraphicsItem(x1), unique(u) {} @@ -1527,7 +1527,7 @@ public: }; class LSystemSemaphore : public QSystemSemaphore { - friend class N159; + friend class N160; public: LSystemSemaphore(uint u, const QString& x1, int x2 = 0, AccessMode x3 = Open) : QSystemSemaphore(x1, x2, x3), unique(u) {} @@ -1536,7 +1536,7 @@ public: }; class LTableWidgetItem : public QTableWidgetItem { - friend class N160; + friend class N161; 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) {} @@ -1552,7 +1552,7 @@ public: }; class LTableWidgetSelectionRange : public QTableWidgetSelectionRange { - friend class N161; + friend class N162; public: LTableWidgetSelectionRange(uint u) : unique(u) {} LTableWidgetSelectionRange(uint u, int x1, int x2, int x3, int x4) : QTableWidgetSelectionRange(x1, x2, x3, x4), unique(u) {} @@ -1563,7 +1563,7 @@ public: }; class LTabletEvent : public QTabletEvent { - friend class N162; + friend class N163; 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) {} @@ -1572,7 +1572,7 @@ public: }; class LTextBlock : public QTextBlock { - friend class N163; + friend class N164; public: LTextBlock(uint u, const QTextBlock& x1) : QTextBlock(x1), unique(u) {} @@ -1581,7 +1581,7 @@ public: }; class LTextBlockFormat : public QTextBlockFormat { - friend class N164; + friend class N165; public: LTextBlockFormat(uint u) : unique(u) {} @@ -1590,7 +1590,7 @@ public: }; class LTextBlockUserData : public QTextBlockUserData { - friend class N165; + friend class N166; public: static NumList overrideIds; @@ -1598,7 +1598,7 @@ public: }; class LTextBoundaryFinder : public QTextBoundaryFinder { - friend class N166; + friend class N167; public: LTextBoundaryFinder(uint u) : unique(u) {} LTextBoundaryFinder(uint u, const QTextBoundaryFinder& x1) : QTextBoundaryFinder(x1), unique(u) {} @@ -1610,7 +1610,7 @@ public: }; class LTextCharFormat : public QTextCharFormat { - friend class N167; + friend class N168; public: LTextCharFormat(uint u) : unique(u) {} @@ -1619,7 +1619,7 @@ public: }; class LTextCodec : public QTextCodec { - friend class N168; + friend class N169; public: static NumList overrideIds; @@ -1633,7 +1633,7 @@ public: }; class LTextCursor : public QTextCursor { - friend class N169; + friend class N170; public: LTextCursor(uint u) : unique(u) {} LTextCursor(uint u, QTextDocument* x1) : QTextCursor(x1), unique(u) {} @@ -1646,7 +1646,7 @@ public: }; class LTextDecoder : public QTextDecoder { - friend class N170; + friend class N171; 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) {} @@ -1656,7 +1656,7 @@ public: }; class LTextDocumentFragment : public QTextDocumentFragment { - friend class N171; + friend class N172; public: LTextDocumentFragment(uint u) : unique(u) {} LTextDocumentFragment(uint u, const QTextDocument* x1) : QTextDocumentFragment(x1), unique(u) {} @@ -1668,7 +1668,7 @@ public: }; class LTextDocumentWriter : public QTextDocumentWriter { - friend class N172; + friend class N173; public: LTextDocumentWriter(uint u) : unique(u) {} LTextDocumentWriter(uint u, const QString& x1, const QByteArray& x2 = QByteArray()) : QTextDocumentWriter(x1, x2), unique(u) {} @@ -1678,7 +1678,7 @@ public: }; class LTextEncoder : public QTextEncoder { - friend class N173; + friend class N174; 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) {} @@ -1688,7 +1688,7 @@ public: }; class LTextFormat : public QTextFormat { - friend class N174; + friend class N175; public: LTextFormat(uint u) : unique(u) {} LTextFormat(uint u, int x1) : QTextFormat(x1), unique(u) {} @@ -1699,7 +1699,7 @@ public: }; class LTextFragment : public QTextFragment { - friend class N175; + friend class N176; public: LTextFragment(uint u) : unique(u) {} LTextFragment(uint u, const QTextFragment& x1) : QTextFragment(x1), unique(u) {} @@ -1709,7 +1709,7 @@ public: }; class LTextFrameFormat : public QTextFrameFormat { - friend class N176; + friend class N177; public: LTextFrameFormat(uint u) : unique(u) {} @@ -1718,7 +1718,7 @@ public: }; class LTextImageFormat : public QTextImageFormat { - friend class N177; + friend class N178; public: LTextImageFormat(uint u) : unique(u) {} @@ -1727,7 +1727,7 @@ public: }; class LTextLayout : public QTextLayout { - friend class N178; + friend class N179; public: LTextLayout(uint u) : unique(u) {} LTextLayout(uint u, const QString& x1) : QTextLayout(x1), unique(u) {} @@ -1738,7 +1738,7 @@ public: }; class LTextLength : public QTextLength { - friend class N179; + friend class N180; public: LTextLength(uint u) : unique(u) {} LTextLength(uint u, Type x1, qreal x2) : QTextLength(x1, x2), unique(u) {} @@ -1748,7 +1748,7 @@ public: }; class LTextLine : public QTextLine { - friend class N180; + friend class N181; public: LTextLine(uint u) : unique(u) {} @@ -1757,7 +1757,7 @@ public: }; class LTextListFormat : public QTextListFormat { - friend class N181; + friend class N182; public: LTextListFormat(uint u) : unique(u) {} @@ -1766,7 +1766,7 @@ public: }; class LTextOption : public QTextOption { - friend class N182; + friend class N183; public: LTextOption(uint u) : unique(u) {} LTextOption(uint u, Qt::Alignment x1) : QTextOption(x1), unique(u) {} @@ -1777,7 +1777,7 @@ public: }; class LTextTableCell : public QTextTableCell { - friend class N183; + friend class N184; public: LTextTableCell(uint u) : unique(u) {} LTextTableCell(uint u, const QTextTableCell& x1) : QTextTableCell(x1), unique(u) {} @@ -1787,7 +1787,7 @@ public: }; class LTextTableCellFormat : public QTextTableCellFormat { - friend class N184; + friend class N185; public: LTextTableCellFormat(uint u) : unique(u) {} @@ -1796,7 +1796,7 @@ public: }; class LTextTableFormat : public QTextTableFormat { - friend class N185; + friend class N186; public: LTextTableFormat(uint u) : unique(u) {} @@ -1805,7 +1805,7 @@ public: }; class LTime : public QTime { - friend class N186; + friend class N187; 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) {} @@ -1815,7 +1815,7 @@ public: }; class LTimeZone : public QTimeZone { - friend class N187; + friend class N188; public: LTimeZone(uint u) : unique(u) {} LTimeZone(uint u, const QByteArray& x1) : QTimeZone(x1), unique(u) {} @@ -1828,7 +1828,7 @@ public: }; class LTimerEvent : public QTimerEvent { - friend class N188; + friend class N189; public: LTimerEvent(uint u, int x1) : QTimerEvent(x1), unique(u) {} @@ -1837,7 +1837,7 @@ public: }; class LToolTip : public QToolTip { - friend class N189; + friend class N190; public: static NumList overrideIds; @@ -1845,7 +1845,7 @@ public: }; class LTouchEvent : public QTouchEvent { - friend class N190; + friend class N191; 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) {} @@ -1854,7 +1854,7 @@ public: }; class LTransform : public QTransform { - friend class N191; + friend class N192; 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) {} @@ -1866,7 +1866,7 @@ public: }; class LTreeWidgetItem : public QTreeWidgetItem { - friend class N192; + friend class N193; 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) {} @@ -1887,7 +1887,7 @@ public: }; class LUndoCommand : public QUndoCommand { - friend class N193; + friend class N194; 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) {} @@ -1902,7 +1902,7 @@ public: }; class LUrl : public QUrl { - friend class N194; + friend class N195; public: LUrl(uint u) : unique(u) {} LUrl(uint u, const QUrl& x1) : QUrl(x1), unique(u) {} @@ -1913,7 +1913,7 @@ public: }; class LVariant : public QVariant { - friend class N195; + friend class N196; public: LVariant(uint u, const QCursor& x1) : QVariant(x1), unique(u) {} LVariant(uint u) : unique(u) {} @@ -1962,7 +1962,7 @@ public: }; class LVector2D : public QVector2D { - friend class N196; + friend class N197; public: LVector2D(uint u) : unique(u) {} LVector2D(uint u, float x1, float x2) : QVector2D(x1, x2), unique(u) {} @@ -1976,7 +1976,7 @@ public: }; class LVector3D : public QVector3D { - friend class N197; + friend class N198; public: LVector3D(uint u) : unique(u) {} LVector3D(uint u, float x1, float x2, float x3) : QVector3D(x1, x2, x3), unique(u) {} @@ -1991,7 +1991,7 @@ public: }; class LVector4D : public QVector4D { - friend class N198; + friend class N199; public: LVector4D(uint u) : unique(u) {} LVector4D(uint u, float x1, float x2, float x3, float x4) : QVector4D(x1, x2, x3, x4), unique(u) {} @@ -2007,7 +2007,7 @@ public: }; class LWhatsThis : public QWhatsThis { - friend class N210; + friend class N211; public: static NumList overrideIds; @@ -2015,7 +2015,7 @@ public: }; class LWhatsThisClickedEvent : public QWhatsThisClickedEvent { - friend class N211; + friend class N212; public: LWhatsThisClickedEvent(uint u, const QString& x1) : QWhatsThisClickedEvent(x1), unique(u) {} @@ -2024,7 +2024,7 @@ public: }; class LWheelEvent : public QWheelEvent { - friend class N212; + friend class N213; 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) {} @@ -2035,7 +2035,7 @@ public: }; class LWidgetItem : public QWidgetItem { - friend class N213; + friend class N214; public: LWidgetItem(uint u, QWidget* x1) : QWidgetItem(x1), unique(u) {} @@ -2060,7 +2060,7 @@ public: }; class LWindowStateChangeEvent : public QWindowStateChangeEvent { - friend class N214; + friend class N215; public: static NumList overrideIds; @@ -2068,7 +2068,7 @@ public: }; class LWriteLocker : public QWriteLocker { - friend class N215; + friend class N216; 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 2df9d06..f2b9874 100644 --- a/src/gen/_main_n_methods.h +++ b/src/gen/_main_n_methods.h @@ -43,10 +43,21 @@ class EQL_EXPORT N4 : public QObject { // QAccessibleInterface public: Q_INVOKABLE QAccessibleActionInterface* MactionInterface(QAccessibleInterface* o) { return o->actionInterface(); } Q_INVOKABLE QColor MbackgroundColor(QAccessibleInterface* o) const { return o->backgroundColor(); } + Q_INVOKABLE QAccessibleInterface* Mchild(QAccessibleInterface* o, int x1) const { return o->child(x1); } + Q_INVOKABLE QAccessibleInterface* MchildAt(QAccessibleInterface* o, int x1, int x2) const { return o->childAt(x1, x2); } + Q_INVOKABLE int MchildCount(QAccessibleInterface* o) const { return o->childCount(); } Q_INVOKABLE QAccessibleInterface* MfocusChild(QAccessibleInterface* o) const { return o->focusChild(); } Q_INVOKABLE QColor MforegroundColor(QAccessibleInterface* o) const { return o->foregroundColor(); } + Q_INVOKABLE int MindexOfChild(QAccessibleInterface* o, const QAccessibleInterface* x1) const { return o->indexOfChild(x1); } + Q_INVOKABLE bool MisValid(QAccessibleInterface* o) const { return o->isValid(); } + Q_INVOKABLE QObject* Mobject(QAccessibleInterface* o) const { return o->object(); } + Q_INVOKABLE QAccessibleInterface* Mparent(QAccessibleInterface* o) const { return o->parent(); } + Q_INVOKABLE QRect Mrect(QAccessibleInterface* o) const { return o->rect(); } + Q_INVOKABLE int Mrole(QAccessibleInterface* o) const { return o->role(); } + Q_INVOKABLE void MsetText(QAccessibleInterface* o, QAccessible::Text x1, const QString& x2) { o->setText(x1, x2); } Q_INVOKABLE QAccessibleTableCellInterface* MtableCellInterface(QAccessibleInterface* o) { return o->tableCellInterface(); } Q_INVOKABLE QAccessibleTableInterface* MtableInterface(QAccessibleInterface* o) { return o->tableInterface(); } + Q_INVOKABLE QString Mtext(QAccessibleInterface* o, QAccessible::Text x1) const { return o->text(x1); } Q_INVOKABLE QAccessibleTextInterface* MtextInterface(QAccessibleInterface* o) { return o->textInterface(); } Q_INVOKABLE QAccessibleValueInterface* MvalueInterface(QAccessibleInterface* o) { return o->valueInterface(); } Q_INVOKABLE QWindow* Mwindow(QAccessibleInterface* o) const { return o->window(); } @@ -1261,7 +1272,7 @@ public: Q_INVOKABLE void Mviewport(QMatrix4x4* o, const QRectF& x1) { o->viewport(x1); } }; -class EQL_EXPORT N95 : public QObject { // QMetaObject +class EQL_EXPORT N96 : public QObject { // QMetaObject Q_OBJECT public: Q_INVOKABLE int MclassInfoCount(QMetaObject* o) const { return o->classInfoCount(); } @@ -1288,7 +1299,7 @@ public: Q_INVOKABLE QByteArray SnormalizedType(const char* x1) { return QMetaObject::normalizedType(x1); } }; -class EQL_EXPORT N96 : public QObject { // QModelIndex +class EQL_EXPORT N97 : public QObject { // QModelIndex Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LModelIndex(u); } @@ -1303,7 +1314,7 @@ public: Q_INVOKABLE QModelIndex Msibling(QModelIndex* o, int x1, int x2) const { return o->sibling(x1, x2); } }; -class EQL_EXPORT N108 : public QObject { // QOpenGLTexture +class EQL_EXPORT N109 : public QObject { // QOpenGLTexture Q_OBJECT public: Q_INVOKABLE void* C(uint u, QOpenGLTexture::Target x1) { return new LOpenGLTexture(u, x1); } @@ -1386,7 +1397,7 @@ public: Q_INVOKABLE bool ShasFeature(QOpenGLTexture::Feature x1) { return QOpenGLTexture::hasFeature(x1); } }; -class EQL_EXPORT N110 : public QObject { // QPaintDevice +class EQL_EXPORT N111 : public QObject { // QPaintDevice Q_OBJECT public: Q_INVOKABLE int McolorCount(QPaintDevice* o) const { return o->colorCount(); } @@ -1403,7 +1414,7 @@ public: Q_INVOKABLE int MwidthMM(QPaintDevice* o) const { return o->widthMM(); } }; -class EQL_EXPORT N112 : public QObject { // QPainter +class EQL_EXPORT N113 : public QObject { // QPainter Q_OBJECT public: Q_INVOKABLE void* C(uint u, QImage* x1) { return new LPainter(u, x1); } @@ -1600,7 +1611,7 @@ public: Q_INVOKABLE QTransform MworldTransform(QPainter* o) const { return o->worldTransform(); } }; -class EQL_EXPORT N113 : public QObject { // QPainterPath +class EQL_EXPORT N114 : public QObject { // QPainterPath Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPainterPath(u); } @@ -1668,7 +1679,7 @@ public: Q_INVOKABLE QPainterPath Munited(QPainterPath* o, const QPainterPath& x1) const { return o->united(x1); } }; -class EQL_EXPORT N114 : public QObject { // QPainterPathStroker +class EQL_EXPORT N115 : public QObject { // QPainterPathStroker Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPainterPathStroker(u); } @@ -1691,7 +1702,7 @@ public: Q_INVOKABLE qreal Mwidth(QPainterPathStroker* o) const { return o->width(); } }; -class EQL_EXPORT N115 : public QObject { // QPalette +class EQL_EXPORT N116 : public QObject { // QPalette Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPalette(u); } @@ -1738,7 +1749,7 @@ public: Q_INVOKABLE QBrush MwindowText(QPalette* o) const { return o->windowText(); } }; -class EQL_EXPORT N116 : public QObject { // QPen +class EQL_EXPORT N117 : public QObject { // QPen Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPen(u); } @@ -1772,7 +1783,7 @@ public: Q_INVOKABLE qreal MwidthF(QPen* o) const { return o->widthF(); } }; -class EQL_EXPORT N117 : public QObject { // QPersistentModelIndex +class EQL_EXPORT N118 : public QObject { // QPersistentModelIndex Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QModelIndex& x1) { return new LPersistentModelIndex(u, x1); } @@ -1789,7 +1800,7 @@ public: Q_INVOKABLE void Mswap(QPersistentModelIndex* o, QPersistentModelIndex& x1) { o->swap(x1); } }; -class EQL_EXPORT N120 : public QObject { // QPixmapCache +class EQL_EXPORT N121 : public QObject { // QPixmapCache Q_OBJECT public: Q_INVOKABLE int ScacheLimit() { return QPixmapCache::cacheLimit(); } @@ -1800,7 +1811,7 @@ public: Q_INVOKABLE void SsetCacheLimit(int x1) { QPixmapCache::setCacheLimit(x1); } }; -class EQL_EXPORT N122 : public QObject { // QPrinterInfo +class EQL_EXPORT N123 : public QObject { // QPrinterInfo Q_OBJECT public: Q_INVOKABLE int MdefaultDuplexMode(QPrinterInfo* o) const { return o->defaultDuplexMode(); } @@ -1823,7 +1834,7 @@ public: Q_INVOKABLE QString SdefaultPrinterName() { return QPrinterInfo::defaultPrinterName(); } }; -class EQL_EXPORT N123 : public QObject { // QProcessEnvironment +class EQL_EXPORT N124 : public QObject { // QProcessEnvironment Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LProcessEnvironment(u); } @@ -1841,7 +1852,7 @@ public: Q_INVOKABLE QProcessEnvironment SsystemEnvironment() { return QProcessEnvironment::systemEnvironment(); } }; -class EQL_EXPORT N124 : public QObject { // QQuaternion +class EQL_EXPORT N125 : public QObject { // QQuaternion Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LQuaternion(u); } @@ -1882,7 +1893,7 @@ public: Q_INVOKABLE QQuaternion Sslerp(const QQuaternion& x1, const QQuaternion& x2, float x3) { return QQuaternion::slerp(x1, x2, x3); } }; -class EQL_EXPORT N126 : public QObject { // QReadLocker +class EQL_EXPORT N127 : public QObject { // QReadLocker Q_OBJECT public: Q_INVOKABLE void* C(uint u, QReadWriteLock* x1) { return new LReadLocker(u, x1); } @@ -1891,7 +1902,7 @@ public: Q_INVOKABLE void Munlock(QReadLocker* o) { o->unlock(); } }; -class EQL_EXPORT N127 : public QObject { // QReadWriteLock +class EQL_EXPORT N128 : public QObject { // QReadWriteLock Q_OBJECT public: Q_INVOKABLE void* C(uint u, QReadWriteLock::RecursionMode x1 = QReadWriteLock::NonRecursive) { return new LReadWriteLock(u, x1); } @@ -1904,7 +1915,7 @@ public: Q_INVOKABLE void Munlock(QReadWriteLock* o) { o->unlock(); } }; -class EQL_EXPORT N128 : public QObject { // QRegExp +class EQL_EXPORT N129 : public QObject { // QRegExp Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRegExp(u); } @@ -1933,7 +1944,7 @@ public: Q_INVOKABLE QString Sescape(const QString& x1) { return QRegExp::escape(x1); } }; -class EQL_EXPORT N129 : public QObject { // QRegion +class EQL_EXPORT N130 : public QObject { // QRegion Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRegion(u); } @@ -1965,7 +1976,7 @@ public: Q_INVOKABLE QRegion Mxored(QRegion* o, const QRegion& x1) const { return o->xored(x1); } }; -class EQL_EXPORT N130 : public QObject { // QRegularExpression +class EQL_EXPORT N131 : public QObject { // QRegularExpression Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRegularExpression(u); } @@ -1989,7 +2000,7 @@ public: Q_INVOKABLE QString Sescape(const QString& x1) { return QRegularExpression::escape(x1); } }; -class EQL_EXPORT N132 : public QObject { // QRunnable +class EQL_EXPORT N133 : public QObject { // QRunnable Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRunnable(u); } @@ -1998,7 +2009,7 @@ public: Q_INVOKABLE void MsetAutoDelete(QRunnable* o, bool x1) { o->setAutoDelete(x1); } }; -class EQL_EXPORT N133 : public QObject { // QSemaphore +class EQL_EXPORT N134 : public QObject { // QSemaphore Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = 0) { return new LSemaphore(u, x1); } @@ -2009,7 +2020,7 @@ public: Q_INVOKABLE bool MtryAcquire(QSemaphore* o, int x1, int x2) { return o->tryAcquire(x1, x2); } }; -class EQL_EXPORT N136 : public QObject { // QSizePolicy +class EQL_EXPORT N137 : public QObject { // QSizePolicy Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSizePolicy(u); } @@ -2034,7 +2045,7 @@ public: Q_INVOKABLE int MverticalStretch(QSizePolicy* o) const { return o->verticalStretch(); } }; -class EQL_EXPORT N151 : public QObject { // QStandardItem +class EQL_EXPORT N152 : public QObject { // QStandardItem Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LStandardItem(u); } @@ -2121,7 +2132,7 @@ public: Q_INVOKABLE void MemitDataChanged(QStandardItem* o) { ((LStandardItem*)o)->emitDataChanged(); } }; -class EQL_EXPORT N152 : public QObject { // QStandardPaths +class EQL_EXPORT N153 : public QObject { // QStandardPaths Q_OBJECT public: Q_INVOKABLE QString SdisplayName(QStandardPaths::StandardLocation x1) { return QStandardPaths::displayName(x1); } @@ -2133,7 +2144,7 @@ public: Q_INVOKABLE QString SwritableLocation(QStandardPaths::StandardLocation x1) { return QStandardPaths::writableLocation(x1); } }; -class EQL_EXPORT N154 : public QObject { // QStyleOption +class EQL_EXPORT N155 : 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); } @@ -2141,14 +2152,17 @@ public: Q_INVOKABLE void MinitFrom(QStyleOption* o, const QWidget* x1) { o->initFrom(x1); } }; -class EQL_EXPORT N156 : public QObject { // QSurface +class EQL_EXPORT N157 : public QObject { // QSurface Q_OBJECT public: + Q_INVOKABLE QSurfaceFormat Mformat(QSurface* o) const { return o->format(); } + Q_INVOKABLE QSize Msize(QSurface* o) const { return o->size(); } Q_INVOKABLE bool MsupportsOpenGL(QSurface* o) const { return o->supportsOpenGL(); } Q_INVOKABLE int MsurfaceClass(QSurface* o) const { return o->surfaceClass(); } + Q_INVOKABLE int MsurfaceType(QSurface* o) const { return o->surfaceType(); } }; -class EQL_EXPORT N158 : public QObject { // QSysInfo +class EQL_EXPORT N159 : public QObject { // QSysInfo Q_OBJECT public: Q_INVOKABLE QString SbuildAbi() { return QSysInfo::buildAbi(); } @@ -2163,7 +2177,7 @@ public: Q_INVOKABLE int SwindowsVersion() { return QSysInfo::windowsVersion(); } }; -class EQL_EXPORT N159 : public QObject { // QSystemSemaphore +class EQL_EXPORT N160 : 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); } @@ -2175,7 +2189,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 N160 : public QObject { // QTableWidgetItem +class EQL_EXPORT N161 : public QObject { // QTableWidgetItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = QTableWidgetItem::Type) { return new LTableWidgetItem(u, x1); } @@ -2217,7 +2231,7 @@ public: Q_INVOKABLE QString MwhatsThis(QTableWidgetItem* o) const { return o->whatsThis(); } }; -class EQL_EXPORT N161 : public QObject { // QTableWidgetSelectionRange +class EQL_EXPORT N162 : public QObject { // QTableWidgetSelectionRange Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTableWidgetSelectionRange(u); } @@ -2231,7 +2245,7 @@ public: Q_INVOKABLE int MtopRow(QTableWidgetSelectionRange* o) const { return o->topRow(); } }; -class EQL_EXPORT N163 : public QObject { // QTextBlock +class EQL_EXPORT N164 : public QObject { // QTextBlock Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QTextBlock& x1) { return new LTextBlock(u, x1); } @@ -2266,12 +2280,12 @@ public: Q_INVOKABLE int MuserState(QTextBlock* o) const { return o->userState(); } }; -class EQL_EXPORT N165 : public QObject { // QTextBlockUserData +class EQL_EXPORT N166 : public QObject { // QTextBlockUserData Q_OBJECT public: }; -class EQL_EXPORT N166 : public QObject { // QTextBoundaryFinder +class EQL_EXPORT N167 : public QObject { // QTextBoundaryFinder Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextBoundaryFinder(u); } @@ -2291,7 +2305,7 @@ public: Q_INVOKABLE int Mtype(QTextBoundaryFinder* o) const { return o->type(); } }; -class EQL_EXPORT N168 : public QObject { // QTextCodec +class EQL_EXPORT N169 : public QObject { // QTextCodec Q_OBJECT public: Q_INVOKABLE QList Maliases(QTextCodec* o) const { return o->aliases(); } @@ -2319,7 +2333,7 @@ public: Q_INVOKABLE void SsetCodecForLocale(QTextCodec* x1) { QTextCodec::setCodecForLocale(x1); } }; -class EQL_EXPORT N169 : public QObject { // QTextCursor +class EQL_EXPORT N170 : public QObject { // QTextCursor Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextCursor(u); } @@ -2395,7 +2409,7 @@ public: Q_INVOKABLE bool MvisualNavigation(QTextCursor* o) const { return o->visualNavigation(); } }; -class EQL_EXPORT N170 : public QObject { // QTextDecoder +class EQL_EXPORT N171 : public QObject { // QTextDecoder Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QTextCodec* x1) { return new LTextDecoder(u, x1); } @@ -2405,7 +2419,7 @@ public: Q_INVOKABLE QString MtoUnicode(QTextDecoder* o, const QByteArray& x1) { return o->toUnicode(x1); } }; -class EQL_EXPORT N171 : public QObject { // QTextDocumentFragment +class EQL_EXPORT N172 : public QObject { // QTextDocumentFragment Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextDocumentFragment(u); } @@ -2420,7 +2434,7 @@ public: Q_INVOKABLE QTextDocumentFragment SfromPlainText(const QString& x1) { return QTextDocumentFragment::fromPlainText(x1); } }; -class EQL_EXPORT N172 : public QObject { // QTextDocumentWriter +class EQL_EXPORT N173 : public QObject { // QTextDocumentWriter Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextDocumentWriter(u); } @@ -2436,7 +2450,7 @@ public: Q_INVOKABLE QList SsupportedDocumentFormats() { return QTextDocumentWriter::supportedDocumentFormats(); } }; -class EQL_EXPORT N173 : public QObject { // QTextEncoder +class EQL_EXPORT N174 : public QObject { // QTextEncoder Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QTextCodec* x1) { return new LTextEncoder(u, x1); } @@ -2445,7 +2459,7 @@ public: Q_INVOKABLE QByteArray MfromUnicode(QTextEncoder* o, const QChar* x1, int x2) { return o->fromUnicode(x1, x2); } }; -class EQL_EXPORT N174 : public QObject { // QTextFormat +class EQL_EXPORT N175 : public QObject { // QTextFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextFormat(u); } @@ -2499,7 +2513,7 @@ public: Q_INVOKABLE int Mtype(QTextFormat* o) const { return o->type(); } }; -class EQL_EXPORT N175 : public QObject { // QTextFragment +class EQL_EXPORT N176 : public QObject { // QTextFragment Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextFragment(u); } @@ -2514,7 +2528,7 @@ public: Q_INVOKABLE QString Mtext(QTextFragment* o) const { return o->text(); } }; -class EQL_EXPORT N178 : public QObject { // QTextLayout +class EQL_EXPORT N179 : public QObject { // QTextLayout Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextLayout(u); } @@ -2556,7 +2570,7 @@ public: Q_INVOKABLE QTextOption MtextOption(QTextLayout* o) const { return o->textOption(); } }; -class EQL_EXPORT N179 : public QObject { // QTextLength +class EQL_EXPORT N180 : public QObject { // QTextLength Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextLength(u); } @@ -2566,7 +2580,7 @@ public: Q_INVOKABLE qreal Mvalue(QTextLength* o, qreal x1) const { return o->value(x1); } }; -class EQL_EXPORT N180 : public QObject { // QTextLine +class EQL_EXPORT N181 : public QObject { // QTextLine Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextLine(u); } @@ -2598,7 +2612,7 @@ public: Q_INVOKABLE qreal My(QTextLine* o) const { return o->y(); } }; -class EQL_EXPORT N182 : public QObject { // QTextOption +class EQL_EXPORT N183 : public QObject { // QTextOption Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextOption(u); } @@ -2620,7 +2634,7 @@ public: Q_INVOKABLE int MwrapMode(QTextOption* o) const { return o->wrapMode(); } }; -class EQL_EXPORT N183 : public QObject { // QTextTableCell +class EQL_EXPORT N184 : public QObject { // QTextTableCell Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextTableCell(u); } @@ -2637,7 +2651,7 @@ public: Q_INVOKABLE int MtableCellFormatIndex(QTextTableCell* o) const { return o->tableCellFormatIndex(); } }; -class EQL_EXPORT N186 : public QObject { // QTime +class EQL_EXPORT N187 : public QObject { // QTime Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTime(u); } @@ -2666,7 +2680,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 N187 : public QObject { // QTimeZone +class EQL_EXPORT N188 : public QObject { // QTimeZone Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTimeZone(u); } @@ -2702,7 +2716,7 @@ public: Q_INVOKABLE QList SwindowsIdToIanaIds(const QByteArray& x1, QLocale::Country x2) { return QTimeZone::windowsIdToIanaIds(x1, x2); } }; -class EQL_EXPORT N189 : public QObject { // QToolTip +class EQL_EXPORT N190 : public QObject { // QToolTip Q_OBJECT public: Q_INVOKABLE QFont Sfont() { return QToolTip::font(); } @@ -2717,7 +2731,7 @@ public: Q_INVOKABLE QString Stext() { return QToolTip::text(); } }; -class EQL_EXPORT N191 : public QObject { // QTransform +class EQL_EXPORT N192 : public QObject { // QTransform Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTransform(u); } @@ -2772,7 +2786,7 @@ public: Q_INVOKABLE bool SsquareToQuad(const QPolygonF& x1, QTransform& x2) { return QTransform::squareToQuad(x1, x2); } }; -class EQL_EXPORT N192 : public QObject { // QTreeWidgetItem +class EQL_EXPORT N193 : public QObject { // QTreeWidgetItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = QTreeWidgetItem::Type) { return new LTreeWidgetItem(u, x1); } @@ -2841,7 +2855,7 @@ public: Q_INVOKABLE void MemitDataChanged(QTreeWidgetItem* o) { ((LTreeWidgetItem*)o)->emitDataChanged(); } }; -class EQL_EXPORT N193 : public QObject { // QUndoCommand +class EQL_EXPORT N194 : public QObject { // QUndoCommand Q_OBJECT public: Q_INVOKABLE void* C(uint u, QUndoCommand* x1 = 0) { return new LUndoCommand(u, x1); } @@ -2857,7 +2871,7 @@ public: Q_INVOKABLE void Mundo(QUndoCommand* o) { o->undo(); } }; -class EQL_EXPORT N194 : public QObject { // QUrl +class EQL_EXPORT N195 : public QObject { // QUrl Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LUrl(u); } @@ -2919,7 +2933,7 @@ public: Q_INVOKABLE QStringList StoStringList(const QList& x1, QUrl::FormattingOptions x2 = QUrl::PrettyDecoded) { return QUrl::toStringList(x1, x2); } }; -class EQL_EXPORT N195 : public QObject { // QVariant +class EQL_EXPORT N196 : public QObject { // QVariant Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QCursor& x1) { return new LVariant(u, x1); } @@ -3012,7 +3026,7 @@ public: Q_INVOKABLE const char* StypeToName(int x1) { return QVariant::typeToName(x1); } }; -class EQL_EXPORT N196 : public QObject { // QVector2D +class EQL_EXPORT N197 : public QObject { // QVector2D Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVector2D(u); } @@ -3039,7 +3053,7 @@ public: Q_INVOKABLE float SdotProduct(const QVector2D& x1, const QVector2D& x2) { return QVector2D::dotProduct(x1, x2); } }; -class EQL_EXPORT N197 : public QObject { // QVector3D +class EQL_EXPORT N198 : public QObject { // QVector3D Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVector3D(u); } @@ -3076,7 +3090,7 @@ public: Q_INVOKABLE QVector3D Snormal(const QVector3D& x1, const QVector3D& x2, const QVector3D& x3) { return QVector3D::normal(x1, x2, x3); } }; -class EQL_EXPORT N198 : public QObject { // QVector4D +class EQL_EXPORT N199 : public QObject { // QVector4D Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVector4D(u); } @@ -3109,7 +3123,7 @@ public: Q_INVOKABLE float SdotProduct(const QVector4D& x1, const QVector4D& x2) { return QVector4D::dotProduct(x1, x2); } }; -class EQL_EXPORT N210 : public QObject { // QWhatsThis +class EQL_EXPORT N211 : public QObject { // QWhatsThis Q_OBJECT public: Q_INVOKABLE QAction* ScreateAction(QObject* x1 = 0) { return QWhatsThis::createAction(x1); } @@ -3120,7 +3134,7 @@ public: Q_INVOKABLE void SshowText(const QPoint& x1, const QString& x2, QWidget* x3 = 0) { QWhatsThis::showText(x1, x2, x3); } }; -class EQL_EXPORT N215 : public QObject { // QWriteLocker +class EQL_EXPORT N216 : public QObject { // QWriteLocker Q_OBJECT public: Q_INVOKABLE void* C(uint u, QReadWriteLock* x1) { return new LWriteLocker(u, x1); } @@ -3566,7 +3580,7 @@ public: Q_INVOKABLE void* C(uint u) { return new LIconDragEvent(u); } }; -class EQL_EXPORT N79 : public N110 { // QImage +class EQL_EXPORT N79 : public N111 { // QImage Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LImage(u); } @@ -3698,7 +3712,7 @@ public: Q_INVOKABLE QPointF Mstart(QLinearGradient* o) const { return o->start(); } }; -class EQL_EXPORT N97 : public N81 { // QMouseEvent +class EQL_EXPORT N98 : 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); } @@ -3719,7 +3733,7 @@ public: Q_INVOKABLE int My(QMouseEvent* o) const { return o->y(); } }; -class EQL_EXPORT N98 : public N36 { // QMoveEvent +class EQL_EXPORT N99 : public N36 { // QMoveEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QPoint& x1, const QPoint& x2) { return new LMoveEvent(u, x1, x2); } @@ -3727,7 +3741,7 @@ public: Q_INVOKABLE QPoint Mpos(QMoveEvent* o) const { return o->pos(); } }; -class EQL_EXPORT N107 : public N110 { // QOpenGLPaintDevice +class EQL_EXPORT N108 : public N111 { // QOpenGLPaintDevice Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LOpenGLPaintDevice(u); } @@ -3746,7 +3760,7 @@ public: Q_INVOKABLE QSize Msize(QOpenGLPaintDevice* o) const { return o->size(); } }; -class EQL_EXPORT N109 : public N110 { // QPagedPaintDevice +class EQL_EXPORT N110 : public N111 { // QPagedPaintDevice Q_OBJECT public: Q_INVOKABLE bool MnewPage(QPagedPaintDevice* o) { return o->newPage(); } @@ -3762,7 +3776,7 @@ public: Q_INVOKABLE void MsetPageSizeMM(QPagedPaintDevice* o, const QSizeF& x1) { o->setPageSizeMM(x1); } }; -class EQL_EXPORT N111 : public N36 { // QPaintEvent +class EQL_EXPORT N112 : public N36 { // QPaintEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QRegion& x1) { return new LPaintEvent(u, x1); } @@ -3771,7 +3785,7 @@ public: Q_INVOKABLE QRegion Mregion(QPaintEvent* o) const { return o->region(); } }; -class EQL_EXPORT N118 : public N110 { // QPicture +class EQL_EXPORT N119 : public N111 { // QPicture Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = -1) { return new LPicture(u, x1); } @@ -3788,7 +3802,7 @@ public: Q_INVOKABLE void Mswap(QPicture* o, QPicture& x1) { o->swap(x1); } }; -class EQL_EXPORT N119 : public N110 { // QPixmap +class EQL_EXPORT N120 : public N111 { // QPixmap Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPixmap(u); } @@ -3837,7 +3851,7 @@ public: Q_INVOKABLE QMatrix StrueMatrix(const QMatrix& x1, int x2, int x3) { return QPixmap::trueMatrix(x1, x2, x3); } }; -class EQL_EXPORT N121 : public N109 { // QPrinter +class EQL_EXPORT N122 : public N110 { // QPrinter Q_OBJECT public: Q_INVOKABLE void* C(uint u, QPrinter::PrinterMode x1 = QPrinter::ScreenResolution) { return new LPrinter(u, x1); } @@ -3892,7 +3906,7 @@ public: Q_INVOKABLE bool MnewPage(QPrinter* o) { return o->newPage(); } }; -class EQL_EXPORT N125 : public N46 { // QRadialGradient +class EQL_EXPORT N126 : public N46 { // QRadialGradient Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRadialGradient(u); } @@ -3916,7 +3930,7 @@ public: Q_INVOKABLE void MsetRadius(QRadialGradient* o, qreal x1) { o->setRadius(x1); } }; -class EQL_EXPORT N131 : public N36 { // QResizeEvent +class EQL_EXPORT N132 : public N36 { // QResizeEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QSize& x1, const QSize& x2) { return new LResizeEvent(u, x1, x2); } @@ -3924,7 +3938,7 @@ public: Q_INVOKABLE QSize Msize(QResizeEvent* o) const { return o->size(); } }; -class EQL_EXPORT N134 : public N36 { // QShortcutEvent +class EQL_EXPORT N135 : 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); } @@ -3933,13 +3947,13 @@ public: Q_INVOKABLE int MshortcutId(QShortcutEvent* o) const { return o->shortcutId(); } }; -class EQL_EXPORT N135 : public N36 { // QShowEvent +class EQL_EXPORT N136 : public N36 { // QShowEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LShowEvent(u); } }; -class EQL_EXPORT N137 : public N87 { // QSpacerItem +class EQL_EXPORT N138 : public N87 { // 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); } @@ -3955,14 +3969,14 @@ public: Q_INVOKABLE QSpacerItem* MspacerItem(QSpacerItem* o) { return o->spacerItem(); } }; -class EQL_EXPORT N153 : public N36 { // QStatusTipEvent +class EQL_EXPORT N154 : 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 N155 : public N154 { // QStyleOptionGraphicsItem +class EQL_EXPORT N156 : public N155 { // QStyleOptionGraphicsItem Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LStyleOptionGraphicsItem(u); } @@ -3970,7 +3984,7 @@ public: Q_INVOKABLE qreal SlevelOfDetailFromTransform(const QTransform& x1) { return QStyleOptionGraphicsItem::levelOfDetailFromTransform(x1); } }; -class EQL_EXPORT N162 : public N81 { // QTabletEvent +class EQL_EXPORT N163 : 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); } @@ -3997,7 +4011,7 @@ public: Q_INVOKABLE int Mz(QTabletEvent* o) const { return o->z(); } }; -class EQL_EXPORT N164 : public N174 { // QTextBlockFormat +class EQL_EXPORT N165 : public N175 { // QTextBlockFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextBlockFormat(u); } @@ -4028,7 +4042,7 @@ public: Q_INVOKABLE qreal MtopMargin(QTextBlockFormat* o) const { return o->topMargin(); } }; -class EQL_EXPORT N167 : public N174 { // QTextCharFormat +class EQL_EXPORT N168 : public N175 { // QTextCharFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextCharFormat(u); } @@ -4088,7 +4102,7 @@ public: Q_INVOKABLE int MverticalAlignment(QTextCharFormat* o) const { return o->verticalAlignment(); } }; -class EQL_EXPORT N176 : public N174 { // QTextFrameFormat +class EQL_EXPORT N177 : public N175 { // QTextFrameFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextFrameFormat(u); } @@ -4123,7 +4137,7 @@ public: Q_INVOKABLE QTextLength Mwidth(QTextFrameFormat* o) const { return o->width(); } }; -class EQL_EXPORT N177 : public N167 { // QTextImageFormat +class EQL_EXPORT N178 : public N168 { // QTextImageFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextImageFormat(u); } @@ -4136,7 +4150,7 @@ public: Q_INVOKABLE qreal Mwidth(QTextImageFormat* o) const { return o->width(); } }; -class EQL_EXPORT N181 : public N174 { // QTextListFormat +class EQL_EXPORT N182 : public N175 { // QTextListFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextListFormat(u); } @@ -4151,7 +4165,7 @@ public: Q_INVOKABLE int Mstyle(QTextListFormat* o) const { return o->style(); } }; -class EQL_EXPORT N184 : public N167 { // QTextTableCellFormat +class EQL_EXPORT N185 : public N168 { // QTextTableCellFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextTableCellFormat(u); } @@ -4167,7 +4181,7 @@ public: Q_INVOKABLE qreal MtopPadding(QTextTableCellFormat* o) const { return o->topPadding(); } }; -class EQL_EXPORT N185 : public N176 { // QTextTableFormat +class EQL_EXPORT N186 : public N177 { // QTextTableFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextTableFormat(u); } @@ -4186,14 +4200,14 @@ public: Q_INVOKABLE void MsetHeaderRowCount(QTextTableFormat* o, int x1) { o->setHeaderRowCount(x1); } }; -class EQL_EXPORT N188 : public N36 { // QTimerEvent +class EQL_EXPORT N189 : 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 N190 : public N81 { // QTouchEvent +class EQL_EXPORT N191 : 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); } @@ -4204,14 +4218,14 @@ public: Q_INVOKABLE QWindow* Mwindow(QTouchEvent* o) const { return o->window(); } }; -class EQL_EXPORT N211 : public N36 { // QWhatsThisClickedEvent +class EQL_EXPORT N212 : 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 N212 : public N81 { // QWheelEvent +class EQL_EXPORT N213 : 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); } @@ -4232,7 +4246,7 @@ public: Q_INVOKABLE int My(QWheelEvent* o) const { return o->y(); } }; -class EQL_EXPORT N213 : public N87 { // QWidgetItem +class EQL_EXPORT N214 : public N87 { // QWidgetItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LWidgetItem(u, x1); } @@ -4249,13 +4263,13 @@ public: Q_INVOKABLE QWidget* Mwidget(QWidgetItem* o) { return o->widget(); } }; -class EQL_EXPORT N214 : public N36 { // QWindowStateChangeEvent +class EQL_EXPORT N215 : public N36 { // QWindowStateChangeEvent Q_OBJECT public: Q_INVOKABLE int MoldState(QWindowStateChangeEvent* o) const { return o->oldState(); } }; -class EQL_EXPORT N14 : public N119 { // QBitmap +class EQL_EXPORT N14 : public N120 { // QBitmap Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LBitmap(u); } diff --git a/src/gen/_main_q_methods.h b/src/gen/_main_q_methods.h index 68f24dc..64640d4 100644 --- a/src/gen/_main_q_methods.h +++ b/src/gen/_main_q_methods.h @@ -999,11 +999,14 @@ class EQL_EXPORT Q111 : public Q136 { // QLayout Q_OBJECT public: Q_INVOKABLE bool Mactivate(QLayout* o) { return o->activate(); } + Q_INVOKABLE void MaddItem(QLayout* o, QLayoutItem* x1) { o->addItem(x1); } Q_INVOKABLE void MaddWidget(QLayout* o, QWidget* x1) { o->addWidget(x1); } Q_INVOKABLE QMargins McontentsMargins(QLayout* o) const { return o->contentsMargins(); } Q_INVOKABLE QRect McontentsRect(QLayout* o) const { return o->contentsRect(); } + Q_INVOKABLE int Mcount(QLayout* o) const { return o->count(); } Q_INVOKABLE int MindexOf(QLayout* o, QWidget* x1) const { return o->indexOf(x1); } Q_INVOKABLE bool MisEnabled(QLayout* o) const { return o->isEnabled(); } + Q_INVOKABLE QLayoutItem* MitemAt(QLayout* o, int x1) const { return o->itemAt(x1); } Q_INVOKABLE QWidget* MmenuBar(QLayout* o) const { return o->menuBar(); } Q_INVOKABLE QWidget* MparentWidget(QLayout* o) const { return o->parentWidget(); } Q_INVOKABLE void MremoveItem(QLayout* o, QLayoutItem* x1) { o->removeItem(x1); } @@ -1019,6 +1022,7 @@ public: Q_INVOKABLE void MsetSpacing(QLayout* o, int x1) { o->setSpacing(x1); } Q_INVOKABLE int MsizeConstraint(QLayout* o) const { return o->sizeConstraint(); } Q_INVOKABLE int Mspacing(QLayout* o) const { return o->spacing(); } + Q_INVOKABLE QLayoutItem* MtakeAt(QLayout* o, int x1) { return o->takeAt(x1); } Q_INVOKABLE void Mupdate(QLayout* o) { o->update(); } Q_INVOKABLE int McontrolTypes(QLayout* o) const { return o->controlTypes(); } Q_INVOKABLE int MexpandingDirections(QLayout* o) const { return o->expandingDirections(); } @@ -1769,15 +1773,27 @@ class EQL_EXPORT Q192 : public Q136 { // 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); } + Q_INVOKABLE void MdrawComplexControl(QStyle* o, QStyle::ComplexControl x1, const QStyleOptionComplex* x2, QPainter* x3, const QWidget* x4 = 0) const { o->drawComplexControl(x1, x2, x3, x4); } + Q_INVOKABLE void MdrawControl(QStyle* o, QStyle::ControlElement x1, const QStyleOption* x2, QPainter* x3, const QWidget* x4 = 0) const { o->drawControl(x1, x2, x3, x4); } Q_INVOKABLE void MdrawItemPixmap(QStyle* o, QPainter* x1, const QRect& x2, int x3, const QPixmap& x4) const { o->drawItemPixmap(x1, x2, x3, x4); } Q_INVOKABLE void MdrawItemText(QStyle* o, QPainter* x1, const QRect& x2, int x3, const QPalette& x4, bool x5, const QString& x6, QPalette::ColorRole x7 = QPalette::NoRole) const { o->drawItemText(x1, x2, x3, x4, x5, x6, x7); } + Q_INVOKABLE void MdrawPrimitive(QStyle* o, QStyle::PrimitiveElement x1, const QStyleOption* x2, QPainter* x3, const QWidget* x4 = 0) const { o->drawPrimitive(x1, x2, x3, x4); } + Q_INVOKABLE QPixmap MgeneratedIconPixmap(QStyle* o, QIcon::Mode x1, const QPixmap& x2, const QStyleOption* x3) const { return o->generatedIconPixmap(x1, x2, x3); } + Q_INVOKABLE int MhitTestComplexControl(QStyle* o, QStyle::ComplexControl x1, const QStyleOptionComplex* x2, const QPoint& x3, const QWidget* x4 = 0) const { return o->hitTestComplexControl(x1, x2, x3, x4); } Q_INVOKABLE QRect MitemPixmapRect(QStyle* o, const QRect& x1, int x2, const QPixmap& x3) const { return o->itemPixmapRect(x1, x2, x3); } Q_INVOKABLE QRect MitemTextRect(QStyle* o, const QFontMetrics& x1, const QRect& x2, int x3, bool x4, const QString& x5) const { return o->itemTextRect(x1, x2, x3, x4, x5); } + Q_INVOKABLE int MlayoutSpacing(QStyle* o, QSizePolicy::ControlType x1, QSizePolicy::ControlType x2, Qt::Orientation x3, const QStyleOption* x4 = 0, const QWidget* x5 = 0) const { return o->layoutSpacing(x1, x2, x3, x4, x5); } + Q_INVOKABLE int MpixelMetric(QStyle* o, QStyle::PixelMetric x1, const QStyleOption* x2 = 0, const QWidget* x3 = 0) const { return o->pixelMetric(x1, x2, x3); } Q_INVOKABLE void Mpolish(QStyle* o, QWidget* x1) { o->polish(x1); } Q_INVOKABLE void Mpolish(QStyle* o, QApplication* x1) { o->polish(x1); } Q_INVOKABLE void Mpolish(QStyle* o, QPalette& x1) { o->polish(x1); } Q_INVOKABLE const QStyle* Mproxy(QStyle* o) const { return o->proxy(); } + Q_INVOKABLE QSize MsizeFromContents(QStyle* o, QStyle::ContentsType x1, const QStyleOption* x2, const QSize& x3, const QWidget* x4 = 0) const { return o->sizeFromContents(x1, x2, x3, x4); } + Q_INVOKABLE QIcon MstandardIcon(QStyle* o, QStyle::StandardPixmap x1, const QStyleOption* x2 = 0, const QWidget* x3 = 0) const { return o->standardIcon(x1, x2, x3); } Q_INVOKABLE QPalette MstandardPalette(QStyle* o) const { return o->standardPalette(); } + Q_INVOKABLE int MstyleHint(QStyle* o, QStyle::StyleHint x1, const QStyleOption* x2 = 0, const QWidget* x3 = 0, QStyleHintReturn* x4 = 0) const { return o->styleHint(x1, x2, x3, x4); } + Q_INVOKABLE QRect MsubControlRect(QStyle* o, QStyle::ComplexControl x1, const QStyleOptionComplex* x2, QStyle::SubControl x3, const QWidget* x4 = 0) const { return o->subControlRect(x1, x2, x3, x4); } + Q_INVOKABLE QRect MsubElementRect(QStyle* o, QStyle::SubElement x1, const QStyleOption* x2, const QWidget* x3 = 0) const { return o->subElementRect(x1, x2, x3); } Q_INVOKABLE void Munpolish(QStyle* o, QWidget* x1) { o->unpolish(x1); } Q_INVOKABLE void Munpolish(QStyle* o, QApplication* x1) { o->unpolish(x1); } Q_INVOKABLE QRect SalignedRect(Qt::LayoutDirection x1, Qt::Alignment x2, const QSize& x3, const QRect& x4) { return QStyle::alignedRect(x1, x2, x3, x4); } diff --git a/src/gen/multimedia/_ini.cpp b/src/gen/multimedia/_ini.cpp index d2c8fff..ffeb25b 100644 --- a/src/gen/multimedia/_ini.cpp +++ b/src/gen/multimedia/_ini.cpp @@ -25,6 +25,7 @@ NumList LAudioFormat::overrideIds = NumList(); NumList LCameraInfo::overrideIds = NumList(); NumList LCameraViewfinderSettings::overrideIds = NumList(); NumList LImageEncoderSettings::overrideIds = NumList(); +NumList LMediaContent::overrideIds = NumList(); NumList LVideoEncoderSettings::overrideIds = NumList(); NumList LVideoFrame::overrideIds = NumList(); NumList LVideoSurfaceFormat::overrideIds = NumList(); @@ -56,9 +57,10 @@ void ini() { LObjects::N[15] = new N16; LObjects::N[16] = new N17; LObjects::N[79] = new N80; - LObjects::N[198] = new N199; + LObjects::N[94] = new N95; LObjects::N[199] = new N200; - LObjects::N[200] = new N201; } + LObjects::N[200] = new N201; + LObjects::N[201] = new N202; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; @@ -91,9 +93,10 @@ 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 199: if(gc) delete (QVideoEncoderSettings*)p; else delete (LVideoEncoderSettings*)p; break; - case 200: if(gc) delete (QVideoFrame*)p; else delete (LVideoFrame*)p; break; - case 201: if(gc) delete (QVideoSurfaceFormat*)p; else delete (LVideoSurfaceFormat*)p; break; }} + case 95: if(gc) delete (QMediaContent*)p; else delete (LMediaContent*)p; break; + case 200: if(gc) delete (QVideoEncoderSettings*)p; else delete (LVideoEncoderSettings*)p; break; + case 201: if(gc) delete (QVideoFrame*)p; else delete (LVideoFrame*)p; break; + case 202: if(gc) delete (QVideoSurfaceFormat*)p; else delete (LVideoSurfaceFormat*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -122,9 +125,10 @@ NumList* overrideFunctions(const QByteArray& name) { case 16: ids = &LCameraInfo::overrideIds; break; case 17: ids = &LCameraViewfinderSettings::overrideIds; break; case 80: ids = &LImageEncoderSettings::overrideIds; break; - case 199: ids = &LVideoEncoderSettings::overrideIds; break; - case 200: ids = &LVideoFrame::overrideIds; break; - case 201: ids = &LVideoSurfaceFormat::overrideIds; break; }} + case 95: ids = &LMediaContent::overrideIds; break; + case 200: ids = &LVideoEncoderSettings::overrideIds; break; + case 201: ids = &LVideoFrame::overrideIds; break; + case 202: 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 06c53d8..df8507e 100644 --- a/src/gen/multimedia/_n_classes.h +++ b/src/gen/multimedia/_n_classes.h @@ -72,8 +72,23 @@ public: uint unique; }; +class LMediaContent : public QMediaContent { + friend class N95; +public: + LMediaContent(uint u) : unique(u) {} + LMediaContent(uint u, const QUrl& x1) : QMediaContent(x1), unique(u) {} + LMediaContent(uint u, const QNetworkRequest& x1) : QMediaContent(x1), unique(u) {} + LMediaContent(uint u, const QMediaResource& x1) : QMediaContent(x1), unique(u) {} + LMediaContent(uint u, const QMediaResourceList& x1) : QMediaContent(x1), unique(u) {} + LMediaContent(uint u, const QMediaContent& x1) : QMediaContent(x1), unique(u) {} + LMediaContent(uint u, QMediaPlaylist* x1, const QUrl& x2 = QUrl(), bool x3 = false) : QMediaContent(x1, x2, x3), unique(u) {} + + static NumList overrideIds; + uint unique; +}; + class LVideoEncoderSettings : public QVideoEncoderSettings { - friend class N199; + friend class N200; public: LVideoEncoderSettings(uint u) : unique(u) {} LVideoEncoderSettings(uint u, const QVideoEncoderSettings& x1) : QVideoEncoderSettings(x1), unique(u) {} @@ -83,7 +98,7 @@ public: }; class LVideoFrame : public QVideoFrame { - friend class N200; + friend class N201; public: LVideoFrame(uint u) : unique(u) {} LVideoFrame(uint u, QAbstractVideoBuffer* x1, const QSize& x2, PixelFormat x3) : QVideoFrame(x1, x2, x3), unique(u) {} @@ -96,7 +111,7 @@ public: }; class LVideoSurfaceFormat : public QVideoSurfaceFormat { - friend class N201; + friend class N202; 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 13ce519..ca9d724 100644 --- a/src/gen/multimedia/_n_methods.h +++ b/src/gen/multimedia/_n_methods.h @@ -134,7 +134,25 @@ public: Q_INVOKABLE void MsetResolution(QImageEncoderSettings* o, int x1, int x2) { o->setResolution(x1, x2); } }; -class N199 : public QObject { // QVideoEncoderSettings +class N95 : public QObject { // QMediaContent + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LMediaContent(u); } + Q_INVOKABLE void* C(uint u, const QUrl& x1) { return new LMediaContent(u, x1); } + Q_INVOKABLE void* C(uint u, const QNetworkRequest& x1) { return new LMediaContent(u, x1); } + Q_INVOKABLE void* C(uint u, const QMediaResource& x1) { return new LMediaContent(u, x1); } + Q_INVOKABLE void* C(uint u, const QMediaResourceList& x1) { return new LMediaContent(u, x1); } + Q_INVOKABLE void* C(uint u, const QMediaContent& x1) { return new LMediaContent(u, x1); } + Q_INVOKABLE void* C(uint u, QMediaPlaylist* x1, const QUrl& x2 = QUrl(), bool x3 = false) { return new LMediaContent(u, x1, x2, x3); } + Q_INVOKABLE QNetworkRequest McanonicalRequest(QMediaContent* o) const { return o->canonicalRequest(); } + Q_INVOKABLE QMediaResource McanonicalResource(QMediaContent* o) const { return o->canonicalResource(); } + Q_INVOKABLE QUrl McanonicalUrl(QMediaContent* o) const { return o->canonicalUrl(); } + Q_INVOKABLE bool MisNull(QMediaContent* o) const { return o->isNull(); } + Q_INVOKABLE QMediaPlaylist* Mplaylist(QMediaContent* o) const { return o->playlist(); } + Q_INVOKABLE QMediaResourceList Mresources(QMediaContent* o) const { return o->resources(); } +}; + +class N200 : public QObject { // QVideoEncoderSettings Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVideoEncoderSettings(u); } @@ -157,7 +175,7 @@ public: Q_INVOKABLE void MsetResolution(QVideoEncoderSettings* o, int x1, int x2) { o->setResolution(x1, x2); } }; -class N200 : public QObject { // QVideoFrame +class N201 : public QObject { // QVideoFrame Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVideoFrame(u); } @@ -193,7 +211,7 @@ public: Q_INVOKABLE int SpixelFormatFromImageFormat(QImage::Format x1) { return QVideoFrame::pixelFormatFromImageFormat(x1); } }; -class N201 : public QObject { // QVideoSurfaceFormat +class N202 : public QObject { // QVideoSurfaceFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVideoSurfaceFormat(u); } diff --git a/src/gen/multimedia/_q_methods.h b/src/gen/multimedia/_q_methods.h index 7eeab7c..96ca1d7 100644 --- a/src/gen/multimedia/_q_methods.h +++ b/src/gen/multimedia/_q_methods.h @@ -37,6 +37,7 @@ public: Q_INVOKABLE bool MisFormatSupported(QAbstractVideoSurface* o, const QVideoSurfaceFormat& x1) const { return o->isFormatSupported(x1); } Q_INVOKABLE QSize MnativeResolution(QAbstractVideoSurface* o) const { return o->nativeResolution(); } Q_INVOKABLE QVideoSurfaceFormat MnearestFormat(QAbstractVideoSurface* o, const QVideoSurfaceFormat& x1) const { return o->nearestFormat(x1); } + Q_INVOKABLE bool Mpresent(QAbstractVideoSurface* o, const QVideoFrame& x1) { return o->present(x1); } Q_INVOKABLE bool Mstart(QAbstractVideoSurface* o, const QVideoSurfaceFormat& x1) { return o->start(x1); } Q_INVOKABLE void Mstop(QAbstractVideoSurface* o) { o->stop(); } Q_INVOKABLE QVideoSurfaceFormat MsurfaceFormat(QAbstractVideoSurface* o) const { return o->surfaceFormat(); } @@ -295,6 +296,8 @@ public: class Q125 : public Q136 { // 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 diff --git a/src/gen/network/_ini.cpp b/src/gen/network/_ini.cpp index 4205bf4..6f7fbd0 100644 --- a/src/gen/network/_ini.cpp +++ b/src/gen/network/_ini.cpp @@ -49,7 +49,6 @@ void ini() { LObjects::N[10] = new N11; LObjects::N[73] = new N74; LObjects::N[74] = new N75; - LObjects::N[98] = new N99; LObjects::N[99] = new N100; LObjects::N[100] = new N101; LObjects::N[101] = new N102; @@ -57,11 +56,12 @@ void ini() { LObjects::N[103] = new N104; LObjects::N[104] = new N105; LObjects::N[105] = new N106; - LObjects::N[145] = new N146; + LObjects::N[106] = new N107; 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; @@ -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 99: if(gc) delete (QNetworkAddressEntry*)p; else delete (LNetworkAddressEntry*)p; break; - case 100: if(gc) delete (QNetworkCacheMetaData*)p; else delete (LNetworkCacheMetaData*)p; break; - case 101: if(gc) delete (QNetworkCookie*)p; else delete (LNetworkCookie*)p; break; - case 102: if(gc) delete (QNetworkInterface*)p; else delete (LNetworkInterface*)p; break; - case 103: if(gc) delete (QNetworkProxy*)p; else delete (LNetworkProxy*)p; break; - case 104: if(gc) delete (QNetworkProxyFactory*)p; else delete (LNetworkProxyFactory*)p; break; - case 105: if(gc) delete (QNetworkProxyQuery*)p; else delete (LNetworkProxyQuery*)p; break; - case 106: if(gc) delete (QNetworkRequest*)p; else delete (LNetworkRequest*)p; break; - case 146: if(gc) delete (QSslCertificate*)p; else delete (LSslCertificate*)p; break; - case 147: if(gc) delete (QSslCipher*)p; else delete (LSslCipher*)p; break; - case 148: if(gc) delete (QSslConfiguration*)p; else delete (LSslConfiguration*)p; break; - case 149: if(gc) delete (QSslError*)p; else delete (LSslError*)p; break; - case 150: if(gc) delete (QSslKey*)p; else delete (LSslKey*)p; break; }} + case 100: if(gc) delete (QNetworkAddressEntry*)p; else delete (LNetworkAddressEntry*)p; break; + case 101: if(gc) delete (QNetworkCacheMetaData*)p; else delete (LNetworkCacheMetaData*)p; break; + case 102: if(gc) delete (QNetworkCookie*)p; else delete (LNetworkCookie*)p; break; + case 103: if(gc) delete (QNetworkInterface*)p; else delete (LNetworkInterface*)p; break; + case 104: if(gc) delete (QNetworkProxy*)p; else delete (LNetworkProxy*)p; break; + case 105: if(gc) delete (QNetworkProxyFactory*)p; else delete (LNetworkProxyFactory*)p; break; + case 106: if(gc) delete (QNetworkProxyQuery*)p; else delete (LNetworkProxyQuery*)p; break; + case 107: if(gc) delete (QNetworkRequest*)p; else delete (LNetworkRequest*)p; break; + case 147: if(gc) delete (QSslCertificate*)p; else delete (LSslCertificate*)p; break; + case 148: if(gc) delete (QSslCipher*)p; else delete (LSslCipher*)p; break; + case 149: if(gc) delete (QSslConfiguration*)p; else delete (LSslConfiguration*)p; break; + case 150: if(gc) delete (QSslError*)p; else delete (LSslError*)p; break; + case 151: if(gc) delete (QSslKey*)p; else delete (LSslKey*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -118,19 +118,19 @@ NumList* overrideFunctions(const QByteArray& name) { case 11: ids = &LAuthenticator::overrideIds; break; case 74: ids = &LHostAddress::overrideIds; break; case 75: ids = &LHostInfo::overrideIds; break; - case 99: ids = &LNetworkAddressEntry::overrideIds; break; - case 100: ids = &LNetworkCacheMetaData::overrideIds; break; - case 101: ids = &LNetworkCookie::overrideIds; break; - case 102: ids = &LNetworkInterface::overrideIds; break; - case 103: ids = &LNetworkProxy::overrideIds; break; - case 104: ids = &LNetworkProxyFactory::overrideIds; break; - case 105: ids = &LNetworkProxyQuery::overrideIds; break; - case 106: ids = &LNetworkRequest::overrideIds; break; - case 146: ids = &LSslCertificate::overrideIds; break; - case 147: ids = &LSslCipher::overrideIds; break; - case 148: ids = &LSslConfiguration::overrideIds; break; - case 149: ids = &LSslError::overrideIds; break; - case 150: ids = &LSslKey::overrideIds; break; }} + case 100: ids = &LNetworkAddressEntry::overrideIds; break; + case 101: ids = &LNetworkCacheMetaData::overrideIds; break; + case 102: ids = &LNetworkCookie::overrideIds; break; + case 103: ids = &LNetworkInterface::overrideIds; break; + case 104: ids = &LNetworkProxy::overrideIds; break; + case 105: ids = &LNetworkProxyFactory::overrideIds; break; + case 106: ids = &LNetworkProxyQuery::overrideIds; break; + case 107: ids = &LNetworkRequest::overrideIds; break; + case 147: ids = &LSslCertificate::overrideIds; break; + case 148: ids = &LSslCipher::overrideIds; break; + case 149: ids = &LSslConfiguration::overrideIds; break; + case 150: ids = &LSslError::overrideIds; break; + case 151: 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 207b7dd..1db2df9 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 N99; + friend class N100; 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 N100; + friend class N101; 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 N101; + friend class N102; 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 N102; + friend class N103; 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 N103; + friend class N104; 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,7 +96,7 @@ public: }; class LNetworkProxyFactory : public QNetworkProxyFactory { - friend class N104; + friend class N105; public: LNetworkProxyFactory(uint u) : unique(u) {} @@ -107,7 +107,7 @@ public: }; class LNetworkProxyQuery : public QNetworkProxyQuery { - friend class N105; + friend class N106; 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 N106; + friend class N107; 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 N146; + friend class N147; 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 N147; + friend class N148; 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 N148; + friend class N149; 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 N149; + friend class N150; 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 N150; + friend class N151; 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 eb96556..30dafd9 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 N99 : public QObject { // QNetworkAddressEntry +class N100 : 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 N100 : public QObject { // QNetworkCacheMetaData +class N101 : 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 N101 : public QObject { // QNetworkCookie +class N102 : 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 N102 : public QObject { // QNetworkInterface +class N103 : 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 N103 : public QObject { // QNetworkProxy +class N104 : 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 N104 : public QObject { // QNetworkProxyFactory +class N105 : 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 N105 : public QObject { // QNetworkProxyQuery +class N106 : 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 N106 : public QObject { // QNetworkRequest +class N107 : 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 N146 : public QObject { // QSslCertificate +class N147 : 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 N147 : public QObject { // QSslCipher +class N148 : 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 N148 : public QObject { // QSslConfiguration +class N149 : 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 N149 : public QObject { // QSslError +class N150 : 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 N150 : public QObject { // QSslKey +class N151 : public QObject { // QSslKey Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslKey(u); } diff --git a/src/gen/network/_q_methods.h b/src/gen/network/_q_methods.h index 7d9cfa0..e82c7b3 100644 --- a/src/gen/network/_q_methods.h +++ b/src/gen/network/_q_methods.h @@ -14,6 +14,10 @@ QT_BEGIN_NAMESPACE class Q7 : public Q136 { // QAbstractNetworkCache Q_OBJECT public: + Q_INVOKABLE qlonglong McacheSize(QAbstractNetworkCache* o) const { return o->cacheSize(); } + Q_INVOKABLE QNetworkCacheMetaData MmetaData(QAbstractNetworkCache* o, const QUrl& x1) { return o->metaData(x1); } + Q_INVOKABLE bool Mremove(QAbstractNetworkCache* o, const QUrl& x1) { return o->remove(x1); } + Q_INVOKABLE void MupdateMetaData(QAbstractNetworkCache* o, const QNetworkCacheMetaData& x1) { o->updateMetaData(x1); } }; class Q116 : public Q136 { // QLocalServer diff --git a/src/gen/sql/_ini.cpp b/src/gen/sql/_ini.cpp index 14781db..03d5fa2 100644 --- a/src/gen/sql/_ini.cpp +++ b/src/gen/sql/_ini.cpp @@ -28,14 +28,14 @@ void ini() { LObjects::Q[181] = new Q182; LObjects::Q[182] = new Q183; LObjects::Q[183] = new Q184; - LObjects::N[137] = new N138; LObjects::N[138] = new N139; LObjects::N[139] = new N140; LObjects::N[140] = new N141; LObjects::N[141] = new N142; LObjects::N[142] = new N143; LObjects::N[143] = new N144; - LObjects::N[144] = new N145; } + LObjects::N[144] = new N145; + LObjects::N[145] = new N146; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; @@ -49,14 +49,14 @@ const QMetaObject* staticMetaObject(int n) { void deleteNObject(int n, void* p, int gc) { switch(n) { - case 138: if(gc) delete (QSqlDatabase*)p; else delete (LSqlDatabase*)p; break; - case 139: if(gc) delete (QSqlError*)p; else delete (LSqlError*)p; break; - case 140: if(gc) delete (QSqlField*)p; else delete (LSqlField*)p; break; - case 141: if(gc) delete (QSqlIndex*)p; else delete (LSqlIndex*)p; break; - case 142: if(gc) delete (QSqlQuery*)p; else delete (LSqlQuery*)p; break; - case 143: if(gc) delete (QSqlRecord*)p; else delete (LSqlRecord*)p; break; - case 144: if(gc) delete (QSqlRelation*)p; else delete (LSqlRelation*)p; break; - case 145: if(gc) delete (QSqlResult*)p; else delete (LSqlResult*)p; break; }} + case 139: if(gc) delete (QSqlDatabase*)p; else delete (LSqlDatabase*)p; break; + case 140: if(gc) delete (QSqlError*)p; else delete (LSqlError*)p; break; + case 141: if(gc) delete (QSqlField*)p; else delete (LSqlField*)p; break; + case 142: if(gc) delete (QSqlIndex*)p; else delete (LSqlIndex*)p; break; + case 143: if(gc) delete (QSqlQuery*)p; else delete (LSqlQuery*)p; break; + case 144: if(gc) delete (QSqlRecord*)p; else delete (LSqlRecord*)p; break; + case 145: if(gc) delete (QSqlRelation*)p; else delete (LSqlRelation*)p; break; + case 146: if(gc) delete (QSqlResult*)p; else delete (LSqlResult*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -71,14 +71,14 @@ NumList* overrideFunctions(const QByteArray& name) { else { n = LObjects::n_names.value(name); switch(n) { - case 138: ids = &LSqlDatabase::overrideIds; break; - case 139: ids = &LSqlError::overrideIds; break; - case 140: ids = &LSqlField::overrideIds; break; - case 141: ids = &LSqlIndex::overrideIds; break; - case 142: ids = &LSqlQuery::overrideIds; break; - case 143: ids = &LSqlRecord::overrideIds; break; - case 144: ids = &LSqlRelation::overrideIds; break; - case 145: ids = &LSqlResult::overrideIds; break; }} + case 139: ids = &LSqlDatabase::overrideIds; break; + case 140: ids = &LSqlError::overrideIds; break; + case 141: ids = &LSqlField::overrideIds; break; + case 142: ids = &LSqlIndex::overrideIds; break; + case 143: ids = &LSqlQuery::overrideIds; break; + case 144: ids = &LSqlRecord::overrideIds; break; + case 145: ids = &LSqlRelation::overrideIds; break; + case 146: 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 a26cee5..f06f205 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 N138; + friend class N139; 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 N139; + friend class N140; 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 N140; + friend class N141; 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 N141; + friend class N142; 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 N142; + friend class N143; 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 N143; + friend class N144; 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 N144; + friend class N145; 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,7 +84,7 @@ public: }; class LSqlResult : public QSqlResult { - friend class N145; + friend class N146; public: static NumList overrideIds; diff --git a/src/gen/sql/_n_methods.h b/src/gen/sql/_n_methods.h index d555d1f..23882f9 100644 --- a/src/gen/sql/_n_methods.h +++ b/src/gen/sql/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N138 : public QObject { // QSqlDatabase +class N139 : 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 N139 : public QObject { // QSqlError +class N140 : 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 N140 : public QObject { // QSqlField +class N141 : 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 N142 : public QObject { // QSqlQuery +class N143 : 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 N143 : public QObject { // QSqlRecord +class N144 : 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 N144 : public QObject { // QSqlRelation +class N145 : 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 N145 : public QObject { // QSqlResult +class N146 : 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 N141 : public N143 { // QSqlIndex +class N142 : public N144 { // 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/svg/_ini.cpp b/src/gen/svg/_ini.cpp index 1187db6..40d5ddb 100644 --- a/src/gen/svg/_ini.cpp +++ b/src/gen/svg/_ini.cpp @@ -17,7 +17,7 @@ void ini() { LObjects::Q[81] = new Q82; LObjects::Q[193] = new Q194; LObjects::Q[194] = new Q195; - LObjects::N[156] = new N157; } + LObjects::N[157] = new N158; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; @@ -29,7 +29,7 @@ const QMetaObject* staticMetaObject(int n) { void deleteNObject(int n, void* p, int gc) { switch(n) { - case 157: if(gc) delete (QSvgGenerator*)p; else delete (LSvgGenerator*)p; break; }} + case 158: if(gc) delete (QSvgGenerator*)p; else delete (LSvgGenerator*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -42,7 +42,7 @@ NumList* overrideFunctions(const QByteArray& name) { else { n = LObjects::n_names.value(name); switch(n) { - case 157: ids = &LSvgGenerator::overrideIds; break; }} + case 158: 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 3b69872..a007801 100644 --- a/src/gen/svg/_n_classes.h +++ b/src/gen/svg/_n_classes.h @@ -12,7 +12,7 @@ QT_BEGIN_NAMESPACE class LSvgGenerator : public QSvgGenerator { - friend class N157; + friend class N158; public: LSvgGenerator(uint u) : unique(u) {} diff --git a/src/gen/svg/_n_methods.h b/src/gen/svg/_n_methods.h index a6a8ecb..27449b2 100644 --- a/src/gen/svg/_n_methods.h +++ b/src/gen/svg/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N157 : public N110 { // QSvgGenerator +class N158 : public N111 { // QSvgGenerator Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSvgGenerator(u); } diff --git a/src/gen/webkit/_ini.cpp b/src/gen/webkit/_ini.cpp index 4aae32c..1fe4077 100644 --- a/src/gen/webkit/_ini.cpp +++ b/src/gen/webkit/_ini.cpp @@ -29,14 +29,14 @@ void ini() { LObjects::Q[235] = new Q236; LObjects::Q[236] = new Q237; LObjects::Q[237] = new Q238; - LObjects::N[201] = new N202; LObjects::N[202] = new N203; LObjects::N[203] = new N204; LObjects::N[204] = new N205; LObjects::N[205] = new N206; LObjects::N[206] = new N207; LObjects::N[207] = new N208; - LObjects::N[208] = new N209; } + LObjects::N[208] = new N209; + LObjects::N[209] = new N210; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; @@ -52,12 +52,12 @@ const QMetaObject* staticMetaObject(int n) { void deleteNObject(int n, void* p, int gc) { switch(n) { - case 202: if(gc) delete (QWebDatabase*)p; else delete (LWebDatabase*)p; break; - case 203: if(gc) delete (QWebElement*)p; else delete (LWebElement*)p; break; - case 204: if(gc) delete (QWebElementCollection*)p; else delete (LWebElementCollection*)p; break; - case 206: if(gc) delete (QWebHistoryItem*)p; else delete (LWebHistoryItem*)p; break; - case 207: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break; - case 208: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }} + case 203: if(gc) delete (QWebDatabase*)p; else delete (LWebDatabase*)p; break; + case 204: if(gc) delete (QWebElement*)p; else delete (LWebElement*)p; break; + case 205: if(gc) delete (QWebElementCollection*)p; else delete (LWebElementCollection*)p; break; + case 207: if(gc) delete (QWebHistoryItem*)p; else delete (LWebHistoryItem*)p; break; + case 208: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break; + case 209: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -73,12 +73,12 @@ NumList* overrideFunctions(const QByteArray& name) { else { n = LObjects::n_names.value(name); switch(n) { - case 202: ids = &LWebDatabase::overrideIds; break; - case 203: ids = &LWebElement::overrideIds; break; - case 204: ids = &LWebElementCollection::overrideIds; break; - case 206: ids = &LWebHistoryItem::overrideIds; break; - case 207: ids = &LWebHitTestResult::overrideIds; break; - case 208: ids = &LWebSecurityOrigin::overrideIds; break; }} + case 203: ids = &LWebDatabase::overrideIds; break; + case 204: ids = &LWebElement::overrideIds; break; + case 205: ids = &LWebElementCollection::overrideIds; break; + case 207: ids = &LWebHistoryItem::overrideIds; break; + case 208: ids = &LWebHitTestResult::overrideIds; break; + case 209: 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 7affe7b..e0c2caf 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 N202; + friend class N203; public: LWebDatabase(uint u, const QWebDatabase& x1) : QWebDatabase(x1), unique(u) {} @@ -23,7 +23,7 @@ public: }; class LWebElement : public QWebElement { - friend class N203; + friend class N204; 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 N204; + friend class N205; 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 N206; + friend class N207; public: LWebHistoryItem(uint u, const QWebHistoryItem& x1) : QWebHistoryItem(x1), unique(u) {} @@ -53,7 +53,7 @@ public: }; class LWebHitTestResult : public QWebHitTestResult { - friend class N207; + friend class N208; 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 N208; + friend class N209; 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 31e89d0..b9f4700 100644 --- a/src/gen/webkit/_n_methods.h +++ b/src/gen/webkit/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N202 : public QObject { // QWebDatabase +class N203 : 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 N203 : public QObject { // QWebElement +class N204 : 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 N204 : public QObject { // QWebElementCollection +class N205 : 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 N205 : public QObject { // QWebHistory +class N206 : 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 N206 : public QObject { // QWebHistoryItem +class N207 : 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 N207 : public QObject { // QWebHitTestResult +class N208 : 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 N208 : public QObject { // QWebSecurityOrigin +class N209 : 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 N209 : public QObject { // QWebSettings +class N210 : public QObject { // QWebSettings Q_OBJECT public: Q_INVOKABLE QString McssMediaType(QWebSettings* o) const { return o->cssMediaType(); } diff --git a/src/lisp/all-wrappers-1.lisp b/src/lisp/all-wrappers-1.lisp index 8efab74..20292f9 100644 --- a/src/lisp/all-wrappers-1.lisp +++ b/src/lisp/all-wrappers-1.lisp @@ -562,6 +562,9 @@ #:|cancel| #:|canonicalFilePath| #:|canonicalPath| + #:|canonicalRequest| + #:|canonicalResource| + #:|canonicalUrl| #:|capStyle| #:|capabilities| #:|capitalization| @@ -1196,10 +1199,7 @@ #:|drawLine(QPointF...)| #:|drawLines(QVector)| #:|drawLines(QVector)| - #:|drawLines(QVector)| - #:|drawLines(QVector)| - #:|drawLines(const QLine*...)| - #:|drawLines(const QLineF*...)|)) + #:|drawLines(QVector)|)) (in-package :eql) diff --git a/src/lisp/all-wrappers-10.lisp b/src/lisp/all-wrappers-10.lisp index 45402dd..34c55cd 100644 --- a/src/lisp/all-wrappers-10.lisp +++ b/src/lisp/all-wrappers-10.lisp @@ -1,5 +1,26 @@ (in-package :eql) +(defun |seek| (object &rest arguments) + (%qinvoke-method object nil "seek" arguments)) + +(defun |segmentStyle| (object &rest arguments) + (%qinvoke-method object nil "segmentStyle" arguments)) + +(defun |select(QItemSelection...)| (object &rest arguments) + (%qinvoke-method object nil "select(QItemSelection...)" arguments)) + +(defun |select(QModelIndex...)| (object &rest arguments) + (%qinvoke-method object nil "select(QModelIndex...)" arguments)) + +(defun |selectAll| (object &rest arguments) + (%qinvoke-method object nil "selectAll" arguments)) + +(defun |selectColumn| (object &rest arguments) + (%qinvoke-method object nil "selectColumn" arguments)) + +(defun |selectFile| (object &rest arguments) + (%qinvoke-method object nil "selectFile" arguments)) + (defun |selectMimeTypeFilter| (object &rest arguments) (%qinvoke-method object nil "selectMimeTypeFilter" arguments)) @@ -3578,24 +3599,3 @@ (defun |setStretch| (object &rest arguments) (%qinvoke-method object nil "setStretch" arguments)) - -(defun |setStrikeOut| (object &rest arguments) - (%qinvoke-method object nil "setStrikeOut" arguments)) - -(defun |setStringList| (object &rest arguments) - (%qinvoke-method object nil "setStringList" arguments)) - -(defun |setStyle(QString).QApplication| (&rest arguments) - (%qinvoke-method "QApplication" nil "setStyle(QString)" arguments)) - -(defun |setStyle(QStyle*).QApplication| (&rest arguments) - (%qinvoke-method "QApplication" nil "setStyle(QStyle*)" arguments)) - -(defun |setStyle.QApplication| (&rest arguments) - (%qinvoke-method "QApplication" nil "setStyle" arguments)) - -(defun |setStyleHint| (object &rest arguments) - (%qinvoke-method object nil "setStyleHint" arguments)) - -(defun |setStyleName| (object &rest arguments) - (%qinvoke-method object nil "setStyleName" arguments)) diff --git a/src/lisp/all-wrappers-11.lisp b/src/lisp/all-wrappers-11.lisp index 948b002..cdb2443 100644 --- a/src/lisp/all-wrappers-11.lisp +++ b/src/lisp/all-wrappers-11.lisp @@ -1,5 +1,26 @@ (in-package :eql) +(defun |setStrikeOut| (object &rest arguments) + (%qinvoke-method object nil "setStrikeOut" arguments)) + +(defun |setStringList| (object &rest arguments) + (%qinvoke-method object nil "setStringList" arguments)) + +(defun |setStyle(QString).QApplication| (&rest arguments) + (%qinvoke-method "QApplication" nil "setStyle(QString)" arguments)) + +(defun |setStyle(QStyle*).QApplication| (&rest arguments) + (%qinvoke-method "QApplication" nil "setStyle(QStyle*)" arguments)) + +(defun |setStyle.QApplication| (&rest arguments) + (%qinvoke-method "QApplication" nil "setStyle" arguments)) + +(defun |setStyleHint| (object &rest arguments) + (%qinvoke-method object nil "setStyleHint" arguments)) + +(defun |setStyleName| (object &rest arguments) + (%qinvoke-method object nil "setStyleName" arguments)) + (defun |setStyleProperty| (object &rest arguments) (%qinvoke-method object nil "setStyleProperty" arguments)) @@ -3578,24 +3599,3 @@ (defun |yOffset| (object &rest arguments) (%qinvoke-method object nil "yOffset" arguments)) - -(defun |yScaleChanged| (object &rest arguments) - (%qinvoke-method object nil "yScaleChanged" arguments)) - -(defun |yScale| (object &rest arguments) - (%qinvoke-method object nil "yScale" arguments)) - -(defun |yTilt| (object &rest arguments) - (%qinvoke-method object nil "yTilt" arguments)) - -(defun |yearShown| (object &rest arguments) - (%qinvoke-method object nil "yearShown" arguments)) - -(defun |year| (object &rest arguments) - (%qinvoke-method object nil "year" arguments)) - -(defun |yellowF| (object &rest arguments) - (%qinvoke-method object nil "yellowF" arguments)) - -(defun |yellow| (object &rest arguments) - (%qinvoke-method object nil "yellow" arguments)) diff --git a/src/lisp/all-wrappers-12.lisp b/src/lisp/all-wrappers-12.lisp index 9115854..3ecc65a 100644 --- a/src/lisp/all-wrappers-12.lisp +++ b/src/lisp/all-wrappers-12.lisp @@ -1,5 +1,26 @@ (in-package :eql) +(defun |yScaleChanged| (object &rest arguments) + (%qinvoke-method object nil "yScaleChanged" arguments)) + +(defun |yScale| (object &rest arguments) + (%qinvoke-method object nil "yScale" arguments)) + +(defun |yTilt| (object &rest arguments) + (%qinvoke-method object nil "yTilt" arguments)) + +(defun |yearShown| (object &rest arguments) + (%qinvoke-method object nil "yearShown" arguments)) + +(defun |year| (object &rest arguments) + (%qinvoke-method object nil "year" arguments)) + +(defun |yellowF| (object &rest arguments) + (%qinvoke-method object nil "yellowF" arguments)) + +(defun |yellow| (object &rest arguments) + (%qinvoke-method object nil "yellow" arguments)) + (defun |y| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "y" arguments)) diff --git a/src/lisp/all-wrappers-2.lisp b/src/lisp/all-wrappers-2.lisp index cb4ca29..1bc6eab 100644 --- a/src/lisp/all-wrappers-2.lisp +++ b/src/lisp/all-wrappers-2.lisp @@ -1,5 +1,8 @@ (defpackage :eql (:export + #:|drawLines(QVector)| + #:|drawLines(const QLine*...)| + #:|drawLines(const QLineF*...)| #:|drawLines(const QPointF*...)| #:|drawLines| #:|drawLine| @@ -1196,7 +1199,4 @@ #:|jumpToNextFrame| #:|keepPositionOnInsert| #:|kernelType.QSysInfo| - #:|kernelVersion.QSysInfo| - #:|kerning| - #:|keyBindings.QKeySequence| - #:|keyBindingsForAction|)) + #:|kernelVersion.QSysInfo|)) diff --git a/src/lisp/all-wrappers-3.lisp b/src/lisp/all-wrappers-3.lisp index 49bc505..4afa3f1 100644 --- a/src/lisp/all-wrappers-3.lisp +++ b/src/lisp/all-wrappers-3.lisp @@ -1,5 +1,8 @@ (defpackage :eql (:export + #:|kerning| + #:|keyBindings.QKeySequence| + #:|keyBindingsForAction| #:|keyExchangeMethod| #:|keyValueAt| #:|keyValues| @@ -733,6 +736,7 @@ #:|prependOutside(QString)| #:|prependOutside(QWebElement)| #:|prependOutside| + #:|present| #:|pressed| #:|pressure| #:|prettyProductName.QSysInfo| @@ -869,6 +873,7 @@ #:|relationModel| #:|relation| #:|relativeFilePath| + #:|releaseControl| #:|releaseKeyboard| #:|releaseMouse| #:|releaseShortcut| @@ -962,6 +967,7 @@ #:|replace| #:|reportContentOrientationChange| #:|requestActivate| + #:|requestControl| #:|requestPhase2| #:|requestShowLink| #:|requestUpdate| @@ -1007,6 +1013,7 @@ #:|resolveSymlinks| #:|resolved| #:|resolve| + #:|resources| #:|resource| #:|restartCommand| #:|restartHint| @@ -1192,11 +1199,4 @@ #:|sectionsMovable| #:|sectionsMoved| #:|securityOrigin| - #:|seekableChanged| - #:|seek| - #:|segmentStyle| - #:|select(QItemSelection...)| - #:|select(QModelIndex...)| - #:|selectAll| - #:|selectColumn| - #:|selectFile|)) + #:|seekableChanged|)) diff --git a/src/lisp/all-wrappers-4.lisp b/src/lisp/all-wrappers-4.lisp index 8fb2db7..139e809 100644 --- a/src/lisp/all-wrappers-4.lisp +++ b/src/lisp/all-wrappers-4.lisp @@ -1,5 +1,12 @@ (defpackage :eql (:export + #:|seek| + #:|segmentStyle| + #:|select(QItemSelection...)| + #:|select(QModelIndex...)| + #:|selectAll| + #:|selectColumn| + #:|selectFile| #:|selectMimeTypeFilter| #:|selectNameFilter| #:|selectRow| @@ -1192,11 +1199,4 @@ #:|setStretchFactor(QWidget*...)| #:|setStretchFactor| #:|setStretchLastSection| - #:|setStretch| - #:|setStrikeOut| - #:|setStringList| - #:|setStyle(QString).QApplication| - #:|setStyle(QStyle*).QApplication| - #:|setStyle.QApplication| - #:|setStyleHint| - #:|setStyleName|)) + #:|setStretch|)) diff --git a/src/lisp/all-wrappers-5.lisp b/src/lisp/all-wrappers-5.lisp index 4c5c9eb..7a1d431 100644 --- a/src/lisp/all-wrappers-5.lisp +++ b/src/lisp/all-wrappers-5.lisp @@ -1,5 +1,12 @@ (defpackage :eql (:export + #:|setStrikeOut| + #:|setStringList| + #:|setStyle(QString).QApplication| + #:|setStyle(QStyle*).QApplication| + #:|setStyle.QApplication| + #:|setStyleHint| + #:|setStyleName| #:|setStyleProperty| #:|setStyleSheet| #:|setStyleStrategy| @@ -1192,11 +1199,4 @@ #:|x| #:|yCbCrColorSpace| #:|yChanged| - #:|yOffset| - #:|yScaleChanged| - #:|yScale| - #:|yTilt| - #:|yearShown| - #:|year| - #:|yellowF| - #:|yellow|)) + #:|yOffset|)) diff --git a/src/lisp/all-wrappers-6.lisp b/src/lisp/all-wrappers-6.lisp index 22cb765..4f3957a 100644 --- a/src/lisp/all-wrappers-6.lisp +++ b/src/lisp/all-wrappers-6.lisp @@ -1,5 +1,12 @@ (defpackage :eql (:export + #:|yScaleChanged| + #:|yScale| + #:|yTilt| + #:|yearShown| + #:|year| + #:|yellowF| + #:|yellow| #:|y| #:|zChanged| #:|zScaleChanged| diff --git a/src/lisp/all-wrappers-7.lisp b/src/lisp/all-wrappers-7.lisp index 3f73d70..ffe05c9 100644 --- a/src/lisp/all-wrappers-7.lisp +++ b/src/lisp/all-wrappers-7.lisp @@ -1686,6 +1686,15 @@ (defun |canonicalPath| (object &rest arguments) (%qinvoke-method object nil "canonicalPath" arguments)) +(defun |canonicalRequest| (object &rest arguments) + (%qinvoke-method object nil "canonicalRequest" arguments)) + +(defun |canonicalResource| (object &rest arguments) + (%qinvoke-method object nil "canonicalResource" arguments)) + +(defun |canonicalUrl| (object &rest arguments) + (%qinvoke-method object nil "canonicalUrl" arguments)) + (defun |capStyle| (object &rest arguments) (%qinvoke-method object nil "capStyle" arguments)) @@ -3590,12 +3599,3 @@ (defun |drawLines(QVector)| (object &rest arguments) (%qinvoke-method object nil "drawLines(QVector)" arguments)) - -(defun |drawLines(QVector)| (object &rest arguments) - (%qinvoke-method object nil "drawLines(QVector)" arguments)) - -(defun |drawLines(const QLine*...)| (object &rest arguments) - (%qinvoke-method object nil "drawLines(const QLine*...)" arguments)) - -(defun |drawLines(const QLineF*...)| (object &rest arguments) - (%qinvoke-method object nil "drawLines(const QLineF*...)" arguments)) diff --git a/src/lisp/all-wrappers-8.lisp b/src/lisp/all-wrappers-8.lisp index 63aa2fd..9d2a086 100644 --- a/src/lisp/all-wrappers-8.lisp +++ b/src/lisp/all-wrappers-8.lisp @@ -1,5 +1,14 @@ (in-package :eql) +(defun |drawLines(QVector)| (object &rest arguments) + (%qinvoke-method object nil "drawLines(QVector)" arguments)) + +(defun |drawLines(const QLine*...)| (object &rest arguments) + (%qinvoke-method object nil "drawLines(const QLine*...)" arguments)) + +(defun |drawLines(const QLineF*...)| (object &rest arguments) + (%qinvoke-method object nil "drawLines(const QLineF*...)" arguments)) + (defun |drawLines(const QPointF*...)| (object &rest arguments) (%qinvoke-method object nil "drawLines(const QPointF*...)" arguments)) @@ -3590,12 +3599,3 @@ (defun |kernelVersion.QSysInfo| (&rest arguments) (%qinvoke-method "QSysInfo" nil "kernelVersion" arguments)) - -(defun |kerning| (object &rest arguments) - (%qinvoke-method object nil "kerning" arguments)) - -(defun |keyBindings.QKeySequence| (&rest arguments) - (%qinvoke-method "QKeySequence" nil "keyBindings" arguments)) - -(defun |keyBindingsForAction| (object &rest arguments) - (%qinvoke-method object nil "keyBindingsForAction" arguments)) diff --git a/src/lisp/all-wrappers-9.lisp b/src/lisp/all-wrappers-9.lisp index 776b5cd..fa0e555 100644 --- a/src/lisp/all-wrappers-9.lisp +++ b/src/lisp/all-wrappers-9.lisp @@ -1,5 +1,14 @@ (in-package :eql) +(defun |kerning| (object &rest arguments) + (%qinvoke-method object nil "kerning" arguments)) + +(defun |keyBindings.QKeySequence| (&rest arguments) + (%qinvoke-method "QKeySequence" nil "keyBindings" arguments)) + +(defun |keyBindingsForAction| (object &rest arguments) + (%qinvoke-method object nil "keyBindingsForAction" arguments)) + (defun |keyExchangeMethod| (object &rest arguments) (%qinvoke-method object nil "keyExchangeMethod" arguments)) @@ -2199,6 +2208,9 @@ (defun |prependOutside| (object &rest arguments) (%qinvoke-method object nil "prependOutside" arguments)) +(defun |present| (object &rest arguments) + (%qinvoke-method object nil "present" arguments)) + (defun |pressed| (object &rest arguments) (%qinvoke-method object nil "pressed" arguments)) @@ -2607,6 +2619,9 @@ (defun |relativeFilePath| (object &rest arguments) (%qinvoke-method object nil "relativeFilePath" arguments)) +(defun |releaseControl| (object &rest arguments) + (%qinvoke-method object nil "releaseControl" arguments)) + (defun |releaseKeyboard| (object &rest arguments) (%qinvoke-method object nil "releaseKeyboard" arguments)) @@ -2886,6 +2901,9 @@ (defun |requestActivate| (object &rest arguments) (%qinvoke-method object nil "requestActivate" arguments)) +(defun |requestControl| (object &rest arguments) + (%qinvoke-method object nil "requestControl" arguments)) + (defun |requestPhase2| (object &rest arguments) (%qinvoke-method object nil "requestPhase2" arguments)) @@ -3021,6 +3039,9 @@ (defun |resolve| (object &rest arguments) (%qinvoke-method object nil "resolve" arguments)) +(defun |resources| (object &rest arguments) + (%qinvoke-method object nil "resources" arguments)) + (defun |resource| (object &rest arguments) (%qinvoke-method object nil "resource" arguments)) @@ -3578,24 +3599,3 @@ (defun |seekableChanged| (object &rest arguments) (%qinvoke-method object nil "seekableChanged" arguments)) - -(defun |seek| (object &rest arguments) - (%qinvoke-method object nil "seek" arguments)) - -(defun |segmentStyle| (object &rest arguments) - (%qinvoke-method object nil "segmentStyle" arguments)) - -(defun |select(QItemSelection...)| (object &rest arguments) - (%qinvoke-method object nil "select(QItemSelection...)" arguments)) - -(defun |select(QModelIndex...)| (object &rest arguments) - (%qinvoke-method object nil "select(QModelIndex...)" arguments)) - -(defun |selectAll| (object &rest arguments) - (%qinvoke-method object nil "selectAll" arguments)) - -(defun |selectColumn| (object &rest arguments) - (%qinvoke-method object nil "selectColumn" arguments)) - -(defun |selectFile| (object &rest arguments) - (%qinvoke-method object nil "selectFile" arguments))