diff --git a/helper/generate.lisp b/helper/generate.lisp index b889552..1419b3f 100644 --- a/helper/generate.lisp +++ b/helper/generate.lisp @@ -87,7 +87,10 @@ (assoc* module *module-streams*))) (defun no-spaces (s) - (remove #\Space s)) + (cond ((string= "static QList" s) + "staticQList") + (t + (remove #\Space s)))) (defun find* (x list &optional (key 'identity)) (find x list :test 'string= :key key)) diff --git a/helper/missing-types.txt b/helper/missing-types.txt index 4a00c23..aab654f 100644 --- a/helper/missing-types.txt +++ b/helper/missing-types.txt @@ -1,3 +1,4 @@ + QList QAccessibleActionInterface QAccessibleTableCellInterface QAccessibleTableInterface @@ -46,7 +47,6 @@ QList QList QList QMediaControl -QMediaResource QMediaResourceList QMultiMap QNetworkConfiguration @@ -80,7 +80,6 @@ QStyleOptionToolButton QStyleOptionViewItem QSurfaceFormat QThread -QTouchDevice QUrlQuery QUuid QVariantHash diff --git a/helper/my-class-lists/gui/n-names.lisp b/helper/my-class-lists/gui/n-names.lisp index 9a33740..6092497 100644 --- a/helper/my-class-lists/gui/n-names.lisp +++ b/helper/my-class-lists/gui/n-names.lisp @@ -161,6 +161,7 @@ "QTimerEvent" "QTimeZone" "QToolTip" + "QTouchDevice" "QTouchEvent" "QTransform" "QTreeWidgetItem" diff --git a/helper/my-class-lists/multimedia/n-names.lisp b/helper/my-class-lists/multimedia/n-names.lisp index d164e14..0e7e0bc 100644 --- a/helper/my-class-lists/multimedia/n-names.lisp +++ b/helper/my-class-lists/multimedia/n-names.lisp @@ -9,6 +9,7 @@ "QCameraViewfinderSettings" "QImageEncoderSettings" "QMediaContent" + "QMediaResource" "QVideoEncoderSettings" "QVideoFrame" "QVideoSurfaceFormat")) diff --git a/helper/no-static-meta-object.lisp b/helper/no-static-meta-object.lisp index 3f84f64..6638d34 100644 --- a/helper/no-static-meta-object.lisp +++ b/helper/no-static-meta-object.lisp @@ -66,6 +66,7 @@ "QMatrix" "QMatrix4x4" "QMediaContent" + "QMediaResource" "QMetaObject" "QModelIndex" "QNetworkAddressEntry" diff --git a/helper/parsed/n-methods.lisp b/helper/parsed/n-methods.lisp index 6ead40d..934568e 100644 --- a/helper/parsed/n-methods.lisp +++ b/helper/parsed/n-methods.lisp @@ -1835,6 +1835,34 @@ "bool isNull () const" "QMediaPlaylist * playlist () const" "QMediaResourceList resources () const") + (("QMediaResource" . NIL) + "new QMediaResource ()" + "new QMediaResource ( const QUrl & , const QString & = QString() )" + "new QMediaResource ( const QNetworkRequest & , const QString & = QString() )" + "new QMediaResource ( const QMediaResource & )" + "int audioBitRate () const" + "QString audioCodec () const" + "int channelCount () const" + "qint64 dataSize () const" + "bool isNull () const" + "QString language () const" + "QString mimeType () const" + "QNetworkRequest request () const" + "QSize resolution () const" + "int sampleRate () const" + "void setAudioBitRate ( int )" + "void setAudioCodec ( const QString & )" + "void setChannelCount ( int )" + "void setDataSize ( const qint64 )" + "void setLanguage ( const QString & )" + "void setResolution ( const QSize & )" + "void setResolution ( int , int )" + "void setSampleRate ( int )" + "void setVideoBitRate ( int )" + "void setVideoCodec ( const QString & )" + "QUrl url () const" + "int videoBitRate () const" + "QString videoCodec () const") (("QMetaObject" . NIL) "int classInfoCount () const" "int classInfoOffset () const" @@ -4026,6 +4054,17 @@ "static void showText ( const QPoint & , const QString & , QWidget * , const QRect & , int )" "static void showText ( const QPoint & , const QString & , QWidget * = 0 )" "static QString text ()") + (("QTouchDevice" . NIL) + "new QTouchDevice ()" + "Capabilities capabilities () const" + "int maximumTouchPoints () const" + "QString name () const" + "void setCapabilities ( Capabilities )" + "void setMaximumTouchPoints ( int )" + "void setName ( const QString & )" + "void setType ( DeviceType )" + "DeviceType type () const" + "static QList devices ()") (("QTouchEvent" . "QInputEvent") "new QTouchEvent ( QEvent::Type , QTouchDevice * = 0 , Qt::KeyboardModifiers = Qt::NoModifier , Qt::TouchPointStates = 0 , const QList & = QList () )" "QTouchDevice * device () const" diff --git a/helper/parsed/n-override.lisp b/helper/parsed/n-override.lisp index d7336e6..918441a 100644 --- a/helper/parsed/n-override.lisp +++ b/helper/parsed/n-override.lisp @@ -269,6 +269,7 @@ (("QMatrix" . NIL)) (("QMatrix4x4" . NIL)) (("QMediaContent" . NIL)) + (("QMediaResource" . NIL)) (("QMetaObject" . NIL)) (("QModelIndex" . NIL)) (("QMouseEvent" . "QInputEvent")) @@ -424,6 +425,7 @@ (("QTimeZone" . NIL)) (("QTimerEvent" . "QEvent")) (("QToolTip" . NIL)) + (("QTouchDevice" . NIL)) (("QTouchEvent" . "QInputEvent")) (("QTransform" . NIL)) (("QTreeWidgetItem" . NIL) diff --git a/src/ecl_fun.cpp b/src/ecl_fun.cpp index d5d1da5..8fbced2 100644 --- a/src/ecl_fun.cpp +++ b/src/ecl_fun.cpp @@ -62,6 +62,7 @@ META_TYPE (T_QList_QTableWidgetSelectionRange, QList META_TYPE (T_QList_QTextBlock, QList) META_TYPE (T_QList_QTextEdit_ExtraSelection, QList) META_TYPE (T_QList_QTextFrame, QList) +META_TYPE (T_QList_QTouchDevice, QList) META_TYPE (T_QList_QTreeWidgetItem, QList) META_TYPE (T_QList_QUndoStack, QList) META_TYPE (T_QList_QUrl, QList) @@ -1041,6 +1042,7 @@ TO_CL_LIST_PTR (QMdiSubWindow, qmdisubwindow) TO_CL_LIST_PTR (QStandardItem, qstandarditem) TO_CL_LIST_PTR (QTableWidgetItem, qtablewidgetitem) TO_CL_LIST_PTR (QTextFrame, qtextframe) +TO_CL_LIST_PTR (QTouchDevice, qtouchdevice) TO_CL_LIST_PTR (QTreeWidgetItem, qtreewidgetitem) TO_CL_LIST_PTR (QUndoStack, qundostack) @@ -1384,6 +1386,7 @@ cl_object to_lisp_arg(const MetaArg& arg) { else if(T_QList_QTextBlock == n) l_ret = from_qtextblocklist(*(QList*)p); else if(T_QList_QTextEdit_ExtraSelection == n) l_ret = from_qtexteditextraselectionlist(*(QList*)p); else if(T_QList_QTextFrame == n) l_ret = from_qtextframelist(*(QList*)p); + else if(T_QList_QTouchDevice == n) l_ret = from_qtouchdevicelist(*(QList*)p); else if(T_QList_QTreeWidgetItem == n) l_ret = from_qtreewidgetitemlist(*(QList*)p); else if(T_QList_QUndoStack == n) l_ret = from_qundostacklist(*(QList*)p); else if(T_QList_QUrl == n) l_ret = from_qurllist(*(QList*)p); diff --git a/src/gen/_lobjects.cpp b/src/gen/_lobjects.cpp index a111e58..d683e3c 100644 --- a/src/gen/_lobjects.cpp +++ b/src/gen/_lobjects.cpp @@ -422,6 +422,7 @@ NumList LTime::overrideIds = NumList(); NumList LTimeZone::overrideIds = NumList(); NumList LTimerEvent::overrideIds = NumList(); NumList LToolTip::overrideIds = NumList(); +NumList LTouchDevice::overrideIds = NumList(); NumList LTouchEvent::overrideIds = NumList(); NumList LTransform::overrideIds = NumList(); NumList LTreeWidgetItem::overrideIds = NumList() << 458 << 493 << 494; @@ -445,7 +446,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* [219]; for(int i = 0; i < 219; ++i) { N[i] = 0; } + N = new QObject* [221]; for(int i = 0; i < 221; ++i) { N[i] = 0; } Q[0] = new Q1; Q[1] = new Q2; Q[2] = new Q3; @@ -721,11 +722,10 @@ void LObjects::ini(EQL* e) { N[92] = new N93; N[93] = new N94; N[94] = new N95; - N[96] = new N97; N[97] = new N98; N[98] = new N99; N[99] = new N100; - N[108] = new N109; + N[100] = new N101; N[109] = new N110; N[110] = new N111; N[111] = new N112; @@ -758,13 +758,13 @@ void LObjects::ini(EQL* e) { N[138] = new N139; N[139] = new N140; N[140] = new N141; - N[154] = new N155; + N[141] = new N142; N[155] = new N156; N[156] = new N157; N[157] = new N158; N[158] = new N159; N[159] = new N160; - N[161] = new N162; + N[160] = new N161; N[162] = new N163; N[163] = new N164; N[164] = new N165; @@ -805,12 +805,14 @@ void LObjects::ini(EQL* e) { N[199] = new N200; N[200] = new N201; N[201] = new N202; - N[213] = new N214; - N[214] = new N215; + N[202] = new N203; + N[203] = new N204; N[215] = new N216; N[216] = new N217; N[217] = new N218; N[218] = new N219; + N[219] = new N220; + N[220] = new N221; q_names["QAbstractAnimation"] = 1; q_names["QAbstractButton"] = 2; q_names["QAbstractItemDelegate"] = 3; @@ -1150,129 +1152,131 @@ void LObjects::ini(EQL* e) { n_names["QMatrix"] = 94; n_names["QMatrix4x4"] = 95; n_names["QMediaContent"] = 96; - n_names["QMetaObject"] = 97; - n_names["QModelIndex"] = 98; - n_names["QMouseEvent"] = 99; - n_names["QMoveEvent"] = 100; - n_names["QNetworkAddressEntry"] = 101; - n_names["QNetworkCacheMetaData"] = 102; - n_names["QNetworkCookie"] = 103; - n_names["QNetworkInterface"] = 104; - n_names["QNetworkProxy"] = 105; - n_names["QNetworkProxyFactory"] = 106; - n_names["QNetworkProxyQuery"] = 107; - n_names["QNetworkRequest"] = 108; - n_names["QOpenGLPaintDevice"] = 109; - n_names["QOpenGLTexture"] = 110; - n_names["QPageLayout"] = 111; - n_names["QPageSize"] = 112; - n_names["QPagedPaintDevice"] = 113; - n_names["QPaintDevice"] = 114; - n_names["QPaintEvent"] = 115; - n_names["QPainter"] = 116; - n_names["QPainterPath"] = 117; - n_names["QPainterPathStroker"] = 118; - n_names["QPalette"] = 119; - n_names["QPen"] = 120; - n_names["QPersistentModelIndex"] = 121; - n_names["QPicture"] = 122; - n_names["QPixmap"] = 123; - n_names["QPixmapCache"] = 124; - n_names["QPrinter"] = 125; - n_names["QPrinterInfo"] = 126; - n_names["QProcessEnvironment"] = 127; - n_names["QQuaternion"] = 128; - n_names["QRadialGradient"] = 129; - n_names["QReadLocker"] = 130; - n_names["QReadWriteLock"] = 131; - n_names["QRegExp"] = 132; - n_names["QRegion"] = 133; - n_names["QRegularExpression"] = 134; - n_names["QResizeEvent"] = 135; - n_names["QRunnable"] = 136; - n_names["QSemaphore"] = 137; - n_names["QShortcutEvent"] = 138; - n_names["QShowEvent"] = 139; - n_names["QSizePolicy"] = 140; - n_names["QSpacerItem"] = 141; - n_names["QSqlDatabase"] = 142; - n_names["QSqlError"] = 143; - n_names["QSqlField"] = 144; - n_names["QSqlIndex"] = 145; - n_names["QSqlQuery"] = 146; - n_names["QSqlRecord"] = 147; - n_names["QSqlRelation"] = 148; - n_names["QSqlResult"] = 149; - n_names["QSslCertificate"] = 150; - n_names["QSslCipher"] = 151; - n_names["QSslConfiguration"] = 152; - n_names["QSslError"] = 153; - n_names["QSslKey"] = 154; - n_names["QStandardItem"] = 155; - n_names["QStandardPaths"] = 156; - n_names["QStatusTipEvent"] = 157; - n_names["QStyleOption"] = 158; - n_names["QStyleOptionGraphicsItem"] = 159; - n_names["QSurface"] = 160; - n_names["QSvgGenerator"] = 161; - n_names["QSysInfo"] = 162; - n_names["QSystemSemaphore"] = 163; - n_names["QTableWidgetItem"] = 164; - n_names["QTableWidgetSelectionRange"] = 165; - n_names["QTabletEvent"] = 166; - n_names["QTextBlock"] = 167; - n_names["QTextBlockFormat"] = 168; - n_names["QTextBlockUserData"] = 169; - n_names["QTextBoundaryFinder"] = 170; - n_names["QTextCharFormat"] = 171; - n_names["QTextCodec"] = 172; - n_names["QTextCursor"] = 173; - n_names["QTextDecoder"] = 174; - n_names["QTextDocumentFragment"] = 175; - n_names["QTextDocumentWriter"] = 176; - n_names["QTextEncoder"] = 177; - n_names["QTextFormat"] = 178; - n_names["QTextFragment"] = 179; - n_names["QTextFrameFormat"] = 180; - n_names["QTextImageFormat"] = 181; - n_names["QTextLayout"] = 182; - n_names["QTextLength"] = 183; - n_names["QTextLine"] = 184; - n_names["QTextListFormat"] = 185; - n_names["QTextOption"] = 186; - n_names["QTextTableCell"] = 187; - n_names["QTextTableCellFormat"] = 188; - n_names["QTextTableFormat"] = 189; - n_names["QTime"] = 190; - n_names["QTimeZone"] = 191; - n_names["QTimerEvent"] = 192; - n_names["QToolTip"] = 193; - n_names["QTouchEvent"] = 194; - n_names["QTransform"] = 195; - n_names["QTreeWidgetItem"] = 196; - n_names["QUndoCommand"] = 197; - n_names["QUrl"] = 198; - n_names["QVariant"] = 199; - n_names["QVector2D"] = 200; - n_names["QVector3D"] = 201; - n_names["QVector4D"] = 202; - n_names["QVideoEncoderSettings"] = 203; - n_names["QVideoFrame"] = 204; - n_names["QVideoSurfaceFormat"] = 205; - n_names["QWebDatabase"] = 206; - n_names["QWebElement"] = 207; - n_names["QWebElementCollection"] = 208; - n_names["QWebHistory"] = 209; - n_names["QWebHistoryItem"] = 210; - n_names["QWebHitTestResult"] = 211; - n_names["QWebSecurityOrigin"] = 212; - n_names["QWebSettings"] = 213; - n_names["QWhatsThis"] = 214; - n_names["QWhatsThisClickedEvent"] = 215; - n_names["QWheelEvent"] = 216; - n_names["QWidgetItem"] = 217; - n_names["QWindowStateChangeEvent"] = 218; - n_names["QWriteLocker"] = 219; + n_names["QMediaResource"] = 97; + n_names["QMetaObject"] = 98; + n_names["QModelIndex"] = 99; + n_names["QMouseEvent"] = 100; + n_names["QMoveEvent"] = 101; + n_names["QNetworkAddressEntry"] = 102; + n_names["QNetworkCacheMetaData"] = 103; + n_names["QNetworkCookie"] = 104; + n_names["QNetworkInterface"] = 105; + n_names["QNetworkProxy"] = 106; + n_names["QNetworkProxyFactory"] = 107; + n_names["QNetworkProxyQuery"] = 108; + n_names["QNetworkRequest"] = 109; + n_names["QOpenGLPaintDevice"] = 110; + n_names["QOpenGLTexture"] = 111; + n_names["QPageLayout"] = 112; + n_names["QPageSize"] = 113; + n_names["QPagedPaintDevice"] = 114; + n_names["QPaintDevice"] = 115; + n_names["QPaintEvent"] = 116; + n_names["QPainter"] = 117; + n_names["QPainterPath"] = 118; + n_names["QPainterPathStroker"] = 119; + n_names["QPalette"] = 120; + n_names["QPen"] = 121; + n_names["QPersistentModelIndex"] = 122; + n_names["QPicture"] = 123; + n_names["QPixmap"] = 124; + n_names["QPixmapCache"] = 125; + n_names["QPrinter"] = 126; + n_names["QPrinterInfo"] = 127; + n_names["QProcessEnvironment"] = 128; + n_names["QQuaternion"] = 129; + n_names["QRadialGradient"] = 130; + n_names["QReadLocker"] = 131; + n_names["QReadWriteLock"] = 132; + n_names["QRegExp"] = 133; + n_names["QRegion"] = 134; + n_names["QRegularExpression"] = 135; + n_names["QResizeEvent"] = 136; + n_names["QRunnable"] = 137; + n_names["QSemaphore"] = 138; + n_names["QShortcutEvent"] = 139; + n_names["QShowEvent"] = 140; + n_names["QSizePolicy"] = 141; + n_names["QSpacerItem"] = 142; + n_names["QSqlDatabase"] = 143; + n_names["QSqlError"] = 144; + n_names["QSqlField"] = 145; + n_names["QSqlIndex"] = 146; + n_names["QSqlQuery"] = 147; + n_names["QSqlRecord"] = 148; + n_names["QSqlRelation"] = 149; + n_names["QSqlResult"] = 150; + n_names["QSslCertificate"] = 151; + n_names["QSslCipher"] = 152; + n_names["QSslConfiguration"] = 153; + n_names["QSslError"] = 154; + n_names["QSslKey"] = 155; + n_names["QStandardItem"] = 156; + n_names["QStandardPaths"] = 157; + n_names["QStatusTipEvent"] = 158; + n_names["QStyleOption"] = 159; + n_names["QStyleOptionGraphicsItem"] = 160; + n_names["QSurface"] = 161; + n_names["QSvgGenerator"] = 162; + n_names["QSysInfo"] = 163; + n_names["QSystemSemaphore"] = 164; + n_names["QTableWidgetItem"] = 165; + n_names["QTableWidgetSelectionRange"] = 166; + n_names["QTabletEvent"] = 167; + n_names["QTextBlock"] = 168; + n_names["QTextBlockFormat"] = 169; + n_names["QTextBlockUserData"] = 170; + n_names["QTextBoundaryFinder"] = 171; + n_names["QTextCharFormat"] = 172; + n_names["QTextCodec"] = 173; + n_names["QTextCursor"] = 174; + n_names["QTextDecoder"] = 175; + n_names["QTextDocumentFragment"] = 176; + n_names["QTextDocumentWriter"] = 177; + n_names["QTextEncoder"] = 178; + n_names["QTextFormat"] = 179; + n_names["QTextFragment"] = 180; + n_names["QTextFrameFormat"] = 181; + n_names["QTextImageFormat"] = 182; + n_names["QTextLayout"] = 183; + n_names["QTextLength"] = 184; + n_names["QTextLine"] = 185; + n_names["QTextListFormat"] = 186; + n_names["QTextOption"] = 187; + n_names["QTextTableCell"] = 188; + n_names["QTextTableCellFormat"] = 189; + n_names["QTextTableFormat"] = 190; + n_names["QTime"] = 191; + n_names["QTimeZone"] = 192; + n_names["QTimerEvent"] = 193; + n_names["QToolTip"] = 194; + n_names["QTouchDevice"] = 195; + n_names["QTouchEvent"] = 196; + n_names["QTransform"] = 197; + n_names["QTreeWidgetItem"] = 198; + n_names["QUndoCommand"] = 199; + n_names["QUrl"] = 200; + n_names["QVariant"] = 201; + n_names["QVector2D"] = 202; + n_names["QVector3D"] = 203; + n_names["QVector4D"] = 204; + n_names["QVideoEncoderSettings"] = 205; + n_names["QVideoFrame"] = 206; + n_names["QVideoSurfaceFormat"] = 207; + n_names["QWebDatabase"] = 208; + n_names["QWebElement"] = 209; + n_names["QWebElementCollection"] = 210; + n_names["QWebHistory"] = 211; + n_names["QWebHistoryItem"] = 212; + n_names["QWebHitTestResult"] = 213; + n_names["QWebSecurityOrigin"] = 214; + n_names["QWebSettings"] = 215; + n_names["QWhatsThis"] = 216; + n_names["QWhatsThisClickedEvent"] = 217; + n_names["QWheelEvent"] = 218; + n_names["QWidgetItem"] = 219; + n_names["QWindowStateChangeEvent"] = 220; + n_names["QWriteLocker"] = 221; override_function_ids["duration()"] = 1; override_function_ids["updateCurrentTime(int)"] = 2; override_function_ids["updateDirection(QAbstractAnimation::Direction)"] = 3; @@ -2274,7 +2278,7 @@ void LObjects::ini(EQL* e) { nNames = n_names.keys(); }} quint64 LObjects::override_id(uint unique, int id) { - return (218 * (quint64)unique + id); } + return (220 * (quint64)unique + id); } void* LObjects::overrideFun(quint64 id) { return override_lisp_functions.value(id, 0); } @@ -2289,31 +2293,32 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) { n = -LObjects::n_names.value(name, 0); }} const QMetaObject* m = 0; switch(n) { - case -218: m = &QWindowStateChangeEvent::staticMetaObject; break; - case -216: m = &QWheelEvent::staticMetaObject; break; - case -215: m = &QWhatsThisClickedEvent::staticMetaObject; break; - case -194: m = &QTouchEvent::staticMetaObject; break; - case -192: m = &QTimerEvent::staticMetaObject; break; - case -189: m = &QTextTableFormat::staticMetaObject; break; - case -188: m = &QTextTableCellFormat::staticMetaObject; break; - case -185: m = &QTextListFormat::staticMetaObject; break; - case -181: m = &QTextImageFormat::staticMetaObject; break; - case -180: m = &QTextFrameFormat::staticMetaObject; break; - case -178: m = &QTextFormat::staticMetaObject; break; - case -171: m = &QTextCharFormat::staticMetaObject; break; - case -168: m = &QTextBlockFormat::staticMetaObject; break; - case -166: m = &QTabletEvent::staticMetaObject; break; - case -157: m = &QStatusTipEvent::staticMetaObject; break; - case -140: m = &QSizePolicy::staticMetaObject; break; - case -139: m = &QShowEvent::staticMetaObject; break; - case -138: m = &QShortcutEvent::staticMetaObject; break; - case -135: m = &QResizeEvent::staticMetaObject; break; - case -129: m = &QRadialGradient::staticMetaObject; break; - case -119: m = &QPalette::staticMetaObject; break; - case -116: m = &QPainter::staticMetaObject; break; - case -115: m = &QPaintEvent::staticMetaObject; break; - case -100: m = &QMoveEvent::staticMetaObject; break; - case -99: m = &QMouseEvent::staticMetaObject; break; + case -220: m = &QWindowStateChangeEvent::staticMetaObject; break; + case -218: m = &QWheelEvent::staticMetaObject; break; + case -217: m = &QWhatsThisClickedEvent::staticMetaObject; break; + case -196: m = &QTouchEvent::staticMetaObject; break; + case -195: m = &QTouchDevice::staticMetaObject; break; + case -193: m = &QTimerEvent::staticMetaObject; break; + case -190: m = &QTextTableFormat::staticMetaObject; break; + case -189: m = &QTextTableCellFormat::staticMetaObject; break; + case -186: m = &QTextListFormat::staticMetaObject; break; + case -182: m = &QTextImageFormat::staticMetaObject; break; + case -181: m = &QTextFrameFormat::staticMetaObject; break; + case -179: m = &QTextFormat::staticMetaObject; break; + case -172: m = &QTextCharFormat::staticMetaObject; break; + case -169: m = &QTextBlockFormat::staticMetaObject; break; + case -167: m = &QTabletEvent::staticMetaObject; break; + case -158: m = &QStatusTipEvent::staticMetaObject; break; + case -141: m = &QSizePolicy::staticMetaObject; break; + case -140: m = &QShowEvent::staticMetaObject; break; + case -139: m = &QShortcutEvent::staticMetaObject; break; + case -136: m = &QResizeEvent::staticMetaObject; break; + case -130: m = &QRadialGradient::staticMetaObject; break; + case -120: m = &QPalette::staticMetaObject; break; + case -117: m = &QPainter::staticMetaObject; break; + case -116: m = &QPaintEvent::staticMetaObject; break; + case -101: m = &QMoveEvent::staticMetaObject; break; + case -100: m = &QMouseEvent::staticMetaObject; break; case -91: m = &QLocale::staticMetaObject; break; case -89: m = &QLinearGradient::staticMetaObject; break; case -85: m = &QKeyEvent::staticMetaObject; break; @@ -2696,91 +2701,92 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 93: if(gc) delete (QMarginsF*)p; else delete (LMarginsF*)p; break; case 94: if(gc) delete (QMatrix*)p; else delete (LMatrix*)p; break; case 95: if(gc) delete (QMatrix4x4*)p; else delete (LMatrix4x4*)p; break; - case 97: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break; - case 98: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break; - case 99: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break; - case 100: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break; - case 109: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break; - case 110: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break; - case 111: if(gc) delete (QPageLayout*)p; else delete (LPageLayout*)p; break; - case 112: if(gc) delete (QPageSize*)p; else delete (LPageSize*)p; break; - case 115: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break; - case 116: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break; - case 117: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break; - case 118: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break; - case 119: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break; - case 120: if(gc) delete (QPen*)p; else delete (LPen*)p; break; - case 121: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break; - case 122: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break; - case 123: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break; - case 124: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break; - case 125: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break; - case 126: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break; - case 127: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break; - case 128: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break; - case 129: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break; - case 130: if(gc) delete (QReadLocker*)p; else delete (LReadLocker*)p; break; - case 131: if(gc) delete (QReadWriteLock*)p; else delete (LReadWriteLock*)p; break; - case 132: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break; - case 133: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break; - case 134: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break; - case 135: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break; - case 136: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break; - case 137: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break; - case 138: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break; - case 139: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break; - case 140: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break; - case 141: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break; - case 155: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break; - case 157: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break; - case 158: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break; - case 159: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break; - case 163: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break; - case 164: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break; - case 165: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break; - case 166: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break; - case 167: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break; - case 168: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break; - case 169: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break; - case 170: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break; - case 171: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break; - case 172: if(gc) /* nothing */; else delete (LTextCodec*)p; break; - case 173: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break; - case 174: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break; - case 175: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break; - case 176: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break; - case 177: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break; - case 178: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break; - case 179: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break; - case 180: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break; - case 181: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break; - case 182: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break; - case 183: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break; - case 184: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break; - case 185: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break; - case 186: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break; - case 187: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break; - case 188: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break; - case 189: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break; - case 190: if(gc) delete (QTime*)p; else delete (LTime*)p; break; - case 191: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break; - case 192: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break; - case 193: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break; - case 194: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break; - case 195: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break; - case 196: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break; - case 197: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break; - case 198: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break; - case 199: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break; - case 200: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break; - case 201: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break; - case 202: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break; - case 214: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break; - case 215: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break; - case 216: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break; - case 217: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break; - case 218: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break; - case 219: if(gc) delete (QWriteLocker*)p; else delete (LWriteLocker*)p; break; + case 98: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break; + case 99: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break; + case 100: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break; + case 101: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break; + case 110: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break; + case 111: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break; + case 112: if(gc) delete (QPageLayout*)p; else delete (LPageLayout*)p; break; + case 113: if(gc) delete (QPageSize*)p; else delete (LPageSize*)p; break; + case 116: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break; + case 117: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break; + case 118: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break; + case 119: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break; + case 120: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break; + case 121: if(gc) delete (QPen*)p; else delete (LPen*)p; break; + case 122: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break; + case 123: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break; + case 124: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break; + case 125: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break; + case 126: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break; + case 127: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break; + case 128: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break; + case 129: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break; + case 130: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break; + case 131: if(gc) delete (QReadLocker*)p; else delete (LReadLocker*)p; break; + case 132: if(gc) delete (QReadWriteLock*)p; else delete (LReadWriteLock*)p; break; + case 133: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break; + case 134: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break; + case 135: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break; + case 136: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break; + case 137: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break; + case 138: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break; + case 139: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break; + case 140: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break; + case 141: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break; + case 142: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break; + case 156: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break; + case 158: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break; + case 159: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break; + case 160: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break; + case 164: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break; + case 165: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break; + case 166: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break; + case 167: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break; + case 168: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break; + case 169: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break; + case 170: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break; + case 171: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break; + case 172: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break; + case 173: if(gc) /* nothing */; else delete (LTextCodec*)p; break; + case 174: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break; + case 175: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break; + case 176: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break; + case 177: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break; + case 178: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break; + case 179: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break; + case 180: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break; + case 181: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break; + case 182: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break; + case 183: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break; + case 184: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break; + case 185: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break; + case 186: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break; + case 187: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break; + case 188: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break; + case 189: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break; + case 190: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break; + case 191: if(gc) delete (QTime*)p; else delete (LTime*)p; break; + case 192: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break; + case 193: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break; + case 194: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break; + case 195: if(gc) delete (QTouchDevice*)p; else delete (LTouchDevice*)p; break; + case 196: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break; + case 197: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break; + case 198: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break; + case 199: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break; + case 200: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break; + case 201: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break; + case 202: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break; + case 203: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break; + case 204: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break; + case 216: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break; + case 217: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break; + case 218: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break; + case 219: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break; + case 220: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break; + case 221: if(gc) delete (QWriteLocker*)p; else delete (LWriteLocker*)p; break; case 70: case 72: if(deleteNObject_help) { @@ -2793,16 +2799,16 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 17: case 80: case 96: - case 203: - case 204: + case 97: case 205: + case 206: + case 207: if(deleteNObject_multimedia) { deleteNObject_multimedia(n, p, gc); } break; case 11: case 74: case 75: - case 101: case 102: case 103: case 104: @@ -2810,15 +2816,15 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 106: case 107: case 108: - case 150: + case 109: case 151: case 152: case 153: case 154: + case 155: if(deleteNObject_network) { deleteNObject_network(n, p, gc); } break; - case 142: case 143: case 144: case 145: @@ -2826,21 +2832,22 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 147: case 148: case 149: + case 150: if(deleteNObject_sql) { deleteNObject_sql(n, p, gc); } break; - case 161: + case 162: if(deleteNObject_svg) { deleteNObject_svg(n, p, gc); } break; - case 206: - case 207: case 208: case 209: case 210: case 211: case 212: case 213: + case 214: + case 215: if(deleteNObject_webkit) { deleteNObject_webkit(n, p, gc); } break; }} @@ -2895,37 +2902,37 @@ const char* LObjects::nObjectSuperClass(const QByteArray& name) { case 82: s = "QEvent"; break; case 85: s = "QInputEvent"; break; case 89: s = "QGradient"; break; - case 99: s = "QInputEvent"; break; - case 100: s = "QEvent"; break; - case 109: s = "QPaintDevice"; break; - case 113: s = "QPaintDevice"; break; - case 115: s = "QEvent"; break; - case 122: s = "QPaintDevice"; break; + case 100: s = "QInputEvent"; break; + case 101: s = "QEvent"; break; + case 110: s = "QPaintDevice"; break; + case 114: s = "QPaintDevice"; break; + case 116: s = "QEvent"; break; case 123: s = "QPaintDevice"; break; - case 125: s = "QPagedPaintDevice"; break; - case 129: s = "QGradient"; break; - case 135: s = "QEvent"; break; - case 138: s = "QEvent"; break; + case 124: s = "QPaintDevice"; break; + case 126: s = "QPagedPaintDevice"; break; + case 130: s = "QGradient"; break; + case 136: s = "QEvent"; break; case 139: s = "QEvent"; break; - case 141: s = "QLayoutItem"; break; - case 145: s = "QSqlRecord"; break; - case 157: s = "QEvent"; break; - case 159: s = "QStyleOption"; break; - case 161: s = "QPaintDevice"; break; - case 166: s = "QInputEvent"; break; - case 168: s = "QTextFormat"; break; - case 171: s = "QTextFormat"; break; - case 180: s = "QTextFormat"; break; - case 181: s = "QTextCharFormat"; break; - case 185: s = "QTextFormat"; break; - case 188: s = "QTextCharFormat"; break; - case 189: s = "QTextFrameFormat"; break; - case 192: s = "QEvent"; break; - case 194: s = "QInputEvent"; break; - case 215: s = "QEvent"; break; - case 216: s = "QInputEvent"; break; - case 217: s = "QLayoutItem"; break; - case 218: s = "QEvent"; break; } + case 140: s = "QEvent"; break; + case 142: s = "QLayoutItem"; break; + case 146: s = "QSqlRecord"; break; + case 158: s = "QEvent"; break; + case 160: s = "QStyleOption"; break; + case 162: s = "QPaintDevice"; break; + case 167: s = "QInputEvent"; break; + case 169: s = "QTextFormat"; break; + case 172: s = "QTextFormat"; break; + case 181: s = "QTextFormat"; break; + case 182: s = "QTextCharFormat"; break; + case 186: s = "QTextFormat"; break; + case 189: s = "QTextCharFormat"; break; + case 190: s = "QTextFrameFormat"; break; + case 193: s = "QEvent"; break; + case 196: s = "QInputEvent"; break; + case 217: s = "QEvent"; break; + case 218: s = "QInputEvent"; break; + case 219: s = "QLayoutItem"; break; + case 220: s = "QEvent"; break; } return s; } StrList LObjects::overrideFunctions(const QByteArray& name) { @@ -3281,91 +3288,92 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 93: ids = LMarginsF::overrideIds; break; case 94: ids = LMatrix::overrideIds; break; case 95: ids = LMatrix4x4::overrideIds; break; - case 97: ids = LMetaObject::overrideIds; break; - case 98: ids = LModelIndex::overrideIds; break; - case 99: ids = LMouseEvent::overrideIds; break; - case 100: ids = LMoveEvent::overrideIds; break; - case 109: ids = LOpenGLPaintDevice::overrideIds; break; - case 110: ids = LOpenGLTexture::overrideIds; break; - case 111: ids = LPageLayout::overrideIds; break; - case 112: ids = LPageSize::overrideIds; break; - case 115: ids = LPaintEvent::overrideIds; break; - case 116: ids = LPainter::overrideIds; break; - case 117: ids = LPainterPath::overrideIds; break; - case 118: ids = LPainterPathStroker::overrideIds; break; - case 119: ids = LPalette::overrideIds; break; - case 120: ids = LPen::overrideIds; break; - case 121: ids = LPersistentModelIndex::overrideIds; break; - case 122: ids = LPicture::overrideIds; break; - case 123: ids = LPixmap::overrideIds; break; - case 124: ids = LPixmapCache::overrideIds; break; - case 125: ids = LPrinter::overrideIds; break; - case 126: ids = LPrinterInfo::overrideIds; break; - case 127: ids = LProcessEnvironment::overrideIds; break; - case 128: ids = LQuaternion::overrideIds; break; - case 129: ids = LRadialGradient::overrideIds; break; - case 130: ids = LReadLocker::overrideIds; break; - case 131: ids = LReadWriteLock::overrideIds; break; - case 132: ids = LRegExp::overrideIds; break; - case 133: ids = LRegion::overrideIds; break; - case 134: ids = LRegularExpression::overrideIds; break; - case 135: ids = LResizeEvent::overrideIds; break; - case 136: ids = LRunnable::overrideIds; break; - case 137: ids = LSemaphore::overrideIds; break; - case 138: ids = LShortcutEvent::overrideIds; break; - case 139: ids = LShowEvent::overrideIds; break; - case 140: ids = LSizePolicy::overrideIds; break; - case 141: ids = LSpacerItem::overrideIds; break; - case 155: ids = LStandardItem::overrideIds; break; - case 157: ids = LStatusTipEvent::overrideIds; break; - case 158: ids = LStyleOption::overrideIds; break; - case 159: ids = LStyleOptionGraphicsItem::overrideIds; break; - case 163: ids = LSystemSemaphore::overrideIds; break; - case 164: ids = LTableWidgetItem::overrideIds; break; - case 165: ids = LTableWidgetSelectionRange::overrideIds; break; - case 166: ids = LTabletEvent::overrideIds; break; - case 167: ids = LTextBlock::overrideIds; break; - case 168: ids = LTextBlockFormat::overrideIds; break; - case 169: ids = LTextBlockUserData::overrideIds; break; - case 170: ids = LTextBoundaryFinder::overrideIds; break; - case 171: ids = LTextCharFormat::overrideIds; break; - case 172: ids = LTextCodec::overrideIds; break; - case 173: ids = LTextCursor::overrideIds; break; - case 174: ids = LTextDecoder::overrideIds; break; - case 175: ids = LTextDocumentFragment::overrideIds; break; - case 176: ids = LTextDocumentWriter::overrideIds; break; - case 177: ids = LTextEncoder::overrideIds; break; - case 178: ids = LTextFormat::overrideIds; break; - case 179: ids = LTextFragment::overrideIds; break; - case 180: ids = LTextFrameFormat::overrideIds; break; - case 181: ids = LTextImageFormat::overrideIds; break; - case 182: ids = LTextLayout::overrideIds; break; - case 183: ids = LTextLength::overrideIds; break; - case 184: ids = LTextLine::overrideIds; break; - case 185: ids = LTextListFormat::overrideIds; break; - case 186: ids = LTextOption::overrideIds; break; - case 187: ids = LTextTableCell::overrideIds; break; - case 188: ids = LTextTableCellFormat::overrideIds; break; - case 189: ids = LTextTableFormat::overrideIds; break; - case 190: ids = LTime::overrideIds; break; - case 191: ids = LTimeZone::overrideIds; break; - case 192: ids = LTimerEvent::overrideIds; break; - case 193: ids = LToolTip::overrideIds; break; - case 194: ids = LTouchEvent::overrideIds; break; - case 195: ids = LTransform::overrideIds; break; - case 196: ids = LTreeWidgetItem::overrideIds; break; - case 197: ids = LUndoCommand::overrideIds; break; - case 198: ids = LUrl::overrideIds; break; - case 199: ids = LVariant::overrideIds; break; - case 200: ids = LVector2D::overrideIds; break; - case 201: ids = LVector3D::overrideIds; break; - case 202: ids = LVector4D::overrideIds; break; - case 214: ids = LWhatsThis::overrideIds; break; - case 215: ids = LWhatsThisClickedEvent::overrideIds; break; - case 216: ids = LWheelEvent::overrideIds; break; - case 217: ids = LWidgetItem::overrideIds; break; - case 218: ids = LWindowStateChangeEvent::overrideIds; break; - case 219: ids = LWriteLocker::overrideIds; break; + case 98: ids = LMetaObject::overrideIds; break; + case 99: ids = LModelIndex::overrideIds; break; + case 100: ids = LMouseEvent::overrideIds; break; + case 101: ids = LMoveEvent::overrideIds; break; + case 110: ids = LOpenGLPaintDevice::overrideIds; break; + case 111: ids = LOpenGLTexture::overrideIds; break; + case 112: ids = LPageLayout::overrideIds; break; + case 113: ids = LPageSize::overrideIds; break; + case 116: ids = LPaintEvent::overrideIds; break; + case 117: ids = LPainter::overrideIds; break; + case 118: ids = LPainterPath::overrideIds; break; + case 119: ids = LPainterPathStroker::overrideIds; break; + case 120: ids = LPalette::overrideIds; break; + case 121: ids = LPen::overrideIds; break; + case 122: ids = LPersistentModelIndex::overrideIds; break; + case 123: ids = LPicture::overrideIds; break; + case 124: ids = LPixmap::overrideIds; break; + case 125: ids = LPixmapCache::overrideIds; break; + case 126: ids = LPrinter::overrideIds; break; + case 127: ids = LPrinterInfo::overrideIds; break; + case 128: ids = LProcessEnvironment::overrideIds; break; + case 129: ids = LQuaternion::overrideIds; break; + case 130: ids = LRadialGradient::overrideIds; break; + case 131: ids = LReadLocker::overrideIds; break; + case 132: ids = LReadWriteLock::overrideIds; break; + case 133: ids = LRegExp::overrideIds; break; + case 134: ids = LRegion::overrideIds; break; + case 135: ids = LRegularExpression::overrideIds; break; + case 136: ids = LResizeEvent::overrideIds; break; + case 137: ids = LRunnable::overrideIds; break; + case 138: ids = LSemaphore::overrideIds; break; + case 139: ids = LShortcutEvent::overrideIds; break; + case 140: ids = LShowEvent::overrideIds; break; + case 141: ids = LSizePolicy::overrideIds; break; + case 142: ids = LSpacerItem::overrideIds; break; + case 156: ids = LStandardItem::overrideIds; break; + case 158: ids = LStatusTipEvent::overrideIds; break; + case 159: ids = LStyleOption::overrideIds; break; + case 160: ids = LStyleOptionGraphicsItem::overrideIds; break; + case 164: ids = LSystemSemaphore::overrideIds; break; + case 165: ids = LTableWidgetItem::overrideIds; break; + case 166: ids = LTableWidgetSelectionRange::overrideIds; break; + case 167: ids = LTabletEvent::overrideIds; break; + case 168: ids = LTextBlock::overrideIds; break; + case 169: ids = LTextBlockFormat::overrideIds; break; + case 170: ids = LTextBlockUserData::overrideIds; break; + case 171: ids = LTextBoundaryFinder::overrideIds; break; + case 172: ids = LTextCharFormat::overrideIds; break; + case 173: ids = LTextCodec::overrideIds; break; + case 174: ids = LTextCursor::overrideIds; break; + case 175: ids = LTextDecoder::overrideIds; break; + case 176: ids = LTextDocumentFragment::overrideIds; break; + case 177: ids = LTextDocumentWriter::overrideIds; break; + case 178: ids = LTextEncoder::overrideIds; break; + case 179: ids = LTextFormat::overrideIds; break; + case 180: ids = LTextFragment::overrideIds; break; + case 181: ids = LTextFrameFormat::overrideIds; break; + case 182: ids = LTextImageFormat::overrideIds; break; + case 183: ids = LTextLayout::overrideIds; break; + case 184: ids = LTextLength::overrideIds; break; + case 185: ids = LTextLine::overrideIds; break; + case 186: ids = LTextListFormat::overrideIds; break; + case 187: ids = LTextOption::overrideIds; break; + case 188: ids = LTextTableCell::overrideIds; break; + case 189: ids = LTextTableCellFormat::overrideIds; break; + case 190: ids = LTextTableFormat::overrideIds; break; + case 191: ids = LTime::overrideIds; break; + case 192: ids = LTimeZone::overrideIds; break; + case 193: ids = LTimerEvent::overrideIds; break; + case 194: ids = LToolTip::overrideIds; break; + case 195: ids = LTouchDevice::overrideIds; break; + case 196: ids = LTouchEvent::overrideIds; break; + case 197: ids = LTransform::overrideIds; break; + case 198: ids = LTreeWidgetItem::overrideIds; break; + case 199: ids = LUndoCommand::overrideIds; break; + case 200: ids = LUrl::overrideIds; break; + case 201: ids = LVariant::overrideIds; break; + case 202: ids = LVector2D::overrideIds; break; + case 203: ids = LVector3D::overrideIds; break; + case 204: ids = LVector4D::overrideIds; break; + case 216: ids = LWhatsThis::overrideIds; break; + case 217: ids = LWhatsThisClickedEvent::overrideIds; break; + case 218: ids = LWheelEvent::overrideIds; break; + case 219: ids = LWidgetItem::overrideIds; break; + case 220: ids = LWindowStateChangeEvent::overrideIds; break; + case 221: ids = LWriteLocker::overrideIds; break; case 70: case 72: if(override_help) { @@ -3380,9 +3388,10 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 17: case 80: case 96: - case 203: - case 204: + case 97: case 205: + case 206: + case 207: if(override_multimedia) { NumList* _ids = override_multimedia(name); if(_ids) { @@ -3391,7 +3400,6 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 11: case 74: case 75: - case 101: case 102: case 103: case 104: @@ -3399,17 +3407,17 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 106: case 107: case 108: - case 150: + case 109: case 151: case 152: case 153: case 154: + case 155: if(override_network) { NumList* _ids = override_network(name); if(_ids) { ids = *_ids; }} break; - case 142: case 143: case 144: case 145: @@ -3417,25 +3425,26 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 147: case 148: case 149: + case 150: if(override_sql) { NumList* _ids = override_sql(name); if(_ids) { ids = *_ids; }} break; - case 161: + case 162: if(override_svg) { NumList* _ids = override_svg(name); if(_ids) { ids = *_ids; }} break; - case 206: - case 207: case 208: case 209: case 210: case 211: case 212: case 213: + case 214: + case 215: 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 db9cdd5..b12ed11 100644 --- a/src/gen/_main_n_classes.h +++ b/src/gen/_main_n_classes.h @@ -1118,7 +1118,7 @@ public: }; class LMetaObject : public QMetaObject { - friend class N97; + friend class N98; public: static NumList overrideIds; @@ -1126,7 +1126,7 @@ public: }; class LModelIndex : public QModelIndex { - friend class N98; + friend class N99; public: LModelIndex(uint u) : unique(u) {} @@ -1135,7 +1135,7 @@ public: }; class LMouseEvent : public QMouseEvent { - friend class N99; + friend class N100; public: LMouseEvent(uint u, Type x1, const QPointF& x2, Qt::MouseButton x3, Qt::MouseButtons x4, Qt::KeyboardModifiers x5) : QMouseEvent(x1, x2, x3, x4, x5), unique(u) {} LMouseEvent(uint u, Type x1, const QPointF& x2, const QPointF& x3, Qt::MouseButton x4, Qt::MouseButtons x5, Qt::KeyboardModifiers x6) : QMouseEvent(x1, x2, x3, x4, x5, x6), unique(u) {} @@ -1146,7 +1146,7 @@ public: }; class LMoveEvent : public QMoveEvent { - friend class N100; + friend class N101; public: LMoveEvent(uint u, const QPoint& x1, const QPoint& x2) : QMoveEvent(x1, x2), unique(u) {} @@ -1155,7 +1155,7 @@ public: }; class LOpenGLPaintDevice : public QOpenGLPaintDevice { - friend class N109; + friend class N110; public: LOpenGLPaintDevice(uint u) : unique(u) {} LOpenGLPaintDevice(uint u, const QSize& x1) : QOpenGLPaintDevice(x1), unique(u) {} @@ -1169,7 +1169,7 @@ public: }; class LOpenGLTexture : public QOpenGLTexture { - friend class N110; + friend class N111; public: LOpenGLTexture(uint u, Target x1) : QOpenGLTexture(x1), unique(u) {} LOpenGLTexture(uint u, const QImage& x1, MipMapGeneration x2 = GenerateMipMaps) : QOpenGLTexture(x1, x2), unique(u) {} @@ -1179,7 +1179,7 @@ public: }; class LPageLayout : public QPageLayout { - friend class N111; + friend class N112; public: LPageLayout(uint u) : unique(u) {} LPageLayout(uint u, const QPageSize& x1, Orientation x2, const QMarginsF& x3, Unit x4 = Point, const QMarginsF& x5 = QMarginsF_DEFAULT) : QPageLayout(x1, x2, x3, x4, x5), unique(u) {} @@ -1190,7 +1190,7 @@ public: }; class LPageSize : public QPageSize { - friend class N112; + friend class N113; public: LPageSize(uint u) : unique(u) {} LPageSize(uint u, PageSizeId x1) : QPageSize(x1), unique(u) {} @@ -1203,7 +1203,7 @@ public: }; class LPaintEvent : public QPaintEvent { - friend class N115; + friend class N116; public: LPaintEvent(uint u, const QRegion& x1) : QPaintEvent(x1), unique(u) {} LPaintEvent(uint u, const QRect& x1) : QPaintEvent(x1), unique(u) {} @@ -1213,7 +1213,7 @@ public: }; class LPainter : public QPainter { - friend class N116; + friend class N117; public: LPainter(uint u, QImage* x1) : QPainter(x1), unique(u) {} LPainter(uint u, QPdfWriter* x1) : QPainter(x1), unique(u) {} @@ -1228,7 +1228,7 @@ public: }; class LPainterPath : public QPainterPath { - friend class N117; + friend class N118; public: LPainterPath(uint u) : unique(u) {} LPainterPath(uint u, const QPointF& x1) : QPainterPath(x1), unique(u) {} @@ -1239,7 +1239,7 @@ public: }; class LPainterPathStroker : public QPainterPathStroker { - friend class N118; + friend class N119; public: LPainterPathStroker(uint u) : unique(u) {} LPainterPathStroker(uint u, const QPen& x1) : QPainterPathStroker(x1), unique(u) {} @@ -1249,7 +1249,7 @@ public: }; class LPalette : public QPalette { - friend class N119; + friend class N120; public: LPalette(uint u) : unique(u) {} LPalette(uint u, const QColor& x1) : QPalette(x1), unique(u) {} @@ -1263,7 +1263,7 @@ public: }; class LPen : public QPen { - friend class N120; + friend class N121; public: LPen(uint u) : unique(u) {} LPen(uint u, Qt::PenStyle x1) : QPen(x1), unique(u) {} @@ -1276,7 +1276,7 @@ public: }; class LPersistentModelIndex : public QPersistentModelIndex { - friend class N121; + friend class N122; public: LPersistentModelIndex(uint u, const QModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {} LPersistentModelIndex(uint u, const QPersistentModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {} @@ -1286,7 +1286,7 @@ public: }; class LPicture : public QPicture { - friend class N122; + friend class N123; public: LPicture(uint u, int x1 = -1) : QPicture(x1), unique(u) {} LPicture(uint u, const QPicture& x1) : QPicture(x1), unique(u) {} @@ -1299,7 +1299,7 @@ public: }; class LPixmap : public QPixmap { - friend class N123; + friend class N124; public: LPixmap(uint u) : unique(u) {} LPixmap(uint u, int x1, int x2) : QPixmap(x1, x2), unique(u) {} @@ -1314,7 +1314,7 @@ public: }; class LPixmapCache : public QPixmapCache { - friend class N124; + friend class N125; public: static NumList overrideIds; @@ -1322,7 +1322,7 @@ public: }; class LPrinter : public QPrinter { - friend class N125; + friend class N126; public: LPrinter(uint u, PrinterMode x1 = ScreenResolution) : QPrinter(x1), unique(u) {} @@ -1335,7 +1335,7 @@ public: }; class LPrinterInfo : public QPrinterInfo { - friend class N126; + friend class N127; public: static NumList overrideIds; @@ -1343,7 +1343,7 @@ public: }; class LProcessEnvironment : public QProcessEnvironment { - friend class N127; + friend class N128; public: LProcessEnvironment(uint u) : unique(u) {} LProcessEnvironment(uint u, const QProcessEnvironment& x1) : QProcessEnvironment(x1), unique(u) {} @@ -1353,7 +1353,7 @@ public: }; class LQuaternion : public QQuaternion { - friend class N128; + friend class N129; public: LQuaternion(uint u) : unique(u) {} LQuaternion(uint u, float x1, float x2, float x3, float x4) : QQuaternion(x1, x2, x3, x4), unique(u) {} @@ -1365,7 +1365,7 @@ public: }; class LRadialGradient : public QRadialGradient { - friend class N129; + friend class N130; public: LRadialGradient(uint u) : unique(u) {} LRadialGradient(uint u, const QPointF& x1, qreal x2, const QPointF& x3) : QRadialGradient(x1, x2, x3), unique(u) {} @@ -1380,7 +1380,7 @@ public: }; class LReadLocker : public QReadLocker { - friend class N130; + friend class N131; public: LReadLocker(uint u, QReadWriteLock* x1) : QReadLocker(x1), unique(u) {} @@ -1389,7 +1389,7 @@ public: }; class LReadWriteLock : public QReadWriteLock { - friend class N131; + friend class N132; public: LReadWriteLock(uint u, RecursionMode x1 = NonRecursive) : QReadWriteLock(x1), unique(u) {} @@ -1398,7 +1398,7 @@ public: }; class LRegExp : public QRegExp { - friend class N132; + friend class N133; public: LRegExp(uint u) : unique(u) {} LRegExp(uint u, const QString& x1, Qt::CaseSensitivity x2 = Qt::CaseSensitive, PatternSyntax x3 = RegExp) : QRegExp(x1, x2, x3), unique(u) {} @@ -1409,7 +1409,7 @@ public: }; class LRegion : public QRegion { - friend class N133; + friend class N134; public: LRegion(uint u) : unique(u) {} LRegion(uint u, int x1, int x2, int x3, int x4, RegionType x5 = Rectangle) : QRegion(x1, x2, x3, x4, x5), unique(u) {} @@ -1423,7 +1423,7 @@ public: }; class LRegularExpression : public QRegularExpression { - friend class N134; + friend class N135; public: LRegularExpression(uint u) : unique(u) {} LRegularExpression(uint u, const QString& x1, PatternOptions x2 = NoPatternOption) : QRegularExpression(x1, x2), unique(u) {} @@ -1434,7 +1434,7 @@ public: }; class LResizeEvent : public QResizeEvent { - friend class N135; + friend class N136; public: LResizeEvent(uint u, const QSize& x1, const QSize& x2) : QResizeEvent(x1, x2), unique(u) {} @@ -1443,7 +1443,7 @@ public: }; class LRunnable : public QRunnable { - friend class N136; + friend class N137; public: LRunnable(uint u) : unique(u) {} @@ -1454,7 +1454,7 @@ public: }; class LSemaphore : public QSemaphore { - friend class N137; + friend class N138; public: LSemaphore(uint u, int x1 = 0) : QSemaphore(x1), unique(u) {} @@ -1463,7 +1463,7 @@ public: }; class LShortcutEvent : public QShortcutEvent { - friend class N138; + friend class N139; public: LShortcutEvent(uint u, const QKeySequence& x1, int x2, bool x3 = false) : QShortcutEvent(x1, x2, x3), unique(u) {} @@ -1472,7 +1472,7 @@ public: }; class LShowEvent : public QShowEvent { - friend class N139; + friend class N140; public: LShowEvent(uint u) : unique(u) {} @@ -1481,7 +1481,7 @@ public: }; class LSizePolicy : public QSizePolicy { - friend class N140; + friend class N141; public: LSizePolicy(uint u) : unique(u) {} LSizePolicy(uint u, Policy x1, Policy x2, ControlType x3 = DefaultType) : QSizePolicy(x1, x2, x3), unique(u) {} @@ -1491,7 +1491,7 @@ public: }; class LSpacerItem : public QSpacerItem { - friend class N141; + friend class N142; 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) {} @@ -1516,7 +1516,7 @@ public: }; class LStandardItem : public QStandardItem { - friend class N155; + friend class N156; public: LStandardItem(uint u) : unique(u) {} LStandardItem(uint u, const QString& x1) : QStandardItem(x1), unique(u) {} @@ -1533,7 +1533,7 @@ public: }; class LStatusTipEvent : public QStatusTipEvent { - friend class N157; + friend class N158; public: LStatusTipEvent(uint u, const QString& x1) : QStatusTipEvent(x1), unique(u) {} @@ -1542,7 +1542,7 @@ public: }; class LStyleOption : public QStyleOption { - friend class N158; + friend class N159; public: LStyleOption(uint u, int x1 = QStyleOption::Version, int x2 = SO_Default) : QStyleOption(x1, x2), unique(u) {} LStyleOption(uint u, const QStyleOption& x1) : QStyleOption(x1), unique(u) {} @@ -1552,7 +1552,7 @@ public: }; class LStyleOptionGraphicsItem : public QStyleOptionGraphicsItem { - friend class N159; + friend class N160; public: LStyleOptionGraphicsItem(uint u) : unique(u) {} LStyleOptionGraphicsItem(uint u, const QStyleOptionGraphicsItem& x1) : QStyleOptionGraphicsItem(x1), unique(u) {} @@ -1562,7 +1562,7 @@ public: }; class LSystemSemaphore : public QSystemSemaphore { - friend class N163; + friend class N164; public: LSystemSemaphore(uint u, const QString& x1, int x2 = 0, AccessMode x3 = Open) : QSystemSemaphore(x1, x2, x3), unique(u) {} @@ -1571,7 +1571,7 @@ public: }; class LTableWidgetItem : public QTableWidgetItem { - friend class N164; + friend class N165; 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) {} @@ -1587,7 +1587,7 @@ public: }; class LTableWidgetSelectionRange : public QTableWidgetSelectionRange { - friend class N165; + friend class N166; public: LTableWidgetSelectionRange(uint u) : unique(u) {} LTableWidgetSelectionRange(uint u, int x1, int x2, int x3, int x4) : QTableWidgetSelectionRange(x1, x2, x3, x4), unique(u) {} @@ -1598,7 +1598,7 @@ public: }; class LTabletEvent : public QTabletEvent { - friend class N166; + friend class N167; public: LTabletEvent(uint u, Type x1, const QPointF& x2, const QPointF& x3, int x4, int x5, qreal x6, int x7, int x8, qreal x9, qreal x10, int x11, Qt::KeyboardModifiers x12, qint64 x13, Qt::MouseButton x14, Qt::MouseButtons x15) : QTabletEvent(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15), unique(u) {} @@ -1607,7 +1607,7 @@ public: }; class LTextBlock : public QTextBlock { - friend class N167; + friend class N168; public: LTextBlock(uint u, const QTextBlock& x1) : QTextBlock(x1), unique(u) {} @@ -1616,7 +1616,7 @@ public: }; class LTextBlockFormat : public QTextBlockFormat { - friend class N168; + friend class N169; public: LTextBlockFormat(uint u) : unique(u) {} @@ -1625,7 +1625,7 @@ public: }; class LTextBlockUserData : public QTextBlockUserData { - friend class N169; + friend class N170; public: static NumList overrideIds; @@ -1633,7 +1633,7 @@ public: }; class LTextBoundaryFinder : public QTextBoundaryFinder { - friend class N170; + friend class N171; public: LTextBoundaryFinder(uint u) : unique(u) {} LTextBoundaryFinder(uint u, const QTextBoundaryFinder& x1) : QTextBoundaryFinder(x1), unique(u) {} @@ -1645,7 +1645,7 @@ public: }; class LTextCharFormat : public QTextCharFormat { - friend class N171; + friend class N172; public: LTextCharFormat(uint u) : unique(u) {} @@ -1654,7 +1654,7 @@ public: }; class LTextCodec : public QTextCodec { - friend class N172; + friend class N173; public: static NumList overrideIds; @@ -1668,7 +1668,7 @@ public: }; class LTextCursor : public QTextCursor { - friend class N173; + friend class N174; public: LTextCursor(uint u) : unique(u) {} LTextCursor(uint u, QTextDocument* x1) : QTextCursor(x1), unique(u) {} @@ -1681,7 +1681,7 @@ public: }; class LTextDecoder : public QTextDecoder { - friend class N174; + friend class N175; public: LTextDecoder(uint u, const QTextCodec* x1) : QTextDecoder(x1), unique(u) {} LTextDecoder(uint u, const QTextCodec* x1, QTextCodec::ConversionFlags x2) : QTextDecoder(x1, x2), unique(u) {} @@ -1691,7 +1691,7 @@ public: }; class LTextDocumentFragment : public QTextDocumentFragment { - friend class N175; + friend class N176; public: LTextDocumentFragment(uint u) : unique(u) {} LTextDocumentFragment(uint u, const QTextDocument* x1) : QTextDocumentFragment(x1), unique(u) {} @@ -1703,7 +1703,7 @@ public: }; class LTextDocumentWriter : public QTextDocumentWriter { - friend class N176; + friend class N177; public: LTextDocumentWriter(uint u) : unique(u) {} LTextDocumentWriter(uint u, const QString& x1, const QByteArray& x2 = QByteArray()) : QTextDocumentWriter(x1, x2), unique(u) {} @@ -1713,7 +1713,7 @@ public: }; class LTextEncoder : public QTextEncoder { - friend class N177; + friend class N178; public: LTextEncoder(uint u, const QTextCodec* x1) : QTextEncoder(x1), unique(u) {} LTextEncoder(uint u, const QTextCodec* x1, QTextCodec::ConversionFlags x2) : QTextEncoder(x1, x2), unique(u) {} @@ -1723,7 +1723,7 @@ public: }; class LTextFormat : public QTextFormat { - friend class N178; + friend class N179; public: LTextFormat(uint u) : unique(u) {} LTextFormat(uint u, int x1) : QTextFormat(x1), unique(u) {} @@ -1734,7 +1734,7 @@ public: }; class LTextFragment : public QTextFragment { - friend class N179; + friend class N180; public: LTextFragment(uint u) : unique(u) {} LTextFragment(uint u, const QTextFragment& x1) : QTextFragment(x1), unique(u) {} @@ -1744,7 +1744,7 @@ public: }; class LTextFrameFormat : public QTextFrameFormat { - friend class N180; + friend class N181; public: LTextFrameFormat(uint u) : unique(u) {} @@ -1753,7 +1753,7 @@ public: }; class LTextImageFormat : public QTextImageFormat { - friend class N181; + friend class N182; public: LTextImageFormat(uint u) : unique(u) {} @@ -1762,7 +1762,7 @@ public: }; class LTextLayout : public QTextLayout { - friend class N182; + friend class N183; public: LTextLayout(uint u) : unique(u) {} LTextLayout(uint u, const QString& x1) : QTextLayout(x1), unique(u) {} @@ -1773,7 +1773,7 @@ public: }; class LTextLength : public QTextLength { - friend class N183; + friend class N184; public: LTextLength(uint u) : unique(u) {} LTextLength(uint u, Type x1, qreal x2) : QTextLength(x1, x2), unique(u) {} @@ -1783,7 +1783,7 @@ public: }; class LTextLine : public QTextLine { - friend class N184; + friend class N185; public: LTextLine(uint u) : unique(u) {} @@ -1792,7 +1792,7 @@ public: }; class LTextListFormat : public QTextListFormat { - friend class N185; + friend class N186; public: LTextListFormat(uint u) : unique(u) {} @@ -1801,7 +1801,7 @@ public: }; class LTextOption : public QTextOption { - friend class N186; + friend class N187; public: LTextOption(uint u) : unique(u) {} LTextOption(uint u, Qt::Alignment x1) : QTextOption(x1), unique(u) {} @@ -1812,7 +1812,7 @@ public: }; class LTextTableCell : public QTextTableCell { - friend class N187; + friend class N188; public: LTextTableCell(uint u) : unique(u) {} LTextTableCell(uint u, const QTextTableCell& x1) : QTextTableCell(x1), unique(u) {} @@ -1822,7 +1822,7 @@ public: }; class LTextTableCellFormat : public QTextTableCellFormat { - friend class N188; + friend class N189; public: LTextTableCellFormat(uint u) : unique(u) {} @@ -1831,7 +1831,7 @@ public: }; class LTextTableFormat : public QTextTableFormat { - friend class N189; + friend class N190; public: LTextTableFormat(uint u) : unique(u) {} @@ -1840,7 +1840,7 @@ public: }; class LTime : public QTime { - friend class N190; + friend class N191; public: LTime(uint u) : unique(u) {} LTime(uint u, int x1, int x2, int x3 = 0, int x4 = 0) : QTime(x1, x2, x3, x4), unique(u) {} @@ -1850,7 +1850,7 @@ public: }; class LTimeZone : public QTimeZone { - friend class N191; + friend class N192; public: LTimeZone(uint u) : unique(u) {} LTimeZone(uint u, const QByteArray& x1) : QTimeZone(x1), unique(u) {} @@ -1863,7 +1863,7 @@ public: }; class LTimerEvent : public QTimerEvent { - friend class N192; + friend class N193; public: LTimerEvent(uint u, int x1) : QTimerEvent(x1), unique(u) {} @@ -1872,15 +1872,24 @@ public: }; class LToolTip : public QToolTip { - friend class N193; + friend class N194; public: static NumList overrideIds; uint unique; }; +class LTouchDevice : public QTouchDevice { + friend class N195; +public: + LTouchDevice(uint u) : unique(u) {} + + static NumList overrideIds; + uint unique; +}; + class LTouchEvent : public QTouchEvent { - friend class N194; + friend class N196; 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) {} @@ -1889,7 +1898,7 @@ public: }; class LTransform : public QTransform { - friend class N195; + friend class N197; 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) {} @@ -1901,7 +1910,7 @@ public: }; class LTreeWidgetItem : public QTreeWidgetItem { - friend class N196; + friend class N198; 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) {} @@ -1922,7 +1931,7 @@ public: }; class LUndoCommand : public QUndoCommand { - friend class N197; + friend class N199; 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) {} @@ -1937,7 +1946,7 @@ public: }; class LUrl : public QUrl { - friend class N198; + friend class N200; public: LUrl(uint u) : unique(u) {} LUrl(uint u, const QUrl& x1) : QUrl(x1), unique(u) {} @@ -1948,7 +1957,7 @@ public: }; class LVariant : public QVariant { - friend class N199; + friend class N201; public: LVariant(uint u, const QCursor& x1) : QVariant(x1), unique(u) {} LVariant(uint u) : unique(u) {} @@ -1997,7 +2006,7 @@ public: }; class LVector2D : public QVector2D { - friend class N200; + friend class N202; public: LVector2D(uint u) : unique(u) {} LVector2D(uint u, float x1, float x2) : QVector2D(x1, x2), unique(u) {} @@ -2011,7 +2020,7 @@ public: }; class LVector3D : public QVector3D { - friend class N201; + friend class N203; public: LVector3D(uint u) : unique(u) {} LVector3D(uint u, float x1, float x2, float x3) : QVector3D(x1, x2, x3), unique(u) {} @@ -2026,7 +2035,7 @@ public: }; class LVector4D : public QVector4D { - friend class N202; + friend class N204; public: LVector4D(uint u) : unique(u) {} LVector4D(uint u, float x1, float x2, float x3, float x4) : QVector4D(x1, x2, x3, x4), unique(u) {} @@ -2042,7 +2051,7 @@ public: }; class LWhatsThis : public QWhatsThis { - friend class N214; + friend class N216; public: static NumList overrideIds; @@ -2050,7 +2059,7 @@ public: }; class LWhatsThisClickedEvent : public QWhatsThisClickedEvent { - friend class N215; + friend class N217; public: LWhatsThisClickedEvent(uint u, const QString& x1) : QWhatsThisClickedEvent(x1), unique(u) {} @@ -2059,7 +2068,7 @@ public: }; class LWheelEvent : public QWheelEvent { - friend class N216; + friend class N218; 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) {} @@ -2070,7 +2079,7 @@ public: }; class LWidgetItem : public QWidgetItem { - friend class N217; + friend class N219; public: LWidgetItem(uint u, QWidget* x1) : QWidgetItem(x1), unique(u) {} @@ -2095,7 +2104,7 @@ public: }; class LWindowStateChangeEvent : public QWindowStateChangeEvent { - friend class N218; + friend class N220; public: static NumList overrideIds; @@ -2103,7 +2112,7 @@ public: }; class LWriteLocker : public QWriteLocker { - friend class N219; + friend class N221; 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 68383ff..62b96c7 100644 --- a/src/gen/_main_n_methods.h +++ b/src/gen/_main_n_methods.h @@ -1290,7 +1290,7 @@ public: Q_INVOKABLE void Mviewport(QMatrix4x4* o, const QRectF& x1) { o->viewport(x1); } }; -class EQL_EXPORT N97 : public QObject { // QMetaObject +class EQL_EXPORT N98 : public QObject { // QMetaObject Q_OBJECT public: Q_INVOKABLE int MclassInfoCount(QMetaObject* o) const { return o->classInfoCount(); } @@ -1317,7 +1317,7 @@ public: Q_INVOKABLE QByteArray SnormalizedType(const char* x1) { return QMetaObject::normalizedType(x1); } }; -class EQL_EXPORT N98 : public QObject { // QModelIndex +class EQL_EXPORT N99 : public QObject { // QModelIndex Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LModelIndex(u); } @@ -1332,7 +1332,7 @@ public: Q_INVOKABLE QModelIndex Msibling(QModelIndex* o, int x1, int x2) const { return o->sibling(x1, x2); } }; -class EQL_EXPORT N110 : public QObject { // QOpenGLTexture +class EQL_EXPORT N111 : public QObject { // QOpenGLTexture Q_OBJECT public: Q_INVOKABLE void* C(uint u, QOpenGLTexture::Target x1) { return new LOpenGLTexture(u, x1); } @@ -1415,7 +1415,7 @@ public: Q_INVOKABLE bool ShasFeature(QOpenGLTexture::Feature x1) { return QOpenGLTexture::hasFeature(x1); } }; -class EQL_EXPORT N111 : public QObject { // QPageLayout +class EQL_EXPORT N112 : public QObject { // QPageLayout Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPageLayout(u); } @@ -1452,7 +1452,7 @@ public: Q_INVOKABLE int Munits(QPageLayout* o) const { return o->units(); } }; -class EQL_EXPORT N112 : public QObject { // QPageSize +class EQL_EXPORT N113 : public QObject { // QPageSize Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPageSize(u); } @@ -1488,7 +1488,7 @@ public: Q_INVOKABLE int SwindowsId(QPageSize::PageSizeId x1) { return QPageSize::windowsId(x1); } }; -class EQL_EXPORT N114 : public QObject { // QPaintDevice +class EQL_EXPORT N115 : public QObject { // QPaintDevice Q_OBJECT public: Q_INVOKABLE int McolorCount(QPaintDevice* o) const { return o->colorCount(); } @@ -1505,7 +1505,7 @@ public: Q_INVOKABLE int MwidthMM(QPaintDevice* o) const { return o->widthMM(); } }; -class EQL_EXPORT N116 : public QObject { // QPainter +class EQL_EXPORT N117 : public QObject { // QPainter Q_OBJECT public: Q_INVOKABLE void* C(uint u, QImage* x1) { return new LPainter(u, x1); } @@ -1702,7 +1702,7 @@ public: Q_INVOKABLE QTransform MworldTransform(QPainter* o) const { return o->worldTransform(); } }; -class EQL_EXPORT N117 : public QObject { // QPainterPath +class EQL_EXPORT N118 : public QObject { // QPainterPath Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPainterPath(u); } @@ -1770,7 +1770,7 @@ public: Q_INVOKABLE QPainterPath Munited(QPainterPath* o, const QPainterPath& x1) const { return o->united(x1); } }; -class EQL_EXPORT N118 : public QObject { // QPainterPathStroker +class EQL_EXPORT N119 : public QObject { // QPainterPathStroker Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPainterPathStroker(u); } @@ -1793,7 +1793,7 @@ public: Q_INVOKABLE qreal Mwidth(QPainterPathStroker* o) const { return o->width(); } }; -class EQL_EXPORT N119 : public QObject { // QPalette +class EQL_EXPORT N120 : public QObject { // QPalette Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPalette(u); } @@ -1840,7 +1840,7 @@ public: Q_INVOKABLE QBrush MwindowText(QPalette* o) const { return o->windowText(); } }; -class EQL_EXPORT N120 : public QObject { // QPen +class EQL_EXPORT N121 : public QObject { // QPen Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPen(u); } @@ -1874,7 +1874,7 @@ public: Q_INVOKABLE qreal MwidthF(QPen* o) const { return o->widthF(); } }; -class EQL_EXPORT N121 : public QObject { // QPersistentModelIndex +class EQL_EXPORT N122 : public QObject { // QPersistentModelIndex Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QModelIndex& x1) { return new LPersistentModelIndex(u, x1); } @@ -1891,7 +1891,7 @@ public: Q_INVOKABLE void Mswap(QPersistentModelIndex* o, QPersistentModelIndex& x1) { o->swap(x1); } }; -class EQL_EXPORT N124 : public QObject { // QPixmapCache +class EQL_EXPORT N125 : public QObject { // QPixmapCache Q_OBJECT public: Q_INVOKABLE int ScacheLimit() { return QPixmapCache::cacheLimit(); } @@ -1902,7 +1902,7 @@ public: Q_INVOKABLE void SsetCacheLimit(int x1) { QPixmapCache::setCacheLimit(x1); } }; -class EQL_EXPORT N126 : public QObject { // QPrinterInfo +class EQL_EXPORT N127 : public QObject { // QPrinterInfo Q_OBJECT public: Q_INVOKABLE int MdefaultDuplexMode(QPrinterInfo* o) const { return o->defaultDuplexMode(); } @@ -1925,7 +1925,7 @@ public: Q_INVOKABLE QString SdefaultPrinterName() { return QPrinterInfo::defaultPrinterName(); } }; -class EQL_EXPORT N127 : public QObject { // QProcessEnvironment +class EQL_EXPORT N128 : public QObject { // QProcessEnvironment Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LProcessEnvironment(u); } @@ -1943,7 +1943,7 @@ public: Q_INVOKABLE QProcessEnvironment SsystemEnvironment() { return QProcessEnvironment::systemEnvironment(); } }; -class EQL_EXPORT N128 : public QObject { // QQuaternion +class EQL_EXPORT N129 : public QObject { // QQuaternion Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LQuaternion(u); } @@ -1984,7 +1984,7 @@ public: Q_INVOKABLE QQuaternion Sslerp(const QQuaternion& x1, const QQuaternion& x2, float x3) { return QQuaternion::slerp(x1, x2, x3); } }; -class EQL_EXPORT N130 : public QObject { // QReadLocker +class EQL_EXPORT N131 : public QObject { // QReadLocker Q_OBJECT public: Q_INVOKABLE void* C(uint u, QReadWriteLock* x1) { return new LReadLocker(u, x1); } @@ -1993,7 +1993,7 @@ public: Q_INVOKABLE void Munlock(QReadLocker* o) { o->unlock(); } }; -class EQL_EXPORT N131 : public QObject { // QReadWriteLock +class EQL_EXPORT N132 : public QObject { // QReadWriteLock Q_OBJECT public: Q_INVOKABLE void* C(uint u, QReadWriteLock::RecursionMode x1 = QReadWriteLock::NonRecursive) { return new LReadWriteLock(u, x1); } @@ -2006,7 +2006,7 @@ public: Q_INVOKABLE void Munlock(QReadWriteLock* o) { o->unlock(); } }; -class EQL_EXPORT N132 : public QObject { // QRegExp +class EQL_EXPORT N133 : public QObject { // QRegExp Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRegExp(u); } @@ -2035,7 +2035,7 @@ public: Q_INVOKABLE QString Sescape(const QString& x1) { return QRegExp::escape(x1); } }; -class EQL_EXPORT N133 : public QObject { // QRegion +class EQL_EXPORT N134 : public QObject { // QRegion Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRegion(u); } @@ -2067,7 +2067,7 @@ public: Q_INVOKABLE QRegion Mxored(QRegion* o, const QRegion& x1) const { return o->xored(x1); } }; -class EQL_EXPORT N134 : public QObject { // QRegularExpression +class EQL_EXPORT N135 : public QObject { // QRegularExpression Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRegularExpression(u); } @@ -2091,7 +2091,7 @@ public: Q_INVOKABLE QString Sescape(const QString& x1) { return QRegularExpression::escape(x1); } }; -class EQL_EXPORT N136 : public QObject { // QRunnable +class EQL_EXPORT N137 : public QObject { // QRunnable Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRunnable(u); } @@ -2100,7 +2100,7 @@ public: Q_INVOKABLE void MsetAutoDelete(QRunnable* o, bool x1) { o->setAutoDelete(x1); } }; -class EQL_EXPORT N137 : public QObject { // QSemaphore +class EQL_EXPORT N138 : public QObject { // QSemaphore Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = 0) { return new LSemaphore(u, x1); } @@ -2111,7 +2111,7 @@ public: Q_INVOKABLE bool MtryAcquire(QSemaphore* o, int x1, int x2) { return o->tryAcquire(x1, x2); } }; -class EQL_EXPORT N140 : public QObject { // QSizePolicy +class EQL_EXPORT N141 : public QObject { // QSizePolicy Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSizePolicy(u); } @@ -2136,7 +2136,7 @@ public: Q_INVOKABLE int MverticalStretch(QSizePolicy* o) const { return o->verticalStretch(); } }; -class EQL_EXPORT N155 : public QObject { // QStandardItem +class EQL_EXPORT N156 : public QObject { // QStandardItem Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LStandardItem(u); } @@ -2223,7 +2223,7 @@ public: Q_INVOKABLE void MemitDataChanged(QStandardItem* o) { ((LStandardItem*)o)->emitDataChanged(); } }; -class EQL_EXPORT N156 : public QObject { // QStandardPaths +class EQL_EXPORT N157 : public QObject { // QStandardPaths Q_OBJECT public: Q_INVOKABLE QString SdisplayName(QStandardPaths::StandardLocation x1) { return QStandardPaths::displayName(x1); } @@ -2235,7 +2235,7 @@ public: Q_INVOKABLE QString SwritableLocation(QStandardPaths::StandardLocation x1) { return QStandardPaths::writableLocation(x1); } }; -class EQL_EXPORT N158 : public QObject { // QStyleOption +class EQL_EXPORT N159 : public QObject { // QStyleOption Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = QStyleOption::Version, int x2 = QStyleOption::SO_Default) { return new LStyleOption(u, x1, x2); } @@ -2243,7 +2243,7 @@ public: Q_INVOKABLE void MinitFrom(QStyleOption* o, const QWidget* x1) { o->initFrom(x1); } }; -class EQL_EXPORT N160 : public QObject { // QSurface +class EQL_EXPORT N161 : public QObject { // QSurface Q_OBJECT public: Q_INVOKABLE QSurfaceFormat Mformat(QSurface* o) const { return o->format(); } @@ -2253,7 +2253,7 @@ public: Q_INVOKABLE int MsurfaceType(QSurface* o) const { return o->surfaceType(); } }; -class EQL_EXPORT N162 : public QObject { // QSysInfo +class EQL_EXPORT N163 : public QObject { // QSysInfo Q_OBJECT public: Q_INVOKABLE QString SbuildAbi() { return QSysInfo::buildAbi(); } @@ -2268,7 +2268,7 @@ public: Q_INVOKABLE int SwindowsVersion() { return QSysInfo::windowsVersion(); } }; -class EQL_EXPORT N163 : public QObject { // QSystemSemaphore +class EQL_EXPORT N164 : public QObject { // QSystemSemaphore Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1, int x2 = 0, QSystemSemaphore::AccessMode x3 = QSystemSemaphore::Open) { return new LSystemSemaphore(u, x1, x2, x3); } @@ -2280,7 +2280,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 N164 : public QObject { // QTableWidgetItem +class EQL_EXPORT N165 : public QObject { // QTableWidgetItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = QTableWidgetItem::Type) { return new LTableWidgetItem(u, x1); } @@ -2322,7 +2322,7 @@ public: Q_INVOKABLE QString MwhatsThis(QTableWidgetItem* o) const { return o->whatsThis(); } }; -class EQL_EXPORT N165 : public QObject { // QTableWidgetSelectionRange +class EQL_EXPORT N166 : public QObject { // QTableWidgetSelectionRange Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTableWidgetSelectionRange(u); } @@ -2336,7 +2336,7 @@ public: Q_INVOKABLE int MtopRow(QTableWidgetSelectionRange* o) const { return o->topRow(); } }; -class EQL_EXPORT N167 : public QObject { // QTextBlock +class EQL_EXPORT N168 : public QObject { // QTextBlock Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QTextBlock& x1) { return new LTextBlock(u, x1); } @@ -2371,12 +2371,12 @@ public: Q_INVOKABLE int MuserState(QTextBlock* o) const { return o->userState(); } }; -class EQL_EXPORT N169 : public QObject { // QTextBlockUserData +class EQL_EXPORT N170 : public QObject { // QTextBlockUserData Q_OBJECT public: }; -class EQL_EXPORT N170 : public QObject { // QTextBoundaryFinder +class EQL_EXPORT N171 : public QObject { // QTextBoundaryFinder Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextBoundaryFinder(u); } @@ -2396,7 +2396,7 @@ public: Q_INVOKABLE int Mtype(QTextBoundaryFinder* o) const { return o->type(); } }; -class EQL_EXPORT N172 : public QObject { // QTextCodec +class EQL_EXPORT N173 : public QObject { // QTextCodec Q_OBJECT public: Q_INVOKABLE QList Maliases(QTextCodec* o) const { return o->aliases(); } @@ -2424,7 +2424,7 @@ public: Q_INVOKABLE void SsetCodecForLocale(QTextCodec* x1) { QTextCodec::setCodecForLocale(x1); } }; -class EQL_EXPORT N173 : public QObject { // QTextCursor +class EQL_EXPORT N174 : public QObject { // QTextCursor Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextCursor(u); } @@ -2500,7 +2500,7 @@ public: Q_INVOKABLE bool MvisualNavigation(QTextCursor* o) const { return o->visualNavigation(); } }; -class EQL_EXPORT N174 : public QObject { // QTextDecoder +class EQL_EXPORT N175 : public QObject { // QTextDecoder Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QTextCodec* x1) { return new LTextDecoder(u, x1); } @@ -2510,7 +2510,7 @@ public: Q_INVOKABLE QString MtoUnicode(QTextDecoder* o, const QByteArray& x1) { return o->toUnicode(x1); } }; -class EQL_EXPORT N175 : public QObject { // QTextDocumentFragment +class EQL_EXPORT N176 : public QObject { // QTextDocumentFragment Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextDocumentFragment(u); } @@ -2525,7 +2525,7 @@ public: Q_INVOKABLE QTextDocumentFragment SfromPlainText(const QString& x1) { return QTextDocumentFragment::fromPlainText(x1); } }; -class EQL_EXPORT N176 : public QObject { // QTextDocumentWriter +class EQL_EXPORT N177 : public QObject { // QTextDocumentWriter Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextDocumentWriter(u); } @@ -2541,7 +2541,7 @@ public: Q_INVOKABLE QList SsupportedDocumentFormats() { return QTextDocumentWriter::supportedDocumentFormats(); } }; -class EQL_EXPORT N177 : public QObject { // QTextEncoder +class EQL_EXPORT N178 : public QObject { // QTextEncoder Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QTextCodec* x1) { return new LTextEncoder(u, x1); } @@ -2550,7 +2550,7 @@ public: Q_INVOKABLE QByteArray MfromUnicode(QTextEncoder* o, const QChar* x1, int x2) { return o->fromUnicode(x1, x2); } }; -class EQL_EXPORT N178 : public QObject { // QTextFormat +class EQL_EXPORT N179 : public QObject { // QTextFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextFormat(u); } @@ -2604,7 +2604,7 @@ public: Q_INVOKABLE int Mtype(QTextFormat* o) const { return o->type(); } }; -class EQL_EXPORT N179 : public QObject { // QTextFragment +class EQL_EXPORT N180 : public QObject { // QTextFragment Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextFragment(u); } @@ -2619,7 +2619,7 @@ public: Q_INVOKABLE QString Mtext(QTextFragment* o) const { return o->text(); } }; -class EQL_EXPORT N182 : public QObject { // QTextLayout +class EQL_EXPORT N183 : public QObject { // QTextLayout Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextLayout(u); } @@ -2661,7 +2661,7 @@ public: Q_INVOKABLE QTextOption MtextOption(QTextLayout* o) const { return o->textOption(); } }; -class EQL_EXPORT N183 : public QObject { // QTextLength +class EQL_EXPORT N184 : public QObject { // QTextLength Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextLength(u); } @@ -2671,7 +2671,7 @@ public: Q_INVOKABLE qreal Mvalue(QTextLength* o, qreal x1) const { return o->value(x1); } }; -class EQL_EXPORT N184 : public QObject { // QTextLine +class EQL_EXPORT N185 : public QObject { // QTextLine Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextLine(u); } @@ -2703,7 +2703,7 @@ public: Q_INVOKABLE qreal My(QTextLine* o) const { return o->y(); } }; -class EQL_EXPORT N186 : public QObject { // QTextOption +class EQL_EXPORT N187 : public QObject { // QTextOption Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextOption(u); } @@ -2725,7 +2725,7 @@ public: Q_INVOKABLE int MwrapMode(QTextOption* o) const { return o->wrapMode(); } }; -class EQL_EXPORT N187 : public QObject { // QTextTableCell +class EQL_EXPORT N188 : public QObject { // QTextTableCell Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextTableCell(u); } @@ -2742,7 +2742,7 @@ public: Q_INVOKABLE int MtableCellFormatIndex(QTextTableCell* o) const { return o->tableCellFormatIndex(); } }; -class EQL_EXPORT N190 : public QObject { // QTime +class EQL_EXPORT N191 : public QObject { // QTime Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTime(u); } @@ -2771,7 +2771,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 N191 : public QObject { // QTimeZone +class EQL_EXPORT N192 : public QObject { // QTimeZone Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTimeZone(u); } @@ -2807,7 +2807,7 @@ public: Q_INVOKABLE QList SwindowsIdToIanaIds(const QByteArray& x1, QLocale::Country x2) { return QTimeZone::windowsIdToIanaIds(x1, x2); } }; -class EQL_EXPORT N193 : public QObject { // QToolTip +class EQL_EXPORT N194 : public QObject { // QToolTip Q_OBJECT public: Q_INVOKABLE QFont Sfont() { return QToolTip::font(); } @@ -2822,7 +2822,22 @@ public: Q_INVOKABLE QString Stext() { return QToolTip::text(); } }; -class EQL_EXPORT N195 : public QObject { // QTransform +class EQL_EXPORT N195 : public QObject { // QTouchDevice + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LTouchDevice(u); } + Q_INVOKABLE int Mcapabilities(QTouchDevice* o) const { return o->capabilities(); } + Q_INVOKABLE int MmaximumTouchPoints(QTouchDevice* o) const { return o->maximumTouchPoints(); } + Q_INVOKABLE QString Mname(QTouchDevice* o) const { return o->name(); } + Q_INVOKABLE void MsetCapabilities(QTouchDevice* o, QTouchDevice::Capabilities x1) { o->setCapabilities(x1); } + Q_INVOKABLE void MsetMaximumTouchPoints(QTouchDevice* o, int x1) { o->setMaximumTouchPoints(x1); } + Q_INVOKABLE void MsetName(QTouchDevice* o, const QString& x1) { o->setName(x1); } + Q_INVOKABLE void MsetType(QTouchDevice* o, QTouchDevice::DeviceType x1) { o->setType(x1); } + Q_INVOKABLE int Mtype(QTouchDevice* o) const { return o->type(); } + Q_INVOKABLE QList Sdevices() { return QTouchDevice::devices(); } +}; + +class EQL_EXPORT N197 : public QObject { // QTransform Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTransform(u); } @@ -2877,7 +2892,7 @@ public: Q_INVOKABLE bool SsquareToQuad(const QPolygonF& x1, QTransform& x2) { return QTransform::squareToQuad(x1, x2); } }; -class EQL_EXPORT N196 : public QObject { // QTreeWidgetItem +class EQL_EXPORT N198 : public QObject { // QTreeWidgetItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = QTreeWidgetItem::Type) { return new LTreeWidgetItem(u, x1); } @@ -2946,7 +2961,7 @@ public: Q_INVOKABLE void MemitDataChanged(QTreeWidgetItem* o) { ((LTreeWidgetItem*)o)->emitDataChanged(); } }; -class EQL_EXPORT N197 : public QObject { // QUndoCommand +class EQL_EXPORT N199 : public QObject { // QUndoCommand Q_OBJECT public: Q_INVOKABLE void* C(uint u, QUndoCommand* x1 = 0) { return new LUndoCommand(u, x1); } @@ -2962,7 +2977,7 @@ public: Q_INVOKABLE void Mundo(QUndoCommand* o) { o->undo(); } }; -class EQL_EXPORT N198 : public QObject { // QUrl +class EQL_EXPORT N200 : public QObject { // QUrl Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LUrl(u); } @@ -3024,7 +3039,7 @@ public: Q_INVOKABLE QStringList StoStringList(const QList& x1, QUrl::FormattingOptions x2 = QUrl::PrettyDecoded) { return QUrl::toStringList(x1, x2); } }; -class EQL_EXPORT N199 : public QObject { // QVariant +class EQL_EXPORT N201 : public QObject { // QVariant Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QCursor& x1) { return new LVariant(u, x1); } @@ -3117,7 +3132,7 @@ public: Q_INVOKABLE const char* StypeToName(int x1) { return QVariant::typeToName(x1); } }; -class EQL_EXPORT N200 : public QObject { // QVector2D +class EQL_EXPORT N202 : public QObject { // QVector2D Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVector2D(u); } @@ -3144,7 +3159,7 @@ public: Q_INVOKABLE float SdotProduct(const QVector2D& x1, const QVector2D& x2) { return QVector2D::dotProduct(x1, x2); } }; -class EQL_EXPORT N201 : public QObject { // QVector3D +class EQL_EXPORT N203 : public QObject { // QVector3D Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVector3D(u); } @@ -3181,7 +3196,7 @@ public: Q_INVOKABLE QVector3D Snormal(const QVector3D& x1, const QVector3D& x2, const QVector3D& x3) { return QVector3D::normal(x1, x2, x3); } }; -class EQL_EXPORT N202 : public QObject { // QVector4D +class EQL_EXPORT N204 : public QObject { // QVector4D Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVector4D(u); } @@ -3214,7 +3229,7 @@ public: Q_INVOKABLE float SdotProduct(const QVector4D& x1, const QVector4D& x2) { return QVector4D::dotProduct(x1, x2); } }; -class EQL_EXPORT N214 : public QObject { // QWhatsThis +class EQL_EXPORT N216 : public QObject { // QWhatsThis Q_OBJECT public: Q_INVOKABLE QAction* ScreateAction(QObject* x1 = 0) { return QWhatsThis::createAction(x1); } @@ -3225,7 +3240,7 @@ public: Q_INVOKABLE void SshowText(const QPoint& x1, const QString& x2, QWidget* x3 = 0) { QWhatsThis::showText(x1, x2, x3); } }; -class EQL_EXPORT N219 : public QObject { // QWriteLocker +class EQL_EXPORT N221 : public QObject { // QWriteLocker Q_OBJECT public: Q_INVOKABLE void* C(uint u, QReadWriteLock* x1) { return new LWriteLocker(u, x1); } @@ -3671,7 +3686,7 @@ public: Q_INVOKABLE void* C(uint u) { return new LIconDragEvent(u); } }; -class EQL_EXPORT N79 : public N114 { // QImage +class EQL_EXPORT N79 : public N115 { // QImage Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LImage(u); } @@ -3803,7 +3818,7 @@ public: Q_INVOKABLE QPointF Mstart(QLinearGradient* o) const { return o->start(); } }; -class EQL_EXPORT N99 : public N81 { // QMouseEvent +class EQL_EXPORT N100 : 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); } @@ -3824,7 +3839,7 @@ public: Q_INVOKABLE int My(QMouseEvent* o) const { return o->y(); } }; -class EQL_EXPORT N100 : public N36 { // QMoveEvent +class EQL_EXPORT N101 : public N36 { // QMoveEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QPoint& x1, const QPoint& x2) { return new LMoveEvent(u, x1, x2); } @@ -3832,7 +3847,7 @@ public: Q_INVOKABLE QPoint Mpos(QMoveEvent* o) const { return o->pos(); } }; -class EQL_EXPORT N109 : public N114 { // QOpenGLPaintDevice +class EQL_EXPORT N110 : public N115 { // QOpenGLPaintDevice Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LOpenGLPaintDevice(u); } @@ -3851,7 +3866,7 @@ public: Q_INVOKABLE QSize Msize(QOpenGLPaintDevice* o) const { return o->size(); } }; -class EQL_EXPORT N113 : public N114 { // QPagedPaintDevice +class EQL_EXPORT N114 : public N115 { // QPagedPaintDevice Q_OBJECT public: Q_INVOKABLE bool MnewPage(QPagedPaintDevice* o) { return o->newPage(); } @@ -3867,7 +3882,7 @@ public: Q_INVOKABLE void MsetPageSizeMM(QPagedPaintDevice* o, const QSizeF& x1) { o->setPageSizeMM(x1); } }; -class EQL_EXPORT N115 : public N36 { // QPaintEvent +class EQL_EXPORT N116 : public N36 { // QPaintEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QRegion& x1) { return new LPaintEvent(u, x1); } @@ -3876,7 +3891,7 @@ public: Q_INVOKABLE QRegion Mregion(QPaintEvent* o) const { return o->region(); } }; -class EQL_EXPORT N122 : public N114 { // QPicture +class EQL_EXPORT N123 : public N115 { // QPicture Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = -1) { return new LPicture(u, x1); } @@ -3893,7 +3908,7 @@ public: Q_INVOKABLE void Mswap(QPicture* o, QPicture& x1) { o->swap(x1); } }; -class EQL_EXPORT N123 : public N114 { // QPixmap +class EQL_EXPORT N124 : public N115 { // QPixmap Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPixmap(u); } @@ -3942,7 +3957,7 @@ public: Q_INVOKABLE QMatrix StrueMatrix(const QMatrix& x1, int x2, int x3) { return QPixmap::trueMatrix(x1, x2, x3); } }; -class EQL_EXPORT N125 : public N113 { // QPrinter +class EQL_EXPORT N126 : public N114 { // QPrinter Q_OBJECT public: Q_INVOKABLE void* C(uint u, QPrinter::PrinterMode x1 = QPrinter::ScreenResolution) { return new LPrinter(u, x1); } @@ -3997,7 +4012,7 @@ public: Q_INVOKABLE bool MnewPage(QPrinter* o) { return o->newPage(); } }; -class EQL_EXPORT N129 : public N46 { // QRadialGradient +class EQL_EXPORT N130 : public N46 { // QRadialGradient Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRadialGradient(u); } @@ -4021,7 +4036,7 @@ public: Q_INVOKABLE void MsetRadius(QRadialGradient* o, qreal x1) { o->setRadius(x1); } }; -class EQL_EXPORT N135 : public N36 { // QResizeEvent +class EQL_EXPORT N136 : public N36 { // QResizeEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QSize& x1, const QSize& x2) { return new LResizeEvent(u, x1, x2); } @@ -4029,7 +4044,7 @@ public: Q_INVOKABLE QSize Msize(QResizeEvent* o) const { return o->size(); } }; -class EQL_EXPORT N138 : public N36 { // QShortcutEvent +class EQL_EXPORT N139 : 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); } @@ -4038,13 +4053,13 @@ public: Q_INVOKABLE int MshortcutId(QShortcutEvent* o) const { return o->shortcutId(); } }; -class EQL_EXPORT N139 : public N36 { // QShowEvent +class EQL_EXPORT N140 : public N36 { // QShowEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LShowEvent(u); } }; -class EQL_EXPORT N141 : public N87 { // QSpacerItem +class EQL_EXPORT N142 : 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); } @@ -4060,14 +4075,14 @@ public: Q_INVOKABLE QSpacerItem* MspacerItem(QSpacerItem* o) { return o->spacerItem(); } }; -class EQL_EXPORT N157 : public N36 { // QStatusTipEvent +class EQL_EXPORT N158 : 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 N159 : public N158 { // QStyleOptionGraphicsItem +class EQL_EXPORT N160 : public N159 { // QStyleOptionGraphicsItem Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LStyleOptionGraphicsItem(u); } @@ -4075,7 +4090,7 @@ public: Q_INVOKABLE qreal SlevelOfDetailFromTransform(const QTransform& x1) { return QStyleOptionGraphicsItem::levelOfDetailFromTransform(x1); } }; -class EQL_EXPORT N166 : public N81 { // QTabletEvent +class EQL_EXPORT N167 : 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); } @@ -4102,7 +4117,7 @@ public: Q_INVOKABLE int Mz(QTabletEvent* o) const { return o->z(); } }; -class EQL_EXPORT N168 : public N178 { // QTextBlockFormat +class EQL_EXPORT N169 : public N179 { // QTextBlockFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextBlockFormat(u); } @@ -4133,7 +4148,7 @@ public: Q_INVOKABLE qreal MtopMargin(QTextBlockFormat* o) const { return o->topMargin(); } }; -class EQL_EXPORT N171 : public N178 { // QTextCharFormat +class EQL_EXPORT N172 : public N179 { // QTextCharFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextCharFormat(u); } @@ -4193,7 +4208,7 @@ public: Q_INVOKABLE int MverticalAlignment(QTextCharFormat* o) const { return o->verticalAlignment(); } }; -class EQL_EXPORT N180 : public N178 { // QTextFrameFormat +class EQL_EXPORT N181 : public N179 { // QTextFrameFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextFrameFormat(u); } @@ -4228,7 +4243,7 @@ public: Q_INVOKABLE QTextLength Mwidth(QTextFrameFormat* o) const { return o->width(); } }; -class EQL_EXPORT N181 : public N171 { // QTextImageFormat +class EQL_EXPORT N182 : public N172 { // QTextImageFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextImageFormat(u); } @@ -4241,7 +4256,7 @@ public: Q_INVOKABLE qreal Mwidth(QTextImageFormat* o) const { return o->width(); } }; -class EQL_EXPORT N185 : public N178 { // QTextListFormat +class EQL_EXPORT N186 : public N179 { // QTextListFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextListFormat(u); } @@ -4256,7 +4271,7 @@ public: Q_INVOKABLE int Mstyle(QTextListFormat* o) const { return o->style(); } }; -class EQL_EXPORT N188 : public N171 { // QTextTableCellFormat +class EQL_EXPORT N189 : public N172 { // QTextTableCellFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextTableCellFormat(u); } @@ -4272,7 +4287,7 @@ public: Q_INVOKABLE qreal MtopPadding(QTextTableCellFormat* o) const { return o->topPadding(); } }; -class EQL_EXPORT N189 : public N180 { // QTextTableFormat +class EQL_EXPORT N190 : public N181 { // QTextTableFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextTableFormat(u); } @@ -4291,14 +4306,14 @@ public: Q_INVOKABLE void MsetHeaderRowCount(QTextTableFormat* o, int x1) { o->setHeaderRowCount(x1); } }; -class EQL_EXPORT N192 : public N36 { // QTimerEvent +class EQL_EXPORT N193 : 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 N194 : public N81 { // QTouchEvent +class EQL_EXPORT N196 : 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); } @@ -4309,14 +4324,14 @@ public: Q_INVOKABLE QWindow* Mwindow(QTouchEvent* o) const { return o->window(); } }; -class EQL_EXPORT N215 : public N36 { // QWhatsThisClickedEvent +class EQL_EXPORT N217 : 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 N216 : public N81 { // QWheelEvent +class EQL_EXPORT N218 : 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); } @@ -4337,7 +4352,7 @@ public: Q_INVOKABLE int My(QWheelEvent* o) const { return o->y(); } }; -class EQL_EXPORT N217 : public N87 { // QWidgetItem +class EQL_EXPORT N219 : public N87 { // QWidgetItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LWidgetItem(u, x1); } @@ -4354,13 +4369,13 @@ public: Q_INVOKABLE QWidget* Mwidget(QWidgetItem* o) { return o->widget(); } }; -class EQL_EXPORT N218 : public N36 { // QWindowStateChangeEvent +class EQL_EXPORT N220 : public N36 { // QWindowStateChangeEvent Q_OBJECT public: Q_INVOKABLE int MoldState(QWindowStateChangeEvent* o) const { return o->oldState(); } }; -class EQL_EXPORT N14 : public N123 { // QBitmap +class EQL_EXPORT N14 : public N124 { // QBitmap Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LBitmap(u); } diff --git a/src/gen/multimedia/_ini.cpp b/src/gen/multimedia/_ini.cpp index 26a1b7c..8c6c218 100644 --- a/src/gen/multimedia/_ini.cpp +++ b/src/gen/multimedia/_ini.cpp @@ -26,6 +26,7 @@ NumList LCameraInfo::overrideIds = NumList(); NumList LCameraViewfinderSettings::overrideIds = NumList(); NumList LImageEncoderSettings::overrideIds = NumList(); NumList LMediaContent::overrideIds = NumList(); +NumList LMediaResource::overrideIds = NumList(); NumList LVideoEncoderSettings::overrideIds = NumList(); NumList LVideoFrame::overrideIds = NumList(); NumList LVideoSurfaceFormat::overrideIds = NumList(); @@ -58,9 +59,10 @@ void ini() { LObjects::N[16] = new N17; LObjects::N[79] = new N80; LObjects::N[95] = new N96; - LObjects::N[202] = new N203; - LObjects::N[203] = new N204; - LObjects::N[204] = new N205; } + LObjects::N[96] = new N97; + LObjects::N[204] = new N205; + LObjects::N[205] = new N206; + LObjects::N[206] = new N207; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; @@ -94,9 +96,10 @@ void deleteNObject(int n, void* p, int gc) { case 17: if(gc) delete (QCameraViewfinderSettings*)p; else delete (LCameraViewfinderSettings*)p; break; case 80: if(gc) delete (QImageEncoderSettings*)p; else delete (LImageEncoderSettings*)p; break; case 96: if(gc) delete (QMediaContent*)p; else delete (LMediaContent*)p; break; - case 203: if(gc) delete (QVideoEncoderSettings*)p; else delete (LVideoEncoderSettings*)p; break; - case 204: if(gc) delete (QVideoFrame*)p; else delete (LVideoFrame*)p; break; - case 205: if(gc) delete (QVideoSurfaceFormat*)p; else delete (LVideoSurfaceFormat*)p; break; }} + case 97: if(gc) delete (QMediaResource*)p; else delete (LMediaResource*)p; break; + case 205: if(gc) delete (QVideoEncoderSettings*)p; else delete (LVideoEncoderSettings*)p; break; + case 206: if(gc) delete (QVideoFrame*)p; else delete (LVideoFrame*)p; break; + case 207: if(gc) delete (QVideoSurfaceFormat*)p; else delete (LVideoSurfaceFormat*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -126,9 +129,10 @@ NumList* overrideFunctions(const QByteArray& name) { case 17: ids = &LCameraViewfinderSettings::overrideIds; break; case 80: ids = &LImageEncoderSettings::overrideIds; break; case 96: ids = &LMediaContent::overrideIds; break; - case 203: ids = &LVideoEncoderSettings::overrideIds; break; - case 204: ids = &LVideoFrame::overrideIds; break; - case 205: ids = &LVideoSurfaceFormat::overrideIds; break; }} + case 97: ids = &LMediaResource::overrideIds; break; + case 205: ids = &LVideoEncoderSettings::overrideIds; break; + case 206: ids = &LVideoFrame::overrideIds; break; + case 207: ids = &LVideoSurfaceFormat::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/multimedia/_n_classes.h b/src/gen/multimedia/_n_classes.h index d7f7b02..65743c7 100644 --- a/src/gen/multimedia/_n_classes.h +++ b/src/gen/multimedia/_n_classes.h @@ -87,8 +87,20 @@ public: uint unique; }; +class LMediaResource : public QMediaResource { + friend class N97; +public: + LMediaResource(uint u) : unique(u) {} + LMediaResource(uint u, const QUrl& x1, const QString& x2 = QString()) : QMediaResource(x1, x2), unique(u) {} + LMediaResource(uint u, const QNetworkRequest& x1, const QString& x2 = QString()) : QMediaResource(x1, x2), unique(u) {} + LMediaResource(uint u, const QMediaResource& x1) : QMediaResource(x1), unique(u) {} + + static NumList overrideIds; + uint unique; +}; + class LVideoEncoderSettings : public QVideoEncoderSettings { - friend class N203; + friend class N205; public: LVideoEncoderSettings(uint u) : unique(u) {} LVideoEncoderSettings(uint u, const QVideoEncoderSettings& x1) : QVideoEncoderSettings(x1), unique(u) {} @@ -98,7 +110,7 @@ public: }; class LVideoFrame : public QVideoFrame { - friend class N204; + friend class N206; public: LVideoFrame(uint u) : unique(u) {} LVideoFrame(uint u, QAbstractVideoBuffer* x1, const QSize& x2, PixelFormat x3) : QVideoFrame(x1, x2, x3), unique(u) {} @@ -111,7 +123,7 @@ public: }; class LVideoSurfaceFormat : public QVideoSurfaceFormat { - friend class N205; + friend class N207; 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 b612429..42b6da8 100644 --- a/src/gen/multimedia/_n_methods.h +++ b/src/gen/multimedia/_n_methods.h @@ -152,7 +152,39 @@ public: Q_INVOKABLE QMediaResourceList Mresources(QMediaContent* o) const { return o->resources(); } }; -class N203 : public QObject { // QVideoEncoderSettings +class N97 : public QObject { // QMediaResource + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LMediaResource(u); } + Q_INVOKABLE void* C(uint u, const QUrl& x1, const QString& x2 = QString()) { return new LMediaResource(u, x1, x2); } + Q_INVOKABLE void* C(uint u, const QNetworkRequest& x1, const QString& x2 = QString()) { return new LMediaResource(u, x1, x2); } + Q_INVOKABLE void* C(uint u, const QMediaResource& x1) { return new LMediaResource(u, x1); } + Q_INVOKABLE int MaudioBitRate(QMediaResource* o) const { return o->audioBitRate(); } + Q_INVOKABLE QString MaudioCodec(QMediaResource* o) const { return o->audioCodec(); } + Q_INVOKABLE int MchannelCount(QMediaResource* o) const { return o->channelCount(); } + Q_INVOKABLE qlonglong MdataSize(QMediaResource* o) const { return o->dataSize(); } + Q_INVOKABLE bool MisNull(QMediaResource* o) const { return o->isNull(); } + Q_INVOKABLE QString Mlanguage(QMediaResource* o) const { return o->language(); } + Q_INVOKABLE QString MmimeType(QMediaResource* o) const { return o->mimeType(); } + Q_INVOKABLE QNetworkRequest Mrequest(QMediaResource* o) const { return o->request(); } + Q_INVOKABLE QSize Mresolution(QMediaResource* o) const { return o->resolution(); } + Q_INVOKABLE int MsampleRate(QMediaResource* o) const { return o->sampleRate(); } + Q_INVOKABLE void MsetAudioBitRate(QMediaResource* o, int x1) { o->setAudioBitRate(x1); } + Q_INVOKABLE void MsetAudioCodec(QMediaResource* o, const QString& x1) { o->setAudioCodec(x1); } + Q_INVOKABLE void MsetChannelCount(QMediaResource* o, int x1) { o->setChannelCount(x1); } + Q_INVOKABLE void MsetDataSize(QMediaResource* o, const qint64 x1) { o->setDataSize(x1); } + Q_INVOKABLE void MsetLanguage(QMediaResource* o, const QString& x1) { o->setLanguage(x1); } + Q_INVOKABLE void MsetResolution(QMediaResource* o, const QSize& x1) { o->setResolution(x1); } + Q_INVOKABLE void MsetResolution(QMediaResource* o, int x1, int x2) { o->setResolution(x1, x2); } + Q_INVOKABLE void MsetSampleRate(QMediaResource* o, int x1) { o->setSampleRate(x1); } + Q_INVOKABLE void MsetVideoBitRate(QMediaResource* o, int x1) { o->setVideoBitRate(x1); } + Q_INVOKABLE void MsetVideoCodec(QMediaResource* o, const QString& x1) { o->setVideoCodec(x1); } + Q_INVOKABLE QUrl Murl(QMediaResource* o) const { return o->url(); } + Q_INVOKABLE int MvideoBitRate(QMediaResource* o) const { return o->videoBitRate(); } + Q_INVOKABLE QString MvideoCodec(QMediaResource* o) const { return o->videoCodec(); } +}; + +class N205 : public QObject { // QVideoEncoderSettings Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVideoEncoderSettings(u); } @@ -175,7 +207,7 @@ public: Q_INVOKABLE void MsetResolution(QVideoEncoderSettings* o, int x1, int x2) { o->setResolution(x1, x2); } }; -class N204 : public QObject { // QVideoFrame +class N206 : public QObject { // QVideoFrame Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVideoFrame(u); } @@ -211,7 +243,7 @@ public: Q_INVOKABLE int SpixelFormatFromImageFormat(QImage::Format x1) { return QVideoFrame::pixelFormatFromImageFormat(x1); } }; -class N205 : public QObject { // QVideoSurfaceFormat +class N207 : public QObject { // QVideoSurfaceFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVideoSurfaceFormat(u); } diff --git a/src/gen/network/_ini.cpp b/src/gen/network/_ini.cpp index 197e7fb..f1d5395 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[100] = new N101; LObjects::N[101] = new N102; LObjects::N[102] = new N103; LObjects::N[103] = new N104; @@ -57,11 +56,12 @@ void ini() { LObjects::N[105] = new N106; LObjects::N[106] = new N107; LObjects::N[107] = new N108; - LObjects::N[149] = new N150; + LObjects::N[108] = new N109; LObjects::N[150] = new N151; LObjects::N[151] = new N152; LObjects::N[152] = new N153; - LObjects::N[153] = new N154; } + LObjects::N[153] = new N154; + LObjects::N[154] = new N155; } 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 101: if(gc) delete (QNetworkAddressEntry*)p; else delete (LNetworkAddressEntry*)p; break; - case 102: if(gc) delete (QNetworkCacheMetaData*)p; else delete (LNetworkCacheMetaData*)p; break; - case 103: if(gc) delete (QNetworkCookie*)p; else delete (LNetworkCookie*)p; break; - case 104: if(gc) delete (QNetworkInterface*)p; else delete (LNetworkInterface*)p; break; - case 105: if(gc) delete (QNetworkProxy*)p; else delete (LNetworkProxy*)p; break; - case 106: if(gc) delete (QNetworkProxyFactory*)p; else delete (LNetworkProxyFactory*)p; break; - case 107: if(gc) delete (QNetworkProxyQuery*)p; else delete (LNetworkProxyQuery*)p; break; - case 108: if(gc) delete (QNetworkRequest*)p; else delete (LNetworkRequest*)p; break; - case 150: if(gc) delete (QSslCertificate*)p; else delete (LSslCertificate*)p; break; - case 151: if(gc) delete (QSslCipher*)p; else delete (LSslCipher*)p; break; - case 152: if(gc) delete (QSslConfiguration*)p; else delete (LSslConfiguration*)p; break; - case 153: if(gc) delete (QSslError*)p; else delete (LSslError*)p; break; - case 154: if(gc) delete (QSslKey*)p; else delete (LSslKey*)p; break; }} + case 102: if(gc) delete (QNetworkAddressEntry*)p; else delete (LNetworkAddressEntry*)p; break; + case 103: if(gc) delete (QNetworkCacheMetaData*)p; else delete (LNetworkCacheMetaData*)p; break; + case 104: if(gc) delete (QNetworkCookie*)p; else delete (LNetworkCookie*)p; break; + case 105: if(gc) delete (QNetworkInterface*)p; else delete (LNetworkInterface*)p; break; + case 106: if(gc) delete (QNetworkProxy*)p; else delete (LNetworkProxy*)p; break; + case 107: if(gc) delete (QNetworkProxyFactory*)p; else delete (LNetworkProxyFactory*)p; break; + case 108: if(gc) delete (QNetworkProxyQuery*)p; else delete (LNetworkProxyQuery*)p; break; + case 109: if(gc) delete (QNetworkRequest*)p; else delete (LNetworkRequest*)p; break; + case 151: if(gc) delete (QSslCertificate*)p; else delete (LSslCertificate*)p; break; + case 152: if(gc) delete (QSslCipher*)p; else delete (LSslCipher*)p; break; + case 153: if(gc) delete (QSslConfiguration*)p; else delete (LSslConfiguration*)p; break; + case 154: if(gc) delete (QSslError*)p; else delete (LSslError*)p; break; + case 155: if(gc) delete (QSslKey*)p; else delete (LSslKey*)p; break; }} 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 101: ids = &LNetworkAddressEntry::overrideIds; break; - case 102: ids = &LNetworkCacheMetaData::overrideIds; break; - case 103: ids = &LNetworkCookie::overrideIds; break; - case 104: ids = &LNetworkInterface::overrideIds; break; - case 105: ids = &LNetworkProxy::overrideIds; break; - case 106: ids = &LNetworkProxyFactory::overrideIds; break; - case 107: ids = &LNetworkProxyQuery::overrideIds; break; - case 108: ids = &LNetworkRequest::overrideIds; break; - case 150: ids = &LSslCertificate::overrideIds; break; - case 151: ids = &LSslCipher::overrideIds; break; - case 152: ids = &LSslConfiguration::overrideIds; break; - case 153: ids = &LSslError::overrideIds; break; - case 154: ids = &LSslKey::overrideIds; break; }} + case 102: ids = &LNetworkAddressEntry::overrideIds; break; + case 103: ids = &LNetworkCacheMetaData::overrideIds; break; + case 104: ids = &LNetworkCookie::overrideIds; break; + case 105: ids = &LNetworkInterface::overrideIds; break; + case 106: ids = &LNetworkProxy::overrideIds; break; + case 107: ids = &LNetworkProxyFactory::overrideIds; break; + case 108: ids = &LNetworkProxyQuery::overrideIds; break; + case 109: ids = &LNetworkRequest::overrideIds; break; + case 151: ids = &LSslCertificate::overrideIds; break; + case 152: ids = &LSslCipher::overrideIds; break; + case 153: ids = &LSslConfiguration::overrideIds; break; + case 154: ids = &LSslError::overrideIds; break; + case 155: ids = &LSslKey::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/network/_n_classes.h b/src/gen/network/_n_classes.h index b012253..02a5436 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 N101; + friend class N102; 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 N102; + friend class N103; 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 N103; + friend class N104; 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 N104; + friend class N105; 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 N105; + friend class N106; 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 N106; + friend class N107; public: LNetworkProxyFactory(uint u) : unique(u) {} @@ -107,7 +107,7 @@ public: }; class LNetworkProxyQuery : public QNetworkProxyQuery { - friend class N107; + friend class N108; 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 N108; + friend class N109; 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 N150; + friend class N151; 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 N151; + friend class N152; 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 N152; + friend class N153; 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 N153; + friend class N154; 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 N154; + friend class N155; 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 c3b1fab..6879aa4 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 N101 : public QObject { // QNetworkAddressEntry +class N102 : 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 N102 : public QObject { // QNetworkCacheMetaData +class N103 : 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 N103 : public QObject { // QNetworkCookie +class N104 : 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 N104 : public QObject { // QNetworkInterface +class N105 : 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 N105 : public QObject { // QNetworkProxy +class N106 : 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 N106 : public QObject { // QNetworkProxyFactory +class N107 : 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 N107 : public QObject { // QNetworkProxyQuery +class N108 : 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 N108 : public QObject { // QNetworkRequest +class N109 : 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 N150 : public QObject { // QSslCertificate +class N151 : 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 N151 : public QObject { // QSslCipher +class N152 : 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 N152 : public QObject { // QSslConfiguration +class N153 : 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 N153 : public QObject { // QSslError +class N154 : 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 N154 : public QObject { // QSslKey +class N155 : public QObject { // QSslKey Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslKey(u); } diff --git a/src/gen/sql/_ini.cpp b/src/gen/sql/_ini.cpp index ccc31bf..9931452 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[141] = new N142; LObjects::N[142] = new N143; LObjects::N[143] = new N144; LObjects::N[144] = new N145; LObjects::N[145] = new N146; LObjects::N[146] = new N147; LObjects::N[147] = new N148; - LObjects::N[148] = new N149; } + LObjects::N[148] = new N149; + LObjects::N[149] = new N150; } 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 142: if(gc) delete (QSqlDatabase*)p; else delete (LSqlDatabase*)p; break; - case 143: if(gc) delete (QSqlError*)p; else delete (LSqlError*)p; break; - case 144: if(gc) delete (QSqlField*)p; else delete (LSqlField*)p; break; - case 145: if(gc) delete (QSqlIndex*)p; else delete (LSqlIndex*)p; break; - case 146: if(gc) delete (QSqlQuery*)p; else delete (LSqlQuery*)p; break; - case 147: if(gc) delete (QSqlRecord*)p; else delete (LSqlRecord*)p; break; - case 148: if(gc) delete (QSqlRelation*)p; else delete (LSqlRelation*)p; break; - case 149: if(gc) delete (QSqlResult*)p; else delete (LSqlResult*)p; break; }} + case 143: if(gc) delete (QSqlDatabase*)p; else delete (LSqlDatabase*)p; break; + case 144: if(gc) delete (QSqlError*)p; else delete (LSqlError*)p; break; + case 145: if(gc) delete (QSqlField*)p; else delete (LSqlField*)p; break; + case 146: if(gc) delete (QSqlIndex*)p; else delete (LSqlIndex*)p; break; + case 147: if(gc) delete (QSqlQuery*)p; else delete (LSqlQuery*)p; break; + case 148: if(gc) delete (QSqlRecord*)p; else delete (LSqlRecord*)p; break; + case 149: if(gc) delete (QSqlRelation*)p; else delete (LSqlRelation*)p; break; + case 150: if(gc) delete (QSqlResult*)p; else delete (LSqlResult*)p; break; }} 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 142: ids = &LSqlDatabase::overrideIds; break; - case 143: ids = &LSqlError::overrideIds; break; - case 144: ids = &LSqlField::overrideIds; break; - case 145: ids = &LSqlIndex::overrideIds; break; - case 146: ids = &LSqlQuery::overrideIds; break; - case 147: ids = &LSqlRecord::overrideIds; break; - case 148: ids = &LSqlRelation::overrideIds; break; - case 149: ids = &LSqlResult::overrideIds; break; }} + case 143: ids = &LSqlDatabase::overrideIds; break; + case 144: ids = &LSqlError::overrideIds; break; + case 145: ids = &LSqlField::overrideIds; break; + case 146: ids = &LSqlIndex::overrideIds; break; + case 147: ids = &LSqlQuery::overrideIds; break; + case 148: ids = &LSqlRecord::overrideIds; break; + case 149: ids = &LSqlRelation::overrideIds; break; + case 150: ids = &LSqlResult::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/sql/_n_classes.h b/src/gen/sql/_n_classes.h index c8349bc..a056aae 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 N142; + friend class N143; 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 N143; + friend class N144; 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 N144; + friend class N145; 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 N145; + friend class N146; 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 N146; + friend class N147; 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 N147; + friend class N148; 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 N148; + friend class N149; 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 N149; + friend class N150; public: static NumList overrideIds; diff --git a/src/gen/sql/_n_methods.h b/src/gen/sql/_n_methods.h index a2142c3..64a4f03 100644 --- a/src/gen/sql/_n_methods.h +++ b/src/gen/sql/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N142 : public QObject { // QSqlDatabase +class N143 : 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 N143 : public QObject { // QSqlError +class N144 : 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 N144 : public QObject { // QSqlField +class N145 : 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 N146 : public QObject { // QSqlQuery +class N147 : 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 N147 : public QObject { // QSqlRecord +class N148 : 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 N148 : public QObject { // QSqlRelation +class N149 : 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 N149 : public QObject { // QSqlResult +class N150 : 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 N145 : public N147 { // QSqlIndex +class N146 : public N148 { // 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 9579aae..ceac521 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[160] = new N161; } + LObjects::N[161] = new N162; } 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 161: if(gc) delete (QSvgGenerator*)p; else delete (LSvgGenerator*)p; break; }} + case 162: 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 161: ids = &LSvgGenerator::overrideIds; break; }} + case 162: 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 52aadbd..b68e9c4 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 N161; + friend class N162; public: LSvgGenerator(uint u) : unique(u) {} diff --git a/src/gen/svg/_n_methods.h b/src/gen/svg/_n_methods.h index abacf58..42b045b 100644 --- a/src/gen/svg/_n_methods.h +++ b/src/gen/svg/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N161 : public N114 { // QSvgGenerator +class N162 : public N115 { // 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 2fd8fcb..21c38f6 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[205] = new N206; - LObjects::N[206] = new N207; LObjects::N[207] = new N208; LObjects::N[208] = new N209; LObjects::N[209] = new N210; LObjects::N[210] = new N211; LObjects::N[211] = new N212; - LObjects::N[212] = new N213; } + LObjects::N[212] = new N213; + LObjects::N[213] = new N214; + LObjects::N[214] = new N215; } 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 206: if(gc) delete (QWebDatabase*)p; else delete (LWebDatabase*)p; break; - case 207: if(gc) delete (QWebElement*)p; else delete (LWebElement*)p; break; - case 208: if(gc) delete (QWebElementCollection*)p; else delete (LWebElementCollection*)p; break; - case 210: if(gc) delete (QWebHistoryItem*)p; else delete (LWebHistoryItem*)p; break; - case 211: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break; - case 212: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }} + case 208: if(gc) delete (QWebDatabase*)p; else delete (LWebDatabase*)p; break; + case 209: if(gc) delete (QWebElement*)p; else delete (LWebElement*)p; break; + case 210: if(gc) delete (QWebElementCollection*)p; else delete (LWebElementCollection*)p; break; + case 212: if(gc) delete (QWebHistoryItem*)p; else delete (LWebHistoryItem*)p; break; + case 213: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break; + case 214: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }} 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 206: ids = &LWebDatabase::overrideIds; break; - case 207: ids = &LWebElement::overrideIds; break; - case 208: ids = &LWebElementCollection::overrideIds; break; - case 210: ids = &LWebHistoryItem::overrideIds; break; - case 211: ids = &LWebHitTestResult::overrideIds; break; - case 212: ids = &LWebSecurityOrigin::overrideIds; break; }} + case 208: ids = &LWebDatabase::overrideIds; break; + case 209: ids = &LWebElement::overrideIds; break; + case 210: ids = &LWebElementCollection::overrideIds; break; + case 212: ids = &LWebHistoryItem::overrideIds; break; + case 213: ids = &LWebHitTestResult::overrideIds; break; + case 214: ids = &LWebSecurityOrigin::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/webkit/_n_classes.h b/src/gen/webkit/_n_classes.h index adb0068..d873ae2 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 N206; + friend class N208; public: LWebDatabase(uint u, const QWebDatabase& x1) : QWebDatabase(x1), unique(u) {} @@ -23,7 +23,7 @@ public: }; class LWebElement : public QWebElement { - friend class N207; + friend class N209; 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 N208; + friend class N210; 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 N210; + friend class N212; public: LWebHistoryItem(uint u, const QWebHistoryItem& x1) : QWebHistoryItem(x1), unique(u) {} @@ -53,7 +53,7 @@ public: }; class LWebHitTestResult : public QWebHitTestResult { - friend class N211; + friend class N213; 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 N212; + friend class N214; 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 cda7eb2..45d2831 100644 --- a/src/gen/webkit/_n_methods.h +++ b/src/gen/webkit/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N206 : public QObject { // QWebDatabase +class N208 : 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 N207 : public QObject { // QWebElement +class N209 : 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 N208 : public QObject { // QWebElementCollection +class N210 : 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 N209 : public QObject { // QWebHistory +class N211 : 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 N210 : public QObject { // QWebHistoryItem +class N212 : 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 N211 : public QObject { // QWebHitTestResult +class N213 : 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 N212 : public QObject { // QWebSecurityOrigin +class N214 : 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 N213 : public QObject { // QWebSettings +class N215 : 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 25bb16e..d9e4fd4 100644 --- a/src/lisp/all-wrappers-1.lisp +++ b/src/lisp/all-wrappers-1.lisp @@ -299,7 +299,9 @@ #:|attribute| #:|at| #:|audioAvailableChanged| + #:|audioBitRate| #:|audioCodecDescription| + #:|audioCodec| #:|audioInputChanged| #:|audioInputDescription| #:|audioInputs| @@ -990,6 +992,7 @@ #:|dashOffset| #:|dashPattern| #:|dataChanged| + #:|dataSize| #:|database.QSqlDatabase| #:|databaseName| #:|databaseQuotaExceeded| @@ -1085,6 +1088,7 @@ #:|deviceName| #:|devicePixelRatio| #:|deviceTransform| + #:|devices.QTouchDevice| #:|device| #:|digest| #:|digitCount| @@ -1195,11 +1199,7 @@ #:|drawImage(QRectF...)| #:|drawImage(int...)| #:|drawImage| - #:|drawItemPixmap| - #:|drawItemText| - #:|drawLine(QLine)| - #:|drawLine(QLineF)| - #:|drawLine(QPoint...)|)) + #:|drawItemPixmap|)) (in-package :eql) diff --git a/src/lisp/all-wrappers-10.lisp b/src/lisp/all-wrappers-10.lisp index 87b99ec..1f78def 100644 --- a/src/lisp/all-wrappers-10.lisp +++ b/src/lisp/all-wrappers-10.lisp @@ -1,5 +1,23 @@ (in-package :eql) +(defun |searchingFinished| (object &rest arguments) + (%qinvoke-method object nil "searchingFinished" arguments)) + +(defun |searchingStarted| (object &rest arguments) + (%qinvoke-method object nil "searchingStarted" arguments)) + +(defun |search| (object &rest arguments) + (%qinvoke-method object nil "search" arguments)) + +(defun |second| (object &rest arguments) + (%qinvoke-method object nil "second" arguments)) + +(defun |secsTo| (object &rest arguments) + (%qinvoke-method object nil "secsTo" arguments)) + +(defun |sectionAt| (object &rest arguments) + (%qinvoke-method object nil "sectionAt" arguments)) + (defun |sectionClicked| (object &rest arguments) (%qinvoke-method object nil "sectionClicked" arguments)) @@ -456,6 +474,12 @@ (defun |setAttribute| (object &rest arguments) (%qinvoke-method object nil "setAttribute" arguments)) +(defun |setAudioBitRate| (object &rest arguments) + (%qinvoke-method object nil "setAudioBitRate" arguments)) + +(defun |setAudioCodec| (object &rest arguments) + (%qinvoke-method object nil "setAudioCodec" arguments)) + (defun |setAudioInput| (object &rest arguments) (%qinvoke-method object nil "setAudioInput" arguments)) @@ -1152,6 +1176,9 @@ (defun |setDashPattern| (object &rest arguments) (%qinvoke-method object nil "setDashPattern" arguments)) +(defun |setDataSize| (object &rest arguments) + (%qinvoke-method object nil "setDataSize" arguments)) + (defun |setDatabaseName| (object &rest arguments) (%qinvoke-method object nil "setDatabaseName" arguments)) @@ -2208,6 +2235,9 @@ (defun |setLandscapeOrientation| (object &rest arguments) (%qinvoke-method object nil "setLandscapeOrientation" arguments)) +(defun |setLanguage| (object &rest arguments) + (%qinvoke-method object nil "setLanguage" arguments)) + (defun |setLastCenterPoint| (object &rest arguments) (%qinvoke-method object nil "setLastCenterPoint" arguments)) @@ -2415,6 +2445,9 @@ (defun |setMaximumTime| (object &rest arguments) (%qinvoke-method object nil "setMaximumTime" arguments)) +(defun |setMaximumTouchPoints| (object &rest arguments) + (%qinvoke-method object nil "setMaximumTouchPoints" arguments)) + (defun |setMaximumWidth| (object &rest arguments) (%qinvoke-method object nil "setMaximumWidth" arguments)) @@ -3566,36 +3599,3 @@ (defun |setSpanAngle| (object &rest arguments) (%qinvoke-method object nil "setSpanAngle" arguments)) - -(defun |setSpan| (object &rest arguments) - (%qinvoke-method object nil "setSpan" arguments)) - -(defun |setSpecialValueText| (object &rest arguments) - (%qinvoke-method object nil "setSpecialValueText" arguments)) - -(defun |setSpeed| (object &rest arguments) - (%qinvoke-method object nil "setSpeed" arguments)) - -(defun |setSpotMeteringPoint| (object &rest arguments) - (%qinvoke-method object nil "setSpotMeteringPoint" arguments)) - -(defun |setSpread| (object &rest arguments) - (%qinvoke-method object nil "setSpread" arguments)) - -(defun |setSslConfiguration| (object &rest arguments) - (%qinvoke-method object nil "setSslConfiguration" arguments)) - -(defun |setSslOption| (object &rest arguments) - (%qinvoke-method object nil "setSslOption" arguments)) - -(defun |setStackingMode| (object &rest arguments) - (%qinvoke-method object nil "setStackingMode" arguments)) - -(defun |setStack| (object &rest arguments) - (%qinvoke-method object nil "setStack" arguments)) - -(defun |setStandardButtons| (object &rest arguments) - (%qinvoke-method object nil "setStandardButtons" arguments)) - -(defun |setStandardColor.QColorDialog| (&rest arguments) - (%qinvoke-method "QColorDialog" nil "setStandardColor" arguments)) diff --git a/src/lisp/all-wrappers-11.lisp b/src/lisp/all-wrappers-11.lisp index 16f2453..faf157f 100644 --- a/src/lisp/all-wrappers-11.lisp +++ b/src/lisp/all-wrappers-11.lisp @@ -1,5 +1,38 @@ (in-package :eql) +(defun |setSpan| (object &rest arguments) + (%qinvoke-method object nil "setSpan" arguments)) + +(defun |setSpecialValueText| (object &rest arguments) + (%qinvoke-method object nil "setSpecialValueText" arguments)) + +(defun |setSpeed| (object &rest arguments) + (%qinvoke-method object nil "setSpeed" arguments)) + +(defun |setSpotMeteringPoint| (object &rest arguments) + (%qinvoke-method object nil "setSpotMeteringPoint" arguments)) + +(defun |setSpread| (object &rest arguments) + (%qinvoke-method object nil "setSpread" arguments)) + +(defun |setSslConfiguration| (object &rest arguments) + (%qinvoke-method object nil "setSslConfiguration" arguments)) + +(defun |setSslOption| (object &rest arguments) + (%qinvoke-method object nil "setSslOption" arguments)) + +(defun |setStackingMode| (object &rest arguments) + (%qinvoke-method object nil "setStackingMode" arguments)) + +(defun |setStack| (object &rest arguments) + (%qinvoke-method object nil "setStack" arguments)) + +(defun |setStandardButtons| (object &rest arguments) + (%qinvoke-method object nil "setStandardButtons" arguments)) + +(defun |setStandardColor.QColorDialog| (&rest arguments) + (%qinvoke-method "QColorDialog" nil "setStandardColor" arguments)) + (defun |setStandardErrorFile| (object &rest arguments) (%qinvoke-method object nil "setStandardErrorFile" arguments)) @@ -597,6 +630,12 @@ (defun |setVerticalStretch| (object &rest arguments) (%qinvoke-method object nil "setVerticalStretch" arguments)) +(defun |setVideoBitRate| (object &rest arguments) + (%qinvoke-method object nil "setVideoBitRate" arguments)) + +(defun |setVideoCodec| (object &rest arguments) + (%qinvoke-method object nil "setVideoCodec" arguments)) + (defun |setVideoOutput(QAbstractVideoSurface*)| (object &rest arguments) (%qinvoke-method object nil "setVideoOutput(QAbstractVideoSurface*)" arguments)) @@ -3306,9 +3345,15 @@ (defun |videoAvailableChanged| (object &rest arguments) (%qinvoke-method object nil "videoAvailableChanged" arguments)) +(defun |videoBitRate| (object &rest arguments) + (%qinvoke-method object nil "videoBitRate" arguments)) + (defun |videoCodecDescription| (object &rest arguments) (%qinvoke-method object nil "videoCodecDescription" arguments)) +(defun |videoCodec| (object &rest arguments) + (%qinvoke-method object nil "videoCodec" arguments)) + (defun |videoSettings| (object &rest arguments) (%qinvoke-method object nil "videoSettings" arguments)) @@ -3554,48 +3599,3 @@ (defun |windowModality| (object &rest arguments) (%qinvoke-method object nil "windowModality" arguments)) - -(defun |windowOpacity| (object &rest arguments) - (%qinvoke-method object nil "windowOpacity" arguments)) - -(defun |windowPos| (object &rest arguments) - (%qinvoke-method object nil "windowPos" arguments)) - -(defun |windowRole| (object &rest arguments) - (%qinvoke-method object nil "windowRole" arguments)) - -(defun |windowStateChanged| (object &rest arguments) - (%qinvoke-method object nil "windowStateChanged" arguments)) - -(defun |windowState| (object &rest arguments) - (%qinvoke-method object nil "windowState" arguments)) - -(defun |windowText| (object &rest arguments) - (%qinvoke-method object nil "windowText" arguments)) - -(defun |windowTitleChanged| (object &rest arguments) - (%qinvoke-method object nil "windowTitleChanged" arguments)) - -(defun |windowTitle| (object &rest arguments) - (%qinvoke-method object nil "windowTitle" arguments)) - -(defun |windowType| (object &rest arguments) - (%qinvoke-method object nil "windowType" arguments)) - -(defun |windowsId.QPageSize| (&rest arguments) - (%qinvoke-method "QPageSize" nil "windowsId" arguments)) - -(defun |windowsIdToDefaultIanaId.QTimeZone| (&rest arguments) - (%qinvoke-method "QTimeZone" nil "windowsIdToDefaultIanaId" arguments)) - -(defun |windowsIdToIanaIds.QTimeZone| (&rest arguments) - (%qinvoke-method "QTimeZone" nil "windowsIdToIanaIds" arguments)) - -(defun |windowsId| (object &rest arguments) - (%qinvoke-method object nil "windowsId" arguments)) - -(defun |windowsVersion.QSysInfo| (&rest arguments) - (%qinvoke-method "QSysInfo" nil "windowsVersion" arguments)) - -(defun |window| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "window" arguments)) diff --git a/src/lisp/all-wrappers-12.lisp b/src/lisp/all-wrappers-12.lisp index 7c258ce..a4cc93d 100644 --- a/src/lisp/all-wrappers-12.lisp +++ b/src/lisp/all-wrappers-12.lisp @@ -1,5 +1,50 @@ (in-package :eql) +(defun |windowOpacity| (object &rest arguments) + (%qinvoke-method object nil "windowOpacity" arguments)) + +(defun |windowPos| (object &rest arguments) + (%qinvoke-method object nil "windowPos" arguments)) + +(defun |windowRole| (object &rest arguments) + (%qinvoke-method object nil "windowRole" arguments)) + +(defun |windowStateChanged| (object &rest arguments) + (%qinvoke-method object nil "windowStateChanged" arguments)) + +(defun |windowState| (object &rest arguments) + (%qinvoke-method object nil "windowState" arguments)) + +(defun |windowText| (object &rest arguments) + (%qinvoke-method object nil "windowText" arguments)) + +(defun |windowTitleChanged| (object &rest arguments) + (%qinvoke-method object nil "windowTitleChanged" arguments)) + +(defun |windowTitle| (object &rest arguments) + (%qinvoke-method object nil "windowTitle" arguments)) + +(defun |windowType| (object &rest arguments) + (%qinvoke-method object nil "windowType" arguments)) + +(defun |windowsId.QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "windowsId" arguments)) + +(defun |windowsIdToDefaultIanaId.QTimeZone| (&rest arguments) + (%qinvoke-method "QTimeZone" nil "windowsIdToDefaultIanaId" arguments)) + +(defun |windowsIdToIanaIds.QTimeZone| (&rest arguments) + (%qinvoke-method "QTimeZone" nil "windowsIdToIanaIds" arguments)) + +(defun |windowsId| (object &rest arguments) + (%qinvoke-method object nil "windowsId" arguments)) + +(defun |windowsVersion.QSysInfo| (&rest arguments) + (%qinvoke-method "QSysInfo" nil "windowsVersion" arguments)) + +(defun |window| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "window" arguments)) + (defun |wizardStyle| (object &rest arguments) (%qinvoke-method object nil "wizardStyle" arguments)) diff --git a/src/lisp/all-wrappers-2.lisp b/src/lisp/all-wrappers-2.lisp index 6a11d9b..9fc9c63 100644 --- a/src/lisp/all-wrappers-2.lisp +++ b/src/lisp/all-wrappers-2.lisp @@ -1,5 +1,9 @@ (defpackage :eql (:export + #:|drawItemText| + #:|drawLine(QLine)| + #:|drawLine(QLineF)| + #:|drawLine(QPoint...)| #:|drawLine(QPointF...)| #:|drawLines(QVector)| #:|drawLines(QVector)| @@ -1195,8 +1199,4 @@ #:|items(QPolygonF)| #:|items(QPolygonF...)| #:|items(QRect)| - #:|items(QRect...)| - #:|items(QRectF)| - #:|items(QRectF...)| - #:|items(Qt::SortOrder)| - #:|items(int...)|)) + #:|items(QRect...)|)) diff --git a/src/lisp/all-wrappers-3.lisp b/src/lisp/all-wrappers-3.lisp index 79b59d5..808379b 100644 --- a/src/lisp/all-wrappers-3.lisp +++ b/src/lisp/all-wrappers-3.lisp @@ -1,5 +1,9 @@ (defpackage :eql (:export + #:|items(QRectF)| + #:|items(QRectF...)| + #:|items(Qt::SortOrder)| + #:|items(int...)| #:|itemsBoundingRect| #:|itemsExpandable| #:|items| @@ -322,6 +326,7 @@ #:|maximumSectionSize| #:|maximumSize| #:|maximumTime| + #:|maximumTouchPoints| #:|maximumViewportSize| #:|maximumWidthChanged| #:|maximumWidth| @@ -373,6 +378,7 @@ #:|mimeData| #:|mimeTypeFilters| #:|mimeTypes| + #:|mimeType| #:|minLeftBearing| #:|minPage| #:|minRightBearing| @@ -1193,10 +1199,4 @@ #:|searchForward| #:|searchPaths.QDir| #:|searchPaths| - #:|searchingChanged| - #:|searchingFinished| - #:|searchingStarted| - #:|search| - #:|second| - #:|secsTo| - #:|sectionAt|)) + #:|searchingChanged|)) diff --git a/src/lisp/all-wrappers-4.lisp b/src/lisp/all-wrappers-4.lisp index 0a9441b..10e7e0a 100644 --- a/src/lisp/all-wrappers-4.lisp +++ b/src/lisp/all-wrappers-4.lisp @@ -1,5 +1,11 @@ (defpackage :eql (:export + #:|searchingFinished| + #:|searchingStarted| + #:|search| + #:|second| + #:|secsTo| + #:|sectionAt| #:|sectionClicked| #:|sectionCountChanged| #:|sectionCount| @@ -152,6 +158,8 @@ #:|setAttributeValue(int...)| #:|setAttributeValue| #:|setAttribute| + #:|setAudioBitRate| + #:|setAudioCodec| #:|setAudioInput| #:|setAudioRole| #:|setAudioSettings| @@ -384,6 +392,7 @@ #:|setDashPattern(QVector)| #:|setDashPattern(Qt::PenStyle)| #:|setDashPattern| + #:|setDataSize| #:|setDatabaseName| #:|setDatabaseQuota| #:|setData| @@ -736,6 +745,7 @@ #:|setLabelText| #:|setLabel| #:|setLandscapeOrientation| + #:|setLanguage| #:|setLastCenterPoint| #:|setLastError| #:|setLastModified| @@ -805,6 +815,7 @@ #:|setMaximumSectionSize| #:|setMaximumSize| #:|setMaximumTime| + #:|setMaximumTouchPoints| #:|setMaximumWidth| #:|setMaximum| #:|setMediaObject| @@ -1188,15 +1199,4 @@ #:|setSourceModel| #:|setSource| #:|setSpacing| - #:|setSpanAngle| - #:|setSpan| - #:|setSpecialValueText| - #:|setSpeed| - #:|setSpotMeteringPoint| - #:|setSpread| - #:|setSslConfiguration| - #:|setSslOption| - #:|setStackingMode| - #:|setStack| - #:|setStandardButtons| - #:|setStandardColor.QColorDialog|)) + #:|setSpanAngle|)) diff --git a/src/lisp/all-wrappers-5.lisp b/src/lisp/all-wrappers-5.lisp index 3cdb5b1..2fb9cad 100644 --- a/src/lisp/all-wrappers-5.lisp +++ b/src/lisp/all-wrappers-5.lisp @@ -1,5 +1,16 @@ (defpackage :eql (:export + #:|setSpan| + #:|setSpecialValueText| + #:|setSpeed| + #:|setSpotMeteringPoint| + #:|setSpread| + #:|setSslConfiguration| + #:|setSslOption| + #:|setStackingMode| + #:|setStack| + #:|setStandardButtons| + #:|setStandardColor.QColorDialog| #:|setStandardErrorFile| #:|setStandardInputFile| #:|setStandardOutputFile| @@ -199,6 +210,8 @@ #:|setVerticalScrollMode| #:|setVerticalSpacing| #:|setVerticalStretch| + #:|setVideoBitRate| + #:|setVideoCodec| #:|setVideoOutput(QAbstractVideoSurface*)| #:|setVideoOutput(QGraphicsVideoItem*)| #:|setVideoOutput(QVideoWidget*)| @@ -1102,7 +1115,9 @@ #:|verticalSpacing| #:|verticalStretch| #:|videoAvailableChanged| + #:|videoBitRate| #:|videoCodecDescription| + #:|videoCodec| #:|videoSettings| #:|videoWidget| #:|viewBoxF| @@ -1184,19 +1199,4 @@ #:|windowIconTextChanged| #:|windowIconText| #:|windowIcon| - #:|windowModality| - #:|windowOpacity| - #:|windowPos| - #:|windowRole| - #:|windowStateChanged| - #:|windowState| - #:|windowText| - #:|windowTitleChanged| - #:|windowTitle| - #:|windowType| - #:|windowsId.QPageSize| - #:|windowsIdToDefaultIanaId.QTimeZone| - #:|windowsIdToIanaIds.QTimeZone| - #:|windowsId| - #:|windowsVersion.QSysInfo| - #:|window|)) + #:|windowModality|)) diff --git a/src/lisp/all-wrappers-6.lisp b/src/lisp/all-wrappers-6.lisp index 79fe3f3..dcefc30 100644 --- a/src/lisp/all-wrappers-6.lisp +++ b/src/lisp/all-wrappers-6.lisp @@ -1,5 +1,20 @@ (defpackage :eql (:export + #:|windowOpacity| + #:|windowPos| + #:|windowRole| + #:|windowStateChanged| + #:|windowState| + #:|windowText| + #:|windowTitleChanged| + #:|windowTitle| + #:|windowType| + #:|windowsId.QPageSize| + #:|windowsIdToDefaultIanaId.QTimeZone| + #:|windowsIdToIanaIds.QTimeZone| + #:|windowsId| + #:|windowsVersion.QSysInfo| + #:|window| #:|wizardStyle| #:|wizard| #:|wordSpacing| diff --git a/src/lisp/all-wrappers-7.lisp b/src/lisp/all-wrappers-7.lisp index 3ef42f6..a31172d 100644 --- a/src/lisp/all-wrappers-7.lisp +++ b/src/lisp/all-wrappers-7.lisp @@ -897,9 +897,15 @@ (defun |audioAvailableChanged| (object &rest arguments) (%qinvoke-method object nil "audioAvailableChanged" arguments)) +(defun |audioBitRate| (object &rest arguments) + (%qinvoke-method object nil "audioBitRate" arguments)) + (defun |audioCodecDescription| (object &rest arguments) (%qinvoke-method object nil "audioCodecDescription" arguments)) +(defun |audioCodec| (object &rest arguments) + (%qinvoke-method object nil "audioCodec" arguments)) + (defun |audioInputChanged| (object &rest arguments) (%qinvoke-method object nil "audioInputChanged" arguments)) @@ -2970,6 +2976,9 @@ (defun |dataChanged| (object &rest arguments) (%qinvoke-method object nil "dataChanged" arguments)) +(defun |dataSize| (object &rest arguments) + (%qinvoke-method object nil "dataSize" arguments)) + (defun |database.QSqlDatabase| (&rest arguments) (%qinvoke-method "QSqlDatabase" nil "database" arguments)) @@ -3255,6 +3264,9 @@ (defun |deviceTransform| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "deviceTransform" arguments)) +(defun |devices.QTouchDevice| (&rest arguments) + (%qinvoke-method "QTouchDevice" nil "devices" arguments)) + (defun |device| (object &rest arguments) (%qinvoke-method object nil "device" arguments)) @@ -3587,15 +3599,3 @@ (defun |drawItemPixmap| (object &rest arguments) (%qinvoke-method object nil "drawItemPixmap" arguments)) - -(defun |drawItemText| (object &rest arguments) - (%qinvoke-method object nil "drawItemText" arguments)) - -(defun |drawLine(QLine)| (object &rest arguments) - (%qinvoke-method object nil "drawLine(QLine)" arguments)) - -(defun |drawLine(QLineF)| (object &rest arguments) - (%qinvoke-method object nil "drawLine(QLineF)" arguments)) - -(defun |drawLine(QPoint...)| (object &rest arguments) - (%qinvoke-method object nil "drawLine(QPoint...)" arguments)) diff --git a/src/lisp/all-wrappers-8.lisp b/src/lisp/all-wrappers-8.lisp index dd00b1f..0a8f6b4 100644 --- a/src/lisp/all-wrappers-8.lisp +++ b/src/lisp/all-wrappers-8.lisp @@ -1,5 +1,17 @@ (in-package :eql) +(defun |drawItemText| (object &rest arguments) + (%qinvoke-method object nil "drawItemText" arguments)) + +(defun |drawLine(QLine)| (object &rest arguments) + (%qinvoke-method object nil "drawLine(QLine)" arguments)) + +(defun |drawLine(QLineF)| (object &rest arguments) + (%qinvoke-method object nil "drawLine(QLineF)" arguments)) + +(defun |drawLine(QPoint...)| (object &rest arguments) + (%qinvoke-method object nil "drawLine(QPoint...)" arguments)) + (defun |drawLine(QPointF...)| (object &rest arguments) (%qinvoke-method object nil "drawLine(QPointF...)" arguments)) @@ -3587,15 +3599,3 @@ (defun |items(QRect...)| (object &rest arguments) (%qinvoke-method object nil "items(QRect...)" arguments)) - -(defun |items(QRectF)| (object &rest arguments) - (%qinvoke-method object nil "items(QRectF)" arguments)) - -(defun |items(QRectF...)| (object &rest arguments) - (%qinvoke-method object nil "items(QRectF...)" arguments)) - -(defun |items(Qt::SortOrder)| (object &rest arguments) - (%qinvoke-method object nil "items(Qt::SortOrder)" arguments)) - -(defun |items(int...)| (object &rest arguments) - (%qinvoke-method object nil "items(int...)" arguments)) diff --git a/src/lisp/all-wrappers-9.lisp b/src/lisp/all-wrappers-9.lisp index 98b3bdf..2cad654 100644 --- a/src/lisp/all-wrappers-9.lisp +++ b/src/lisp/all-wrappers-9.lisp @@ -1,5 +1,17 @@ (in-package :eql) +(defun |items(QRectF)| (object &rest arguments) + (%qinvoke-method object nil "items(QRectF)" arguments)) + +(defun |items(QRectF...)| (object &rest arguments) + (%qinvoke-method object nil "items(QRectF...)" arguments)) + +(defun |items(Qt::SortOrder)| (object &rest arguments) + (%qinvoke-method object nil "items(Qt::SortOrder)" arguments)) + +(defun |items(int...)| (object &rest arguments) + (%qinvoke-method object nil "items(int...)" arguments)) + (defun |itemsBoundingRect| (object &rest arguments) (%qinvoke-method object nil "itemsBoundingRect" arguments)) @@ -966,6 +978,9 @@ (defun |maximumTime| (object &rest arguments) (%qinvoke-method object nil "maximumTime" arguments)) +(defun |maximumTouchPoints| (object &rest arguments) + (%qinvoke-method object nil "maximumTouchPoints" arguments)) + (defun |maximumViewportSize| (object &rest arguments) (%qinvoke-method object nil "maximumViewportSize" arguments)) @@ -1119,6 +1134,9 @@ (defun |mimeTypes| (object &rest arguments) (%qinvoke-method object nil "mimeTypes" arguments)) +(defun |mimeType| (object &rest arguments) + (%qinvoke-method object nil "mimeType" arguments)) + (defun |minLeftBearing| (object &rest arguments) (%qinvoke-method object nil "minLeftBearing" arguments)) @@ -3581,21 +3599,3 @@ (defun |searchingChanged| (object &rest arguments) (%qinvoke-method object nil "searchingChanged" arguments)) - -(defun |searchingFinished| (object &rest arguments) - (%qinvoke-method object nil "searchingFinished" arguments)) - -(defun |searchingStarted| (object &rest arguments) - (%qinvoke-method object nil "searchingStarted" arguments)) - -(defun |search| (object &rest arguments) - (%qinvoke-method object nil "search" arguments)) - -(defun |second| (object &rest arguments) - (%qinvoke-method object nil "second" arguments)) - -(defun |secsTo| (object &rest arguments) - (%qinvoke-method object nil "secsTo" arguments)) - -(defun |sectionAt| (object &rest arguments) - (%qinvoke-method object nil "sectionAt" arguments)) diff --git a/src/lisp/enum-lists/dynamic-enums.lisp b/src/lisp/enum-lists/dynamic-enums.lisp index 7786953..2fa6c6c 100644 --- a/src/lisp/enum-lists/dynamic-enums.lisp +++ b/src/lisp/enum-lists/dynamic-enums.lisp @@ -2201,6 +2201,15 @@ ("|QToolButton.DelayedPopup|" . 0) ("|QToolButton.InstantPopup|" . 2) ("|QToolButton.MenuButtonPopup|" . 1) +("|QTouchDevice.Area|" . 2) +("|QTouchDevice.MouseEmulation|" . 64) +("|QTouchDevice.NormalizedPosition|" . 32) +("|QTouchDevice.Position|" . 1) +("|QTouchDevice.Pressure|" . 4) +("|QTouchDevice.RawPositions|" . 16) +("|QTouchDevice.TouchPad|" . 1) +("|QTouchDevice.TouchScreen|" . 0) +("|QTouchDevice.Velocity|" . 8) ("|QWebPage.AlignCenter|" . 63) ("|QWebPage.AlignJustified|" . 64) ("|QWebPage.AlignLeft|" . 65) diff --git a/src/lisp/enum-lists/parsed-enums.lisp b/src/lisp/enum-lists/parsed-enums.lisp index b10b4f9..12ba175 100644 --- a/src/lisp/enum-lists/parsed-enums.lisp +++ b/src/lisp/enum-lists/parsed-enums.lisp @@ -4082,6 +4082,15 @@ ("|QTimeZone.StandardTime|" . 0) ("|QTimeZone.DaylightTime|" . 1) ("|QTimeZone.GenericTime|" . 2) +("|QTouchDevice.Position|" . #x0001) +("|QTouchDevice.Area|" . #x0002) +("|QTouchDevice.Pressure|" . #x0004) +("|QTouchDevice.Velocity|" . #x0008) +("|QTouchDevice.RawPositions|" . #x0010) +("|QTouchDevice.NormalizedPosition|" . #x0020) +("|QTouchDevice.MouseEmulation|" . #x0040) +("|QTouchDevice.TouchScreen|" . 0) +("|QTouchDevice.TouchPad|" . 1) ("|QTransform.TxNone|" . #x00) ("|QTransform.TxTranslate|" . #x01) ("|QTransform.TxScale|" . #x02) diff --git a/src/lisp/enums4.lisp b/src/lisp/enums4.lisp index 64ed125..41dfd1c 100644 --- a/src/lisp/enums4.lisp +++ b/src/lisp/enums4.lisp @@ -611,6 +611,15 @@ (defenum |QToolButton.DelayedPopup| 0) (defenum |QToolButton.InstantPopup| 2) (defenum |QToolButton.MenuButtonPopup| 1) +(defenum |QTouchDevice.Area| 2) +(defenum |QTouchDevice.MouseEmulation| 64) +(defenum |QTouchDevice.NormalizedPosition| 32) +(defenum |QTouchDevice.Position| 1) +(defenum |QTouchDevice.Pressure| 4) +(defenum |QTouchDevice.RawPositions| 16) +(defenum |QTouchDevice.TouchPad| 1) +(defenum |QTouchDevice.TouchScreen| 0) +(defenum |QTouchDevice.Velocity| 8) (defenum |QTransform.TxNone| 0) (defenum |QTransform.TxProject| 16) (defenum |QTransform.TxRotate| 4) @@ -1255,12 +1264,3 @@ (defenum |Qt.Key_Dead_Ogonek| 16781916) (defenum |Qt.Key_Dead_Semivoiced_Sound| 16781919) (defenum |Qt.Key_Dead_Tilde| 16781907) -(defenum |Qt.Key_Dead_Voiced_Sound| 16781918) -(defenum |Qt.Key_Delete| 16777223) -(defenum |Qt.Key_Direction_L| 16777305) -(defenum |Qt.Key_Direction_R| 16777312) -(defenum |Qt.Key_Display| 16777425) -(defenum |Qt.Key_Documents| 16777427) -(defenum |Qt.Key_Dollar| 36) -(defenum |Qt.Key_Down| 16777237) -(defenum |Qt.Key_D| 68) diff --git a/src/lisp/enums5.lisp b/src/lisp/enums5.lisp index ec8fe44..ee70f29 100644 --- a/src/lisp/enums5.lisp +++ b/src/lisp/enums5.lisp @@ -14,6 +14,15 @@ (defconstant ,name ,value) (export ',name ,(find-package :eql)))) +(defenum |Qt.Key_Dead_Voiced_Sound| 16781918) +(defenum |Qt.Key_Delete| 16777223) +(defenum |Qt.Key_Direction_L| 16777305) +(defenum |Qt.Key_Direction_R| 16777312) +(defenum |Qt.Key_Display| 16777425) +(defenum |Qt.Key_Documents| 16777427) +(defenum |Qt.Key_Dollar| 36) +(defenum |Qt.Key_Down| 16777237) +(defenum |Qt.Key_D| 68) (defenum |Qt.Key_ETH| 208) (defenum |Qt.Key_Eacute| 201) (defenum |Qt.Key_Ecircumflex| 202) diff --git a/src/lisp/merged-enums.lisp b/src/lisp/merged-enums.lisp index 986be64..1cfc0bd 100644 --- a/src/lisp/merged-enums.lisp +++ b/src/lisp/merged-enums.lisp @@ -4345,6 +4345,15 @@ (defenum |QToolButton.DelayedPopup| 0) (defenum |QToolButton.InstantPopup| 2) (defenum |QToolButton.MenuButtonPopup| 1) +(defenum |QTouchDevice.Area| 2) +(defenum |QTouchDevice.MouseEmulation| 64) +(defenum |QTouchDevice.NormalizedPosition| 32) +(defenum |QTouchDevice.Position| 1) +(defenum |QTouchDevice.Pressure| 4) +(defenum |QTouchDevice.RawPositions| 16) +(defenum |QTouchDevice.TouchPad| 1) +(defenum |QTouchDevice.TouchScreen| 0) +(defenum |QTouchDevice.Velocity| 8) (defenum |QTransform.TxNone| 0) (defenum |QTransform.TxProject| 16) (defenum |QTransform.TxRotate| 4)