diff --git a/README-3-OPTIONAL.txt b/README-3-OPTIONAL.txt index 3faf44f..c488bae 100644 --- a/README-3-OPTIONAL.txt +++ b/README-3-OPTIONAL.txt @@ -11,15 +11,13 @@ Examples: (|toString| (|currentTime.QTime|)) ; static function - (|begin(QWidget*)| painter) - Notes ===== If you want to add the wrappers permanently, build EQL as usual, then run - eql5 make-eql-lib-wrappers.lisp + eql5 make-eql-lib-wrappers.lisp ; (will take a little looong) Re-link EQL doing something like: diff --git a/examples/M-modules/sql/sqlite.lisp b/examples/M-modules/sql/sqlite.lisp index 89501bb..a56a71e 100644 --- a/examples/M-modules/sql/sqlite.lisp +++ b/examples/M-modules/sql/sqlite.lisp @@ -12,10 +12,10 @@ "windowTitle" "sqlite")) (defun populate-db () - ;; dumb, just for this example; you normally want QSqlQuery (x:do-with (|exec| *database*) "CREATE TABLE friends ( id INT PRIMARY KEY, name VARCHAR(50), country INT )" "CREATE TABLE countries ( id INT PRIMARY KEY, country VARCHAR(50) )") + ;; dumb, just for this example; you normally want QSqlQuery (mapc (lambda (id name country) (|exec| *database* (format nil "INSERT INTO friends VALUES (~A, '~A', ~A)" id name country))) diff --git a/examples/X-extras/storage-info.lisp b/examples/X-extras/storage-info.lisp new file mode 100644 index 0000000..9777e03 --- /dev/null +++ b/examples/X-extras/storage-info.lisp @@ -0,0 +1,16 @@ +;;; prints currently mounted storage info + +#-qt-wrapper-functions ; see README-OPTIONAL.txt +(load (in-home "src/lisp/all-wrappers")) + +(in-package :eql-user) + +(defun print-mounted-volumes () + (let ((*byte-array-as-string* t)) ; print byte arrays human readably + (dolist (info (|mountedVolumes.QStorageInfo|)) + (format t "~%~A ----------~%" info) + (qproperties info)))) + +(progn + (print-mounted-volumes) + (qq)) diff --git a/helper/generate.lisp b/helper/generate.lisp index dc6c9b6..c438a2c 100644 --- a/helper/generate.lisp +++ b/helper/generate.lisp @@ -801,12 +801,21 @@ ~%int LObjects::T_QList_QHelpSearchQuery = -1;~ ~%int LObjects::T_QHostAddress = -1;~ ~%int LObjects::T_QHostInfo = -1;~ + ~%int LObjects::T_QHttpPart = -1;~ ~%int LObjects::T_QImageEncoderSettings = -1;~ ~%int LObjects::T_QMediaContent = -1;~ ~%int LObjects::T_QList_QMediaContent = -1;~ + ~%int LObjects::T_QNetworkAddressEntry = -1;~ + ~%int LObjects::T_QList_QNetworkAddressEntry = -1;~ ~%int LObjects::T_QNetworkCacheMetaData = -1;~ + ~%int LObjects::T_QNetworkConfiguration = -1;~ + ~%int LObjects::T_QNetworkCookie = -1;~ + ~%int LObjects::T_QList_QNetworkCookie = -1;~ + ~%int LObjects::T_QList_QNetworkConfiguration = -1;~ ~%int LObjects::T_QNetworkInterface = -1;~ + ~%int LObjects::T_QList_QNetworkInterface = -1;~ ~%int LObjects::T_QNetworkProxy = -1;~ + ~%int LObjects::T_QList_QNetworkProxy = -1;~ ~%int LObjects::T_QNetworkRequest = -1;~ ~%int LObjects::T_QSqlDatabase = -1;~ ~%int LObjects::T_QSqlError = -1;~ @@ -822,6 +831,7 @@ ~%int LObjects::T_QVideoEncoderSettings = -1;~ ~%int LObjects::T_QVideoSurfaceFormat = -1;~ ~%int LObjects::T_QWebElement = -1;~ + ~%int LObjects::T_QList_QWebElement = -1;~ ~%int LObjects::T_QWebElementCollection = -1;~ ~%int LObjects::T_QWebHitTestResult = -1;~ ~%~ @@ -1153,9 +1163,15 @@ "QList" "QList" "QList" + "QList" + "QList" + "QList" + "QList" + "QList" "QList" "QList" "QList" + "QList" "QList" "QList" "QList" @@ -1163,6 +1179,7 @@ "QList" "QList" "QList" + "QList" "QList" "QList" "QList" diff --git a/helper/missing-types.txt b/helper/missing-types.txt index 60e6af1..5fdb8c8 100644 --- a/helper/missing-types.txt +++ b/helper/missing-types.txt @@ -5,7 +5,6 @@ QAccessibleTableInterface QCameraFocusZoneList QFunctionPointer QGlyphRun -QHttpMultiPart QImageReader QItemSelection QJsonArray @@ -24,10 +23,6 @@ QList QList QList QList -QList -QList -QList -QList QList QList QList @@ -35,10 +30,8 @@ QList QList QList QList -QList QList QList -QList QList QList QList @@ -46,7 +39,6 @@ QList QMediaControl QMediaResourceList QMultiMap -QNetworkConfiguration QOpenGLContextGroup QOpenGLFunctions QPixelFormat diff --git a/helper/my-class-lists/multimedia/q-names.lisp b/helper/my-class-lists/multimedia/q-names.lisp index 4e38b9a..bb48914 100644 --- a/helper/my-class-lists/multimedia/q-names.lisp +++ b/helper/my-class-lists/multimedia/q-names.lisp @@ -19,5 +19,4 @@ "//QMediaService" "QRadioTuner" "QVideoWidget" - "QVideoWidget" "QVideoWidgetControl")) diff --git a/helper/my-class-lists/network/n-names.lisp b/helper/my-class-lists/network/n-names.lisp index 05d4219..d41b02a 100644 --- a/helper/my-class-lists/network/n-names.lisp +++ b/helper/my-class-lists/network/n-names.lisp @@ -5,8 +5,10 @@ (list "QAuthenticator" "QHostAddress" "QHostInfo" + "QHttpPart" "QNetworkAddressEntry" "QNetworkCacheMetaData" + "QNetworkConfiguration" "QNetworkCookie" "QNetworkInterface" "QNetworkProxy" diff --git a/helper/my-class-lists/network/q-names.lisp b/helper/my-class-lists/network/q-names.lisp index 5c4841f..ce7af56 100644 --- a/helper/my-class-lists/network/q-names.lisp +++ b/helper/my-class-lists/network/q-names.lisp @@ -4,6 +4,7 @@ (defparameter *network-q-names* (list "//QAbstractNetworkCache" "QAbstractSocket" + "QHttpMultiPart" "QLocalServer" "QLocalSocket" "QNetworkAccessManager" diff --git a/helper/no-static-meta-object.lisp b/helper/no-static-meta-object.lisp index b7e58f1..4dd2200 100644 --- a/helper/no-static-meta-object.lisp +++ b/helper/no-static-meta-object.lisp @@ -66,6 +66,7 @@ "QHelpSearchQuery" "QHostAddress" "QHostInfo" + "QHttpPart" "QIcon" "QImage" "QImageEncoderSettings" @@ -88,6 +89,7 @@ "QModelIndex" "QNetworkAddressEntry" "QNetworkCacheMetaData" + "QNetworkConfiguration" "QNetworkCookie" "QNetworkInterface" "QNetworkProxy" diff --git a/helper/parse.lisp b/helper/parse.lisp index edffd3b..38e5669 100644 --- a/helper/parse.lisp +++ b/helper/parse.lisp @@ -128,10 +128,14 @@ "XEvent" "**" "&&" - "QString nativeArguments () const" - "void setNativeArguments ( const QString & )" + "nativeArguments(" + "setNativeArguments(" "viewportAttributesForSize" - "const QGraphicsObject * toGraphicsObject () const" + "const QGraphicsObject *" + "swap(QDns" + "swap(QHttp" + "swap(QNetwork" + "swap(QStorage" )) (defparameter *check* nil) @@ -235,8 +239,7 @@ (setf x:it (concatenate 'string (subseq x:it 0 x:it*) " = QMarginsF_DEFAULT)"))) (let* ((fun (tokenize x:it)) (new (and (not static) - (or (x:starts-with (format nil "Q_INVOKABLE ~A (" class) fun) - (x:starts-with (format nil "~A (" class) fun)))) + (x:starts-with (format nil "~A (" class) fun))) (virtual (x:starts-with "virtual" fun))) (unless (or (and qpainter (search "QPaintDevice" fun :test 'string=)) (and new no-new) @@ -252,7 +255,7 @@ (protected "protected ") (static "static ") (t "")) - (subseq fun (if (x:starts-with "Q_INVOKABLE" fun) 12 0))))))))))))))) + fun))))))))))))) (defun parse-classes (classes s so non) (dolist (class classes) diff --git a/helper/parsed/n-methods.lisp b/helper/parsed/n-methods.lisp index e7cdc87..5155326 100644 --- a/helper/parsed/n-methods.lisp +++ b/helper/parsed/n-methods.lisp @@ -1187,7 +1187,6 @@ "void show ()" "void stackBefore ( const QGraphicsItem * )" "QGraphicsObject * toGraphicsObject ()" - "const QGraphicsObject * toGraphicsObject () const" "QString toolTip () const" "QGraphicsItem * topLevelItem () const" "QGraphicsWidget * topLevelWidget () const" @@ -1503,6 +1502,12 @@ "const QPointF & oldPosF () const" "QPoint pos () const" "const QPointF & posF () const") + (("QHttpPart" . NIL) + "new QHttpPart ()" + "new QHttpPart ( const QHttpPart & )" + "void setBody ( const QByteArray & )" + "void setHeader ( QNetworkRequest::KnownHeaders , const QVariant & )" + "void setRawHeader ( const QByteArray & , const QByteArray & )") (("QIcon" . NIL) "new QIcon ()" "new QIcon ( const QPixmap & )" @@ -2075,8 +2080,7 @@ "void setBroadcast ( const QHostAddress & )" "void setIp ( const QHostAddress & )" "void setNetmask ( const QHostAddress & )" - "void setPrefixLength ( int )" - "void swap ( QNetworkAddressEntry & )") + "void setPrefixLength ( int )") (("QNetworkCacheMetaData" . NIL) "new QNetworkCacheMetaData ()" "new QNetworkCacheMetaData ( const QNetworkCacheMetaData & )" @@ -2092,8 +2096,21 @@ "void setRawHeaders ( const RawHeaderList & )" "void setSaveToDisk ( bool )" "void setUrl ( const QUrl & )" - "void swap ( QNetworkCacheMetaData & )" "QUrl url () const") + (("QNetworkConfiguration" . NIL) + "new QNetworkConfiguration ()" + "new QNetworkConfiguration ( const QNetworkConfiguration & )" + "BearerType bearerType () const" + "BearerType bearerTypeFamily () const" + "QString bearerTypeName () const" + "QList children () const" + "QString identifier () const" + "bool isRoamingAvailable () const" + "bool isValid () const" + "QString name () const" + "Purpose purpose () const" + "StateFlags state () const" + "Type type () const") (("QNetworkCookie" . NIL) "new QNetworkCookie ( const QByteArray & = QByteArray() , const QByteArray & = QByteArray() )" "new QNetworkCookie ( const QNetworkCookie & )" @@ -2113,7 +2130,6 @@ "void setPath ( const QString & )" "void setSecure ( bool )" "void setValue ( const QByteArray & )" - "void swap ( QNetworkCookie & )" "QByteArray toRawForm ( RawForm = Full ) const" "QByteArray value () const" "static QList parseCookies ( const QByteArray & )") @@ -2127,7 +2143,6 @@ "int index () const" "bool isValid () const" "QString name () const" - "void swap ( QNetworkInterface & )" "static QList allAddresses ()" "static QList allInterfaces ()" "static QNetworkInterface interfaceFromIndex ( int )" @@ -2154,7 +2169,6 @@ "void setRawHeader ( const QByteArray & , const QByteArray & )" "void setType ( QNetworkProxy::ProxyType )" "void setUser ( const QString & )" - "void swap ( QNetworkProxy & )" "QNetworkProxy::ProxyType type () const" "QString user () const" "static QNetworkProxy applicationProxy ()" @@ -2188,7 +2202,6 @@ "void setProtocolTag ( const QString & )" "void setQueryType ( QueryType )" "void setUrl ( const QUrl & )" - "void swap ( QNetworkProxyQuery & )" "QUrl url () const") (("QNetworkRequest" . NIL) "new QNetworkRequest ( const QUrl & = QUrl() )" @@ -2208,7 +2221,6 @@ "void setSslConfiguration ( const QSslConfiguration & )" "void setUrl ( const QUrl & )" "QSslConfiguration sslConfiguration () const" - "void swap ( QNetworkRequest & )" "QUrl url () const") (("QOpenGLFramebufferObject" . NIL) "new QOpenGLFramebufferObject ( const QSize & , GLenum = GL_TEXTURE_2D )" @@ -3566,7 +3578,6 @@ "void refresh ()" "QString rootPath () const" "void setPath ( const QString & )" - "void swap ( QStorageInfo & )" "static QList mountedVolumes ()" "static QStorageInfo root ()") (("QStyleOption" . NIL) diff --git a/helper/parsed/n-override.lisp b/helper/parsed/n-override.lisp index 87ccfc7..ef0b74c 100644 --- a/helper/parsed/n-override.lisp +++ b/helper/parsed/n-override.lisp @@ -264,6 +264,7 @@ (("QHostAddress" . NIL)) (("QHostInfo" . NIL)) (("QHoverEvent" . "QInputEvent")) + (("QHttpPart" . NIL)) (("QIcon" . NIL)) (("QIconDragEvent" . "QEvent")) (("QImage" . "QPaintDevice")) @@ -316,6 +317,7 @@ (("QMoveEvent" . "QEvent")) (("QNetworkAddressEntry" . NIL)) (("QNetworkCacheMetaData" . NIL)) + (("QNetworkConfiguration" . NIL)) (("QNetworkCookie" . NIL)) (("QNetworkInterface" . NIL)) (("QNetworkProxy" . NIL)) diff --git a/helper/parsed/q-methods.lisp b/helper/parsed/q-methods.lisp index 6df1bf6..59cabb0 100644 --- a/helper/parsed/q-methods.lisp +++ b/helper/parsed/q-methods.lisp @@ -2088,6 +2088,13 @@ "HistoryType historyType () const" "void setDefaultState ( QAbstractState * )" "void setHistoryType ( HistoryType )") + (("QHttpMultiPart" . "QObject") + "new QHttpMultiPart ( QObject * = 0 )" + "new QHttpMultiPart ( ContentType , QObject * = 0 )" + "void append ( const QHttpPart & )" + "QByteArray boundary () const" + "void setBoundary ( const QByteArray & )" + "void setContentType ( ContentType )") (("QIODevice" . "QObject") "virtual bool atEnd () const" "virtual qint64 bytesAvailable () const" diff --git a/helper/parsed/q-override.lisp b/helper/parsed/q-override.lisp index 9640176..be4e599 100644 --- a/helper/parsed/q-override.lisp +++ b/helper/parsed/q-override.lisp @@ -801,6 +801,7 @@ "virtual bool event ( QEvent * )" "virtual void onEntry ( QEvent * )" "virtual void onExit ( QEvent * )") + (("QHttpMultiPart" . "QObject")) (("QIODevice" . "QObject") "virtual bool atEnd () const" "virtual qint64 bytesAvailable () const" diff --git a/my_app/README.txt b/my_app/README.txt index 4c507a9..cb40154 100644 --- a/my_app/README.txt +++ b/my_app/README.txt @@ -18,4 +18,17 @@ Build: make (MSVC: nmake) -Now you should find a "my_app" executable. + Now you should find a "my_app" executable. + + +Notes: + + [Windows] + + You need to make sure to never use printing to *standard-output*, + as this would crash your GUI application (without a console). + If you experience unexpected crashes of your EXE, add: + + CONFIG += console + + to your *.pro file, in order to see eventual console output. diff --git a/my_app/main.cpp b/my_app/main.cpp index 9701839..959df85 100644 --- a/my_app/main.cpp +++ b/my_app/main.cpp @@ -36,6 +36,14 @@ int main(int argc, char** argv) { qapp.installTranslator(&trQt); }} EQL eql; + +/* +#ifdef Q_OS_WINDOWS + // print output would crash program + eql.ignoreIOStreams(); // TODO +#endif +*/ + eql.exec(ini_app, // see make.lisp "(start)", // initial form to be evaluated (optional) "example"); // package name (optional) diff --git a/src/ecl_fun.cpp b/src/ecl_fun.cpp index 2a38c2c..9d171be 100644 --- a/src/ecl_fun.cpp +++ b/src/ecl_fun.cpp @@ -57,6 +57,7 @@ META_TYPE (T_QObjectList, QObjectList) META_TYPE (T_QList_QPolygonF, QList) META_TYPE (T_QList_QSize, QList) META_TYPE (T_QList_QStandardItem, QList) +META_TYPE (T_QList_QStorageInfo, QList) META_TYPE (T_QList_QTableWidgetItem, QList) META_TYPE (T_QList_QTableWidgetSelectionRange, QList) META_TYPE (T_QList_QTextBlock, QList) @@ -78,6 +79,7 @@ META_TYPE (T_QPageSize, QPageSize) META_TYPE (T_QPainterPath, QPainterPath) META_TYPE (T_QPolygonF, QPolygonF) META_TYPE (T_QRgb, QRgb) +META_TYPE (T_QStorageInfo, QStorageInfo) META_TYPE (T_QTableWidgetSelectionRange, QTableWidgetSelectionRange) META_TYPE (T_QTextBlock, QTextBlock) META_TYPE (T_QTextBlockFormat, QTextBlockFormat) @@ -791,6 +793,7 @@ TO_QT_TYPE_PTR (QRegion, qregion) TO_QT_TYPE_PTR (QRegExp, qregexp) TO_QT_TYPE_PTR (QRegularExpression, qregularexpression) TO_QT_TYPE_PTR2 (QSizePolicy, qsizepolicy) +TO_QT_TYPE_PTR (QStorageInfo, qstorageinfo) TO_QT_TYPE_PTR2 (QTableWidgetSelectionRange, qtablewidgetselectionrange) TO_QT_TYPE_PTR2 (QTextBlock, qtextblock) TO_QT_TYPE_PTR (QTextBlockFormat, qtextblockformat) @@ -1053,6 +1056,7 @@ TO_CL_LIST_VAL (QKeySequence, qkeysequence) TO_CL_LIST_VAL (QModelIndex, qmodelindex) TO_CL_LIST_VAL (QPolygonF, qpolygonf) TO_CL_LIST_VAL (QSize, qsize) +TO_CL_LIST_VAL (QStorageInfo, qstorageinfo) TO_CL_LIST_VAL (QTableWidgetSelectionRange, qtablewidgetselectionrange) TO_CL_LIST_VAL (QTextBlock, qtextblock) TO_CL_LIST_VAL (QUrl, qurl) @@ -1239,6 +1243,7 @@ static MetaArg toMetaArg(const QByteArray& sType, cl_object l_arg) { else if(T_QPainterPath == n) p = new QPainterPath(*toQPainterPathPointer(l_arg)); else if(T_QPolygonF == n) p = new QPolygonF(toQPolygonF(l_arg)); else if(T_QRgb == n) p = new QRgb(toUInt(l_arg)); + else if(T_QStorageInfo == n) p = new QStorageInfo(*toQStorageInfoPointer(l_arg)); else if(T_QTableWidgetSelectionRange == n) p = new QTableWidgetSelectionRange(*toQTableWidgetSelectionRangePointer(l_arg)); else if(T_QTextBlock == n) p = new QTextBlock(*toQTextBlockPointer(l_arg)); else if(T_QTextBlockFormat == n) p = new QTextBlockFormat(*toQTextBlockFormatPointer(l_arg)); @@ -1384,6 +1389,7 @@ cl_object to_lisp_arg(const MetaArg& arg) { else if(T_QList_QPolygonF == n) l_ret = from_qpolygonflist(*(QList*)p); else if(T_QList_QSize == n) l_ret = from_qsizelist(*(QList*)p); else if(T_QList_QStandardItem == n) l_ret = from_qstandarditemlist(*(QList*)p); + else if(T_QList_QStorageInfo == n) l_ret = from_qstorageinfolist(*(QList*)p); else if(T_QList_QTableWidgetItem == n) l_ret = from_qtablewidgetitemlist(*(QList*)p); else if(T_QList_QTableWidgetSelectionRange == n) l_ret = from_qtablewidgetselectionrangelist(*(QList*)p); else if(T_QList_QTextBlock == n) l_ret = from_qtextblocklist(*(QList*)p); @@ -1405,6 +1411,7 @@ cl_object to_lisp_arg(const MetaArg& arg) { else if(T_QPainterPath == n) l_ret = from_qpainterpath(*(QPainterPath*)p); else if(T_QPolygonF == n) l_ret = from_qpolygonf(*(QPolygonF*)p); else if(T_QRgb == n) l_ret = ecl_make_unsigned_integer(*(QRgb*)p); + else if(T_QStorageInfo == n) l_ret = from_qstorageinfo(*(QStorageInfo*)p); else if(T_QTableWidgetSelectionRange == n) l_ret = from_qtablewidgetselectionrange(*(QTableWidgetSelectionRange*)p); else if(T_QTextBlock == n) l_ret = from_qtextblock(*(QTextBlock*)p); else if(T_QTextBlockFormat == n) l_ret = from_qtextblockformat(*(QTextBlockFormat*)p); diff --git a/src/eql.cpp b/src/eql.cpp index 500faa0..a93182e 100644 --- a/src/eql.cpp +++ b/src/eql.cpp @@ -7,7 +7,7 @@ #include #include -const char EQL::version[] = "16.12.6"; // Dec 2016 +const char EQL::version[] = "16.12.7"; // Dec 2016 extern "C" void ini_EQL(cl_object); @@ -39,6 +39,12 @@ QString EQL::home() { path.append('/'); } return path; } +/* +void EQL::ignoreIOStreams() { + // [Windows] print output would cause the executable to crash +} +*/ + void EQL::exec(const QStringList& args) { cl_object s_qtpl = cl_intern(1, make_constant_base_string("*QTPL*")); bool exec_with_simple_restart = false; diff --git a/src/eql.h b/src/eql.h index 0c5a694..1619652 100644 --- a/src/eql.h +++ b/src/eql.h @@ -37,6 +37,7 @@ public: void exec(const QStringList&); void exec(lisp_ini, const QByteArray& = "nil", const QByteArray& = "eql-user"); // see my_app example void exec(QWidget*, const QString&, const QString& = QString()); // see Qt_EQL example + // void ignoreIOStreams(); // TODO void printVersion() { eval("(multiple-value-bind (eql qt)" diff --git a/src/gen/_lobjects.cpp b/src/gen/_lobjects.cpp index 415fabb..10b8c29 100644 --- a/src/gen/_lobjects.cpp +++ b/src/gen/_lobjects.cpp @@ -20,12 +20,21 @@ int LObjects::T_QHelpSearchQuery = -1; int LObjects::T_QList_QHelpSearchQuery = -1; int LObjects::T_QHostAddress = -1; int LObjects::T_QHostInfo = -1; +int LObjects::T_QHttpPart = -1; int LObjects::T_QImageEncoderSettings = -1; int LObjects::T_QMediaContent = -1; int LObjects::T_QList_QMediaContent = -1; +int LObjects::T_QNetworkAddressEntry = -1; +int LObjects::T_QList_QNetworkAddressEntry = -1; int LObjects::T_QNetworkCacheMetaData = -1; +int LObjects::T_QNetworkConfiguration = -1; +int LObjects::T_QNetworkCookie = -1; +int LObjects::T_QList_QNetworkCookie = -1; +int LObjects::T_QList_QNetworkConfiguration = -1; int LObjects::T_QNetworkInterface = -1; +int LObjects::T_QList_QNetworkInterface = -1; int LObjects::T_QNetworkProxy = -1; +int LObjects::T_QList_QNetworkProxy = -1; int LObjects::T_QNetworkRequest = -1; int LObjects::T_QSqlDatabase = -1; int LObjects::T_QSqlError = -1; @@ -41,6 +50,7 @@ int LObjects::T_QSslKey = -1; int LObjects::T_QVideoEncoderSettings = -1; int LObjects::T_QVideoSurfaceFormat = -1; int LObjects::T_QWebElement = -1; +int LObjects::T_QList_QWebElement = -1; int LObjects::T_QWebElementCollection = -1; int LObjects::T_QWebHitTestResult = -1; @@ -474,8 +484,8 @@ void LObjects::ini(EQL* e) { ok = true; eql = e; dynObject = new DynObject; - Q = new QObject* [249]; for(int i = 0; i < 249; ++i) { Q[i] = 0; } - N = new QObject* [244]; for(int i = 0; i < 244; ++i) { N[i] = 0; } + Q = new QObject* [250]; for(int i = 0; i < 250; ++i) { Q[i] = 0; } + N = new QObject* [246]; for(int i = 0; i < 246; ++i) { N[i] = 0; } Q[0] = new Q1; Q[1] = new Q2; Q[2] = new Q3; @@ -557,7 +567,6 @@ void LObjects::ini(EQL* e) { Q[92] = new Q93; Q[93] = new Q94; Q[102] = new Q103; - Q[103] = new Q104; Q[104] = new Q105; Q[105] = new Q106; Q[106] = new Q107; @@ -572,16 +581,16 @@ void LObjects::ini(EQL* e) { Q[115] = new Q116; Q[116] = new Q117; Q[117] = new Q118; - Q[120] = new Q121; + Q[118] = new Q119; Q[121] = new Q122; Q[122] = new Q123; - Q[128] = new Q129; + Q[123] = new Q124; Q[129] = new Q130; Q[130] = new Q131; Q[131] = new Q132; Q[132] = new Q133; Q[133] = new Q134; - Q[138] = new Q139; + Q[134] = new Q135; Q[139] = new Q140; Q[140] = new Q141; Q[141] = new Q142; @@ -608,7 +617,7 @@ void LObjects::ini(EQL* e) { Q[162] = new Q163; Q[163] = new Q164; Q[164] = new Q165; - Q[166] = new Q167; + Q[165] = new Q166; Q[167] = new Q168; Q[168] = new Q169; Q[169] = new Q170; @@ -626,7 +635,7 @@ void LObjects::ini(EQL* e) { Q[181] = new Q182; Q[182] = new Q183; Q[183] = new Q184; - Q[189] = new Q190; + Q[184] = new Q185; Q[190] = new Q191; Q[191] = new Q192; Q[192] = new Q193; @@ -636,7 +645,7 @@ void LObjects::ini(EQL* e) { Q[196] = new Q197; Q[197] = new Q198; Q[198] = new Q199; - Q[201] = new Q202; + Q[199] = new Q200; Q[202] = new Q203; Q[203] = new Q204; Q[204] = new Q205; @@ -645,7 +654,7 @@ void LObjects::ini(EQL* e) { Q[207] = new Q208; Q[208] = new Q209; Q[209] = new Q210; - Q[212] = new Q213; + Q[210] = new Q211; Q[213] = new Q214; Q[214] = new Q215; Q[215] = new Q216; @@ -662,17 +671,18 @@ void LObjects::ini(EQL* e) { Q[226] = new Q227; Q[227] = new Q228; Q[228] = new Q229; - Q[230] = new Q231; + Q[229] = new Q230; Q[231] = new Q232; Q[232] = new Q233; Q[233] = new Q234; Q[234] = new Q235; Q[235] = new Q236; - Q[244] = new Q245; + Q[236] = new Q237; Q[245] = new Q246; Q[246] = new Q247; Q[247] = new Q248; Q[248] = new Q249; + Q[249] = new Q250; N[0] = new N1; N[1] = new N2; N[2] = new N3; @@ -755,10 +765,9 @@ void LObjects::ini(EQL* e) { N[86] = new N87; N[88] = new N89; N[91] = new N92; - N[92] = new N93; N[93] = new N94; N[94] = new N95; - N[96] = new N97; + N[95] = new N96; N[97] = new N98; N[98] = new N99; N[99] = new N100; @@ -775,13 +784,12 @@ void LObjects::ini(EQL* e) { N[110] = new N111; N[111] = new N112; N[112] = new N113; - N[115] = new N116; + N[113] = new N114; N[116] = new N117; N[117] = new N118; N[118] = new N119; N[119] = new N120; - N[128] = new N129; - N[129] = new N130; + N[120] = new N121; N[130] = new N131; N[131] = new N132; N[132] = new N133; @@ -815,16 +823,16 @@ void LObjects::ini(EQL* e) { N[160] = new N161; N[161] = new N162; N[162] = new N163; - N[176] = new N177; - N[177] = new N178; + N[163] = new N164; + N[164] = new N165; N[178] = new N179; N[179] = new N180; N[180] = new N181; N[181] = new N182; N[182] = new N183; N[183] = new N184; + N[184] = new N185; N[185] = new N186; - N[186] = new N187; N[187] = new N188; N[188] = new N189; N[189] = new N190; @@ -866,11 +874,13 @@ void LObjects::ini(EQL* e) { N[225] = new N226; N[226] = new N227; N[227] = new N228; - N[239] = new N240; - N[240] = new N241; + N[228] = new N229; + N[229] = new N230; N[241] = new N242; N[242] = new N243; N[243] = new N244; + N[244] = new N245; + N[245] = new N246; q_names["QAbstractAnimation"] = 1; q_names["QAbstractButton"] = 2; q_names["QAbstractItemDelegate"] = 3; @@ -974,152 +984,153 @@ void LObjects::ini(EQL* e) { q_names["QHelpSearchQueryWidget"] = 101; q_names["QHelpSearchResultWidget"] = 102; q_names["QHistoryState"] = 103; - q_names["QIODevice"] = 104; - q_names["QIdentityProxyModel"] = 105; - q_names["QInputDialog"] = 106; - q_names["QInputMethod"] = 107; - q_names["QIntValidator"] = 108; - q_names["QItemDelegate"] = 109; - q_names["QItemSelectionModel"] = 110; - q_names["QKeyEventTransition"] = 111; - q_names["QLCDNumber"] = 112; - q_names["QLabel"] = 113; - q_names["QLayout"] = 114; - q_names["QLibrary"] = 115; - q_names["QLineEdit"] = 116; - q_names["QListView"] = 117; - q_names["QListWidget"] = 118; - q_names["QLocalServer"] = 119; - q_names["QLocalSocket"] = 120; - q_names["QMainWindow"] = 121; - q_names["QMdiArea"] = 122; - q_names["QMdiSubWindow"] = 123; - q_names["QMediaObject"] = 124; - q_names["QMediaPlayer"] = 125; - q_names["QMediaPlaylist"] = 126; - q_names["QMediaRecorder"] = 127; - q_names["QMediaService"] = 128; - q_names["QMenu"] = 129; - q_names["QMenuBar"] = 130; - q_names["QMessageBox"] = 131; - q_names["QMimeData"] = 132; - q_names["QMouseEventTransition"] = 133; - q_names["QMovie"] = 134; - q_names["QNetworkAccessManager"] = 135; - q_names["QNetworkCookieJar"] = 136; - q_names["QNetworkDiskCache"] = 137; - q_names["QNetworkReply"] = 138; - q_names["QObject"] = 139; - q_names["QObjectCleanupHandler"] = 140; - q_names["QOpenGLContext"] = 141; - q_names["QOpenGLShader"] = 142; - q_names["QOpenGLShaderProgram"] = 143; - q_names["QOpenGLWidget"] = 144; - q_names["QOpenGLWindow"] = 145; - q_names["QPageSetupDialog"] = 146; - q_names["QPaintDeviceWindow"] = 147; - q_names["QPanGesture"] = 148; - q_names["QParallelAnimationGroup"] = 149; - q_names["QPauseAnimation"] = 150; - q_names["QPdfWriter"] = 151; - q_names["QPinchGesture"] = 152; - q_names["QPlainTextDocumentLayout"] = 153; - q_names["QPlainTextEdit"] = 154; - q_names["QPluginLoader"] = 155; - q_names["QPrintDialog"] = 156; - q_names["QPrintPreviewDialog"] = 157; - q_names["QPrintPreviewWidget"] = 158; - q_names["QProcess"] = 159; - q_names["QProgressBar"] = 160; - q_names["QProgressDialog"] = 161; - q_names["QPropertyAnimation"] = 162; - q_names["QProxyStyle"] = 163; - q_names["QPushButton"] = 164; - q_names["QRadioButton"] = 165; - q_names["QRadioTuner"] = 166; - q_names["QRegExpValidator"] = 167; - q_names["QRubberBand"] = 168; - q_names["QScreen"] = 169; - q_names["QScrollArea"] = 170; - q_names["QScrollBar"] = 171; - q_names["QSequentialAnimationGroup"] = 172; - q_names["QSessionManager"] = 173; - q_names["QSettings"] = 174; - q_names["QShortcut"] = 175; - q_names["QSignalMapper"] = 176; - q_names["QSignalTransition"] = 177; - q_names["QSizeGrip"] = 178; - q_names["QSlider"] = 179; - q_names["QSortFilterProxyModel"] = 180; - q_names["QSpinBox"] = 181; - q_names["QSplashScreen"] = 182; - q_names["QSplitter"] = 183; - q_names["QSplitterHandle"] = 184; - q_names["QSqlDriver"] = 185; - q_names["QSqlQueryModel"] = 186; - q_names["QSqlRelationalDelegate"] = 187; - q_names["QSqlRelationalTableModel"] = 188; - q_names["QSqlTableModel"] = 189; - q_names["QStackedLayout"] = 190; - q_names["QStackedWidget"] = 191; - q_names["QStandardItemModel"] = 192; - q_names["QState"] = 193; - q_names["QStateMachine"] = 194; - q_names["QStatusBar"] = 195; - q_names["QStringListModel"] = 196; - q_names["QStyle"] = 197; - q_names["QStyleHints"] = 198; - q_names["QStyledItemDelegate"] = 199; - q_names["QSvgRenderer"] = 200; - q_names["QSvgWidget"] = 201; - q_names["QSwipeGesture"] = 202; - q_names["QSyntaxHighlighter"] = 203; - q_names["QSystemTrayIcon"] = 204; - q_names["QTabBar"] = 205; - q_names["QTabWidget"] = 206; - q_names["QTableView"] = 207; - q_names["QTableWidget"] = 208; - q_names["QTapAndHoldGesture"] = 209; - q_names["QTapGesture"] = 210; - q_names["QTcpServer"] = 211; - q_names["QTcpSocket"] = 212; - q_names["QTextBlockGroup"] = 213; - q_names["QTextBrowser"] = 214; - q_names["QTextDocument"] = 215; - q_names["QTextEdit"] = 216; - q_names["QTextFrame"] = 217; - q_names["QTextList"] = 218; - q_names["QTextObject"] = 219; - q_names["QTextTable"] = 220; - q_names["QTimeEdit"] = 221; - q_names["QTimeLine"] = 222; - q_names["QTimer"] = 223; - q_names["QToolBar"] = 224; - q_names["QToolBox"] = 225; - q_names["QToolButton"] = 226; - q_names["QTranslator"] = 227; - q_names["QTreeView"] = 228; - q_names["QTreeWidget"] = 229; - q_names["QUdpSocket"] = 230; - q_names["QUndoGroup"] = 231; - q_names["QUndoStack"] = 232; - q_names["QUndoView"] = 233; - q_names["QVBoxLayout"] = 234; - q_names["QValidator"] = 235; - q_names["QVariantAnimation"] = 236; - q_names["QVideoWidget"] = 237; - q_names["QVideoWidgetControl"] = 238; - q_names["QWebFrame"] = 239; - q_names["QWebHistoryInterface"] = 240; - q_names["QWebInspector"] = 241; - q_names["QWebPage"] = 242; - q_names["QWebPluginFactory"] = 243; - q_names["QWebView"] = 244; - q_names["QWidget"] = 245; - q_names["QWidgetAction"] = 246; - q_names["QWindow"] = 247; - q_names["QWizard"] = 248; - q_names["QWizardPage"] = 249; + q_names["QHttpMultiPart"] = 104; + q_names["QIODevice"] = 105; + q_names["QIdentityProxyModel"] = 106; + q_names["QInputDialog"] = 107; + q_names["QInputMethod"] = 108; + q_names["QIntValidator"] = 109; + q_names["QItemDelegate"] = 110; + q_names["QItemSelectionModel"] = 111; + q_names["QKeyEventTransition"] = 112; + q_names["QLCDNumber"] = 113; + q_names["QLabel"] = 114; + q_names["QLayout"] = 115; + q_names["QLibrary"] = 116; + q_names["QLineEdit"] = 117; + q_names["QListView"] = 118; + q_names["QListWidget"] = 119; + q_names["QLocalServer"] = 120; + q_names["QLocalSocket"] = 121; + q_names["QMainWindow"] = 122; + q_names["QMdiArea"] = 123; + q_names["QMdiSubWindow"] = 124; + q_names["QMediaObject"] = 125; + q_names["QMediaPlayer"] = 126; + q_names["QMediaPlaylist"] = 127; + q_names["QMediaRecorder"] = 128; + q_names["QMediaService"] = 129; + q_names["QMenu"] = 130; + q_names["QMenuBar"] = 131; + q_names["QMessageBox"] = 132; + q_names["QMimeData"] = 133; + q_names["QMouseEventTransition"] = 134; + q_names["QMovie"] = 135; + q_names["QNetworkAccessManager"] = 136; + q_names["QNetworkCookieJar"] = 137; + q_names["QNetworkDiskCache"] = 138; + q_names["QNetworkReply"] = 139; + q_names["QObject"] = 140; + q_names["QObjectCleanupHandler"] = 141; + q_names["QOpenGLContext"] = 142; + q_names["QOpenGLShader"] = 143; + q_names["QOpenGLShaderProgram"] = 144; + q_names["QOpenGLWidget"] = 145; + q_names["QOpenGLWindow"] = 146; + q_names["QPageSetupDialog"] = 147; + q_names["QPaintDeviceWindow"] = 148; + q_names["QPanGesture"] = 149; + q_names["QParallelAnimationGroup"] = 150; + q_names["QPauseAnimation"] = 151; + q_names["QPdfWriter"] = 152; + q_names["QPinchGesture"] = 153; + q_names["QPlainTextDocumentLayout"] = 154; + q_names["QPlainTextEdit"] = 155; + q_names["QPluginLoader"] = 156; + q_names["QPrintDialog"] = 157; + q_names["QPrintPreviewDialog"] = 158; + q_names["QPrintPreviewWidget"] = 159; + q_names["QProcess"] = 160; + q_names["QProgressBar"] = 161; + q_names["QProgressDialog"] = 162; + q_names["QPropertyAnimation"] = 163; + q_names["QProxyStyle"] = 164; + q_names["QPushButton"] = 165; + q_names["QRadioButton"] = 166; + q_names["QRadioTuner"] = 167; + q_names["QRegExpValidator"] = 168; + q_names["QRubberBand"] = 169; + q_names["QScreen"] = 170; + q_names["QScrollArea"] = 171; + q_names["QScrollBar"] = 172; + q_names["QSequentialAnimationGroup"] = 173; + q_names["QSessionManager"] = 174; + q_names["QSettings"] = 175; + q_names["QShortcut"] = 176; + q_names["QSignalMapper"] = 177; + q_names["QSignalTransition"] = 178; + q_names["QSizeGrip"] = 179; + q_names["QSlider"] = 180; + q_names["QSortFilterProxyModel"] = 181; + q_names["QSpinBox"] = 182; + q_names["QSplashScreen"] = 183; + q_names["QSplitter"] = 184; + q_names["QSplitterHandle"] = 185; + q_names["QSqlDriver"] = 186; + q_names["QSqlQueryModel"] = 187; + q_names["QSqlRelationalDelegate"] = 188; + q_names["QSqlRelationalTableModel"] = 189; + q_names["QSqlTableModel"] = 190; + q_names["QStackedLayout"] = 191; + q_names["QStackedWidget"] = 192; + q_names["QStandardItemModel"] = 193; + q_names["QState"] = 194; + q_names["QStateMachine"] = 195; + q_names["QStatusBar"] = 196; + q_names["QStringListModel"] = 197; + q_names["QStyle"] = 198; + q_names["QStyleHints"] = 199; + q_names["QStyledItemDelegate"] = 200; + q_names["QSvgRenderer"] = 201; + q_names["QSvgWidget"] = 202; + q_names["QSwipeGesture"] = 203; + q_names["QSyntaxHighlighter"] = 204; + q_names["QSystemTrayIcon"] = 205; + q_names["QTabBar"] = 206; + q_names["QTabWidget"] = 207; + q_names["QTableView"] = 208; + q_names["QTableWidget"] = 209; + q_names["QTapAndHoldGesture"] = 210; + q_names["QTapGesture"] = 211; + q_names["QTcpServer"] = 212; + q_names["QTcpSocket"] = 213; + q_names["QTextBlockGroup"] = 214; + q_names["QTextBrowser"] = 215; + q_names["QTextDocument"] = 216; + q_names["QTextEdit"] = 217; + q_names["QTextFrame"] = 218; + q_names["QTextList"] = 219; + q_names["QTextObject"] = 220; + q_names["QTextTable"] = 221; + q_names["QTimeEdit"] = 222; + q_names["QTimeLine"] = 223; + q_names["QTimer"] = 224; + q_names["QToolBar"] = 225; + q_names["QToolBox"] = 226; + q_names["QToolButton"] = 227; + q_names["QTranslator"] = 228; + q_names["QTreeView"] = 229; + q_names["QTreeWidget"] = 230; + q_names["QUdpSocket"] = 231; + q_names["QUndoGroup"] = 232; + q_names["QUndoStack"] = 233; + q_names["QUndoView"] = 234; + q_names["QVBoxLayout"] = 235; + q_names["QValidator"] = 236; + q_names["QVariantAnimation"] = 237; + q_names["QVideoWidget"] = 238; + q_names["QVideoWidgetControl"] = 239; + q_names["QWebFrame"] = 240; + q_names["QWebHistoryInterface"] = 241; + q_names["QWebInspector"] = 242; + q_names["QWebPage"] = 243; + q_names["QWebPluginFactory"] = 244; + q_names["QWebView"] = 245; + q_names["QWidget"] = 246; + q_names["QWidgetAction"] = 247; + q_names["QWindow"] = 248; + q_names["QWizard"] = 249; + q_names["QWizardPage"] = 250; n_names["QAbstractGraphicsShapeItem"] = 1; n_names["QAccessible"] = 2; n_names["QAccessibleEditableTextInterface"] = 3; @@ -1212,158 +1223,160 @@ void LObjects::ini(EQL* e) { n_names["QHostAddress"] = 90; n_names["QHostInfo"] = 91; n_names["QHoverEvent"] = 92; - n_names["QIcon"] = 93; - n_names["QIconDragEvent"] = 94; - n_names["QImage"] = 95; - n_names["QImageEncoderSettings"] = 96; - n_names["QInputEvent"] = 97; - n_names["QInputMethodEvent"] = 98; - n_names["QInputMethodQueryEvent"] = 99; - n_names["QItemEditorCreatorBase"] = 100; - n_names["QItemEditorFactory"] = 101; - n_names["QItemSelectionRange"] = 102; - n_names["QKeyEvent"] = 103; - n_names["QKeySequence"] = 104; - n_names["QLayoutItem"] = 105; - n_names["QLibraryInfo"] = 106; - n_names["QLinearGradient"] = 107; - n_names["QListWidgetItem"] = 108; - n_names["QLocale"] = 109; - n_names["QMargins"] = 110; - n_names["QMarginsF"] = 111; - n_names["QMatrix"] = 112; - n_names["QMatrix4x4"] = 113; - n_names["QMediaContent"] = 114; - n_names["QMediaResource"] = 115; - n_names["QMessageAuthenticationCode"] = 116; - n_names["QMetaObject"] = 117; - n_names["QModelIndex"] = 118; - n_names["QMouseEvent"] = 119; - n_names["QMoveEvent"] = 120; - n_names["QNetworkAddressEntry"] = 121; - n_names["QNetworkCacheMetaData"] = 122; - n_names["QNetworkCookie"] = 123; - n_names["QNetworkInterface"] = 124; - n_names["QNetworkProxy"] = 125; - n_names["QNetworkProxyFactory"] = 126; - n_names["QNetworkProxyQuery"] = 127; - n_names["QNetworkRequest"] = 128; - n_names["QOpenGLFramebufferObject"] = 129; - n_names["QOpenGLFramebufferObjectFormat"] = 130; - n_names["QOpenGLPaintDevice"] = 131; - n_names["QOpenGLTexture"] = 132; - n_names["QPageLayout"] = 133; - n_names["QPageSize"] = 134; - n_names["QPagedPaintDevice"] = 135; - n_names["QPaintDevice"] = 136; - n_names["QPaintEvent"] = 137; - n_names["QPainter"] = 138; - n_names["QPainterPath"] = 139; - n_names["QPainterPathStroker"] = 140; - n_names["QPalette"] = 141; - n_names["QPen"] = 142; - n_names["QPersistentModelIndex"] = 143; - n_names["QPicture"] = 144; - n_names["QPixmap"] = 145; - n_names["QPixmapCache"] = 146; - n_names["QPrinter"] = 147; - n_names["QPrinterInfo"] = 148; - n_names["QProcessEnvironment"] = 149; - n_names["QQuaternion"] = 150; - n_names["QRadialGradient"] = 151; - n_names["QRegExp"] = 152; - n_names["QRegion"] = 153; - n_names["QRegularExpression"] = 154; - n_names["QResizeEvent"] = 155; - n_names["QRunnable"] = 156; - n_names["QScrollEvent"] = 157; - n_names["QScrollPrepareEvent"] = 158; - n_names["QSemaphore"] = 159; - n_names["QShortcutEvent"] = 160; - n_names["QShowEvent"] = 161; - n_names["QSizePolicy"] = 162; - n_names["QSpacerItem"] = 163; - n_names["QSqlDatabase"] = 164; - n_names["QSqlError"] = 165; - n_names["QSqlField"] = 166; - n_names["QSqlIndex"] = 167; - n_names["QSqlQuery"] = 168; - n_names["QSqlRecord"] = 169; - n_names["QSqlRelation"] = 170; - n_names["QSqlResult"] = 171; - n_names["QSslCertificate"] = 172; - n_names["QSslCipher"] = 173; - n_names["QSslConfiguration"] = 174; - n_names["QSslError"] = 175; - n_names["QSslKey"] = 176; - n_names["QStandardItem"] = 177; - n_names["QStandardPaths"] = 178; - n_names["QStatusTipEvent"] = 179; - n_names["QStorageInfo"] = 180; - n_names["QStyleOption"] = 181; - n_names["QStyleOptionGraphicsItem"] = 182; - n_names["QSurface"] = 183; - n_names["QSurfaceFormat"] = 184; - n_names["QSvgGenerator"] = 185; - n_names["QSysInfo"] = 186; - n_names["QSystemSemaphore"] = 187; - n_names["QTableWidgetItem"] = 188; - n_names["QTableWidgetSelectionRange"] = 189; - n_names["QTabletEvent"] = 190; - n_names["QTextBlock"] = 191; - n_names["QTextBlockFormat"] = 192; - n_names["QTextBlockUserData"] = 193; - n_names["QTextBoundaryFinder"] = 194; - n_names["QTextCharFormat"] = 195; - n_names["QTextCodec"] = 196; - n_names["QTextCursor"] = 197; - n_names["QTextDecoder"] = 198; - n_names["QTextDocumentFragment"] = 199; - n_names["QTextDocumentWriter"] = 200; - n_names["QTextEncoder"] = 201; - n_names["QTextFormat"] = 202; - n_names["QTextFragment"] = 203; - n_names["QTextFrameFormat"] = 204; - n_names["QTextImageFormat"] = 205; - n_names["QTextLayout"] = 206; - n_names["QTextLength"] = 207; - n_names["QTextLine"] = 208; - n_names["QTextListFormat"] = 209; - n_names["QTextOption"] = 210; - n_names["QTextTableCell"] = 211; - n_names["QTextTableCellFormat"] = 212; - n_names["QTextTableFormat"] = 213; - n_names["QTime"] = 214; - n_names["QTimeZone"] = 215; - n_names["QTimerEvent"] = 216; - n_names["QToolTip"] = 217; - n_names["QTouchDevice"] = 218; - n_names["QTouchEvent"] = 219; - n_names["QTransform"] = 220; - n_names["QTreeWidgetItem"] = 221; - n_names["QUndoCommand"] = 222; - n_names["QUrl"] = 223; - n_names["QUuid"] = 224; - n_names["QVariant"] = 225; - n_names["QVector2D"] = 226; - n_names["QVector3D"] = 227; - n_names["QVector4D"] = 228; - n_names["QVideoEncoderSettings"] = 229; - n_names["QVideoFrame"] = 230; - n_names["QVideoSurfaceFormat"] = 231; - n_names["QWebDatabase"] = 232; - n_names["QWebElement"] = 233; - n_names["QWebElementCollection"] = 234; - n_names["QWebHistory"] = 235; - n_names["QWebHistoryItem"] = 236; - n_names["QWebHitTestResult"] = 237; - n_names["QWebSecurityOrigin"] = 238; - n_names["QWebSettings"] = 239; - n_names["QWhatsThis"] = 240; - n_names["QWhatsThisClickedEvent"] = 241; - n_names["QWheelEvent"] = 242; - n_names["QWidgetItem"] = 243; - n_names["QWindowStateChangeEvent"] = 244; + n_names["QHttpPart"] = 93; + n_names["QIcon"] = 94; + n_names["QIconDragEvent"] = 95; + n_names["QImage"] = 96; + n_names["QImageEncoderSettings"] = 97; + n_names["QInputEvent"] = 98; + n_names["QInputMethodEvent"] = 99; + n_names["QInputMethodQueryEvent"] = 100; + n_names["QItemEditorCreatorBase"] = 101; + n_names["QItemEditorFactory"] = 102; + n_names["QItemSelectionRange"] = 103; + n_names["QKeyEvent"] = 104; + n_names["QKeySequence"] = 105; + n_names["QLayoutItem"] = 106; + n_names["QLibraryInfo"] = 107; + n_names["QLinearGradient"] = 108; + n_names["QListWidgetItem"] = 109; + n_names["QLocale"] = 110; + n_names["QMargins"] = 111; + n_names["QMarginsF"] = 112; + n_names["QMatrix"] = 113; + n_names["QMatrix4x4"] = 114; + n_names["QMediaContent"] = 115; + n_names["QMediaResource"] = 116; + n_names["QMessageAuthenticationCode"] = 117; + n_names["QMetaObject"] = 118; + n_names["QModelIndex"] = 119; + n_names["QMouseEvent"] = 120; + n_names["QMoveEvent"] = 121; + n_names["QNetworkAddressEntry"] = 122; + n_names["QNetworkCacheMetaData"] = 123; + n_names["QNetworkConfiguration"] = 124; + n_names["QNetworkCookie"] = 125; + n_names["QNetworkInterface"] = 126; + n_names["QNetworkProxy"] = 127; + n_names["QNetworkProxyFactory"] = 128; + n_names["QNetworkProxyQuery"] = 129; + n_names["QNetworkRequest"] = 130; + n_names["QOpenGLFramebufferObject"] = 131; + n_names["QOpenGLFramebufferObjectFormat"] = 132; + n_names["QOpenGLPaintDevice"] = 133; + n_names["QOpenGLTexture"] = 134; + n_names["QPageLayout"] = 135; + n_names["QPageSize"] = 136; + n_names["QPagedPaintDevice"] = 137; + n_names["QPaintDevice"] = 138; + n_names["QPaintEvent"] = 139; + n_names["QPainter"] = 140; + n_names["QPainterPath"] = 141; + n_names["QPainterPathStroker"] = 142; + n_names["QPalette"] = 143; + n_names["QPen"] = 144; + n_names["QPersistentModelIndex"] = 145; + n_names["QPicture"] = 146; + n_names["QPixmap"] = 147; + n_names["QPixmapCache"] = 148; + n_names["QPrinter"] = 149; + n_names["QPrinterInfo"] = 150; + n_names["QProcessEnvironment"] = 151; + n_names["QQuaternion"] = 152; + n_names["QRadialGradient"] = 153; + n_names["QRegExp"] = 154; + n_names["QRegion"] = 155; + n_names["QRegularExpression"] = 156; + n_names["QResizeEvent"] = 157; + n_names["QRunnable"] = 158; + n_names["QScrollEvent"] = 159; + n_names["QScrollPrepareEvent"] = 160; + n_names["QSemaphore"] = 161; + n_names["QShortcutEvent"] = 162; + n_names["QShowEvent"] = 163; + n_names["QSizePolicy"] = 164; + n_names["QSpacerItem"] = 165; + n_names["QSqlDatabase"] = 166; + n_names["QSqlError"] = 167; + n_names["QSqlField"] = 168; + n_names["QSqlIndex"] = 169; + n_names["QSqlQuery"] = 170; + n_names["QSqlRecord"] = 171; + n_names["QSqlRelation"] = 172; + n_names["QSqlResult"] = 173; + n_names["QSslCertificate"] = 174; + n_names["QSslCipher"] = 175; + n_names["QSslConfiguration"] = 176; + n_names["QSslError"] = 177; + n_names["QSslKey"] = 178; + n_names["QStandardItem"] = 179; + n_names["QStandardPaths"] = 180; + n_names["QStatusTipEvent"] = 181; + n_names["QStorageInfo"] = 182; + n_names["QStyleOption"] = 183; + n_names["QStyleOptionGraphicsItem"] = 184; + n_names["QSurface"] = 185; + n_names["QSurfaceFormat"] = 186; + n_names["QSvgGenerator"] = 187; + n_names["QSysInfo"] = 188; + n_names["QSystemSemaphore"] = 189; + n_names["QTableWidgetItem"] = 190; + n_names["QTableWidgetSelectionRange"] = 191; + n_names["QTabletEvent"] = 192; + n_names["QTextBlock"] = 193; + n_names["QTextBlockFormat"] = 194; + n_names["QTextBlockUserData"] = 195; + n_names["QTextBoundaryFinder"] = 196; + n_names["QTextCharFormat"] = 197; + n_names["QTextCodec"] = 198; + n_names["QTextCursor"] = 199; + n_names["QTextDecoder"] = 200; + n_names["QTextDocumentFragment"] = 201; + n_names["QTextDocumentWriter"] = 202; + n_names["QTextEncoder"] = 203; + n_names["QTextFormat"] = 204; + n_names["QTextFragment"] = 205; + n_names["QTextFrameFormat"] = 206; + n_names["QTextImageFormat"] = 207; + n_names["QTextLayout"] = 208; + n_names["QTextLength"] = 209; + n_names["QTextLine"] = 210; + n_names["QTextListFormat"] = 211; + n_names["QTextOption"] = 212; + n_names["QTextTableCell"] = 213; + n_names["QTextTableCellFormat"] = 214; + n_names["QTextTableFormat"] = 215; + n_names["QTime"] = 216; + n_names["QTimeZone"] = 217; + n_names["QTimerEvent"] = 218; + n_names["QToolTip"] = 219; + n_names["QTouchDevice"] = 220; + n_names["QTouchEvent"] = 221; + n_names["QTransform"] = 222; + n_names["QTreeWidgetItem"] = 223; + n_names["QUndoCommand"] = 224; + n_names["QUrl"] = 225; + n_names["QUuid"] = 226; + n_names["QVariant"] = 227; + n_names["QVector2D"] = 228; + n_names["QVector3D"] = 229; + n_names["QVector4D"] = 230; + n_names["QVideoEncoderSettings"] = 231; + n_names["QVideoFrame"] = 232; + n_names["QVideoSurfaceFormat"] = 233; + n_names["QWebDatabase"] = 234; + n_names["QWebElement"] = 235; + n_names["QWebElementCollection"] = 236; + n_names["QWebHistory"] = 237; + n_names["QWebHistoryItem"] = 238; + n_names["QWebHitTestResult"] = 239; + n_names["QWebSecurityOrigin"] = 240; + n_names["QWebSettings"] = 241; + n_names["QWhatsThis"] = 242; + n_names["QWhatsThisClickedEvent"] = 243; + n_names["QWheelEvent"] = 244; + n_names["QWidgetItem"] = 245; + n_names["QWindowStateChangeEvent"] = 246; override_function_ids["duration()"] = 1; override_function_ids["updateCurrentTime(int)"] = 2; override_function_ids["updateDirection(QAbstractAnimation::Direction)"] = 3; @@ -2405,7 +2418,7 @@ void LObjects::ini(EQL* e) { nNames = n_names.keys(); }} quint64 LObjects::override_id(uint unique, int id) { - return (243 * (quint64)unique + id); } + return (245 * (quint64)unique + id); } void* LObjects::overrideFun(quint64 id) { return override_lisp_functions.value(id, 0); } @@ -2420,41 +2433,41 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) { n = -LObjects::n_names.value(name, 0); }} const QMetaObject* m = 0; switch(n) { - case -244: m = &QWindowStateChangeEvent::staticMetaObject; break; - case -242: m = &QWheelEvent::staticMetaObject; break; - case -241: m = &QWhatsThisClickedEvent::staticMetaObject; break; - case -219: m = &QTouchEvent::staticMetaObject; break; - case -218: m = &QTouchDevice::staticMetaObject; break; - case -216: m = &QTimerEvent::staticMetaObject; break; - case -213: m = &QTextTableFormat::staticMetaObject; break; - case -212: m = &QTextTableCellFormat::staticMetaObject; break; - case -209: m = &QTextListFormat::staticMetaObject; break; - case -205: m = &QTextImageFormat::staticMetaObject; break; - case -204: m = &QTextFrameFormat::staticMetaObject; break; - case -202: m = &QTextFormat::staticMetaObject; break; - case -195: m = &QTextCharFormat::staticMetaObject; break; - case -192: m = &QTextBlockFormat::staticMetaObject; break; - case -190: m = &QTabletEvent::staticMetaObject; break; - case -179: m = &QStatusTipEvent::staticMetaObject; break; - case -162: m = &QSizePolicy::staticMetaObject; break; - case -161: m = &QShowEvent::staticMetaObject; break; - case -160: m = &QShortcutEvent::staticMetaObject; break; - case -158: m = &QScrollPrepareEvent::staticMetaObject; break; - case -157: m = &QScrollEvent::staticMetaObject; break; - case -155: m = &QResizeEvent::staticMetaObject; break; - case -151: m = &QRadialGradient::staticMetaObject; break; - case -141: m = &QPalette::staticMetaObject; break; - case -138: m = &QPainter::staticMetaObject; break; - case -137: m = &QPaintEvent::staticMetaObject; break; - case -120: m = &QMoveEvent::staticMetaObject; break; - case -119: m = &QMouseEvent::staticMetaObject; break; - case -109: m = &QLocale::staticMetaObject; break; - case -107: m = &QLinearGradient::staticMetaObject; break; - case -103: m = &QKeyEvent::staticMetaObject; break; - case -99: m = &QInputMethodQueryEvent::staticMetaObject; break; - case -98: m = &QInputMethodEvent::staticMetaObject; break; - case -97: m = &QInputEvent::staticMetaObject; break; - case -94: m = &QIconDragEvent::staticMetaObject; break; + case -246: m = &QWindowStateChangeEvent::staticMetaObject; break; + case -244: m = &QWheelEvent::staticMetaObject; break; + case -243: m = &QWhatsThisClickedEvent::staticMetaObject; break; + case -221: m = &QTouchEvent::staticMetaObject; break; + case -220: m = &QTouchDevice::staticMetaObject; break; + case -218: m = &QTimerEvent::staticMetaObject; break; + case -215: m = &QTextTableFormat::staticMetaObject; break; + case -214: m = &QTextTableCellFormat::staticMetaObject; break; + case -211: m = &QTextListFormat::staticMetaObject; break; + case -207: m = &QTextImageFormat::staticMetaObject; break; + case -206: m = &QTextFrameFormat::staticMetaObject; break; + case -204: m = &QTextFormat::staticMetaObject; break; + case -197: m = &QTextCharFormat::staticMetaObject; break; + case -194: m = &QTextBlockFormat::staticMetaObject; break; + case -192: m = &QTabletEvent::staticMetaObject; break; + case -181: m = &QStatusTipEvent::staticMetaObject; break; + case -164: m = &QSizePolicy::staticMetaObject; break; + case -163: m = &QShowEvent::staticMetaObject; break; + case -162: m = &QShortcutEvent::staticMetaObject; break; + case -160: m = &QScrollPrepareEvent::staticMetaObject; break; + case -159: m = &QScrollEvent::staticMetaObject; break; + case -157: m = &QResizeEvent::staticMetaObject; break; + case -153: m = &QRadialGradient::staticMetaObject; break; + case -143: m = &QPalette::staticMetaObject; break; + case -140: m = &QPainter::staticMetaObject; break; + case -139: m = &QPaintEvent::staticMetaObject; break; + case -121: m = &QMoveEvent::staticMetaObject; break; + case -120: m = &QMouseEvent::staticMetaObject; break; + case -110: m = &QLocale::staticMetaObject; break; + case -108: m = &QLinearGradient::staticMetaObject; break; + case -104: m = &QKeyEvent::staticMetaObject; break; + case -100: m = &QInputMethodQueryEvent::staticMetaObject; break; + case -99: m = &QInputMethodEvent::staticMetaObject; break; + case -98: m = &QInputEvent::staticMetaObject; break; + case -95: m = &QIconDragEvent::staticMetaObject; break; case -92: m = &QHoverEvent::staticMetaObject; break; case -89: m = &QHideEvent::staticMetaObject; break; case -87: m = &QHelpEvent::staticMetaObject; break; @@ -2568,122 +2581,122 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) { case 93: m = &QHBoxLayout::staticMetaObject; break; case 94: m = &QHeaderView::staticMetaObject; break; case 103: m = &QHistoryState::staticMetaObject; break; - case 104: m = &QIODevice::staticMetaObject; break; - case 105: m = &QIdentityProxyModel::staticMetaObject; break; - case 106: m = &QInputDialog::staticMetaObject; break; - case 107: m = &QInputMethod::staticMetaObject; break; - case 108: m = &QIntValidator::staticMetaObject; break; - case 109: m = &QItemDelegate::staticMetaObject; break; - case 110: m = &QItemSelectionModel::staticMetaObject; break; - case 111: m = &QKeyEventTransition::staticMetaObject; break; - case 112: m = &QLCDNumber::staticMetaObject; break; - case 113: m = &QLabel::staticMetaObject; break; - case 114: m = &QLayout::staticMetaObject; break; - case 115: m = &QLibrary::staticMetaObject; break; - case 116: m = &QLineEdit::staticMetaObject; break; - case 117: m = &QListView::staticMetaObject; break; - case 118: m = &QListWidget::staticMetaObject; break; - case 121: m = &QMainWindow::staticMetaObject; break; - case 122: m = &QMdiArea::staticMetaObject; break; - case 123: m = &QMdiSubWindow::staticMetaObject; break; - case 129: m = &QMenu::staticMetaObject; break; - case 130: m = &QMenuBar::staticMetaObject; break; - case 131: m = &QMessageBox::staticMetaObject; break; - case 132: m = &QMimeData::staticMetaObject; break; - case 133: m = &QMouseEventTransition::staticMetaObject; break; - case 134: m = &QMovie::staticMetaObject; break; - case 139: m = &QObject::staticMetaObject; break; - case 140: m = &QObjectCleanupHandler::staticMetaObject; break; - case 141: m = &QOpenGLContext::staticMetaObject; break; - case 142: m = &QOpenGLShader::staticMetaObject; break; - case 143: m = &QOpenGLShaderProgram::staticMetaObject; break; - case 144: m = &QOpenGLWidget::staticMetaObject; break; - case 145: m = &QOpenGLWindow::staticMetaObject; break; - case 146: m = &QPageSetupDialog::staticMetaObject; break; - case 147: m = &QPaintDeviceWindow::staticMetaObject; break; - case 148: m = &QPanGesture::staticMetaObject; break; - case 149: m = &QParallelAnimationGroup::staticMetaObject; break; - case 150: m = &QPauseAnimation::staticMetaObject; break; - case 151: m = &QPdfWriter::staticMetaObject; break; - case 152: m = &QPinchGesture::staticMetaObject; break; - case 153: m = &QPlainTextDocumentLayout::staticMetaObject; break; - case 154: m = &QPlainTextEdit::staticMetaObject; break; - case 155: m = &QPluginLoader::staticMetaObject; break; - case 156: m = &QPrintDialog::staticMetaObject; break; - case 157: m = &QPrintPreviewDialog::staticMetaObject; break; - case 158: m = &QPrintPreviewWidget::staticMetaObject; break; - case 159: m = &QProcess::staticMetaObject; break; - case 160: m = &QProgressBar::staticMetaObject; break; - case 161: m = &QProgressDialog::staticMetaObject; break; - case 162: m = &QPropertyAnimation::staticMetaObject; break; - case 163: m = &QProxyStyle::staticMetaObject; break; - case 164: m = &QPushButton::staticMetaObject; break; - case 165: m = &QRadioButton::staticMetaObject; break; - case 167: m = &QRegExpValidator::staticMetaObject; break; - case 168: m = &QRubberBand::staticMetaObject; break; - case 169: m = &QScreen::staticMetaObject; break; - case 170: m = &QScrollArea::staticMetaObject; break; - case 171: m = &QScrollBar::staticMetaObject; break; - case 172: m = &QSequentialAnimationGroup::staticMetaObject; break; - case 173: m = &QSessionManager::staticMetaObject; break; - case 174: m = &QSettings::staticMetaObject; break; - case 175: m = &QShortcut::staticMetaObject; break; - case 176: m = &QSignalMapper::staticMetaObject; break; - case 177: m = &QSignalTransition::staticMetaObject; break; - case 178: m = &QSizeGrip::staticMetaObject; break; - case 179: m = &QSlider::staticMetaObject; break; - case 180: m = &QSortFilterProxyModel::staticMetaObject; break; - case 181: m = &QSpinBox::staticMetaObject; break; - case 182: m = &QSplashScreen::staticMetaObject; break; - case 183: m = &QSplitter::staticMetaObject; break; - case 184: m = &QSplitterHandle::staticMetaObject; break; - case 190: m = &QStackedLayout::staticMetaObject; break; - case 191: m = &QStackedWidget::staticMetaObject; break; - case 192: m = &QStandardItemModel::staticMetaObject; break; - case 193: m = &QState::staticMetaObject; break; - case 194: m = &QStateMachine::staticMetaObject; break; - case 195: m = &QStatusBar::staticMetaObject; break; - case 196: m = &QStringListModel::staticMetaObject; break; - case 197: m = &QStyle::staticMetaObject; break; - case 198: m = &QStyleHints::staticMetaObject; break; - case 199: m = &QStyledItemDelegate::staticMetaObject; break; - case 202: m = &QSwipeGesture::staticMetaObject; break; - case 203: m = &QSyntaxHighlighter::staticMetaObject; break; - case 204: m = &QSystemTrayIcon::staticMetaObject; break; - case 205: m = &QTabBar::staticMetaObject; break; - case 206: m = &QTabWidget::staticMetaObject; break; - case 207: m = &QTableView::staticMetaObject; break; - case 208: m = &QTableWidget::staticMetaObject; break; - case 209: m = &QTapAndHoldGesture::staticMetaObject; break; - case 210: m = &QTapGesture::staticMetaObject; break; - case 213: m = &QTextBlockGroup::staticMetaObject; break; - case 214: m = &QTextBrowser::staticMetaObject; break; - case 215: m = &QTextDocument::staticMetaObject; break; - case 216: m = &QTextEdit::staticMetaObject; break; - case 217: m = &QTextFrame::staticMetaObject; break; - case 218: m = &QTextList::staticMetaObject; break; - case 219: m = &QTextObject::staticMetaObject; break; - case 220: m = &QTextTable::staticMetaObject; break; - case 221: m = &QTimeEdit::staticMetaObject; break; - case 222: m = &QTimeLine::staticMetaObject; break; - case 223: m = &QTimer::staticMetaObject; break; - case 224: m = &QToolBar::staticMetaObject; break; - case 225: m = &QToolBox::staticMetaObject; break; - case 226: m = &QToolButton::staticMetaObject; break; - case 227: m = &QTranslator::staticMetaObject; break; - case 228: m = &QTreeView::staticMetaObject; break; - case 229: m = &QTreeWidget::staticMetaObject; break; - case 231: m = &QUndoGroup::staticMetaObject; break; - case 232: m = &QUndoStack::staticMetaObject; break; - case 233: m = &QUndoView::staticMetaObject; break; - case 234: m = &QVBoxLayout::staticMetaObject; break; - case 235: m = &QValidator::staticMetaObject; break; - case 236: m = &QVariantAnimation::staticMetaObject; break; - case 245: m = &QWidget::staticMetaObject; break; - case 246: m = &QWidgetAction::staticMetaObject; break; - case 247: m = &QWindow::staticMetaObject; break; - case 248: m = &QWizard::staticMetaObject; break; - case 249: m = &QWizardPage::staticMetaObject; break; + case 105: m = &QIODevice::staticMetaObject; break; + case 106: m = &QIdentityProxyModel::staticMetaObject; break; + case 107: m = &QInputDialog::staticMetaObject; break; + case 108: m = &QInputMethod::staticMetaObject; break; + case 109: m = &QIntValidator::staticMetaObject; break; + case 110: m = &QItemDelegate::staticMetaObject; break; + case 111: m = &QItemSelectionModel::staticMetaObject; break; + case 112: m = &QKeyEventTransition::staticMetaObject; break; + case 113: m = &QLCDNumber::staticMetaObject; break; + case 114: m = &QLabel::staticMetaObject; break; + case 115: m = &QLayout::staticMetaObject; break; + case 116: m = &QLibrary::staticMetaObject; break; + case 117: m = &QLineEdit::staticMetaObject; break; + case 118: m = &QListView::staticMetaObject; break; + case 119: m = &QListWidget::staticMetaObject; break; + case 122: m = &QMainWindow::staticMetaObject; break; + case 123: m = &QMdiArea::staticMetaObject; break; + case 124: m = &QMdiSubWindow::staticMetaObject; break; + case 130: m = &QMenu::staticMetaObject; break; + case 131: m = &QMenuBar::staticMetaObject; break; + case 132: m = &QMessageBox::staticMetaObject; break; + case 133: m = &QMimeData::staticMetaObject; break; + case 134: m = &QMouseEventTransition::staticMetaObject; break; + case 135: m = &QMovie::staticMetaObject; break; + case 140: m = &QObject::staticMetaObject; break; + case 141: m = &QObjectCleanupHandler::staticMetaObject; break; + case 142: m = &QOpenGLContext::staticMetaObject; break; + case 143: m = &QOpenGLShader::staticMetaObject; break; + case 144: m = &QOpenGLShaderProgram::staticMetaObject; break; + case 145: m = &QOpenGLWidget::staticMetaObject; break; + case 146: m = &QOpenGLWindow::staticMetaObject; break; + case 147: m = &QPageSetupDialog::staticMetaObject; break; + case 148: m = &QPaintDeviceWindow::staticMetaObject; break; + case 149: m = &QPanGesture::staticMetaObject; break; + case 150: m = &QParallelAnimationGroup::staticMetaObject; break; + case 151: m = &QPauseAnimation::staticMetaObject; break; + case 152: m = &QPdfWriter::staticMetaObject; break; + case 153: m = &QPinchGesture::staticMetaObject; break; + case 154: m = &QPlainTextDocumentLayout::staticMetaObject; break; + case 155: m = &QPlainTextEdit::staticMetaObject; break; + case 156: m = &QPluginLoader::staticMetaObject; break; + case 157: m = &QPrintDialog::staticMetaObject; break; + case 158: m = &QPrintPreviewDialog::staticMetaObject; break; + case 159: m = &QPrintPreviewWidget::staticMetaObject; break; + case 160: m = &QProcess::staticMetaObject; break; + case 161: m = &QProgressBar::staticMetaObject; break; + case 162: m = &QProgressDialog::staticMetaObject; break; + case 163: m = &QPropertyAnimation::staticMetaObject; break; + case 164: m = &QProxyStyle::staticMetaObject; break; + case 165: m = &QPushButton::staticMetaObject; break; + case 166: m = &QRadioButton::staticMetaObject; break; + case 168: m = &QRegExpValidator::staticMetaObject; break; + case 169: m = &QRubberBand::staticMetaObject; break; + case 170: m = &QScreen::staticMetaObject; break; + case 171: m = &QScrollArea::staticMetaObject; break; + case 172: m = &QScrollBar::staticMetaObject; break; + case 173: m = &QSequentialAnimationGroup::staticMetaObject; break; + case 174: m = &QSessionManager::staticMetaObject; break; + case 175: m = &QSettings::staticMetaObject; break; + case 176: m = &QShortcut::staticMetaObject; break; + case 177: m = &QSignalMapper::staticMetaObject; break; + case 178: m = &QSignalTransition::staticMetaObject; break; + case 179: m = &QSizeGrip::staticMetaObject; break; + case 180: m = &QSlider::staticMetaObject; break; + case 181: m = &QSortFilterProxyModel::staticMetaObject; break; + case 182: m = &QSpinBox::staticMetaObject; break; + case 183: m = &QSplashScreen::staticMetaObject; break; + case 184: m = &QSplitter::staticMetaObject; break; + case 185: m = &QSplitterHandle::staticMetaObject; break; + case 191: m = &QStackedLayout::staticMetaObject; break; + case 192: m = &QStackedWidget::staticMetaObject; break; + case 193: m = &QStandardItemModel::staticMetaObject; break; + case 194: m = &QState::staticMetaObject; break; + case 195: m = &QStateMachine::staticMetaObject; break; + case 196: m = &QStatusBar::staticMetaObject; break; + case 197: m = &QStringListModel::staticMetaObject; break; + case 198: m = &QStyle::staticMetaObject; break; + case 199: m = &QStyleHints::staticMetaObject; break; + case 200: m = &QStyledItemDelegate::staticMetaObject; break; + case 203: m = &QSwipeGesture::staticMetaObject; break; + case 204: m = &QSyntaxHighlighter::staticMetaObject; break; + case 205: m = &QSystemTrayIcon::staticMetaObject; break; + case 206: m = &QTabBar::staticMetaObject; break; + case 207: m = &QTabWidget::staticMetaObject; break; + case 208: m = &QTableView::staticMetaObject; break; + case 209: m = &QTableWidget::staticMetaObject; break; + case 210: m = &QTapAndHoldGesture::staticMetaObject; break; + case 211: m = &QTapGesture::staticMetaObject; break; + case 214: m = &QTextBlockGroup::staticMetaObject; break; + case 215: m = &QTextBrowser::staticMetaObject; break; + case 216: m = &QTextDocument::staticMetaObject; break; + case 217: m = &QTextEdit::staticMetaObject; break; + case 218: m = &QTextFrame::staticMetaObject; break; + case 219: m = &QTextList::staticMetaObject; break; + case 220: m = &QTextObject::staticMetaObject; break; + case 221: m = &QTextTable::staticMetaObject; break; + case 222: m = &QTimeEdit::staticMetaObject; break; + case 223: m = &QTimeLine::staticMetaObject; break; + case 224: m = &QTimer::staticMetaObject; break; + case 225: m = &QToolBar::staticMetaObject; break; + case 226: m = &QToolBox::staticMetaObject; break; + case 227: m = &QToolButton::staticMetaObject; break; + case 228: m = &QTranslator::staticMetaObject; break; + case 229: m = &QTreeView::staticMetaObject; break; + case 230: m = &QTreeWidget::staticMetaObject; break; + case 232: m = &QUndoGroup::staticMetaObject; break; + case 233: m = &QUndoStack::staticMetaObject; break; + case 234: m = &QUndoView::staticMetaObject; break; + case 235: m = &QVBoxLayout::staticMetaObject; break; + case 236: m = &QValidator::staticMetaObject; break; + case 237: m = &QVariantAnimation::staticMetaObject; break; + case 246: m = &QWidget::staticMetaObject; break; + case 247: m = &QWidgetAction::staticMetaObject; break; + case 248: m = &QWindow::staticMetaObject; break; + case 249: m = &QWizard::staticMetaObject; break; + case 250: m = &QWizardPage::staticMetaObject; break; case 95: case 96: case 97: @@ -2705,52 +2718,53 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) { case 33: case 34: case 86: - case 124: case 125: case 126: case 127: case 128: - case 166: - case 237: + case 129: + case 167: case 238: + case 239: if(staticMetaObject_multimedia) { m = staticMetaObject_multimedia(n); } break; case 7: case 12: - case 119: + case 104: case 120: - case 135: + case 121: case 136: case 137: case 138: - case 211: + case 139: case 212: - case 230: + case 213: + case 231: if(staticMetaObject_network) { m = staticMetaObject_network(n); } break; - case 185: case 186: case 187: case 188: case 189: + case 190: if(staticMetaObject_sql) { m = staticMetaObject_sql(n); } break; case 83: - case 200: case 201: + case 202: if(staticMetaObject_svg) { m = staticMetaObject_svg(n); } break; case 88: - case 239: case 240: case 241: case 242: case 243: case 244: + case 245: if(staticMetaObject_webkit) { m = staticMetaObject_webkit(n); } break; } @@ -2838,117 +2852,117 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 87: if(gc) delete (QHelpEvent*)p; else delete (LHelpEvent*)p; break; case 89: if(gc) delete (QHideEvent*)p; else delete (LHideEvent*)p; break; case 92: if(gc) delete (QHoverEvent*)p; else delete (LHoverEvent*)p; break; - case 93: if(gc) delete (QIcon*)p; else delete (LIcon*)p; break; - case 94: if(gc) delete (QIconDragEvent*)p; else delete (LIconDragEvent*)p; break; - case 95: if(gc) delete (QImage*)p; else delete (LImage*)p; break; - case 97: if(gc) delete (QInputEvent*)p; else delete (LInputEvent*)p; break; - case 98: if(gc) delete (QInputMethodEvent*)p; else delete (LInputMethodEvent*)p; break; - case 99: if(gc) delete (QInputMethodQueryEvent*)p; else delete (LInputMethodQueryEvent*)p; break; - case 100: if(gc) delete (QItemEditorCreatorBase*)p; else delete (LItemEditorCreatorBase*)p; break; - case 101: if(gc) delete (QItemEditorFactory*)p; else delete (LItemEditorFactory*)p; break; - case 102: if(gc) delete (QItemSelectionRange*)p; else delete (LItemSelectionRange*)p; break; - case 103: if(gc) delete (QKeyEvent*)p; else delete (LKeyEvent*)p; break; - case 104: if(gc) delete (QKeySequence*)p; else delete (LKeySequence*)p; break; - case 105: if(gc) delete (QLayoutItem*)p; else delete (LLayoutItem*)p; break; - case 106: if(gc) delete (QLibraryInfo*)p; else delete (LLibraryInfo*)p; break; - case 107: if(gc) delete (QLinearGradient*)p; else delete (LLinearGradient*)p; break; - case 108: if(gc) delete (QListWidgetItem*)p; else delete (LListWidgetItem*)p; break; - case 109: if(gc) delete (QLocale*)p; else delete (LLocale*)p; break; - case 110: if(gc) delete (QMargins*)p; else delete (LMargins*)p; break; - case 111: if(gc) delete (QMarginsF*)p; else delete (LMarginsF*)p; break; - case 112: if(gc) delete (QMatrix*)p; else delete (LMatrix*)p; break; - case 113: if(gc) delete (QMatrix4x4*)p; else delete (LMatrix4x4*)p; break; - case 116: if(gc) delete (QMessageAuthenticationCode*)p; else delete (LMessageAuthenticationCode*)p; break; - case 117: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break; - case 118: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break; - case 119: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break; - case 120: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break; - case 129: if(gc) delete (QOpenGLFramebufferObject*)p; else delete (LOpenGLFramebufferObject*)p; break; - case 130: if(gc) delete (QOpenGLFramebufferObjectFormat*)p; else delete (LOpenGLFramebufferObjectFormat*)p; break; - case 131: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break; - case 132: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break; - case 133: if(gc) delete (QPageLayout*)p; else delete (LPageLayout*)p; break; - case 134: if(gc) delete (QPageSize*)p; else delete (LPageSize*)p; break; - case 137: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break; - case 138: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break; - case 139: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break; - case 140: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break; - case 141: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break; - case 142: if(gc) delete (QPen*)p; else delete (LPen*)p; break; - case 143: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break; - case 144: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break; - case 145: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break; - case 146: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break; - case 147: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break; - case 148: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break; - case 149: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break; - case 150: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break; - case 151: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break; - case 152: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break; - case 153: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break; - case 154: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break; - case 155: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break; - case 156: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break; - case 157: if(gc) delete (QScrollEvent*)p; else delete (LScrollEvent*)p; break; - case 158: if(gc) delete (QScrollPrepareEvent*)p; else delete (LScrollPrepareEvent*)p; break; - case 159: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break; - case 160: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break; - case 161: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break; - case 162: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break; - case 163: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break; - case 177: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break; - case 179: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break; - case 180: if(gc) delete (QStorageInfo*)p; else delete (LStorageInfo*)p; break; - case 181: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break; - case 182: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break; - case 184: if(gc) delete (QSurfaceFormat*)p; else delete (LSurfaceFormat*)p; break; - case 187: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break; - case 188: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break; - case 189: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break; - case 190: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break; - case 191: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break; - case 192: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break; - case 193: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break; - case 194: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break; - case 195: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break; - case 196: if(gc) /* nothing */; else delete (LTextCodec*)p; break; - case 197: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break; - case 198: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break; - case 199: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break; - case 200: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break; - case 201: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break; - case 202: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break; - case 203: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break; - case 204: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break; - case 205: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break; - case 206: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break; - case 207: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break; - case 208: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break; - case 209: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break; - case 210: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break; - case 211: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break; - case 212: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break; - case 213: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break; - case 214: if(gc) delete (QTime*)p; else delete (LTime*)p; break; - case 215: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break; - case 216: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break; - case 217: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break; - case 218: if(gc) delete (QTouchDevice*)p; else delete (LTouchDevice*)p; break; - case 219: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break; - case 220: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break; - case 221: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break; - case 222: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break; - case 223: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break; - case 224: if(gc) delete (QUuid*)p; else delete (LUuid*)p; break; - case 225: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break; - case 226: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break; - case 227: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break; - case 228: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break; - case 240: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break; - case 241: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break; - case 242: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break; - case 243: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break; - case 244: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break; + case 94: if(gc) delete (QIcon*)p; else delete (LIcon*)p; break; + case 95: if(gc) delete (QIconDragEvent*)p; else delete (LIconDragEvent*)p; break; + case 96: if(gc) delete (QImage*)p; else delete (LImage*)p; break; + case 98: if(gc) delete (QInputEvent*)p; else delete (LInputEvent*)p; break; + case 99: if(gc) delete (QInputMethodEvent*)p; else delete (LInputMethodEvent*)p; break; + case 100: if(gc) delete (QInputMethodQueryEvent*)p; else delete (LInputMethodQueryEvent*)p; break; + case 101: if(gc) delete (QItemEditorCreatorBase*)p; else delete (LItemEditorCreatorBase*)p; break; + case 102: if(gc) delete (QItemEditorFactory*)p; else delete (LItemEditorFactory*)p; break; + case 103: if(gc) delete (QItemSelectionRange*)p; else delete (LItemSelectionRange*)p; break; + case 104: if(gc) delete (QKeyEvent*)p; else delete (LKeyEvent*)p; break; + case 105: if(gc) delete (QKeySequence*)p; else delete (LKeySequence*)p; break; + case 106: if(gc) delete (QLayoutItem*)p; else delete (LLayoutItem*)p; break; + case 107: if(gc) delete (QLibraryInfo*)p; else delete (LLibraryInfo*)p; break; + case 108: if(gc) delete (QLinearGradient*)p; else delete (LLinearGradient*)p; break; + case 109: if(gc) delete (QListWidgetItem*)p; else delete (LListWidgetItem*)p; break; + case 110: if(gc) delete (QLocale*)p; else delete (LLocale*)p; break; + case 111: if(gc) delete (QMargins*)p; else delete (LMargins*)p; break; + case 112: if(gc) delete (QMarginsF*)p; else delete (LMarginsF*)p; break; + case 113: if(gc) delete (QMatrix*)p; else delete (LMatrix*)p; break; + case 114: if(gc) delete (QMatrix4x4*)p; else delete (LMatrix4x4*)p; break; + case 117: if(gc) delete (QMessageAuthenticationCode*)p; else delete (LMessageAuthenticationCode*)p; break; + case 118: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break; + case 119: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break; + case 120: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break; + case 121: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break; + case 131: if(gc) delete (QOpenGLFramebufferObject*)p; else delete (LOpenGLFramebufferObject*)p; break; + case 132: if(gc) delete (QOpenGLFramebufferObjectFormat*)p; else delete (LOpenGLFramebufferObjectFormat*)p; break; + case 133: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break; + case 134: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break; + case 135: if(gc) delete (QPageLayout*)p; else delete (LPageLayout*)p; break; + case 136: if(gc) delete (QPageSize*)p; else delete (LPageSize*)p; break; + case 139: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break; + case 140: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break; + case 141: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break; + case 142: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break; + case 143: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break; + case 144: if(gc) delete (QPen*)p; else delete (LPen*)p; break; + case 145: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break; + case 146: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break; + case 147: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break; + case 148: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break; + case 149: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break; + case 150: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break; + case 151: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break; + case 152: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break; + case 153: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break; + case 154: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break; + case 155: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break; + case 156: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break; + case 157: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break; + case 158: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break; + case 159: if(gc) delete (QScrollEvent*)p; else delete (LScrollEvent*)p; break; + case 160: if(gc) delete (QScrollPrepareEvent*)p; else delete (LScrollPrepareEvent*)p; break; + case 161: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break; + case 162: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break; + case 163: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break; + case 164: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break; + case 165: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break; + case 179: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break; + case 181: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break; + case 182: if(gc) delete (QStorageInfo*)p; else delete (LStorageInfo*)p; break; + case 183: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break; + case 184: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break; + case 186: if(gc) delete (QSurfaceFormat*)p; else delete (LSurfaceFormat*)p; break; + case 189: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break; + case 190: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break; + case 191: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break; + case 192: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break; + case 193: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break; + case 194: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break; + case 195: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break; + case 196: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break; + case 197: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break; + case 198: if(gc) /* nothing */; else delete (LTextCodec*)p; break; + case 199: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break; + case 200: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break; + case 201: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break; + case 202: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break; + case 203: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break; + case 204: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break; + case 205: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break; + case 206: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break; + case 207: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break; + case 208: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break; + case 209: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break; + case 210: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break; + case 211: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break; + case 212: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break; + case 213: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break; + case 214: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break; + case 215: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break; + case 216: if(gc) delete (QTime*)p; else delete (LTime*)p; break; + case 217: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break; + case 218: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break; + case 219: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break; + case 220: if(gc) delete (QTouchDevice*)p; else delete (LTouchDevice*)p; break; + case 221: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break; + case 222: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break; + case 223: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break; + case 224: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break; + case 225: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break; + case 226: if(gc) delete (QUuid*)p; else delete (LUuid*)p; break; + case 227: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break; + case 228: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break; + case 229: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break; + case 230: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break; + case 242: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break; + case 243: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break; + case 244: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break; + case 245: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break; + case 246: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break; case 86: case 88: if(deleteNObject_help) { @@ -2959,19 +2973,19 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 20: case 27: case 28: - case 96: - case 114: + case 97: case 115: - case 229: - case 230: + case 116: case 231: + case 232: + case 233: if(deleteNObject_multimedia) { deleteNObject_multimedia(n, p, gc); } break; case 21: case 90: case 91: - case 121: + case 93: case 122: case 123: case 124: @@ -2979,37 +2993,39 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 126: case 127: case 128: - case 172: - case 173: + case 129: + case 130: case 174: case 175: case 176: + case 177: + case 178: if(deleteNObject_network) { deleteNObject_network(n, p, gc); } break; - case 164: - case 165: case 166: case 167: case 168: case 169: case 170: case 171: + case 172: + case 173: if(deleteNObject_sql) { deleteNObject_sql(n, p, gc); } break; - case 185: + case 187: if(deleteNObject_svg) { deleteNObject_svg(n, p, gc); } break; - case 232: - case 233: case 234: case 235: case 236: case 237: case 238: case 239: + case 240: + case 241: if(deleteNObject_webkit) { deleteNObject_webkit(n, p, gc); } break; }} @@ -3067,46 +3083,46 @@ const char* LObjects::nObjectSuperClass(const QByteArray& name) { case 87: s = "QEvent"; break; case 89: s = "QEvent"; break; case 92: s = "QInputEvent"; break; - case 94: s = "QEvent"; break; - case 95: s = "QPaintDevice"; break; - case 97: s = "QEvent"; break; + case 95: s = "QEvent"; break; + case 96: s = "QPaintDevice"; break; case 98: s = "QEvent"; break; case 99: s = "QEvent"; break; - case 103: s = "QInputEvent"; break; - case 107: s = "QGradient"; break; - case 119: s = "QInputEvent"; break; - case 120: s = "QEvent"; break; - case 131: s = "QPaintDevice"; break; - case 135: s = "QPaintDevice"; break; - case 137: s = "QEvent"; break; - case 144: s = "QPaintDevice"; break; - case 145: s = "QPaintDevice"; break; - case 147: s = "QPagedPaintDevice"; break; - case 151: s = "QGradient"; break; - case 155: s = "QEvent"; break; + case 100: s = "QEvent"; break; + case 104: s = "QInputEvent"; break; + case 108: s = "QGradient"; break; + case 120: s = "QInputEvent"; break; + case 121: s = "QEvent"; break; + case 133: s = "QPaintDevice"; break; + case 137: s = "QPaintDevice"; break; + case 139: s = "QEvent"; break; + case 146: s = "QPaintDevice"; break; + case 147: s = "QPaintDevice"; break; + case 149: s = "QPagedPaintDevice"; break; + case 153: s = "QGradient"; break; case 157: s = "QEvent"; break; - case 158: s = "QEvent"; break; + case 159: s = "QEvent"; break; case 160: s = "QEvent"; break; - case 161: s = "QEvent"; break; - case 163: s = "QLayoutItem"; break; - case 167: s = "QSqlRecord"; break; - case 179: s = "QEvent"; break; - case 182: s = "QStyleOption"; break; - case 185: s = "QPaintDevice"; break; - case 190: s = "QInputEvent"; break; - case 192: s = "QTextFormat"; break; - case 195: s = "QTextFormat"; break; - case 204: s = "QTextFormat"; break; - case 205: s = "QTextCharFormat"; break; - case 209: s = "QTextFormat"; break; - case 212: s = "QTextCharFormat"; break; - case 213: s = "QTextFrameFormat"; break; - case 216: s = "QEvent"; break; - case 219: s = "QInputEvent"; break; - case 241: s = "QEvent"; break; - case 242: s = "QInputEvent"; break; - case 243: s = "QLayoutItem"; break; - case 244: s = "QEvent"; break; } + case 162: s = "QEvent"; break; + case 163: s = "QEvent"; break; + case 165: s = "QLayoutItem"; break; + case 169: s = "QSqlRecord"; break; + case 181: s = "QEvent"; break; + case 184: s = "QStyleOption"; break; + case 187: s = "QPaintDevice"; break; + case 192: s = "QInputEvent"; break; + case 194: s = "QTextFormat"; break; + case 197: s = "QTextFormat"; break; + case 206: s = "QTextFormat"; break; + case 207: s = "QTextCharFormat"; break; + case 211: s = "QTextFormat"; break; + case 214: s = "QTextCharFormat"; break; + case 215: s = "QTextFrameFormat"; break; + case 218: s = "QEvent"; break; + case 221: s = "QInputEvent"; break; + case 243: s = "QEvent"; break; + case 244: s = "QInputEvent"; break; + case 245: s = "QLayoutItem"; break; + case 246: s = "QEvent"; break; } return s; } StrList LObjects::overrideFunctions(const QByteArray& name) { @@ -3190,117 +3206,117 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 93: ids = LHBoxLayout::overrideIds; break; case 94: ids = LHeaderView::overrideIds; break; case 103: ids = LHistoryState::overrideIds; break; - case 104: ids = LIODevice::overrideIds; break; - case 105: ids = LIdentityProxyModel::overrideIds; break; - case 106: ids = LInputDialog::overrideIds; break; - case 108: ids = LIntValidator::overrideIds; break; - case 109: ids = LItemDelegate::overrideIds; break; - case 110: ids = LItemSelectionModel::overrideIds; break; - case 111: ids = LKeyEventTransition::overrideIds; break; - case 112: ids = LLCDNumber::overrideIds; break; - case 113: ids = LLabel::overrideIds; break; - case 115: ids = LLibrary::overrideIds; break; - case 116: ids = LLineEdit::overrideIds; break; - case 117: ids = LListView::overrideIds; break; - case 118: ids = LListWidget::overrideIds; break; - case 121: ids = LMainWindow::overrideIds; break; - case 122: ids = LMdiArea::overrideIds; break; - case 123: ids = LMdiSubWindow::overrideIds; break; - case 129: ids = LMenu::overrideIds; break; - case 130: ids = LMenuBar::overrideIds; break; - case 131: ids = LMessageBox::overrideIds; break; - case 132: ids = LMimeData::overrideIds; break; - case 133: ids = LMouseEventTransition::overrideIds; break; - case 134: ids = LMovie::overrideIds; break; - case 139: ids = LObject::overrideIds; break; - case 140: ids = LObjectCleanupHandler::overrideIds; break; - case 141: ids = LOpenGLContext::overrideIds; break; - case 142: ids = LOpenGLShader::overrideIds; break; - case 143: ids = LOpenGLShaderProgram::overrideIds; break; - case 144: ids = LOpenGLWidget::overrideIds; break; - case 145: ids = LOpenGLWindow::overrideIds; break; - case 146: ids = LPageSetupDialog::overrideIds; break; - case 147: ids = LPaintDeviceWindow::overrideIds; break; - case 148: ids = LPanGesture::overrideIds; break; - case 149: ids = LParallelAnimationGroup::overrideIds; break; - case 150: ids = LPauseAnimation::overrideIds; break; - case 151: ids = LPdfWriter::overrideIds; break; - case 152: ids = LPinchGesture::overrideIds; break; - case 153: ids = LPlainTextDocumentLayout::overrideIds; break; - case 154: ids = LPlainTextEdit::overrideIds; break; - case 155: ids = LPluginLoader::overrideIds; break; - case 156: ids = LPrintDialog::overrideIds; break; - case 157: ids = LPrintPreviewDialog::overrideIds; break; - case 158: ids = LPrintPreviewWidget::overrideIds; break; - case 159: ids = LProcess::overrideIds; break; - case 160: ids = LProgressBar::overrideIds; break; - case 161: ids = LProgressDialog::overrideIds; break; - case 162: ids = LPropertyAnimation::overrideIds; break; - case 163: ids = LProxyStyle::overrideIds; break; - case 164: ids = LPushButton::overrideIds; break; - case 165: ids = LRadioButton::overrideIds; break; - case 167: ids = LRegExpValidator::overrideIds; break; - case 168: ids = LRubberBand::overrideIds; break; - case 170: ids = LScrollArea::overrideIds; break; - case 171: ids = LScrollBar::overrideIds; break; - case 172: ids = LSequentialAnimationGroup::overrideIds; break; - case 174: ids = LSettings::overrideIds; break; - case 175: ids = LShortcut::overrideIds; break; - case 176: ids = LSignalMapper::overrideIds; break; - case 177: ids = LSignalTransition::overrideIds; break; - case 178: ids = LSizeGrip::overrideIds; break; - case 179: ids = LSlider::overrideIds; break; - case 180: ids = LSortFilterProxyModel::overrideIds; break; - case 181: ids = LSpinBox::overrideIds; break; - case 182: ids = LSplashScreen::overrideIds; break; - case 183: ids = LSplitter::overrideIds; break; - case 184: ids = LSplitterHandle::overrideIds; break; - case 190: ids = LStackedLayout::overrideIds; break; - case 191: ids = LStackedWidget::overrideIds; break; - case 192: ids = LStandardItemModel::overrideIds; break; - case 193: ids = LState::overrideIds; break; - case 194: ids = LStateMachine::overrideIds; break; - case 195: ids = LStatusBar::overrideIds; break; - case 196: ids = LStringListModel::overrideIds; break; - case 198: ids = LStyleHints::overrideIds; break; - case 199: ids = LStyledItemDelegate::overrideIds; break; - case 202: ids = LSwipeGesture::overrideIds; break; - case 203: ids = LSyntaxHighlighter::overrideIds; break; - case 204: ids = LSystemTrayIcon::overrideIds; break; - case 205: ids = LTabBar::overrideIds; break; - case 206: ids = LTabWidget::overrideIds; break; - case 207: ids = LTableView::overrideIds; break; - case 208: ids = LTableWidget::overrideIds; break; - case 209: ids = LTapAndHoldGesture::overrideIds; break; - case 210: ids = LTapGesture::overrideIds; break; - case 213: ids = LTextBlockGroup::overrideIds; break; - case 214: ids = LTextBrowser::overrideIds; break; - case 215: ids = LTextDocument::overrideIds; break; - case 216: ids = LTextEdit::overrideIds; break; - case 217: ids = LTextFrame::overrideIds; break; - case 218: ids = LTextList::overrideIds; break; - case 219: ids = LTextObject::overrideIds; break; - case 220: ids = LTextTable::overrideIds; break; - case 221: ids = LTimeEdit::overrideIds; break; - case 222: ids = LTimeLine::overrideIds; break; - case 223: ids = LTimer::overrideIds; break; - case 224: ids = LToolBar::overrideIds; break; - case 225: ids = LToolBox::overrideIds; break; - case 226: ids = LToolButton::overrideIds; break; - case 227: ids = LTranslator::overrideIds; break; - case 228: ids = LTreeView::overrideIds; break; - case 229: ids = LTreeWidget::overrideIds; break; - case 231: ids = LUndoGroup::overrideIds; break; - case 232: ids = LUndoStack::overrideIds; break; - case 233: ids = LUndoView::overrideIds; break; - case 234: ids = LVBoxLayout::overrideIds; break; - case 235: ids = LValidator::overrideIds; break; - case 236: ids = LVariantAnimation::overrideIds; break; - case 245: ids = LWidget::overrideIds; break; - case 246: ids = LWidgetAction::overrideIds; break; - case 247: ids = LWindow::overrideIds; break; - case 248: ids = LWizard::overrideIds; break; - case 249: ids = LWizardPage::overrideIds; break; + case 105: ids = LIODevice::overrideIds; break; + case 106: ids = LIdentityProxyModel::overrideIds; break; + case 107: ids = LInputDialog::overrideIds; break; + case 109: ids = LIntValidator::overrideIds; break; + case 110: ids = LItemDelegate::overrideIds; break; + case 111: ids = LItemSelectionModel::overrideIds; break; + case 112: ids = LKeyEventTransition::overrideIds; break; + case 113: ids = LLCDNumber::overrideIds; break; + case 114: ids = LLabel::overrideIds; break; + case 116: ids = LLibrary::overrideIds; break; + case 117: ids = LLineEdit::overrideIds; break; + case 118: ids = LListView::overrideIds; break; + case 119: ids = LListWidget::overrideIds; break; + case 122: ids = LMainWindow::overrideIds; break; + case 123: ids = LMdiArea::overrideIds; break; + case 124: ids = LMdiSubWindow::overrideIds; break; + case 130: ids = LMenu::overrideIds; break; + case 131: ids = LMenuBar::overrideIds; break; + case 132: ids = LMessageBox::overrideIds; break; + case 133: ids = LMimeData::overrideIds; break; + case 134: ids = LMouseEventTransition::overrideIds; break; + case 135: ids = LMovie::overrideIds; break; + case 140: ids = LObject::overrideIds; break; + case 141: ids = LObjectCleanupHandler::overrideIds; break; + case 142: ids = LOpenGLContext::overrideIds; break; + case 143: ids = LOpenGLShader::overrideIds; break; + case 144: ids = LOpenGLShaderProgram::overrideIds; break; + case 145: ids = LOpenGLWidget::overrideIds; break; + case 146: ids = LOpenGLWindow::overrideIds; break; + case 147: ids = LPageSetupDialog::overrideIds; break; + case 148: ids = LPaintDeviceWindow::overrideIds; break; + case 149: ids = LPanGesture::overrideIds; break; + case 150: ids = LParallelAnimationGroup::overrideIds; break; + case 151: ids = LPauseAnimation::overrideIds; break; + case 152: ids = LPdfWriter::overrideIds; break; + case 153: ids = LPinchGesture::overrideIds; break; + case 154: ids = LPlainTextDocumentLayout::overrideIds; break; + case 155: ids = LPlainTextEdit::overrideIds; break; + case 156: ids = LPluginLoader::overrideIds; break; + case 157: ids = LPrintDialog::overrideIds; break; + case 158: ids = LPrintPreviewDialog::overrideIds; break; + case 159: ids = LPrintPreviewWidget::overrideIds; break; + case 160: ids = LProcess::overrideIds; break; + case 161: ids = LProgressBar::overrideIds; break; + case 162: ids = LProgressDialog::overrideIds; break; + case 163: ids = LPropertyAnimation::overrideIds; break; + case 164: ids = LProxyStyle::overrideIds; break; + case 165: ids = LPushButton::overrideIds; break; + case 166: ids = LRadioButton::overrideIds; break; + case 168: ids = LRegExpValidator::overrideIds; break; + case 169: ids = LRubberBand::overrideIds; break; + case 171: ids = LScrollArea::overrideIds; break; + case 172: ids = LScrollBar::overrideIds; break; + case 173: ids = LSequentialAnimationGroup::overrideIds; break; + case 175: ids = LSettings::overrideIds; break; + case 176: ids = LShortcut::overrideIds; break; + case 177: ids = LSignalMapper::overrideIds; break; + case 178: ids = LSignalTransition::overrideIds; break; + case 179: ids = LSizeGrip::overrideIds; break; + case 180: ids = LSlider::overrideIds; break; + case 181: ids = LSortFilterProxyModel::overrideIds; break; + case 182: ids = LSpinBox::overrideIds; break; + case 183: ids = LSplashScreen::overrideIds; break; + case 184: ids = LSplitter::overrideIds; break; + case 185: ids = LSplitterHandle::overrideIds; break; + case 191: ids = LStackedLayout::overrideIds; break; + case 192: ids = LStackedWidget::overrideIds; break; + case 193: ids = LStandardItemModel::overrideIds; break; + case 194: ids = LState::overrideIds; break; + case 195: ids = LStateMachine::overrideIds; break; + case 196: ids = LStatusBar::overrideIds; break; + case 197: ids = LStringListModel::overrideIds; break; + case 199: ids = LStyleHints::overrideIds; break; + case 200: ids = LStyledItemDelegate::overrideIds; break; + case 203: ids = LSwipeGesture::overrideIds; break; + case 204: ids = LSyntaxHighlighter::overrideIds; break; + case 205: ids = LSystemTrayIcon::overrideIds; break; + case 206: ids = LTabBar::overrideIds; break; + case 207: ids = LTabWidget::overrideIds; break; + case 208: ids = LTableView::overrideIds; break; + case 209: ids = LTableWidget::overrideIds; break; + case 210: ids = LTapAndHoldGesture::overrideIds; break; + case 211: ids = LTapGesture::overrideIds; break; + case 214: ids = LTextBlockGroup::overrideIds; break; + case 215: ids = LTextBrowser::overrideIds; break; + case 216: ids = LTextDocument::overrideIds; break; + case 217: ids = LTextEdit::overrideIds; break; + case 218: ids = LTextFrame::overrideIds; break; + case 219: ids = LTextList::overrideIds; break; + case 220: ids = LTextObject::overrideIds; break; + case 221: ids = LTextTable::overrideIds; break; + case 222: ids = LTimeEdit::overrideIds; break; + case 223: ids = LTimeLine::overrideIds; break; + case 224: ids = LTimer::overrideIds; break; + case 225: ids = LToolBar::overrideIds; break; + case 226: ids = LToolBox::overrideIds; break; + case 227: ids = LToolButton::overrideIds; break; + case 228: ids = LTranslator::overrideIds; break; + case 229: ids = LTreeView::overrideIds; break; + case 230: ids = LTreeWidget::overrideIds; break; + case 232: ids = LUndoGroup::overrideIds; break; + case 233: ids = LUndoStack::overrideIds; break; + case 234: ids = LUndoView::overrideIds; break; + case 235: ids = LVBoxLayout::overrideIds; break; + case 236: ids = LValidator::overrideIds; break; + case 237: ids = LVariantAnimation::overrideIds; break; + case 246: ids = LWidget::overrideIds; break; + case 247: ids = LWidgetAction::overrideIds; break; + case 248: ids = LWindow::overrideIds; break; + case 249: ids = LWizard::overrideIds; break; + case 250: ids = LWizardPage::overrideIds; break; case 95: case 96: case 97: @@ -3324,14 +3340,14 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 33: case 34: case 86: - case 124: case 125: case 126: case 127: case 128: - case 166: - case 237: + case 129: + case 167: case 238: + case 239: if(override_multimedia) { NumList* _ids = override_multimedia(name); if(_ids) { @@ -3339,45 +3355,46 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { break; case 7: case 12: - case 119: + case 104: case 120: - case 135: + case 121: case 136: case 137: case 138: - case 211: + case 139: case 212: - case 230: + case 213: + case 231: if(override_network) { NumList* _ids = override_network(name); if(_ids) { ids = *_ids; }} break; - case 185: case 186: case 187: case 188: case 189: + case 190: if(override_sql) { NumList* _ids = override_sql(name); if(_ids) { ids = *_ids; }} break; case 83: - case 200: case 201: + case 202: if(override_svg) { NumList* _ids = override_svg(name); if(_ids) { ids = *_ids; }} break; case 88: - case 239: case 240: case 241: case 242: case 243: case 244: + case 245: if(override_webkit) { NumList* _ids = override_webkit(name); if(_ids) { @@ -3466,117 +3483,117 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 87: ids = LHelpEvent::overrideIds; break; case 89: ids = LHideEvent::overrideIds; break; case 92: ids = LHoverEvent::overrideIds; break; - case 93: ids = LIcon::overrideIds; break; - case 94: ids = LIconDragEvent::overrideIds; break; - case 95: ids = LImage::overrideIds; break; - case 97: ids = LInputEvent::overrideIds; break; - case 98: ids = LInputMethodEvent::overrideIds; break; - case 99: ids = LInputMethodQueryEvent::overrideIds; break; - case 100: ids = LItemEditorCreatorBase::overrideIds; break; - case 101: ids = LItemEditorFactory::overrideIds; break; - case 102: ids = LItemSelectionRange::overrideIds; break; - case 103: ids = LKeyEvent::overrideIds; break; - case 104: ids = LKeySequence::overrideIds; break; - case 105: ids = LLayoutItem::overrideIds; break; - case 106: ids = LLibraryInfo::overrideIds; break; - case 107: ids = LLinearGradient::overrideIds; break; - case 108: ids = LListWidgetItem::overrideIds; break; - case 109: ids = LLocale::overrideIds; break; - case 110: ids = LMargins::overrideIds; break; - case 111: ids = LMarginsF::overrideIds; break; - case 112: ids = LMatrix::overrideIds; break; - case 113: ids = LMatrix4x4::overrideIds; break; - case 116: ids = LMessageAuthenticationCode::overrideIds; break; - case 117: ids = LMetaObject::overrideIds; break; - case 118: ids = LModelIndex::overrideIds; break; - case 119: ids = LMouseEvent::overrideIds; break; - case 120: ids = LMoveEvent::overrideIds; break; - case 129: ids = LOpenGLFramebufferObject::overrideIds; break; - case 130: ids = LOpenGLFramebufferObjectFormat::overrideIds; break; - case 131: ids = LOpenGLPaintDevice::overrideIds; break; - case 132: ids = LOpenGLTexture::overrideIds; break; - case 133: ids = LPageLayout::overrideIds; break; - case 134: ids = LPageSize::overrideIds; break; - case 137: ids = LPaintEvent::overrideIds; break; - case 138: ids = LPainter::overrideIds; break; - case 139: ids = LPainterPath::overrideIds; break; - case 140: ids = LPainterPathStroker::overrideIds; break; - case 141: ids = LPalette::overrideIds; break; - case 142: ids = LPen::overrideIds; break; - case 143: ids = LPersistentModelIndex::overrideIds; break; - case 144: ids = LPicture::overrideIds; break; - case 145: ids = LPixmap::overrideIds; break; - case 146: ids = LPixmapCache::overrideIds; break; - case 147: ids = LPrinter::overrideIds; break; - case 148: ids = LPrinterInfo::overrideIds; break; - case 149: ids = LProcessEnvironment::overrideIds; break; - case 150: ids = LQuaternion::overrideIds; break; - case 151: ids = LRadialGradient::overrideIds; break; - case 152: ids = LRegExp::overrideIds; break; - case 153: ids = LRegion::overrideIds; break; - case 154: ids = LRegularExpression::overrideIds; break; - case 155: ids = LResizeEvent::overrideIds; break; - case 156: ids = LRunnable::overrideIds; break; - case 157: ids = LScrollEvent::overrideIds; break; - case 158: ids = LScrollPrepareEvent::overrideIds; break; - case 159: ids = LSemaphore::overrideIds; break; - case 160: ids = LShortcutEvent::overrideIds; break; - case 161: ids = LShowEvent::overrideIds; break; - case 162: ids = LSizePolicy::overrideIds; break; - case 163: ids = LSpacerItem::overrideIds; break; - case 177: ids = LStandardItem::overrideIds; break; - case 179: ids = LStatusTipEvent::overrideIds; break; - case 180: ids = LStorageInfo::overrideIds; break; - case 181: ids = LStyleOption::overrideIds; break; - case 182: ids = LStyleOptionGraphicsItem::overrideIds; break; - case 184: ids = LSurfaceFormat::overrideIds; break; - case 187: ids = LSystemSemaphore::overrideIds; break; - case 188: ids = LTableWidgetItem::overrideIds; break; - case 189: ids = LTableWidgetSelectionRange::overrideIds; break; - case 190: ids = LTabletEvent::overrideIds; break; - case 191: ids = LTextBlock::overrideIds; break; - case 192: ids = LTextBlockFormat::overrideIds; break; - case 193: ids = LTextBlockUserData::overrideIds; break; - case 194: ids = LTextBoundaryFinder::overrideIds; break; - case 195: ids = LTextCharFormat::overrideIds; break; - case 196: ids = LTextCodec::overrideIds; break; - case 197: ids = LTextCursor::overrideIds; break; - case 198: ids = LTextDecoder::overrideIds; break; - case 199: ids = LTextDocumentFragment::overrideIds; break; - case 200: ids = LTextDocumentWriter::overrideIds; break; - case 201: ids = LTextEncoder::overrideIds; break; - case 202: ids = LTextFormat::overrideIds; break; - case 203: ids = LTextFragment::overrideIds; break; - case 204: ids = LTextFrameFormat::overrideIds; break; - case 205: ids = LTextImageFormat::overrideIds; break; - case 206: ids = LTextLayout::overrideIds; break; - case 207: ids = LTextLength::overrideIds; break; - case 208: ids = LTextLine::overrideIds; break; - case 209: ids = LTextListFormat::overrideIds; break; - case 210: ids = LTextOption::overrideIds; break; - case 211: ids = LTextTableCell::overrideIds; break; - case 212: ids = LTextTableCellFormat::overrideIds; break; - case 213: ids = LTextTableFormat::overrideIds; break; - case 214: ids = LTime::overrideIds; break; - case 215: ids = LTimeZone::overrideIds; break; - case 216: ids = LTimerEvent::overrideIds; break; - case 217: ids = LToolTip::overrideIds; break; - case 218: ids = LTouchDevice::overrideIds; break; - case 219: ids = LTouchEvent::overrideIds; break; - case 220: ids = LTransform::overrideIds; break; - case 221: ids = LTreeWidgetItem::overrideIds; break; - case 222: ids = LUndoCommand::overrideIds; break; - case 223: ids = LUrl::overrideIds; break; - case 224: ids = LUuid::overrideIds; break; - case 225: ids = LVariant::overrideIds; break; - case 226: ids = LVector2D::overrideIds; break; - case 227: ids = LVector3D::overrideIds; break; - case 228: ids = LVector4D::overrideIds; break; - case 240: ids = LWhatsThis::overrideIds; break; - case 241: ids = LWhatsThisClickedEvent::overrideIds; break; - case 242: ids = LWheelEvent::overrideIds; break; - case 243: ids = LWidgetItem::overrideIds; break; - case 244: ids = LWindowStateChangeEvent::overrideIds; break; + case 94: ids = LIcon::overrideIds; break; + case 95: ids = LIconDragEvent::overrideIds; break; + case 96: ids = LImage::overrideIds; break; + case 98: ids = LInputEvent::overrideIds; break; + case 99: ids = LInputMethodEvent::overrideIds; break; + case 100: ids = LInputMethodQueryEvent::overrideIds; break; + case 101: ids = LItemEditorCreatorBase::overrideIds; break; + case 102: ids = LItemEditorFactory::overrideIds; break; + case 103: ids = LItemSelectionRange::overrideIds; break; + case 104: ids = LKeyEvent::overrideIds; break; + case 105: ids = LKeySequence::overrideIds; break; + case 106: ids = LLayoutItem::overrideIds; break; + case 107: ids = LLibraryInfo::overrideIds; break; + case 108: ids = LLinearGradient::overrideIds; break; + case 109: ids = LListWidgetItem::overrideIds; break; + case 110: ids = LLocale::overrideIds; break; + case 111: ids = LMargins::overrideIds; break; + case 112: ids = LMarginsF::overrideIds; break; + case 113: ids = LMatrix::overrideIds; break; + case 114: ids = LMatrix4x4::overrideIds; break; + case 117: ids = LMessageAuthenticationCode::overrideIds; break; + case 118: ids = LMetaObject::overrideIds; break; + case 119: ids = LModelIndex::overrideIds; break; + case 120: ids = LMouseEvent::overrideIds; break; + case 121: ids = LMoveEvent::overrideIds; break; + case 131: ids = LOpenGLFramebufferObject::overrideIds; break; + case 132: ids = LOpenGLFramebufferObjectFormat::overrideIds; break; + case 133: ids = LOpenGLPaintDevice::overrideIds; break; + case 134: ids = LOpenGLTexture::overrideIds; break; + case 135: ids = LPageLayout::overrideIds; break; + case 136: ids = LPageSize::overrideIds; break; + case 139: ids = LPaintEvent::overrideIds; break; + case 140: ids = LPainter::overrideIds; break; + case 141: ids = LPainterPath::overrideIds; break; + case 142: ids = LPainterPathStroker::overrideIds; break; + case 143: ids = LPalette::overrideIds; break; + case 144: ids = LPen::overrideIds; break; + case 145: ids = LPersistentModelIndex::overrideIds; break; + case 146: ids = LPicture::overrideIds; break; + case 147: ids = LPixmap::overrideIds; break; + case 148: ids = LPixmapCache::overrideIds; break; + case 149: ids = LPrinter::overrideIds; break; + case 150: ids = LPrinterInfo::overrideIds; break; + case 151: ids = LProcessEnvironment::overrideIds; break; + case 152: ids = LQuaternion::overrideIds; break; + case 153: ids = LRadialGradient::overrideIds; break; + case 154: ids = LRegExp::overrideIds; break; + case 155: ids = LRegion::overrideIds; break; + case 156: ids = LRegularExpression::overrideIds; break; + case 157: ids = LResizeEvent::overrideIds; break; + case 158: ids = LRunnable::overrideIds; break; + case 159: ids = LScrollEvent::overrideIds; break; + case 160: ids = LScrollPrepareEvent::overrideIds; break; + case 161: ids = LSemaphore::overrideIds; break; + case 162: ids = LShortcutEvent::overrideIds; break; + case 163: ids = LShowEvent::overrideIds; break; + case 164: ids = LSizePolicy::overrideIds; break; + case 165: ids = LSpacerItem::overrideIds; break; + case 179: ids = LStandardItem::overrideIds; break; + case 181: ids = LStatusTipEvent::overrideIds; break; + case 182: ids = LStorageInfo::overrideIds; break; + case 183: ids = LStyleOption::overrideIds; break; + case 184: ids = LStyleOptionGraphicsItem::overrideIds; break; + case 186: ids = LSurfaceFormat::overrideIds; break; + case 189: ids = LSystemSemaphore::overrideIds; break; + case 190: ids = LTableWidgetItem::overrideIds; break; + case 191: ids = LTableWidgetSelectionRange::overrideIds; break; + case 192: ids = LTabletEvent::overrideIds; break; + case 193: ids = LTextBlock::overrideIds; break; + case 194: ids = LTextBlockFormat::overrideIds; break; + case 195: ids = LTextBlockUserData::overrideIds; break; + case 196: ids = LTextBoundaryFinder::overrideIds; break; + case 197: ids = LTextCharFormat::overrideIds; break; + case 198: ids = LTextCodec::overrideIds; break; + case 199: ids = LTextCursor::overrideIds; break; + case 200: ids = LTextDecoder::overrideIds; break; + case 201: ids = LTextDocumentFragment::overrideIds; break; + case 202: ids = LTextDocumentWriter::overrideIds; break; + case 203: ids = LTextEncoder::overrideIds; break; + case 204: ids = LTextFormat::overrideIds; break; + case 205: ids = LTextFragment::overrideIds; break; + case 206: ids = LTextFrameFormat::overrideIds; break; + case 207: ids = LTextImageFormat::overrideIds; break; + case 208: ids = LTextLayout::overrideIds; break; + case 209: ids = LTextLength::overrideIds; break; + case 210: ids = LTextLine::overrideIds; break; + case 211: ids = LTextListFormat::overrideIds; break; + case 212: ids = LTextOption::overrideIds; break; + case 213: ids = LTextTableCell::overrideIds; break; + case 214: ids = LTextTableCellFormat::overrideIds; break; + case 215: ids = LTextTableFormat::overrideIds; break; + case 216: ids = LTime::overrideIds; break; + case 217: ids = LTimeZone::overrideIds; break; + case 218: ids = LTimerEvent::overrideIds; break; + case 219: ids = LToolTip::overrideIds; break; + case 220: ids = LTouchDevice::overrideIds; break; + case 221: ids = LTouchEvent::overrideIds; break; + case 222: ids = LTransform::overrideIds; break; + case 223: ids = LTreeWidgetItem::overrideIds; break; + case 224: ids = LUndoCommand::overrideIds; break; + case 225: ids = LUrl::overrideIds; break; + case 226: ids = LUuid::overrideIds; break; + case 227: ids = LVariant::overrideIds; break; + case 228: ids = LVector2D::overrideIds; break; + case 229: ids = LVector3D::overrideIds; break; + case 230: ids = LVector4D::overrideIds; break; + case 242: ids = LWhatsThis::overrideIds; break; + case 243: ids = LWhatsThisClickedEvent::overrideIds; break; + case 244: ids = LWheelEvent::overrideIds; break; + case 245: ids = LWidgetItem::overrideIds; break; + case 246: ids = LWindowStateChangeEvent::overrideIds; break; case 86: case 88: if(override_help) { @@ -3589,12 +3606,12 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 20: case 27: case 28: - case 96: - case 114: + case 97: case 115: - case 229: - case 230: + case 116: case 231: + case 232: + case 233: if(override_multimedia) { NumList* _ids = override_multimedia(name); if(_ids) { @@ -3603,7 +3620,7 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 21: case 90: case 91: - case 121: + case 93: case 122: case 123: case 124: @@ -3611,43 +3628,45 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 126: case 127: case 128: - case 172: - case 173: + case 129: + case 130: case 174: case 175: case 176: + case 177: + case 178: if(override_network) { NumList* _ids = override_network(name); if(_ids) { ids = *_ids; }} break; - case 164: - case 165: case 166: case 167: case 168: case 169: case 170: case 171: + case 172: + case 173: if(override_sql) { NumList* _ids = override_sql(name); if(_ids) { ids = *_ids; }} break; - case 185: + case 187: if(override_svg) { NumList* _ids = override_svg(name); if(_ids) { ids = *_ids; }} break; - case 232: - case 233: case 234: case 235: case 236: case 237: case 238: case 239: + case 240: + case 241: if(override_webkit) { NumList* _ids = override_webkit(name); if(_ids) { diff --git a/src/gen/_lobjects.h b/src/gen/_lobjects.h index 3d16ea3..b715040 100644 --- a/src/gen/_lobjects.h +++ b/src/gen/_lobjects.h @@ -53,12 +53,21 @@ public: static int T_QList_QHelpSearchQuery; static int T_QHostAddress; static int T_QHostInfo; + static int T_QHttpPart; static int T_QImageEncoderSettings; static int T_QMediaContent; static int T_QList_QMediaContent; + static int T_QNetworkAddressEntry; + static int T_QList_QNetworkAddressEntry; static int T_QNetworkCacheMetaData; + static int T_QNetworkConfiguration; + static int T_QList_QNetworkConfiguration; + static int T_QNetworkCookie; + static int T_QList_QNetworkCookie; static int T_QNetworkInterface; + static int T_QList_QNetworkInterface; static int T_QNetworkProxy; + static int T_QList_QNetworkProxy; static int T_QNetworkRequest; static int T_QSqlDatabase; static int T_QSqlError; @@ -74,6 +83,7 @@ public: static int T_QVideoEncoderSettings; static int T_QVideoSurfaceFormat; static int T_QWebElement; + static int T_QList_QWebElement; static int T_QWebElementCollection; static int T_QWebHitTestResult; diff --git a/src/gen/_main_n_classes.h b/src/gen/_main_n_classes.h index 766dc04..1e6c223 100644 --- a/src/gen/_main_n_classes.h +++ b/src/gen/_main_n_classes.h @@ -1103,7 +1103,7 @@ public: }; class LIcon : public QIcon { - friend class N93; + friend class N94; public: LIcon(uint u) : unique(u) {} LIcon(uint u, const QPixmap& x1) : QIcon(x1), unique(u) {} @@ -1115,7 +1115,7 @@ public: }; class LIconDragEvent : public QIconDragEvent { - friend class N94; + friend class N95; public: LIconDragEvent(uint u) : unique(u) {} @@ -1124,7 +1124,7 @@ public: }; class LImage : public QImage { - friend class N95; + friend class N96; public: LImage(uint u) : unique(u) {} LImage(uint u, const QSize& x1, Format x2) : QImage(x1, x2), unique(u) {} @@ -1139,7 +1139,7 @@ public: }; class LInputEvent : public QInputEvent { - friend class N97; + friend class N98; public: static NumList overrideIds; @@ -1147,7 +1147,7 @@ public: }; class LInputMethodEvent : public QInputMethodEvent { - friend class N98; + friend class N99; public: LInputMethodEvent(uint u) : unique(u) {} LInputMethodEvent(uint u, const QInputMethodEvent& x1) : QInputMethodEvent(x1), unique(u) {} @@ -1157,7 +1157,7 @@ public: }; class LInputMethodQueryEvent : public QInputMethodQueryEvent { - friend class N99; + friend class N100; public: LInputMethodQueryEvent(uint u, Qt::InputMethodQueries x1) : QInputMethodQueryEvent(x1), unique(u) {} @@ -1166,7 +1166,7 @@ public: }; class LItemEditorCreatorBase : public QItemEditorCreatorBase { - friend class N100; + friend class N101; public: static NumList overrideIds; @@ -1177,7 +1177,7 @@ public: }; class LItemEditorFactory : public QItemEditorFactory { - friend class N101; + friend class N102; public: LItemEditorFactory(uint u) : unique(u) {} @@ -1189,7 +1189,7 @@ public: }; class LItemSelectionRange : public QItemSelectionRange { - friend class N102; + friend class N103; public: LItemSelectionRange(uint u) : unique(u) {} LItemSelectionRange(uint u, const QItemSelectionRange& x1) : QItemSelectionRange(x1), unique(u) {} @@ -1201,7 +1201,7 @@ public: }; class LKeyEvent : public QKeyEvent { - friend class N103; + friend class N104; public: LKeyEvent(uint u, Type x1, int x2, Qt::KeyboardModifiers x3, const QString& x4 = QString(), bool x5 = false, ushort x6 = 1) : QKeyEvent(x1, x2, x3, x4, x5, x6), unique(u) {} LKeyEvent(uint u, Type x1, int x2, Qt::KeyboardModifiers x3, quint32 x4, quint32 x5, quint32 x6, const QString& x7 = QString(), bool x8 = false, ushort x9 = 1) : QKeyEvent(x1, x2, x3, x4, x5, x6, x7, x8, x9), unique(u) {} @@ -1211,7 +1211,7 @@ public: }; class LKeySequence : public QKeySequence { - friend class N104; + friend class N105; public: LKeySequence(uint u) : unique(u) {} LKeySequence(uint u, const QString& x1, SequenceFormat x2 = NativeText) : QKeySequence(x1, x2), unique(u) {} @@ -1224,7 +1224,7 @@ public: }; class LLayoutItem : public QLayoutItem { - friend class N105; + friend class N106; public: LLayoutItem(uint u, Qt::Alignment x1 = 0) : QLayoutItem(x1), unique(u) {} @@ -1249,7 +1249,7 @@ public: }; class LLibraryInfo : public QLibraryInfo { - friend class N106; + friend class N107; public: static NumList overrideIds; @@ -1257,7 +1257,7 @@ public: }; class LLinearGradient : public QLinearGradient { - friend class N107; + friend class N108; public: LLinearGradient(uint u) : unique(u) {} LLinearGradient(uint u, const QPointF& x1, const QPointF& x2) : QLinearGradient(x1, x2), unique(u) {} @@ -1268,7 +1268,7 @@ public: }; class LListWidgetItem : public QListWidgetItem { - friend class N108; + friend class N109; public: LListWidgetItem(uint u, QListWidget* x1 = 0, int x2 = Type) : QListWidgetItem(x1, x2), unique(u) {} LListWidgetItem(uint u, const QString& x1, QListWidget* x2 = 0, int x3 = Type) : QListWidgetItem(x1, x2, x3), unique(u) {} @@ -1284,7 +1284,7 @@ public: }; class LLocale : public QLocale { - friend class N109; + friend class N110; public: LLocale(uint u) : unique(u) {} LLocale(uint u, const QString& x1) : QLocale(x1), unique(u) {} @@ -1297,7 +1297,7 @@ public: }; class LMargins : public QMargins { - friend class N110; + friend class N111; public: LMargins(uint u) : unique(u) {} LMargins(uint u, int x1, int x2, int x3, int x4) : QMargins(x1, x2, x3, x4), unique(u) {} @@ -1307,7 +1307,7 @@ public: }; class LMarginsF : public QMarginsF { - friend class N111; + friend class N112; public: LMarginsF(uint u) : unique(u) {} LMarginsF(uint u, qreal x1, qreal x2, qreal x3, qreal x4) : QMarginsF(x1, x2, x3, x4), unique(u) {} @@ -1318,7 +1318,7 @@ public: }; class LMatrix : public QMatrix { - friend class N112; + friend class N113; public: LMatrix(uint u) : unique(u) {} LMatrix(uint u, qreal x1, qreal x2, qreal x3, qreal x4, qreal x5, qreal x6) : QMatrix(x1, x2, x3, x4, x5, x6), unique(u) {} @@ -1329,7 +1329,7 @@ public: }; class LMatrix4x4 : public QMatrix4x4 { - friend class N113; + friend class N114; public: LMatrix4x4(uint u) : unique(u) {} LMatrix4x4(uint u, float x1, float x2, float x3, float x4, float x5, float x6, float x7, float x8, float x9, float x10, float x11, float x12, float x13, float x14, float x15, float x16) : QMatrix4x4(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16), unique(u) {} @@ -1341,7 +1341,7 @@ public: }; class LMessageAuthenticationCode : public QMessageAuthenticationCode { - friend class N116; + friend class N117; public: LMessageAuthenticationCode(uint u, QCryptographicHash::Algorithm x1, const QByteArray& x2 = QByteArray()) : QMessageAuthenticationCode(x1, x2), unique(u) {} @@ -1350,7 +1350,7 @@ public: }; class LMetaObject : public QMetaObject { - friend class N117; + friend class N118; public: static NumList overrideIds; @@ -1358,7 +1358,7 @@ public: }; class LModelIndex : public QModelIndex { - friend class N118; + friend class N119; public: LModelIndex(uint u) : unique(u) {} @@ -1367,7 +1367,7 @@ public: }; class LMouseEvent : public QMouseEvent { - friend class N119; + friend class N120; public: LMouseEvent(uint u, Type x1, const QPointF& x2, Qt::MouseButton x3, Qt::MouseButtons x4, Qt::KeyboardModifiers x5) : QMouseEvent(x1, x2, x3, x4, x5), unique(u) {} LMouseEvent(uint u, Type x1, const QPointF& x2, const QPointF& x3, Qt::MouseButton x4, Qt::MouseButtons x5, Qt::KeyboardModifiers x6) : QMouseEvent(x1, x2, x3, x4, x5, x6), unique(u) {} @@ -1378,7 +1378,7 @@ public: }; class LMoveEvent : public QMoveEvent { - friend class N120; + friend class N121; public: LMoveEvent(uint u, const QPoint& x1, const QPoint& x2) : QMoveEvent(x1, x2), unique(u) {} @@ -1387,7 +1387,7 @@ public: }; class LOpenGLFramebufferObject : public QOpenGLFramebufferObject { - friend class N129; + friend class N131; public: LOpenGLFramebufferObject(uint u, const QSize& x1, GLenum x2 = GL_TEXTURE_2D) : QOpenGLFramebufferObject(x1, x2), unique(u) {} LOpenGLFramebufferObject(uint u, int x1, int x2, GLenum x3 = GL_TEXTURE_2D) : QOpenGLFramebufferObject(x1, x2, x3), unique(u) {} @@ -1401,7 +1401,7 @@ public: }; class LOpenGLFramebufferObjectFormat : public QOpenGLFramebufferObjectFormat { - friend class N130; + friend class N132; public: LOpenGLFramebufferObjectFormat(uint u) : unique(u) {} LOpenGLFramebufferObjectFormat(uint u, const QOpenGLFramebufferObjectFormat& x1) : QOpenGLFramebufferObjectFormat(x1), unique(u) {} @@ -1411,7 +1411,7 @@ public: }; class LOpenGLPaintDevice : public QOpenGLPaintDevice { - friend class N131; + friend class N133; public: LOpenGLPaintDevice(uint u) : unique(u) {} LOpenGLPaintDevice(uint u, const QSize& x1) : QOpenGLPaintDevice(x1), unique(u) {} @@ -1425,7 +1425,7 @@ public: }; class LOpenGLTexture : public QOpenGLTexture { - friend class N132; + friend class N134; public: LOpenGLTexture(uint u, Target x1) : QOpenGLTexture(x1), unique(u) {} LOpenGLTexture(uint u, const QImage& x1, MipMapGeneration x2 = GenerateMipMaps) : QOpenGLTexture(x1, x2), unique(u) {} @@ -1435,7 +1435,7 @@ public: }; class LPageLayout : public QPageLayout { - friend class N133; + friend class N135; public: LPageLayout(uint u) : unique(u) {} LPageLayout(uint u, const QPageSize& x1, Orientation x2, const QMarginsF& x3, Unit x4 = Point, const QMarginsF& x5 = QMarginsF_DEFAULT) : QPageLayout(x1, x2, x3, x4, x5), unique(u) {} @@ -1446,7 +1446,7 @@ public: }; class LPageSize : public QPageSize { - friend class N134; + friend class N136; public: LPageSize(uint u) : unique(u) {} LPageSize(uint u, PageSizeId x1) : QPageSize(x1), unique(u) {} @@ -1459,7 +1459,7 @@ public: }; class LPaintEvent : public QPaintEvent { - friend class N137; + friend class N139; public: LPaintEvent(uint u, const QRegion& x1) : QPaintEvent(x1), unique(u) {} LPaintEvent(uint u, const QRect& x1) : QPaintEvent(x1), unique(u) {} @@ -1469,7 +1469,7 @@ public: }; class LPainter : public QPainter { - friend class N138; + friend class N140; public: LPainter(uint u, QImage* x1) : QPainter(x1), unique(u) {} LPainter(uint u, QPdfWriter* x1) : QPainter(x1), unique(u) {} @@ -1484,7 +1484,7 @@ public: }; class LPainterPath : public QPainterPath { - friend class N139; + friend class N141; public: LPainterPath(uint u) : unique(u) {} LPainterPath(uint u, const QPointF& x1) : QPainterPath(x1), unique(u) {} @@ -1495,7 +1495,7 @@ public: }; class LPainterPathStroker : public QPainterPathStroker { - friend class N140; + friend class N142; public: LPainterPathStroker(uint u) : unique(u) {} LPainterPathStroker(uint u, const QPen& x1) : QPainterPathStroker(x1), unique(u) {} @@ -1505,7 +1505,7 @@ public: }; class LPalette : public QPalette { - friend class N141; + friend class N143; public: LPalette(uint u) : unique(u) {} LPalette(uint u, const QColor& x1) : QPalette(x1), unique(u) {} @@ -1519,7 +1519,7 @@ public: }; class LPen : public QPen { - friend class N142; + friend class N144; public: LPen(uint u) : unique(u) {} LPen(uint u, Qt::PenStyle x1) : QPen(x1), unique(u) {} @@ -1532,7 +1532,7 @@ public: }; class LPersistentModelIndex : public QPersistentModelIndex { - friend class N143; + friend class N145; public: LPersistentModelIndex(uint u, const QModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {} LPersistentModelIndex(uint u, const QPersistentModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {} @@ -1542,7 +1542,7 @@ public: }; class LPicture : public QPicture { - friend class N144; + friend class N146; public: LPicture(uint u, int x1 = -1) : QPicture(x1), unique(u) {} LPicture(uint u, const QPicture& x1) : QPicture(x1), unique(u) {} @@ -1555,7 +1555,7 @@ public: }; class LPixmap : public QPixmap { - friend class N145; + friend class N147; public: LPixmap(uint u) : unique(u) {} LPixmap(uint u, int x1, int x2) : QPixmap(x1, x2), unique(u) {} @@ -1570,7 +1570,7 @@ public: }; class LPixmapCache : public QPixmapCache { - friend class N146; + friend class N148; public: static NumList overrideIds; @@ -1578,7 +1578,7 @@ public: }; class LPrinter : public QPrinter { - friend class N147; + friend class N149; public: LPrinter(uint u, PrinterMode x1 = ScreenResolution) : QPrinter(x1), unique(u) {} @@ -1591,7 +1591,7 @@ public: }; class LPrinterInfo : public QPrinterInfo { - friend class N148; + friend class N150; public: static NumList overrideIds; @@ -1599,7 +1599,7 @@ public: }; class LProcessEnvironment : public QProcessEnvironment { - friend class N149; + friend class N151; public: LProcessEnvironment(uint u) : unique(u) {} LProcessEnvironment(uint u, const QProcessEnvironment& x1) : QProcessEnvironment(x1), unique(u) {} @@ -1609,7 +1609,7 @@ public: }; class LQuaternion : public QQuaternion { - friend class N150; + friend class N152; public: LQuaternion(uint u) : unique(u) {} LQuaternion(uint u, float x1, float x2, float x3, float x4) : QQuaternion(x1, x2, x3, x4), unique(u) {} @@ -1621,7 +1621,7 @@ public: }; class LRadialGradient : public QRadialGradient { - friend class N151; + friend class N153; public: LRadialGradient(uint u) : unique(u) {} LRadialGradient(uint u, const QPointF& x1, qreal x2, const QPointF& x3) : QRadialGradient(x1, x2, x3), unique(u) {} @@ -1636,7 +1636,7 @@ public: }; class LRegExp : public QRegExp { - friend class N152; + friend class N154; public: LRegExp(uint u) : unique(u) {} LRegExp(uint u, const QString& x1, Qt::CaseSensitivity x2 = Qt::CaseSensitive, PatternSyntax x3 = RegExp) : QRegExp(x1, x2, x3), unique(u) {} @@ -1647,7 +1647,7 @@ public: }; class LRegion : public QRegion { - friend class N153; + friend class N155; public: LRegion(uint u) : unique(u) {} LRegion(uint u, int x1, int x2, int x3, int x4, RegionType x5 = Rectangle) : QRegion(x1, x2, x3, x4, x5), unique(u) {} @@ -1661,7 +1661,7 @@ public: }; class LRegularExpression : public QRegularExpression { - friend class N154; + friend class N156; public: LRegularExpression(uint u) : unique(u) {} LRegularExpression(uint u, const QString& x1, PatternOptions x2 = NoPatternOption) : QRegularExpression(x1, x2), unique(u) {} @@ -1672,7 +1672,7 @@ public: }; class LResizeEvent : public QResizeEvent { - friend class N155; + friend class N157; public: LResizeEvent(uint u, const QSize& x1, const QSize& x2) : QResizeEvent(x1, x2), unique(u) {} @@ -1681,7 +1681,7 @@ public: }; class LRunnable : public QRunnable { - friend class N156; + friend class N158; public: LRunnable(uint u) : unique(u) {} @@ -1692,7 +1692,7 @@ public: }; class LScrollEvent : public QScrollEvent { - friend class N157; + friend class N159; public: LScrollEvent(uint u, const QPointF& x1, const QPointF& x2, ScrollState x3) : QScrollEvent(x1, x2, x3), unique(u) {} @@ -1701,7 +1701,7 @@ public: }; class LScrollPrepareEvent : public QScrollPrepareEvent { - friend class N158; + friend class N160; public: LScrollPrepareEvent(uint u, const QPointF& x1) : QScrollPrepareEvent(x1), unique(u) {} @@ -1710,7 +1710,7 @@ public: }; class LSemaphore : public QSemaphore { - friend class N159; + friend class N161; public: LSemaphore(uint u, int x1 = 0) : QSemaphore(x1), unique(u) {} @@ -1719,7 +1719,7 @@ public: }; class LShortcutEvent : public QShortcutEvent { - friend class N160; + friend class N162; public: LShortcutEvent(uint u, const QKeySequence& x1, int x2, bool x3 = false) : QShortcutEvent(x1, x2, x3), unique(u) {} @@ -1728,7 +1728,7 @@ public: }; class LShowEvent : public QShowEvent { - friend class N161; + friend class N163; public: LShowEvent(uint u) : unique(u) {} @@ -1737,7 +1737,7 @@ public: }; class LSizePolicy : public QSizePolicy { - friend class N162; + friend class N164; public: LSizePolicy(uint u) : unique(u) {} LSizePolicy(uint u, Policy x1, Policy x2, ControlType x3 = DefaultType) : QSizePolicy(x1, x2, x3), unique(u) {} @@ -1747,7 +1747,7 @@ public: }; class LSpacerItem : public QSpacerItem { - friend class N163; + friend class N165; 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) {} @@ -1772,7 +1772,7 @@ public: }; class LStandardItem : public QStandardItem { - friend class N177; + friend class N179; public: LStandardItem(uint u) : unique(u) {} LStandardItem(uint u, const QString& x1) : QStandardItem(x1), unique(u) {} @@ -1789,7 +1789,7 @@ public: }; class LStatusTipEvent : public QStatusTipEvent { - friend class N179; + friend class N181; public: LStatusTipEvent(uint u, const QString& x1) : QStatusTipEvent(x1), unique(u) {} @@ -1798,7 +1798,7 @@ public: }; class LStorageInfo : public QStorageInfo { - friend class N180; + friend class N182; public: LStorageInfo(uint u) : unique(u) {} LStorageInfo(uint u, const QString& x1) : QStorageInfo(x1), unique(u) {} @@ -1810,7 +1810,7 @@ public: }; class LStyleOption : public QStyleOption { - friend class N181; + friend class N183; public: LStyleOption(uint u, int x1 = QStyleOption::Version, int x2 = SO_Default) : QStyleOption(x1, x2), unique(u) {} LStyleOption(uint u, const QStyleOption& x1) : QStyleOption(x1), unique(u) {} @@ -1820,7 +1820,7 @@ public: }; class LStyleOptionGraphicsItem : public QStyleOptionGraphicsItem { - friend class N182; + friend class N184; public: LStyleOptionGraphicsItem(uint u) : unique(u) {} LStyleOptionGraphicsItem(uint u, const QStyleOptionGraphicsItem& x1) : QStyleOptionGraphicsItem(x1), unique(u) {} @@ -1830,7 +1830,7 @@ public: }; class LSurfaceFormat : public QSurfaceFormat { - friend class N184; + friend class N186; public: LSurfaceFormat(uint u) : unique(u) {} LSurfaceFormat(uint u, FormatOptions x1) : QSurfaceFormat(x1), unique(u) {} @@ -1841,7 +1841,7 @@ public: }; class LSystemSemaphore : public QSystemSemaphore { - friend class N187; + friend class N189; public: LSystemSemaphore(uint u, const QString& x1, int x2 = 0, AccessMode x3 = Open) : QSystemSemaphore(x1, x2, x3), unique(u) {} @@ -1850,7 +1850,7 @@ public: }; class LTableWidgetItem : public QTableWidgetItem { - friend class N188; + friend class N190; 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) {} @@ -1866,7 +1866,7 @@ public: }; class LTableWidgetSelectionRange : public QTableWidgetSelectionRange { - friend class N189; + friend class N191; public: LTableWidgetSelectionRange(uint u) : unique(u) {} LTableWidgetSelectionRange(uint u, int x1, int x2, int x3, int x4) : QTableWidgetSelectionRange(x1, x2, x3, x4), unique(u) {} @@ -1877,7 +1877,7 @@ public: }; class LTabletEvent : public QTabletEvent { - friend class N190; + friend class N192; public: LTabletEvent(uint u, Type x1, const QPointF& x2, const QPointF& x3, int x4, int x5, qreal x6, int x7, int x8, qreal x9, qreal x10, int x11, Qt::KeyboardModifiers x12, qint64 x13, Qt::MouseButton x14, Qt::MouseButtons x15) : QTabletEvent(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15), unique(u) {} @@ -1886,7 +1886,7 @@ public: }; class LTextBlock : public QTextBlock { - friend class N191; + friend class N193; public: LTextBlock(uint u, const QTextBlock& x1) : QTextBlock(x1), unique(u) {} @@ -1895,7 +1895,7 @@ public: }; class LTextBlockFormat : public QTextBlockFormat { - friend class N192; + friend class N194; public: LTextBlockFormat(uint u) : unique(u) {} @@ -1904,7 +1904,7 @@ public: }; class LTextBlockUserData : public QTextBlockUserData { - friend class N193; + friend class N195; public: static NumList overrideIds; @@ -1912,7 +1912,7 @@ public: }; class LTextBoundaryFinder : public QTextBoundaryFinder { - friend class N194; + friend class N196; public: LTextBoundaryFinder(uint u) : unique(u) {} LTextBoundaryFinder(uint u, const QTextBoundaryFinder& x1) : QTextBoundaryFinder(x1), unique(u) {} @@ -1924,7 +1924,7 @@ public: }; class LTextCharFormat : public QTextCharFormat { - friend class N195; + friend class N197; public: LTextCharFormat(uint u) : unique(u) {} @@ -1933,7 +1933,7 @@ public: }; class LTextCodec : public QTextCodec { - friend class N196; + friend class N198; public: static NumList overrideIds; @@ -1947,7 +1947,7 @@ public: }; class LTextCursor : public QTextCursor { - friend class N197; + friend class N199; public: LTextCursor(uint u) : unique(u) {} LTextCursor(uint u, QTextDocument* x1) : QTextCursor(x1), unique(u) {} @@ -1960,7 +1960,7 @@ public: }; class LTextDecoder : public QTextDecoder { - friend class N198; + friend class N200; public: LTextDecoder(uint u, const QTextCodec* x1) : QTextDecoder(x1), unique(u) {} LTextDecoder(uint u, const QTextCodec* x1, QTextCodec::ConversionFlags x2) : QTextDecoder(x1, x2), unique(u) {} @@ -1970,7 +1970,7 @@ public: }; class LTextDocumentFragment : public QTextDocumentFragment { - friend class N199; + friend class N201; public: LTextDocumentFragment(uint u) : unique(u) {} LTextDocumentFragment(uint u, const QTextDocument* x1) : QTextDocumentFragment(x1), unique(u) {} @@ -1982,7 +1982,7 @@ public: }; class LTextDocumentWriter : public QTextDocumentWriter { - friend class N200; + friend class N202; public: LTextDocumentWriter(uint u) : unique(u) {} LTextDocumentWriter(uint u, const QString& x1, const QByteArray& x2 = QByteArray()) : QTextDocumentWriter(x1, x2), unique(u) {} @@ -1992,7 +1992,7 @@ public: }; class LTextEncoder : public QTextEncoder { - friend class N201; + friend class N203; public: LTextEncoder(uint u, const QTextCodec* x1) : QTextEncoder(x1), unique(u) {} LTextEncoder(uint u, const QTextCodec* x1, QTextCodec::ConversionFlags x2) : QTextEncoder(x1, x2), unique(u) {} @@ -2002,7 +2002,7 @@ public: }; class LTextFormat : public QTextFormat { - friend class N202; + friend class N204; public: LTextFormat(uint u) : unique(u) {} LTextFormat(uint u, int x1) : QTextFormat(x1), unique(u) {} @@ -2013,7 +2013,7 @@ public: }; class LTextFragment : public QTextFragment { - friend class N203; + friend class N205; public: LTextFragment(uint u) : unique(u) {} LTextFragment(uint u, const QTextFragment& x1) : QTextFragment(x1), unique(u) {} @@ -2023,7 +2023,7 @@ public: }; class LTextFrameFormat : public QTextFrameFormat { - friend class N204; + friend class N206; public: LTextFrameFormat(uint u) : unique(u) {} @@ -2032,7 +2032,7 @@ public: }; class LTextImageFormat : public QTextImageFormat { - friend class N205; + friend class N207; public: LTextImageFormat(uint u) : unique(u) {} @@ -2041,7 +2041,7 @@ public: }; class LTextLayout : public QTextLayout { - friend class N206; + friend class N208; public: LTextLayout(uint u) : unique(u) {} LTextLayout(uint u, const QString& x1) : QTextLayout(x1), unique(u) {} @@ -2052,7 +2052,7 @@ public: }; class LTextLength : public QTextLength { - friend class N207; + friend class N209; public: LTextLength(uint u) : unique(u) {} LTextLength(uint u, Type x1, qreal x2) : QTextLength(x1, x2), unique(u) {} @@ -2062,7 +2062,7 @@ public: }; class LTextLine : public QTextLine { - friend class N208; + friend class N210; public: LTextLine(uint u) : unique(u) {} @@ -2071,7 +2071,7 @@ public: }; class LTextListFormat : public QTextListFormat { - friend class N209; + friend class N211; public: LTextListFormat(uint u) : unique(u) {} @@ -2080,7 +2080,7 @@ public: }; class LTextOption : public QTextOption { - friend class N210; + friend class N212; public: LTextOption(uint u) : unique(u) {} LTextOption(uint u, Qt::Alignment x1) : QTextOption(x1), unique(u) {} @@ -2091,7 +2091,7 @@ public: }; class LTextTableCell : public QTextTableCell { - friend class N211; + friend class N213; public: LTextTableCell(uint u) : unique(u) {} LTextTableCell(uint u, const QTextTableCell& x1) : QTextTableCell(x1), unique(u) {} @@ -2101,7 +2101,7 @@ public: }; class LTextTableCellFormat : public QTextTableCellFormat { - friend class N212; + friend class N214; public: LTextTableCellFormat(uint u) : unique(u) {} @@ -2110,7 +2110,7 @@ public: }; class LTextTableFormat : public QTextTableFormat { - friend class N213; + friend class N215; public: LTextTableFormat(uint u) : unique(u) {} @@ -2119,7 +2119,7 @@ public: }; class LTime : public QTime { - friend class N214; + friend class N216; public: LTime(uint u) : unique(u) {} LTime(uint u, int x1, int x2, int x3 = 0, int x4 = 0) : QTime(x1, x2, x3, x4), unique(u) {} @@ -2129,7 +2129,7 @@ public: }; class LTimeZone : public QTimeZone { - friend class N215; + friend class N217; public: LTimeZone(uint u) : unique(u) {} LTimeZone(uint u, const QByteArray& x1) : QTimeZone(x1), unique(u) {} @@ -2142,7 +2142,7 @@ public: }; class LTimerEvent : public QTimerEvent { - friend class N216; + friend class N218; public: LTimerEvent(uint u, int x1) : QTimerEvent(x1), unique(u) {} @@ -2151,7 +2151,7 @@ public: }; class LToolTip : public QToolTip { - friend class N217; + friend class N219; public: static NumList overrideIds; @@ -2159,7 +2159,7 @@ public: }; class LTouchDevice : public QTouchDevice { - friend class N218; + friend class N220; public: LTouchDevice(uint u) : unique(u) {} @@ -2168,7 +2168,7 @@ public: }; class LTouchEvent : public QTouchEvent { - friend class N219; + friend class N221; public: LTouchEvent(uint u, QEvent::Type x1, QTouchDevice* x2 = 0, Qt::KeyboardModifiers x3 = Qt::NoModifier, Qt::TouchPointStates x4 = 0, const QList& x5 = QList()) : QTouchEvent(x1, x2, x3, x4, x5), unique(u) {} @@ -2177,7 +2177,7 @@ public: }; class LTransform : public QTransform { - friend class N220; + friend class N222; public: LTransform(uint u) : unique(u) {} LTransform(uint u, qreal x1, qreal x2, qreal x3, qreal x4, qreal x5, qreal x6, qreal x7, qreal x8, qreal x9 = 1.0) : QTransform(x1, x2, x3, x4, x5, x6, x7, x8, x9), unique(u) {} @@ -2189,7 +2189,7 @@ public: }; class LTreeWidgetItem : public QTreeWidgetItem { - friend class N221; + friend class N223; 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) {} @@ -2210,7 +2210,7 @@ public: }; class LUndoCommand : public QUndoCommand { - friend class N222; + friend class N224; 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) {} @@ -2225,7 +2225,7 @@ public: }; class LUrl : public QUrl { - friend class N223; + friend class N225; public: LUrl(uint u) : unique(u) {} LUrl(uint u, const QUrl& x1) : QUrl(x1), unique(u) {} @@ -2236,7 +2236,7 @@ public: }; class LUuid : public QUuid { - friend class N224; + friend class N226; public: LUuid(uint u) : unique(u) {} LUuid(uint u, uint x1, ushort x2, ushort x3, uchar x4, uchar x5, uchar x6, uchar x7, uchar x8, uchar x9, uchar x10, uchar x11) : QUuid(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11), unique(u) {} @@ -2248,7 +2248,7 @@ public: }; class LVariant : public QVariant { - friend class N225; + friend class N227; public: LVariant(uint u, const QCursor& x1) : QVariant(x1), unique(u) {} LVariant(uint u) : unique(u) {} @@ -2297,7 +2297,7 @@ public: }; class LVector2D : public QVector2D { - friend class N226; + friend class N228; public: LVector2D(uint u) : unique(u) {} LVector2D(uint u, float x1, float x2) : QVector2D(x1, x2), unique(u) {} @@ -2311,7 +2311,7 @@ public: }; class LVector3D : public QVector3D { - friend class N227; + friend class N229; public: LVector3D(uint u) : unique(u) {} LVector3D(uint u, float x1, float x2, float x3) : QVector3D(x1, x2, x3), unique(u) {} @@ -2326,7 +2326,7 @@ public: }; class LVector4D : public QVector4D { - friend class N228; + friend class N230; public: LVector4D(uint u) : unique(u) {} LVector4D(uint u, float x1, float x2, float x3, float x4) : QVector4D(x1, x2, x3, x4), unique(u) {} @@ -2342,7 +2342,7 @@ public: }; class LWhatsThis : public QWhatsThis { - friend class N240; + friend class N242; public: static NumList overrideIds; @@ -2350,7 +2350,7 @@ public: }; class LWhatsThisClickedEvent : public QWhatsThisClickedEvent { - friend class N241; + friend class N243; public: LWhatsThisClickedEvent(uint u, const QString& x1) : QWhatsThisClickedEvent(x1), unique(u) {} @@ -2359,7 +2359,7 @@ public: }; class LWheelEvent : public QWheelEvent { - friend class N242; + friend class N244; public: LWheelEvent(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8) : QWheelEvent(x1, x2, x3, x4, x5, x6, x7, x8), unique(u) {} LWheelEvent(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8, Qt::ScrollPhase x9) : QWheelEvent(x1, x2, x3, x4, x5, x6, x7, x8, x9), unique(u) {} @@ -2370,7 +2370,7 @@ public: }; class LWidgetItem : public QWidgetItem { - friend class N243; + friend class N245; public: LWidgetItem(uint u, QWidget* x1) : QWidgetItem(x1), unique(u) {} @@ -2395,7 +2395,7 @@ public: }; class LWindowStateChangeEvent : public QWindowStateChangeEvent { - friend class N244; + friend class N246; public: static NumList overrideIds; diff --git a/src/gen/_main_n_methods.h b/src/gen/_main_n_methods.h index cf5be75..0bb6e77 100644 --- a/src/gen/_main_n_methods.h +++ b/src/gen/_main_n_methods.h @@ -966,7 +966,6 @@ public: Q_INVOKABLE void Mshow(QGraphicsItem* o) { o->show(); } Q_INVOKABLE void MstackBefore(QGraphicsItem* o, const QGraphicsItem* x1) { o->stackBefore(x1); } Q_INVOKABLE QGraphicsObject* MtoGraphicsObject(QGraphicsItem* o) { return o->toGraphicsObject(); } - Q_INVOKABLE const QGraphicsObject* MtoGraphicsObject(QGraphicsItem* o) const { return o->toGraphicsObject(); } Q_INVOKABLE QString MtoolTip(QGraphicsItem* o) const { return o->toolTip(); } Q_INVOKABLE QGraphicsItem* MtopLevelItem(QGraphicsItem* o) const { return o->topLevelItem(); } Q_INVOKABLE QGraphicsWidget* MtopLevelWidget(QGraphicsItem* o) const { return o->topLevelWidget(); } @@ -1028,7 +1027,7 @@ public: Q_INVOKABLE void MsetOwnedByLayout(QGraphicsLayoutItem* o, bool x1) { ((LGraphicsLayoutItem*)o)->setOwnedByLayout(x1); } }; -class EQL_EXPORT N93 : public QObject { // QIcon +class EQL_EXPORT N94 : public QObject { // QIcon Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LIcon(u); } @@ -1058,14 +1057,14 @@ public: Q_INVOKABLE QStringList SthemeSearchPaths() { return QIcon::themeSearchPaths(); } }; -class EQL_EXPORT N100 : public QObject { // QItemEditorCreatorBase +class EQL_EXPORT N101 : public QObject { // QItemEditorCreatorBase Q_OBJECT public: Q_INVOKABLE QWidget* McreateWidget(QItemEditorCreatorBase* o, QWidget* x1) const { return o->createWidget(x1); } Q_INVOKABLE QByteArray MvaluePropertyName(QItemEditorCreatorBase* o) const { return o->valuePropertyName(); } }; -class EQL_EXPORT N101 : public QObject { // QItemEditorFactory +class EQL_EXPORT N102 : public QObject { // QItemEditorFactory Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LItemEditorFactory(u); } @@ -1076,7 +1075,7 @@ public: Q_INVOKABLE void SsetDefaultFactory(QItemEditorFactory* x1) { QItemEditorFactory::setDefaultFactory(x1); } }; -class EQL_EXPORT N102 : public QObject { // QItemSelectionRange +class EQL_EXPORT N103 : public QObject { // QItemSelectionRange Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LItemSelectionRange(u); } @@ -1102,7 +1101,7 @@ public: Q_INVOKABLE int Mwidth(QItemSelectionRange* o) const { return o->width(); } }; -class EQL_EXPORT N104 : public QObject { // QKeySequence +class EQL_EXPORT N105 : public QObject { // QKeySequence Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LKeySequence(u); } @@ -1122,7 +1121,7 @@ public: Q_INVOKABLE QKeySequence Smnemonic(const QString& x1) { return QKeySequence::mnemonic(x1); } }; -class EQL_EXPORT N105 : public QObject { // QLayoutItem +class EQL_EXPORT N106 : public QObject { // QLayoutItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, Qt::Alignment x1 = 0) { return new LLayoutItem(u, x1); } @@ -1145,7 +1144,7 @@ public: Q_INVOKABLE QWidget* Mwidget(QLayoutItem* o) { return o->widget(); } }; -class EQL_EXPORT N106 : public QObject { // QLibraryInfo +class EQL_EXPORT N107 : public QObject { // QLibraryInfo Q_OBJECT public: Q_INVOKABLE bool SisDebugBuild() { return QLibraryInfo::isDebugBuild(); } @@ -1154,7 +1153,7 @@ public: Q_INVOKABLE QString Slocation(QLibraryInfo::LibraryLocation x1) { return QLibraryInfo::location(x1); } }; -class EQL_EXPORT N108 : public QObject { // QListWidgetItem +class EQL_EXPORT N109 : public QObject { // QListWidgetItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, QListWidget* x1 = 0, int x2 = QListWidgetItem::Type) { return new LListWidgetItem(u, x1, x2); } @@ -1196,7 +1195,7 @@ public: Q_INVOKABLE QString MwhatsThis(QListWidgetItem* o) const { return o->whatsThis(); } }; -class EQL_EXPORT N109 : public QObject { // QLocale +class EQL_EXPORT N110 : public QObject { // QLocale Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LLocale(u); } @@ -1291,7 +1290,7 @@ public: Q_INVOKABLE QLocale Ssystem() { return QLocale::system(); } }; -class EQL_EXPORT N110 : public QObject { // QMargins +class EQL_EXPORT N111 : public QObject { // QMargins Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LMargins(u); } @@ -1307,7 +1306,7 @@ public: Q_INVOKABLE int Mtop(QMargins* o) const { return o->top(); } }; -class EQL_EXPORT N111 : public QObject { // QMarginsF +class EQL_EXPORT N112 : public QObject { // QMarginsF Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LMarginsF(u); } @@ -1325,7 +1324,7 @@ public: Q_INVOKABLE qreal Mtop(QMarginsF* o) const { return o->top(); } }; -class EQL_EXPORT N112 : public QObject { // QMatrix +class EQL_EXPORT N113 : public QObject { // QMatrix Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LMatrix(u); } @@ -1360,7 +1359,7 @@ public: Q_INVOKABLE QMatrix Mtranslate(QMatrix* o, qreal x1, qreal x2) { return o->translate(x1, x2); } }; -class EQL_EXPORT N113 : public QObject { // QMatrix4x4 +class EQL_EXPORT N114 : public QObject { // QMatrix4x4 Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LMatrix4x4(u); } @@ -1409,7 +1408,7 @@ public: Q_INVOKABLE void Mviewport(QMatrix4x4* o, const QRectF& x1) { o->viewport(x1); } }; -class EQL_EXPORT N116 : public QObject { // QMessageAuthenticationCode +class EQL_EXPORT N117 : public QObject { // QMessageAuthenticationCode Q_OBJECT public: Q_INVOKABLE void* C(uint u, QCryptographicHash::Algorithm x1, const QByteArray& x2 = QByteArray()) { return new LMessageAuthenticationCode(u, x1, x2); } @@ -1421,7 +1420,7 @@ public: Q_INVOKABLE QByteArray Shash(const QByteArray& x1, const QByteArray& x2, QCryptographicHash::Algorithm x3) { return QMessageAuthenticationCode::hash(x1, x2, x3); } }; -class EQL_EXPORT N117 : public QObject { // QMetaObject +class EQL_EXPORT N118 : public QObject { // QMetaObject Q_OBJECT public: Q_INVOKABLE int MclassInfoCount(QMetaObject* o) const { return o->classInfoCount(); } @@ -1448,7 +1447,7 @@ public: Q_INVOKABLE QByteArray SnormalizedType(const char* x1) { return QMetaObject::normalizedType(x1); } }; -class EQL_EXPORT N118 : public QObject { // QModelIndex +class EQL_EXPORT N119 : public QObject { // QModelIndex Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LModelIndex(u); } @@ -1463,7 +1462,7 @@ public: Q_INVOKABLE QModelIndex Msibling(QModelIndex* o, int x1, int x2) const { return o->sibling(x1, x2); } }; -class EQL_EXPORT N129 : public QObject { // QOpenGLFramebufferObject +class EQL_EXPORT N131 : public QObject { // QOpenGLFramebufferObject Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QSize& x1, GLenum x2 = GL_TEXTURE_2D) { return new LOpenGLFramebufferObject(u, x1, x2); } @@ -1494,7 +1493,7 @@ public: Q_INVOKABLE bool ShasOpenGLFramebufferObjects() { return QOpenGLFramebufferObject::hasOpenGLFramebufferObjects(); } }; -class EQL_EXPORT N130 : public QObject { // QOpenGLFramebufferObjectFormat +class EQL_EXPORT N132 : public QObject { // QOpenGLFramebufferObjectFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LOpenGLFramebufferObjectFormat(u); } @@ -1511,7 +1510,7 @@ public: Q_INVOKABLE GLenum MtextureTarget(QOpenGLFramebufferObjectFormat* o) const { return o->textureTarget(); } }; -class EQL_EXPORT N132 : public QObject { // QOpenGLTexture +class EQL_EXPORT N134 : public QObject { // QOpenGLTexture Q_OBJECT public: Q_INVOKABLE void* C(uint u, QOpenGLTexture::Target x1) { return new LOpenGLTexture(u, x1); } @@ -1594,7 +1593,7 @@ public: Q_INVOKABLE bool ShasFeature(QOpenGLTexture::Feature x1) { return QOpenGLTexture::hasFeature(x1); } }; -class EQL_EXPORT N133 : public QObject { // QPageLayout +class EQL_EXPORT N135 : public QObject { // QPageLayout Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPageLayout(u); } @@ -1631,7 +1630,7 @@ public: Q_INVOKABLE int Munits(QPageLayout* o) const { return o->units(); } }; -class EQL_EXPORT N134 : public QObject { // QPageSize +class EQL_EXPORT N136 : public QObject { // QPageSize Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPageSize(u); } @@ -1667,7 +1666,7 @@ public: Q_INVOKABLE int SwindowsId(QPageSize::PageSizeId x1) { return QPageSize::windowsId(x1); } }; -class EQL_EXPORT N136 : public QObject { // QPaintDevice +class EQL_EXPORT N138 : public QObject { // QPaintDevice Q_OBJECT public: Q_INVOKABLE int McolorCount(QPaintDevice* o) const { return o->colorCount(); } @@ -1684,7 +1683,7 @@ public: Q_INVOKABLE int MwidthMM(QPaintDevice* o) const { return o->widthMM(); } }; -class EQL_EXPORT N138 : public QObject { // QPainter +class EQL_EXPORT N140 : public QObject { // QPainter Q_OBJECT public: Q_INVOKABLE void* C(uint u, QImage* x1) { return new LPainter(u, x1); } @@ -1881,7 +1880,7 @@ public: Q_INVOKABLE QTransform MworldTransform(QPainter* o) const { return o->worldTransform(); } }; -class EQL_EXPORT N139 : public QObject { // QPainterPath +class EQL_EXPORT N141 : public QObject { // QPainterPath Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPainterPath(u); } @@ -1949,7 +1948,7 @@ public: Q_INVOKABLE QPainterPath Munited(QPainterPath* o, const QPainterPath& x1) const { return o->united(x1); } }; -class EQL_EXPORT N140 : public QObject { // QPainterPathStroker +class EQL_EXPORT N142 : public QObject { // QPainterPathStroker Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPainterPathStroker(u); } @@ -1972,7 +1971,7 @@ public: Q_INVOKABLE qreal Mwidth(QPainterPathStroker* o) const { return o->width(); } }; -class EQL_EXPORT N141 : public QObject { // QPalette +class EQL_EXPORT N143 : public QObject { // QPalette Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPalette(u); } @@ -2019,7 +2018,7 @@ public: Q_INVOKABLE QBrush MwindowText(QPalette* o) const { return o->windowText(); } }; -class EQL_EXPORT N142 : public QObject { // QPen +class EQL_EXPORT N144 : public QObject { // QPen Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPen(u); } @@ -2053,7 +2052,7 @@ public: Q_INVOKABLE qreal MwidthF(QPen* o) const { return o->widthF(); } }; -class EQL_EXPORT N143 : public QObject { // QPersistentModelIndex +class EQL_EXPORT N145 : public QObject { // QPersistentModelIndex Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QModelIndex& x1) { return new LPersistentModelIndex(u, x1); } @@ -2070,7 +2069,7 @@ public: Q_INVOKABLE void Mswap(QPersistentModelIndex* o, QPersistentModelIndex& x1) { o->swap(x1); } }; -class EQL_EXPORT N146 : public QObject { // QPixmapCache +class EQL_EXPORT N148 : public QObject { // QPixmapCache Q_OBJECT public: Q_INVOKABLE int ScacheLimit() { return QPixmapCache::cacheLimit(); } @@ -2081,7 +2080,7 @@ public: Q_INVOKABLE void SsetCacheLimit(int x1) { QPixmapCache::setCacheLimit(x1); } }; -class EQL_EXPORT N148 : public QObject { // QPrinterInfo +class EQL_EXPORT N150 : public QObject { // QPrinterInfo Q_OBJECT public: Q_INVOKABLE int MdefaultDuplexMode(QPrinterInfo* o) const { return o->defaultDuplexMode(); } @@ -2104,7 +2103,7 @@ public: Q_INVOKABLE QString SdefaultPrinterName() { return QPrinterInfo::defaultPrinterName(); } }; -class EQL_EXPORT N149 : public QObject { // QProcessEnvironment +class EQL_EXPORT N151 : public QObject { // QProcessEnvironment Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LProcessEnvironment(u); } @@ -2122,7 +2121,7 @@ public: Q_INVOKABLE QProcessEnvironment SsystemEnvironment() { return QProcessEnvironment::systemEnvironment(); } }; -class EQL_EXPORT N150 : public QObject { // QQuaternion +class EQL_EXPORT N152 : public QObject { // QQuaternion Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LQuaternion(u); } @@ -2163,7 +2162,7 @@ public: Q_INVOKABLE QQuaternion Sslerp(const QQuaternion& x1, const QQuaternion& x2, float x3) { return QQuaternion::slerp(x1, x2, x3); } }; -class EQL_EXPORT N152 : public QObject { // QRegExp +class EQL_EXPORT N154 : public QObject { // QRegExp Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRegExp(u); } @@ -2192,7 +2191,7 @@ public: Q_INVOKABLE QString Sescape(const QString& x1) { return QRegExp::escape(x1); } }; -class EQL_EXPORT N153 : public QObject { // QRegion +class EQL_EXPORT N155 : public QObject { // QRegion Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRegion(u); } @@ -2224,7 +2223,7 @@ public: Q_INVOKABLE QRegion Mxored(QRegion* o, const QRegion& x1) const { return o->xored(x1); } }; -class EQL_EXPORT N154 : public QObject { // QRegularExpression +class EQL_EXPORT N156 : public QObject { // QRegularExpression Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRegularExpression(u); } @@ -2248,7 +2247,7 @@ public: Q_INVOKABLE QString Sescape(const QString& x1) { return QRegularExpression::escape(x1); } }; -class EQL_EXPORT N156 : public QObject { // QRunnable +class EQL_EXPORT N158 : public QObject { // QRunnable Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRunnable(u); } @@ -2257,7 +2256,7 @@ public: Q_INVOKABLE void MsetAutoDelete(QRunnable* o, bool x1) { o->setAutoDelete(x1); } }; -class EQL_EXPORT N159 : public QObject { // QSemaphore +class EQL_EXPORT N161 : public QObject { // QSemaphore Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = 0) { return new LSemaphore(u, x1); } @@ -2268,7 +2267,7 @@ public: Q_INVOKABLE bool MtryAcquire(QSemaphore* o, int x1, int x2) { return o->tryAcquire(x1, x2); } }; -class EQL_EXPORT N162 : public QObject { // QSizePolicy +class EQL_EXPORT N164 : public QObject { // QSizePolicy Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSizePolicy(u); } @@ -2293,7 +2292,7 @@ public: Q_INVOKABLE int MverticalStretch(QSizePolicy* o) const { return o->verticalStretch(); } }; -class EQL_EXPORT N177 : public QObject { // QStandardItem +class EQL_EXPORT N179 : public QObject { // QStandardItem Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LStandardItem(u); } @@ -2380,7 +2379,7 @@ public: Q_INVOKABLE void MemitDataChanged(QStandardItem* o) { ((LStandardItem*)o)->emitDataChanged(); } }; -class EQL_EXPORT N178 : public QObject { // QStandardPaths +class EQL_EXPORT N180 : public QObject { // QStandardPaths Q_OBJECT public: Q_INVOKABLE QString SdisplayName(QStandardPaths::StandardLocation x1) { return QStandardPaths::displayName(x1); } @@ -2392,7 +2391,7 @@ public: Q_INVOKABLE QString SwritableLocation(QStandardPaths::StandardLocation x1) { return QStandardPaths::writableLocation(x1); } }; -class EQL_EXPORT N180 : public QObject { // QStorageInfo +class EQL_EXPORT N182 : public QObject { // QStorageInfo Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LStorageInfo(u); } @@ -2413,12 +2412,11 @@ public: Q_INVOKABLE void Mrefresh(QStorageInfo* o) { o->refresh(); } Q_INVOKABLE QString MrootPath(QStorageInfo* o) const { return o->rootPath(); } Q_INVOKABLE void MsetPath(QStorageInfo* o, const QString& x1) { o->setPath(x1); } - Q_INVOKABLE void Mswap(QStorageInfo* o, QStorageInfo& x1) { o->swap(x1); } Q_INVOKABLE QList SmountedVolumes() { return QStorageInfo::mountedVolumes(); } Q_INVOKABLE QStorageInfo Sroot() { return QStorageInfo::root(); } }; -class EQL_EXPORT N181 : public QObject { // QStyleOption +class EQL_EXPORT N183 : 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); } @@ -2426,7 +2424,7 @@ public: Q_INVOKABLE void MinitFrom(QStyleOption* o, const QWidget* x1) { o->initFrom(x1); } }; -class EQL_EXPORT N183 : public QObject { // QSurface +class EQL_EXPORT N185 : public QObject { // QSurface Q_OBJECT public: Q_INVOKABLE QSurfaceFormat Mformat(QSurface* o) const { return o->format(); } @@ -2436,7 +2434,7 @@ public: Q_INVOKABLE int MsurfaceType(QSurface* o) const { return o->surfaceType(); } }; -class EQL_EXPORT N184 : public QObject { // QSurfaceFormat +class EQL_EXPORT N186 : public QObject { // QSurfaceFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSurfaceFormat(u); } @@ -2480,7 +2478,7 @@ public: Q_INVOKABLE void SsetDefaultFormat(const QSurfaceFormat& x1) { QSurfaceFormat::setDefaultFormat(x1); } }; -class EQL_EXPORT N186 : public QObject { // QSysInfo +class EQL_EXPORT N188 : public QObject { // QSysInfo Q_OBJECT public: Q_INVOKABLE QString SbuildAbi() { return QSysInfo::buildAbi(); } @@ -2495,7 +2493,7 @@ public: Q_INVOKABLE int SwindowsVersion() { return QSysInfo::windowsVersion(); } }; -class EQL_EXPORT N187 : public QObject { // QSystemSemaphore +class EQL_EXPORT N189 : 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); } @@ -2507,7 +2505,7 @@ public: Q_INVOKABLE void MsetKey(QSystemSemaphore* o, const QString& x1, int x2 = 0, QSystemSemaphore::AccessMode x3 = QSystemSemaphore::Open) { o->setKey(x1, x2, x3); } }; -class EQL_EXPORT N188 : public QObject { // QTableWidgetItem +class EQL_EXPORT N190 : public QObject { // QTableWidgetItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = QTableWidgetItem::Type) { return new LTableWidgetItem(u, x1); } @@ -2549,7 +2547,7 @@ public: Q_INVOKABLE QString MwhatsThis(QTableWidgetItem* o) const { return o->whatsThis(); } }; -class EQL_EXPORT N189 : public QObject { // QTableWidgetSelectionRange +class EQL_EXPORT N191 : public QObject { // QTableWidgetSelectionRange Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTableWidgetSelectionRange(u); } @@ -2563,7 +2561,7 @@ public: Q_INVOKABLE int MtopRow(QTableWidgetSelectionRange* o) const { return o->topRow(); } }; -class EQL_EXPORT N191 : public QObject { // QTextBlock +class EQL_EXPORT N193 : public QObject { // QTextBlock Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QTextBlock& x1) { return new LTextBlock(u, x1); } @@ -2598,12 +2596,12 @@ public: Q_INVOKABLE int MuserState(QTextBlock* o) const { return o->userState(); } }; -class EQL_EXPORT N193 : public QObject { // QTextBlockUserData +class EQL_EXPORT N195 : public QObject { // QTextBlockUserData Q_OBJECT public: }; -class EQL_EXPORT N194 : public QObject { // QTextBoundaryFinder +class EQL_EXPORT N196 : public QObject { // QTextBoundaryFinder Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextBoundaryFinder(u); } @@ -2623,7 +2621,7 @@ public: Q_INVOKABLE int Mtype(QTextBoundaryFinder* o) const { return o->type(); } }; -class EQL_EXPORT N196 : public QObject { // QTextCodec +class EQL_EXPORT N198 : public QObject { // QTextCodec Q_OBJECT public: Q_INVOKABLE QList Maliases(QTextCodec* o) const { return o->aliases(); } @@ -2651,7 +2649,7 @@ public: Q_INVOKABLE void SsetCodecForLocale(QTextCodec* x1) { QTextCodec::setCodecForLocale(x1); } }; -class EQL_EXPORT N197 : public QObject { // QTextCursor +class EQL_EXPORT N199 : public QObject { // QTextCursor Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextCursor(u); } @@ -2727,7 +2725,7 @@ public: Q_INVOKABLE bool MvisualNavigation(QTextCursor* o) const { return o->visualNavigation(); } }; -class EQL_EXPORT N198 : public QObject { // QTextDecoder +class EQL_EXPORT N200 : public QObject { // QTextDecoder Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QTextCodec* x1) { return new LTextDecoder(u, x1); } @@ -2737,7 +2735,7 @@ public: Q_INVOKABLE QString MtoUnicode(QTextDecoder* o, const QByteArray& x1) { return o->toUnicode(x1); } }; -class EQL_EXPORT N199 : public QObject { // QTextDocumentFragment +class EQL_EXPORT N201 : public QObject { // QTextDocumentFragment Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextDocumentFragment(u); } @@ -2752,7 +2750,7 @@ public: Q_INVOKABLE QTextDocumentFragment SfromPlainText(const QString& x1) { return QTextDocumentFragment::fromPlainText(x1); } }; -class EQL_EXPORT N200 : public QObject { // QTextDocumentWriter +class EQL_EXPORT N202 : public QObject { // QTextDocumentWriter Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextDocumentWriter(u); } @@ -2768,7 +2766,7 @@ public: Q_INVOKABLE QList SsupportedDocumentFormats() { return QTextDocumentWriter::supportedDocumentFormats(); } }; -class EQL_EXPORT N201 : public QObject { // QTextEncoder +class EQL_EXPORT N203 : public QObject { // QTextEncoder Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QTextCodec* x1) { return new LTextEncoder(u, x1); } @@ -2777,7 +2775,7 @@ public: Q_INVOKABLE QByteArray MfromUnicode(QTextEncoder* o, const QChar* x1, int x2) { return o->fromUnicode(x1, x2); } }; -class EQL_EXPORT N202 : public QObject { // QTextFormat +class EQL_EXPORT N204 : public QObject { // QTextFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextFormat(u); } @@ -2831,7 +2829,7 @@ public: Q_INVOKABLE int Mtype(QTextFormat* o) const { return o->type(); } }; -class EQL_EXPORT N203 : public QObject { // QTextFragment +class EQL_EXPORT N205 : public QObject { // QTextFragment Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextFragment(u); } @@ -2846,7 +2844,7 @@ public: Q_INVOKABLE QString Mtext(QTextFragment* o) const { return o->text(); } }; -class EQL_EXPORT N206 : public QObject { // QTextLayout +class EQL_EXPORT N208 : public QObject { // QTextLayout Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextLayout(u); } @@ -2888,7 +2886,7 @@ public: Q_INVOKABLE QTextOption MtextOption(QTextLayout* o) const { return o->textOption(); } }; -class EQL_EXPORT N207 : public QObject { // QTextLength +class EQL_EXPORT N209 : public QObject { // QTextLength Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextLength(u); } @@ -2898,7 +2896,7 @@ public: Q_INVOKABLE qreal Mvalue(QTextLength* o, qreal x1) const { return o->value(x1); } }; -class EQL_EXPORT N208 : public QObject { // QTextLine +class EQL_EXPORT N210 : public QObject { // QTextLine Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextLine(u); } @@ -2930,7 +2928,7 @@ public: Q_INVOKABLE qreal My(QTextLine* o) const { return o->y(); } }; -class EQL_EXPORT N210 : public QObject { // QTextOption +class EQL_EXPORT N212 : public QObject { // QTextOption Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextOption(u); } @@ -2952,7 +2950,7 @@ public: Q_INVOKABLE int MwrapMode(QTextOption* o) const { return o->wrapMode(); } }; -class EQL_EXPORT N211 : public QObject { // QTextTableCell +class EQL_EXPORT N213 : public QObject { // QTextTableCell Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextTableCell(u); } @@ -2969,7 +2967,7 @@ public: Q_INVOKABLE int MtableCellFormatIndex(QTextTableCell* o) const { return o->tableCellFormatIndex(); } }; -class EQL_EXPORT N214 : public QObject { // QTime +class EQL_EXPORT N216 : public QObject { // QTime Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTime(u); } @@ -2998,7 +2996,7 @@ public: Q_INVOKABLE bool SisValid(int x1, int x2, int x3, int x4 = 0) { return QTime::isValid(x1, x2, x3, x4); } }; -class EQL_EXPORT N215 : public QObject { // QTimeZone +class EQL_EXPORT N217 : public QObject { // QTimeZone Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTimeZone(u); } @@ -3034,7 +3032,7 @@ public: Q_INVOKABLE QList SwindowsIdToIanaIds(const QByteArray& x1, QLocale::Country x2) { return QTimeZone::windowsIdToIanaIds(x1, x2); } }; -class EQL_EXPORT N217 : public QObject { // QToolTip +class EQL_EXPORT N219 : public QObject { // QToolTip Q_OBJECT public: Q_INVOKABLE QFont Sfont() { return QToolTip::font(); } @@ -3049,7 +3047,7 @@ public: Q_INVOKABLE QString Stext() { return QToolTip::text(); } }; -class EQL_EXPORT N218 : public QObject { // QTouchDevice +class EQL_EXPORT N220 : public QObject { // QTouchDevice Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTouchDevice(u); } @@ -3064,7 +3062,7 @@ public: Q_INVOKABLE QList Sdevices() { return QTouchDevice::devices(); } }; -class EQL_EXPORT N220 : public QObject { // QTransform +class EQL_EXPORT N222 : public QObject { // QTransform Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTransform(u); } @@ -3119,7 +3117,7 @@ public: Q_INVOKABLE bool SsquareToQuad(const QPolygonF& x1, QTransform& x2) { return QTransform::squareToQuad(x1, x2); } }; -class EQL_EXPORT N221 : public QObject { // QTreeWidgetItem +class EQL_EXPORT N223 : public QObject { // QTreeWidgetItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = QTreeWidgetItem::Type) { return new LTreeWidgetItem(u, x1); } @@ -3188,7 +3186,7 @@ public: Q_INVOKABLE void MemitDataChanged(QTreeWidgetItem* o) { ((LTreeWidgetItem*)o)->emitDataChanged(); } }; -class EQL_EXPORT N222 : public QObject { // QUndoCommand +class EQL_EXPORT N224 : public QObject { // QUndoCommand Q_OBJECT public: Q_INVOKABLE void* C(uint u, QUndoCommand* x1 = 0) { return new LUndoCommand(u, x1); } @@ -3204,7 +3202,7 @@ public: Q_INVOKABLE void Mundo(QUndoCommand* o) { o->undo(); } }; -class EQL_EXPORT N223 : public QObject { // QUrl +class EQL_EXPORT N225 : public QObject { // QUrl Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LUrl(u); } @@ -3266,7 +3264,7 @@ public: Q_INVOKABLE QStringList StoStringList(const QList& x1, QUrl::FormattingOptions x2 = QUrl::PrettyDecoded) { return QUrl::toStringList(x1, x2); } }; -class EQL_EXPORT N224 : public QObject { // QUuid +class EQL_EXPORT N226 : public QObject { // QUuid Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LUuid(u); } @@ -3287,7 +3285,7 @@ public: Q_INVOKABLE QUuid SfromRfc4122(const QByteArray& x1) { return QUuid::fromRfc4122(x1); } }; -class EQL_EXPORT N225 : public QObject { // QVariant +class EQL_EXPORT N227 : public QObject { // QVariant Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QCursor& x1) { return new LVariant(u, x1); } @@ -3380,7 +3378,7 @@ public: Q_INVOKABLE const char* StypeToName(int x1) { return QVariant::typeToName(x1); } }; -class EQL_EXPORT N226 : public QObject { // QVector2D +class EQL_EXPORT N228 : public QObject { // QVector2D Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVector2D(u); } @@ -3407,7 +3405,7 @@ public: Q_INVOKABLE float SdotProduct(const QVector2D& x1, const QVector2D& x2) { return QVector2D::dotProduct(x1, x2); } }; -class EQL_EXPORT N227 : public QObject { // QVector3D +class EQL_EXPORT N229 : public QObject { // QVector3D Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVector3D(u); } @@ -3444,7 +3442,7 @@ public: Q_INVOKABLE QVector3D Snormal(const QVector3D& x1, const QVector3D& x2, const QVector3D& x3) { return QVector3D::normal(x1, x2, x3); } }; -class EQL_EXPORT N228 : public QObject { // QVector4D +class EQL_EXPORT N230 : public QObject { // QVector4D Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVector4D(u); } @@ -3477,7 +3475,7 @@ public: Q_INVOKABLE float SdotProduct(const QVector4D& x1, const QVector4D& x2) { return QVector4D::dotProduct(x1, x2); } }; -class EQL_EXPORT N240 : public QObject { // QWhatsThis +class EQL_EXPORT N242 : public QObject { // QWhatsThis Q_OBJECT public: Q_INVOKABLE QAction* ScreateAction(QObject* x1 = 0) { return QWhatsThis::createAction(x1); } @@ -4002,13 +4000,13 @@ public: Q_INVOKABLE void* C(uint u) { return new LHideEvent(u); } }; -class EQL_EXPORT N94 : public N49 { // QIconDragEvent +class EQL_EXPORT N95 : public N49 { // QIconDragEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LIconDragEvent(u); } }; -class EQL_EXPORT N95 : public N136 { // QImage +class EQL_EXPORT N96 : public N138 { // QImage Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LImage(u); } @@ -4091,14 +4089,14 @@ public: Q_INVOKABLE QImage MchangeGamma(QImage* o, int x1) { return QImage_changeGamma(*o, x1); } }; -class EQL_EXPORT N97 : public N49 { // QInputEvent +class EQL_EXPORT N98 : public N49 { // QInputEvent Q_OBJECT public: Q_INVOKABLE int Mmodifiers(QInputEvent* o) const { return o->modifiers(); } Q_INVOKABLE ulong Mtimestamp(QInputEvent* o) const { return o->timestamp(); } }; -class EQL_EXPORT N98 : public N49 { // QInputMethodEvent +class EQL_EXPORT N99 : public N49 { // QInputMethodEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LInputMethodEvent(u); } @@ -4110,7 +4108,7 @@ public: Q_INVOKABLE void MsetCommitString(QInputMethodEvent* o, const QString& x1, int x2 = 0, int x3 = 0) { o->setCommitString(x1, x2, x3); } }; -class EQL_EXPORT N99 : public N49 { // QInputMethodQueryEvent +class EQL_EXPORT N100 : public N49 { // QInputMethodQueryEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, Qt::InputMethodQueries x1) { return new LInputMethodQueryEvent(u, x1); } @@ -4119,7 +4117,7 @@ public: Q_INVOKABLE QVariant Mvalue(QInputMethodQueryEvent* o, Qt::InputMethodQuery x1) const { return o->value(x1); } }; -class EQL_EXPORT N103 : public N97 { // QKeyEvent +class EQL_EXPORT N104 : public N98 { // QKeyEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, QKeyEvent::Type x1, int x2, Qt::KeyboardModifiers x3, const QString& x4 = QString(), bool x5 = false, ushort x6 = 1) { return new LKeyEvent(u, x1, x2, x3, x4, x5, x6); } @@ -4135,7 +4133,7 @@ public: Q_INVOKABLE QString Mtext(QKeyEvent* o) const { return o->text(); } }; -class EQL_EXPORT N107 : public N62 { // QLinearGradient +class EQL_EXPORT N108 : public N62 { // QLinearGradient Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LLinearGradient(u); } @@ -4149,7 +4147,7 @@ public: Q_INVOKABLE QPointF Mstart(QLinearGradient* o) const { return o->start(); } }; -class EQL_EXPORT N119 : public N97 { // QMouseEvent +class EQL_EXPORT N120 : public N98 { // QMouseEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, QMouseEvent::Type x1, const QPointF& x2, Qt::MouseButton x3, Qt::MouseButtons x4, Qt::KeyboardModifiers x5) { return new LMouseEvent(u, x1, x2, x3, x4, x5); } @@ -4170,7 +4168,7 @@ public: Q_INVOKABLE int My(QMouseEvent* o) const { return o->y(); } }; -class EQL_EXPORT N120 : public N49 { // QMoveEvent +class EQL_EXPORT N121 : public N49 { // QMoveEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QPoint& x1, const QPoint& x2) { return new LMoveEvent(u, x1, x2); } @@ -4178,7 +4176,7 @@ public: Q_INVOKABLE QPoint Mpos(QMoveEvent* o) const { return o->pos(); } }; -class EQL_EXPORT N131 : public N136 { // QOpenGLPaintDevice +class EQL_EXPORT N133 : public N138 { // QOpenGLPaintDevice Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LOpenGLPaintDevice(u); } @@ -4197,7 +4195,7 @@ public: Q_INVOKABLE QSize Msize(QOpenGLPaintDevice* o) const { return o->size(); } }; -class EQL_EXPORT N135 : public N136 { // QPagedPaintDevice +class EQL_EXPORT N137 : public N138 { // QPagedPaintDevice Q_OBJECT public: Q_INVOKABLE bool MnewPage(QPagedPaintDevice* o) { return o->newPage(); } @@ -4213,7 +4211,7 @@ public: Q_INVOKABLE void MsetPageSizeMM(QPagedPaintDevice* o, const QSizeF& x1) { o->setPageSizeMM(x1); } }; -class EQL_EXPORT N137 : public N49 { // QPaintEvent +class EQL_EXPORT N139 : public N49 { // QPaintEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QRegion& x1) { return new LPaintEvent(u, x1); } @@ -4222,7 +4220,7 @@ public: Q_INVOKABLE QRegion Mregion(QPaintEvent* o) const { return o->region(); } }; -class EQL_EXPORT N144 : public N136 { // QPicture +class EQL_EXPORT N146 : public N138 { // QPicture Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = -1) { return new LPicture(u, x1); } @@ -4239,7 +4237,7 @@ public: Q_INVOKABLE void Mswap(QPicture* o, QPicture& x1) { o->swap(x1); } }; -class EQL_EXPORT N145 : public N136 { // QPixmap +class EQL_EXPORT N147 : public N138 { // QPixmap Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPixmap(u); } @@ -4288,7 +4286,7 @@ public: Q_INVOKABLE QMatrix StrueMatrix(const QMatrix& x1, int x2, int x3) { return QPixmap::trueMatrix(x1, x2, x3); } }; -class EQL_EXPORT N147 : public N135 { // QPrinter +class EQL_EXPORT N149 : public N137 { // QPrinter Q_OBJECT public: Q_INVOKABLE void* C(uint u, QPrinter::PrinterMode x1 = QPrinter::ScreenResolution) { return new LPrinter(u, x1); } @@ -4343,7 +4341,7 @@ public: Q_INVOKABLE bool MnewPage(QPrinter* o) { return o->newPage(); } }; -class EQL_EXPORT N151 : public N62 { // QRadialGradient +class EQL_EXPORT N153 : public N62 { // QRadialGradient Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRadialGradient(u); } @@ -4367,7 +4365,7 @@ public: Q_INVOKABLE void MsetRadius(QRadialGradient* o, qreal x1) { o->setRadius(x1); } }; -class EQL_EXPORT N155 : public N49 { // QResizeEvent +class EQL_EXPORT N157 : public N49 { // QResizeEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QSize& x1, const QSize& x2) { return new LResizeEvent(u, x1, x2); } @@ -4375,7 +4373,7 @@ public: Q_INVOKABLE QSize Msize(QResizeEvent* o) const { return o->size(); } }; -class EQL_EXPORT N157 : public N49 { // QScrollEvent +class EQL_EXPORT N159 : public N49 { // QScrollEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QPointF& x1, const QPointF& x2, QScrollEvent::ScrollState x3) { return new LScrollEvent(u, x1, x2, x3); } @@ -4384,7 +4382,7 @@ public: Q_INVOKABLE int MscrollState(QScrollEvent* o) const { return o->scrollState(); } }; -class EQL_EXPORT N158 : public N49 { // QScrollPrepareEvent +class EQL_EXPORT N160 : public N49 { // QScrollPrepareEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QPointF& x1) { return new LScrollPrepareEvent(u, x1); } @@ -4397,7 +4395,7 @@ public: Q_INVOKABLE QSizeF MviewportSize(QScrollPrepareEvent* o) const { return o->viewportSize(); } }; -class EQL_EXPORT N160 : public N49 { // QShortcutEvent +class EQL_EXPORT N162 : public N49 { // QShortcutEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QKeySequence& x1, int x2, bool x3 = false) { return new LShortcutEvent(u, x1, x2, x3); } @@ -4406,13 +4404,13 @@ public: Q_INVOKABLE int MshortcutId(QShortcutEvent* o) const { return o->shortcutId(); } }; -class EQL_EXPORT N161 : public N49 { // QShowEvent +class EQL_EXPORT N163 : public N49 { // QShowEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LShowEvent(u); } }; -class EQL_EXPORT N163 : public N105 { // QSpacerItem +class EQL_EXPORT N165 : public N106 { // 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); } @@ -4428,14 +4426,14 @@ public: Q_INVOKABLE QSpacerItem* MspacerItem(QSpacerItem* o) { return o->spacerItem(); } }; -class EQL_EXPORT N179 : public N49 { // QStatusTipEvent +class EQL_EXPORT N181 : public N49 { // QStatusTipEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1) { return new LStatusTipEvent(u, x1); } Q_INVOKABLE QString Mtip(QStatusTipEvent* o) const { return o->tip(); } }; -class EQL_EXPORT N182 : public N181 { // QStyleOptionGraphicsItem +class EQL_EXPORT N184 : public N183 { // QStyleOptionGraphicsItem Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LStyleOptionGraphicsItem(u); } @@ -4443,7 +4441,7 @@ public: Q_INVOKABLE qreal SlevelOfDetailFromTransform(const QTransform& x1) { return QStyleOptionGraphicsItem::levelOfDetailFromTransform(x1); } }; -class EQL_EXPORT N190 : public N97 { // QTabletEvent +class EQL_EXPORT N192 : public N98 { // QTabletEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, QTabletEvent::Type x1, const QPointF& x2, const QPointF& x3, int x4, int x5, qreal x6, int x7, int x8, qreal x9, qreal x10, int x11, Qt::KeyboardModifiers x12, qint64 x13, Qt::MouseButton x14, Qt::MouseButtons x15) { return new LTabletEvent(u, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15); } @@ -4470,7 +4468,7 @@ public: Q_INVOKABLE int Mz(QTabletEvent* o) const { return o->z(); } }; -class EQL_EXPORT N192 : public N202 { // QTextBlockFormat +class EQL_EXPORT N194 : public N204 { // QTextBlockFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextBlockFormat(u); } @@ -4501,7 +4499,7 @@ public: Q_INVOKABLE qreal MtopMargin(QTextBlockFormat* o) const { return o->topMargin(); } }; -class EQL_EXPORT N195 : public N202 { // QTextCharFormat +class EQL_EXPORT N197 : public N204 { // QTextCharFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextCharFormat(u); } @@ -4561,7 +4559,7 @@ public: Q_INVOKABLE int MverticalAlignment(QTextCharFormat* o) const { return o->verticalAlignment(); } }; -class EQL_EXPORT N204 : public N202 { // QTextFrameFormat +class EQL_EXPORT N206 : public N204 { // QTextFrameFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextFrameFormat(u); } @@ -4596,7 +4594,7 @@ public: Q_INVOKABLE QTextLength Mwidth(QTextFrameFormat* o) const { return o->width(); } }; -class EQL_EXPORT N205 : public N195 { // QTextImageFormat +class EQL_EXPORT N207 : public N197 { // QTextImageFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextImageFormat(u); } @@ -4609,7 +4607,7 @@ public: Q_INVOKABLE qreal Mwidth(QTextImageFormat* o) const { return o->width(); } }; -class EQL_EXPORT N209 : public N202 { // QTextListFormat +class EQL_EXPORT N211 : public N204 { // QTextListFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextListFormat(u); } @@ -4624,7 +4622,7 @@ public: Q_INVOKABLE int Mstyle(QTextListFormat* o) const { return o->style(); } }; -class EQL_EXPORT N212 : public N195 { // QTextTableCellFormat +class EQL_EXPORT N214 : public N197 { // QTextTableCellFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextTableCellFormat(u); } @@ -4640,7 +4638,7 @@ public: Q_INVOKABLE qreal MtopPadding(QTextTableCellFormat* o) const { return o->topPadding(); } }; -class EQL_EXPORT N213 : public N204 { // QTextTableFormat +class EQL_EXPORT N215 : public N206 { // QTextTableFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextTableFormat(u); } @@ -4659,14 +4657,14 @@ public: Q_INVOKABLE void MsetHeaderRowCount(QTextTableFormat* o, int x1) { o->setHeaderRowCount(x1); } }; -class EQL_EXPORT N216 : public N49 { // QTimerEvent +class EQL_EXPORT N218 : public N49 { // QTimerEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1) { return new LTimerEvent(u, x1); } Q_INVOKABLE int MtimerId(QTimerEvent* o) const { return o->timerId(); } }; -class EQL_EXPORT N219 : public N97 { // QTouchEvent +class EQL_EXPORT N221 : public N98 { // QTouchEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, QEvent::Type x1, QTouchDevice* x2 = 0, Qt::KeyboardModifiers x3 = Qt::NoModifier, Qt::TouchPointStates x4 = 0, const QList& x5 = QList()) { return new LTouchEvent(u, x1, x2, x3, x4, x5); } @@ -4677,14 +4675,14 @@ public: Q_INVOKABLE QWindow* Mwindow(QTouchEvent* o) const { return o->window(); } }; -class EQL_EXPORT N241 : public N49 { // QWhatsThisClickedEvent +class EQL_EXPORT N243 : public N49 { // QWhatsThisClickedEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1) { return new LWhatsThisClickedEvent(u, x1); } Q_INVOKABLE QString Mhref(QWhatsThisClickedEvent* o) const { return o->href(); } }; -class EQL_EXPORT N242 : public N97 { // QWheelEvent +class EQL_EXPORT N244 : public N98 { // QWheelEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8) { return new LWheelEvent(u, x1, x2, x3, x4, x5, x6, x7, x8); } @@ -4705,7 +4703,7 @@ public: Q_INVOKABLE int My(QWheelEvent* o) const { return o->y(); } }; -class EQL_EXPORT N243 : public N105 { // QWidgetItem +class EQL_EXPORT N245 : public N106 { // QWidgetItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LWidgetItem(u, x1); } @@ -4722,13 +4720,13 @@ public: Q_INVOKABLE QWidget* Mwidget(QWidgetItem* o) { return o->widget(); } }; -class EQL_EXPORT N244 : public N49 { // QWindowStateChangeEvent +class EQL_EXPORT N246 : public N49 { // QWindowStateChangeEvent Q_OBJECT public: Q_INVOKABLE int MoldState(QWindowStateChangeEvent* o) const { return o->oldState(); } }; -class EQL_EXPORT N25 : public N145 { // QBitmap +class EQL_EXPORT N25 : public N147 { // QBitmap Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LBitmap(u); } @@ -4742,7 +4740,7 @@ public: Q_INVOKABLE QBitmap SfromImage(const QImage& x1, Qt::ImageConversionFlags x2 = Qt::AutoColor) { return QBitmap::fromImage(x1, x2); } }; -class EQL_EXPORT N33 : public N97 { // QContextMenuEvent +class EQL_EXPORT N33 : public N98 { // QContextMenuEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, QContextMenuEvent::Reason x1, const QPoint& x2, const QPoint& x3, Qt::KeyboardModifiers x4) { return new LContextMenuEvent(u, x1, x2, x3, x4); } @@ -4866,7 +4864,7 @@ public: Q_INVOKABLE QWidget* Msource(QGraphicsSceneDragDropEvent* o) const { return o->source(); } }; -class EQL_EXPORT N92 : public N97 { // QHoverEvent +class EQL_EXPORT N92 : public N98 { // QHoverEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, QHoverEvent::Type x1, const QPointF& x2, const QPointF& x3, Qt::KeyboardModifiers x4 = Qt::NoModifier) { return new LHoverEvent(u, x1, x2, x3, x4); } diff --git a/src/gen/_main_q_classes.h b/src/gen/_main_q_classes.h index 982b318..f97a2f7 100644 --- a/src/gen/_main_q_classes.h +++ b/src/gen/_main_q_classes.h @@ -2758,7 +2758,7 @@ public: class LIODevice : public QIODevice { Q_OBJECT - friend class Q104; + friend class Q105; public: static NumList overrideIds; @@ -2788,7 +2788,7 @@ public: class LIdentityProxyModel : public QIdentityProxyModel { Q_OBJECT - friend class Q105; + friend class Q106; public: LIdentityProxyModel(uint u, QObject* x1 = 0) : QIdentityProxyModel(x1), unique(u) {} @@ -2839,7 +2839,7 @@ public: class LInputDialog : public QInputDialog { Q_OBJECT - friend class Q106; + friend class Q107; public: LInputDialog(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QInputDialog(x1, x2), unique(u) {} @@ -2890,7 +2890,7 @@ public: class LIntValidator : public QIntValidator { Q_OBJECT - friend class Q108; + friend class Q109; public: LIntValidator(uint u, QObject* x1 = 0) : QIntValidator(x1), unique(u) {} LIntValidator(uint u, int x1, int x2, QObject* x3 = 0) : QIntValidator(x1, x2, x3), unique(u) {} @@ -2909,7 +2909,7 @@ public: class LItemDelegate : public QItemDelegate { Q_OBJECT - friend class Q109; + friend class Q110; public: LItemDelegate(uint u, QObject* x1 = 0) : QItemDelegate(x1), unique(u) {} @@ -2937,7 +2937,7 @@ public: class LItemSelectionModel : public QItemSelectionModel { Q_OBJECT - friend class Q110; + friend class Q111; public: LItemSelectionModel(uint u, QAbstractItemModel* x1 = 0) : QItemSelectionModel(x1), unique(u) {} LItemSelectionModel(uint u, QAbstractItemModel* x1, QObject* x2) : QItemSelectionModel(x1, x2), unique(u) {} @@ -2953,7 +2953,7 @@ public: class LKeyEventTransition : public QKeyEventTransition { Q_OBJECT - friend class Q111; + friend class Q112; public: LKeyEventTransition(uint u, QState* x1 = 0) : QKeyEventTransition(x1), unique(u) {} LKeyEventTransition(uint u, QObject* x1, QEvent::Type x2, int x3, QState* x4 = 0) : QKeyEventTransition(x1, x2, x3, x4), unique(u) {} @@ -2971,7 +2971,7 @@ public: class LLCDNumber : public QLCDNumber { Q_OBJECT - friend class Q112; + friend class Q113; public: LLCDNumber(uint u, QWidget* x1 = 0) : QLCDNumber(x1), unique(u) {} LLCDNumber(uint u, uint x1, QWidget* x2 = 0) : QLCDNumber(x1, x2), unique(u) {} @@ -3021,7 +3021,7 @@ public: class LLabel : public QLabel { Q_OBJECT - friend class Q113; + friend class Q114; public: LLabel(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QLabel(x1, x2), unique(u) {} LLabel(uint u, const QString& x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) : QLabel(x1, x2, x3), unique(u) {} @@ -3071,7 +3071,7 @@ public: class LLibrary : public QLibrary { Q_OBJECT - friend class Q115; + friend class Q116; public: LLibrary(uint u, QObject* x1 = 0) : QLibrary(x1), unique(u) {} LLibrary(uint u, const QString& x1, QObject* x2 = 0) : QLibrary(x1, x2), unique(u) {} @@ -3089,7 +3089,7 @@ public: class LLineEdit : public QLineEdit { Q_OBJECT - friend class Q116; + friend class Q117; public: LLineEdit(uint u, QWidget* x1 = 0) : QLineEdit(x1), unique(u) {} LLineEdit(uint u, const QString& x1, QWidget* x2 = 0) : QLineEdit(x1, x2), unique(u) {} @@ -3139,7 +3139,7 @@ public: class LListView : public QListView { Q_OBJECT - friend class Q117; + friend class Q118; public: LListView(uint u, QWidget* x1 = 0) : QListView(x1), unique(u) {} @@ -3217,7 +3217,7 @@ public: class LListWidget : public QListWidget { Q_OBJECT - friend class Q118; + friend class Q119; public: LListWidget(uint u, QWidget* x1 = 0) : QListWidget(x1), unique(u) {} @@ -3298,7 +3298,7 @@ public: class LMainWindow : public QMainWindow { Q_OBJECT - friend class Q121; + friend class Q122; public: LMainWindow(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QMainWindow(x1, x2), unique(u) {} @@ -3348,7 +3348,7 @@ public: class LMdiArea : public QMdiArea { Q_OBJECT - friend class Q122; + friend class Q123; public: LMdiArea(uint u, QWidget* x1 = 0) : QMdiArea(x1), unique(u) {} @@ -3401,7 +3401,7 @@ public: class LMdiSubWindow : public QMdiSubWindow { Q_OBJECT - friend class Q123; + friend class Q124; public: LMdiSubWindow(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QMdiSubWindow(x1, x2), unique(u) {} @@ -3450,7 +3450,7 @@ public: class LMenu : public QMenu { Q_OBJECT - friend class Q129; + friend class Q130; public: LMenu(uint u, QWidget* x1 = 0) : QMenu(x1), unique(u) {} LMenu(uint u, const QString& x1, QWidget* x2 = 0) : QMenu(x1, x2), unique(u) {} @@ -3500,7 +3500,7 @@ public: class LMenuBar : public QMenuBar { Q_OBJECT - friend class Q130; + friend class Q131; public: LMenuBar(uint u, QWidget* x1 = 0) : QMenuBar(x1), unique(u) {} @@ -3549,7 +3549,7 @@ public: class LMessageBox : public QMessageBox { Q_OBJECT - friend class Q131; + friend class Q132; public: LMessageBox(uint u, QWidget* x1 = 0) : QMessageBox(x1), unique(u) {} LMessageBox(uint u, Icon x1, const QString& x2, const QString& x3, StandardButtons x4 = NoButton, QWidget* x5 = 0, Qt::WindowFlags x6 = Qt::Dialog|Qt::MSWindowsFixedSizeDialogHint) : QMessageBox(x1, x2, x3, x4, x5, x6), unique(u) {} @@ -3600,7 +3600,7 @@ public: class LMimeData : public QMimeData { Q_OBJECT - friend class Q132; + friend class Q133; public: LMimeData(uint u) : unique(u) {} @@ -3618,7 +3618,7 @@ public: class LMouseEventTransition : public QMouseEventTransition { Q_OBJECT - friend class Q133; + friend class Q134; public: LMouseEventTransition(uint u, QState* x1 = 0) : QMouseEventTransition(x1), unique(u) {} LMouseEventTransition(uint u, QObject* x1, QEvent::Type x2, Qt::MouseButton x3, QState* x4 = 0) : QMouseEventTransition(x1, x2, x3, x4), unique(u) {} @@ -3636,7 +3636,7 @@ public: class LMovie : public QMovie { Q_OBJECT - friend class Q134; + friend class Q135; public: LMovie(uint u, QObject* x1 = 0) : QMovie(x1), unique(u) {} LMovie(uint u, const QString& x1, const QByteArray& x2 = QByteArray(), QObject* x3 = 0) : QMovie(x1, x2, x3), unique(u) {} @@ -3652,7 +3652,7 @@ public: class LObject : public QObject { Q_OBJECT - friend class Q139; + friend class Q140; public: LObject(uint u, QObject* x1 = 0) : QObject(x1), unique(u) {} @@ -3667,7 +3667,7 @@ public: class LObjectCleanupHandler : public QObjectCleanupHandler { Q_OBJECT - friend class Q140; + friend class Q141; public: static NumList overrideIds; @@ -3681,7 +3681,7 @@ public: class LOpenGLContext : public QOpenGLContext { Q_OBJECT - friend class Q141; + friend class Q142; public: LOpenGLContext(uint u, QObject* x1 = 0) : QOpenGLContext(x1), unique(u) {} @@ -3696,7 +3696,7 @@ public: class LOpenGLShader : public QOpenGLShader { Q_OBJECT - friend class Q142; + friend class Q143; public: LOpenGLShader(uint u, QOpenGLShader::ShaderType x1, QObject* x2 = 0) : QOpenGLShader(x1, x2), unique(u) {} @@ -3711,7 +3711,7 @@ public: class LOpenGLShaderProgram : public QOpenGLShaderProgram { Q_OBJECT - friend class Q143; + friend class Q144; public: LOpenGLShaderProgram(uint u, QObject* x1 = 0) : QOpenGLShaderProgram(x1), unique(u) {} @@ -3727,7 +3727,7 @@ public: class LOpenGLWidget : public QOpenGLWidget { Q_OBJECT - friend class Q144; + friend class Q145; public: LOpenGLWidget(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QOpenGLWidget(x1, x2), unique(u) {} @@ -3779,7 +3779,7 @@ public: class LOpenGLWindow : public QOpenGLWindow { Q_OBJECT - friend class Q145; + friend class Q146; public: LOpenGLWindow(uint u, UpdateBehavior x1 = NoPartialUpdate, QWindow* x2 = 0) : QOpenGLWindow(x1, x2), unique(u) {} LOpenGLWindow(uint u, QOpenGLContext* x1, UpdateBehavior x2 = NoPartialUpdate, QWindow* x3 = 0) : QOpenGLWindow(x1, x2, x3), unique(u) {} @@ -3821,7 +3821,7 @@ public: class LPageSetupDialog : public QPageSetupDialog { Q_OBJECT - friend class Q146; + friend class Q147; public: LPageSetupDialog(uint u, QPrinter* x1, QWidget* x2 = 0) : QPageSetupDialog(x1, x2), unique(u) {} LPageSetupDialog(uint u, QWidget* x1 = 0) : QPageSetupDialog(x1), unique(u) {} @@ -3874,7 +3874,7 @@ public: class LPaintDeviceWindow : public QPaintDeviceWindow { Q_OBJECT - friend class Q147; + friend class Q148; public: static NumList overrideIds; @@ -3909,7 +3909,7 @@ public: class LPanGesture : public QPanGesture { Q_OBJECT - friend class Q148; + friend class Q149; public: static NumList overrideIds; @@ -3923,7 +3923,7 @@ public: class LParallelAnimationGroup : public QParallelAnimationGroup { Q_OBJECT - friend class Q149; + friend class Q150; public: LParallelAnimationGroup(uint u, QObject* x1 = 0) : QParallelAnimationGroup(x1), unique(u) {} @@ -3942,7 +3942,7 @@ public: class LPauseAnimation : public QPauseAnimation { Q_OBJECT - friend class Q150; + friend class Q151; public: LPauseAnimation(uint u, QObject* x1 = 0) : QPauseAnimation(x1), unique(u) {} LPauseAnimation(uint u, int x1, QObject* x2 = 0) : QPauseAnimation(x1, x2), unique(u) {} @@ -3962,7 +3962,7 @@ public: class LPdfWriter : public QPdfWriter { Q_OBJECT - friend class Q151; + friend class Q152; public: LPdfWriter(uint u, const QString& x1) : QPdfWriter(x1), unique(u) {} @@ -3978,7 +3978,7 @@ public: class LPinchGesture : public QPinchGesture { Q_OBJECT - friend class Q152; + friend class Q153; public: static NumList overrideIds; @@ -3992,7 +3992,7 @@ public: class LPlainTextDocumentLayout : public QPlainTextDocumentLayout { Q_OBJECT - friend class Q153; + friend class Q154; public: LPlainTextDocumentLayout(uint u, QTextDocument* x1) : QPlainTextDocumentLayout(x1), unique(u) {} @@ -4017,7 +4017,7 @@ public: class LPlainTextEdit : public QPlainTextEdit { Q_OBJECT - friend class Q154; + friend class Q155; public: LPlainTextEdit(uint u, QWidget* x1 = 0) : QPlainTextEdit(x1), unique(u) {} LPlainTextEdit(uint u, const QString& x1, QWidget* x2 = 0) : QPlainTextEdit(x1, x2), unique(u) {} @@ -4075,7 +4075,7 @@ public: class LPluginLoader : public QPluginLoader { Q_OBJECT - friend class Q155; + friend class Q156; public: LPluginLoader(uint u, QObject* x1 = 0) : QPluginLoader(x1), unique(u) {} LPluginLoader(uint u, const QString& x1, QObject* x2 = 0) : QPluginLoader(x1, x2), unique(u) {} @@ -4091,7 +4091,7 @@ public: class LPrintDialog : public QPrintDialog { Q_OBJECT - friend class Q156; + friend class Q157; public: LPrintDialog(uint u, QPrinter* x1, QWidget* x2 = 0) : QPrintDialog(x1, x2), unique(u) {} LPrintDialog(uint u, QWidget* x1 = 0) : QPrintDialog(x1), unique(u) {} @@ -4144,7 +4144,7 @@ public: class LPrintPreviewDialog : public QPrintPreviewDialog { Q_OBJECT - friend class Q157; + friend class Q158; public: LPrintPreviewDialog(uint u, QPrinter* x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) : QPrintPreviewDialog(x1, x2, x3), unique(u) {} LPrintPreviewDialog(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QPrintPreviewDialog(x1, x2), unique(u) {} @@ -4196,7 +4196,7 @@ public: class LPrintPreviewWidget : public QPrintPreviewWidget { Q_OBJECT - friend class Q158; + friend class Q159; public: LPrintPreviewWidget(uint u, QPrinter* x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) : QPrintPreviewWidget(x1, x2, x3), unique(u) {} LPrintPreviewWidget(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QPrintPreviewWidget(x1, x2), unique(u) {} @@ -4247,7 +4247,7 @@ public: class LProcess : public QProcess { Q_OBJECT - friend class Q159; + friend class Q160; public: LProcess(uint u, QObject* x1 = 0) : QProcess(x1), unique(u) {} @@ -4279,7 +4279,7 @@ public: class LProgressBar : public QProgressBar { Q_OBJECT - friend class Q160; + friend class Q161; public: LProgressBar(uint u, QWidget* x1 = 0) : QProgressBar(x1), unique(u) {} @@ -4329,7 +4329,7 @@ public: class LProgressDialog : public QProgressDialog { Q_OBJECT - friend class Q161; + friend class Q162; public: LProgressDialog(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QProgressDialog(x1, x2), unique(u) {} LProgressDialog(uint u, const QString& x1, const QString& x2, int x3, int x4, QWidget* x5 = 0, Qt::WindowFlags x6 = 0) : QProgressDialog(x1, x2, x3, x4, x5, x6), unique(u) {} @@ -4380,7 +4380,7 @@ public: class LPropertyAnimation : public QPropertyAnimation { Q_OBJECT - friend class Q162; + friend class Q163; public: LPropertyAnimation(uint u, QObject* x1 = 0) : QPropertyAnimation(x1), unique(u) {} LPropertyAnimation(uint u, QObject* x1, const QByteArray& x2, QObject* x3 = 0) : QPropertyAnimation(x1, x2, x3), unique(u) {} @@ -4402,7 +4402,7 @@ public: class LProxyStyle : public QProxyStyle { Q_OBJECT - friend class Q163; + friend class Q164; public: LProxyStyle(uint u, QStyle* x1 = 0) : QProxyStyle(x1), unique(u) {} LProxyStyle(uint u, const QString& x1) : QProxyStyle(x1), unique(u) {} @@ -4438,7 +4438,7 @@ public: class LPushButton : public QPushButton { Q_OBJECT - friend class Q164; + friend class Q165; public: LPushButton(uint u, QWidget* x1 = 0) : QPushButton(x1), unique(u) {} LPushButton(uint u, const QString& x1, QWidget* x2 = 0) : QPushButton(x1, x2), unique(u) {} @@ -4492,7 +4492,7 @@ public: class LRadioButton : public QRadioButton { Q_OBJECT - friend class Q165; + friend class Q166; public: LRadioButton(uint u, QWidget* x1 = 0) : QRadioButton(x1), unique(u) {} LRadioButton(uint u, const QString& x1, QWidget* x2 = 0) : QRadioButton(x1, x2), unique(u) {} @@ -4545,7 +4545,7 @@ public: class LRegExpValidator : public QRegExpValidator { Q_OBJECT - friend class Q167; + friend class Q168; public: LRegExpValidator(uint u, QObject* x1 = 0) : QRegExpValidator(x1), unique(u) {} LRegExpValidator(uint u, const QRegExp& x1, QObject* x2 = 0) : QRegExpValidator(x1, x2), unique(u) {} @@ -4563,7 +4563,7 @@ public: class LRubberBand : public QRubberBand { Q_OBJECT - friend class Q168; + friend class Q169; public: LRubberBand(uint u, Shape x1, QWidget* x2 = 0) : QRubberBand(x1, x2), unique(u) {} @@ -4612,7 +4612,7 @@ public: class LScrollArea : public QScrollArea { Q_OBJECT - friend class Q170; + friend class Q171; public: LScrollArea(uint u, QWidget* x1 = 0) : QScrollArea(x1), unique(u) {} @@ -4665,7 +4665,7 @@ public: class LScrollBar : public QScrollBar { Q_OBJECT - friend class Q171; + friend class Q172; public: LScrollBar(uint u, QWidget* x1 = 0) : QScrollBar(x1), unique(u) {} LScrollBar(uint u, Qt::Orientation x1, QWidget* x2 = 0) : QScrollBar(x1, x2), unique(u) {} @@ -4716,7 +4716,7 @@ public: class LSequentialAnimationGroup : public QSequentialAnimationGroup { Q_OBJECT - friend class Q172; + friend class Q173; public: LSequentialAnimationGroup(uint u, QObject* x1 = 0) : QSequentialAnimationGroup(x1), unique(u) {} @@ -4735,7 +4735,7 @@ public: class LSettings : public QSettings { Q_OBJECT - friend class Q174; + friend class Q175; public: LSettings(uint u, const QString& x1, const QString& x2 = QString(), QObject* x3 = 0) : QSettings(x1, x2, x3), unique(u) {} LSettings(uint u, Scope x1, const QString& x2, const QString& x3 = QString(), QObject* x4 = 0) : QSettings(x1, x2, x3, x4), unique(u) {} @@ -4754,7 +4754,7 @@ public: class LShortcut : public QShortcut { Q_OBJECT - friend class Q175; + friend class Q176; public: LShortcut(uint u, QWidget* x1) : QShortcut(x1), unique(u) {} LShortcut(uint u, const QKeySequence& x1, QWidget* x2, const char* x3 = 0, const char* x4 = 0, Qt::ShortcutContext x5 = Qt::WindowShortcut) : QShortcut(x1, x2, x3, x4, x5), unique(u) {} @@ -4770,7 +4770,7 @@ public: class LSignalMapper : public QSignalMapper { Q_OBJECT - friend class Q176; + friend class Q177; public: LSignalMapper(uint u, QObject* x1 = 0) : QSignalMapper(x1), unique(u) {} @@ -4785,7 +4785,7 @@ public: class LSignalTransition : public QSignalTransition { Q_OBJECT - friend class Q177; + friend class Q178; public: LSignalTransition(uint u, QState* x1 = 0) : QSignalTransition(x1), unique(u) {} LSignalTransition(uint u, const QObject* x1, const char* x2, QState* x3 = 0) : QSignalTransition(x1, x2, x3), unique(u) {} @@ -4803,7 +4803,7 @@ public: class LSizeGrip : public QSizeGrip { Q_OBJECT - friend class Q178; + friend class Q179; public: LSizeGrip(uint u, QWidget* x1) : QSizeGrip(x1), unique(u) {} @@ -4853,7 +4853,7 @@ public: class LSlider : public QSlider { Q_OBJECT - friend class Q179; + friend class Q180; public: LSlider(uint u, QWidget* x1 = 0) : QSlider(x1), unique(u) {} LSlider(uint u, Qt::Orientation x1, QWidget* x2 = 0) : QSlider(x1, x2), unique(u) {} @@ -4904,7 +4904,7 @@ public: class LSortFilterProxyModel : public QSortFilterProxyModel { Q_OBJECT - friend class Q180; + friend class Q181; public: LSortFilterProxyModel(uint u, QObject* x1 = 0) : QSortFilterProxyModel(x1), unique(u) {} @@ -4958,7 +4958,7 @@ public: class LSpinBox : public QSpinBox { Q_OBJECT - friend class Q181; + friend class Q182; public: LSpinBox(uint u, QWidget* x1 = 0) : QSpinBox(x1), unique(u) {} @@ -5013,7 +5013,7 @@ public: class LSplashScreen : public QSplashScreen { Q_OBJECT - friend class Q182; + friend class Q183; public: LSplashScreen(uint u, const QPixmap& x1 = QPixmap(), Qt::WindowFlags x2 = 0) : QSplashScreen(x1, x2), unique(u) {} LSplashScreen(uint u, QWidget* x1, const QPixmap& x2 = QPixmap(), Qt::WindowFlags x3 = 0) : QSplashScreen(x1, x2, x3), unique(u) {} @@ -5064,7 +5064,7 @@ public: class LSplitter : public QSplitter { Q_OBJECT - friend class Q183; + friend class Q184; public: LSplitter(uint u, QWidget* x1 = 0) : QSplitter(x1), unique(u) {} LSplitter(uint u, Qt::Orientation x1, QWidget* x2 = 0) : QSplitter(x1, x2), unique(u) {} @@ -5114,7 +5114,7 @@ public: class LSplitterHandle : public QSplitterHandle { Q_OBJECT - friend class Q184; + friend class Q185; public: static NumList overrideIds; @@ -5162,7 +5162,7 @@ public: class LStackedLayout : public QStackedLayout { Q_OBJECT - friend class Q190; + friend class Q191; public: LStackedLayout(uint u) : unique(u) {} LStackedLayout(uint u, QWidget* x1) : QStackedLayout(x1), unique(u) {} @@ -5196,7 +5196,7 @@ public: class LStackedWidget : public QStackedWidget { Q_OBJECT - friend class Q191; + friend class Q192; public: LStackedWidget(uint u, QWidget* x1 = 0) : QStackedWidget(x1), unique(u) {} @@ -5245,7 +5245,7 @@ public: class LStandardItemModel : public QStandardItemModel { Q_OBJECT - friend class Q192; + friend class Q193; public: LStandardItemModel(uint u, QObject* x1 = 0) : QStandardItemModel(x1), unique(u) {} LStandardItemModel(uint u, int x1, int x2, QObject* x3 = 0) : QStandardItemModel(x1, x2, x3), unique(u) {} @@ -5290,7 +5290,7 @@ public: class LState : public QState { Q_OBJECT - friend class Q193; + friend class Q194; public: LState(uint u, QState* x1 = 0) : QState(x1), unique(u) {} LState(uint u, ChildMode x1, QState* x2 = 0) : QState(x1, x2), unique(u) {} @@ -5308,7 +5308,7 @@ public: class LStateMachine : public QStateMachine { Q_OBJECT - friend class Q194; + friend class Q195; public: LStateMachine(uint u, QObject* x1 = 0) : QStateMachine(x1), unique(u) {} LStateMachine(uint u, QState::ChildMode x1, QObject* x2 = 0) : QStateMachine(x1, x2), unique(u) {} @@ -5326,7 +5326,7 @@ public: class LStatusBar : public QStatusBar { Q_OBJECT - friend class Q195; + friend class Q196; public: LStatusBar(uint u, QWidget* x1 = 0) : QStatusBar(x1), unique(u) {} @@ -5375,7 +5375,7 @@ public: class LStringListModel : public QStringListModel { Q_OBJECT - friend class Q196; + friend class Q197; public: LStringListModel(uint u, QObject* x1 = 0) : QStringListModel(x1), unique(u) {} LStringListModel(uint u, const QStringList& x1, QObject* x2 = 0) : QStringListModel(x1, x2), unique(u) {} @@ -5417,7 +5417,7 @@ public: class LStyleHints : public QStyleHints { Q_OBJECT - friend class Q198; + friend class Q199; public: static NumList overrideIds; @@ -5431,7 +5431,7 @@ public: class LStyledItemDelegate : public QStyledItemDelegate { Q_OBJECT - friend class Q199; + friend class Q200; public: LStyledItemDelegate(uint u, QObject* x1 = 0) : QStyledItemDelegate(x1), unique(u) {} @@ -5457,7 +5457,7 @@ public: class LSwipeGesture : public QSwipeGesture { Q_OBJECT - friend class Q202; + friend class Q203; public: static NumList overrideIds; @@ -5471,7 +5471,7 @@ public: class LSyntaxHighlighter : public QSyntaxHighlighter { Q_OBJECT - friend class Q203; + friend class Q204; public: LSyntaxHighlighter(uint u, QObject* x1) : QSyntaxHighlighter(x1), unique(u) {} LSyntaxHighlighter(uint u, QTextDocument* x1) : QSyntaxHighlighter(x1), unique(u) {} @@ -5488,7 +5488,7 @@ public: class LSystemTrayIcon : public QSystemTrayIcon { Q_OBJECT - friend class Q204; + friend class Q205; public: LSystemTrayIcon(uint u, QObject* x1 = 0) : QSystemTrayIcon(x1), unique(u) {} LSystemTrayIcon(uint u, const QIcon& x1, QObject* x2 = 0) : QSystemTrayIcon(x1, x2), unique(u) {} @@ -5504,7 +5504,7 @@ public: class LTabBar : public QTabBar { Q_OBJECT - friend class Q205; + friend class Q206; public: LTabBar(uint u, QWidget* x1 = 0) : QTabBar(x1), unique(u) {} @@ -5558,7 +5558,7 @@ public: class LTabWidget : public QTabWidget { Q_OBJECT - friend class Q206; + friend class Q207; public: LTabWidget(uint u, QWidget* x1 = 0) : QTabWidget(x1), unique(u) {} @@ -5609,7 +5609,7 @@ public: class LTableView : public QTableView { Q_OBJECT - friend class Q207; + friend class Q208; public: LTableView(uint u, QWidget* x1 = 0) : QTableView(x1), unique(u) {} @@ -5685,7 +5685,7 @@ public: class LTableWidget : public QTableWidget { Q_OBJECT - friend class Q208; + friend class Q209; public: LTableWidget(uint u, QWidget* x1 = 0) : QTableWidget(x1), unique(u) {} LTableWidget(uint u, int x1, int x2, QWidget* x3 = 0) : QTableWidget(x1, x2, x3), unique(u) {} @@ -5765,7 +5765,7 @@ public: class LTapAndHoldGesture : public QTapAndHoldGesture { Q_OBJECT - friend class Q209; + friend class Q210; public: static NumList overrideIds; @@ -5779,7 +5779,7 @@ public: class LTapGesture : public QTapGesture { Q_OBJECT - friend class Q210; + friend class Q211; public: static NumList overrideIds; @@ -5793,7 +5793,7 @@ public: class LTextBlockGroup : public QTextBlockGroup { Q_OBJECT - friend class Q213; + friend class Q214; public: static NumList overrideIds; @@ -5810,7 +5810,7 @@ public: class LTextBrowser : public QTextBrowser { Q_OBJECT - friend class Q214; + friend class Q215; public: LTextBrowser(uint u, QWidget* x1 = 0) : QTextBrowser(x1), unique(u) {} @@ -5867,7 +5867,7 @@ public: class LTextDocument : public QTextDocument { Q_OBJECT - friend class Q215; + friend class Q216; public: LTextDocument(uint u, QObject* x1 = 0) : QTextDocument(x1), unique(u) {} LTextDocument(uint u, const QString& x1, QObject* x2 = 0) : QTextDocument(x1, x2), unique(u) {} @@ -5886,7 +5886,7 @@ public: class LTextEdit : public QTextEdit { Q_OBJECT - friend class Q216; + friend class Q217; public: LTextEdit(uint u, QWidget* x1 = 0) : QTextEdit(x1), unique(u) {} LTextEdit(uint u, const QString& x1, QWidget* x2 = 0) : QTextEdit(x1, x2), unique(u) {} @@ -5944,7 +5944,7 @@ public: class LTextFrame : public QTextFrame { Q_OBJECT - friend class Q217; + friend class Q218; public: LTextFrame(uint u, QTextDocument* x1) : QTextFrame(x1), unique(u) {} @@ -5959,7 +5959,7 @@ public: class LTextList : public QTextList { Q_OBJECT - friend class Q218; + friend class Q219; public: static NumList overrideIds; @@ -5976,7 +5976,7 @@ public: class LTextObject : public QTextObject { Q_OBJECT - friend class Q219; + friend class Q220; public: static NumList overrideIds; @@ -5990,7 +5990,7 @@ public: class LTextTable : public QTextTable { Q_OBJECT - friend class Q220; + friend class Q221; public: static NumList overrideIds; @@ -6004,7 +6004,7 @@ public: class LTimeEdit : public QTimeEdit { Q_OBJECT - friend class Q221; + friend class Q222; public: LTimeEdit(uint u, QWidget* x1 = 0) : QTimeEdit(x1), unique(u) {} LTimeEdit(uint u, const QTime& x1, QWidget* x2 = 0) : QTimeEdit(x1, x2), unique(u) {} @@ -6061,7 +6061,7 @@ public: class LTimeLine : public QTimeLine { Q_OBJECT - friend class Q222; + friend class Q223; public: LTimeLine(uint u, int x1 = 1000, QObject* x2 = 0) : QTimeLine(x1, x2), unique(u) {} @@ -6077,7 +6077,7 @@ public: class LTimer : public QTimer { Q_OBJECT - friend class Q223; + friend class Q224; public: LTimer(uint u, QObject* x1 = 0) : QTimer(x1), unique(u) {} @@ -6092,7 +6092,7 @@ public: class LToolBar : public QToolBar { Q_OBJECT - friend class Q224; + friend class Q225; public: LToolBar(uint u, const QString& x1, QWidget* x2 = 0) : QToolBar(x1, x2), unique(u) {} LToolBar(uint u, QWidget* x1 = 0) : QToolBar(x1), unique(u) {} @@ -6142,7 +6142,7 @@ public: class LToolBox : public QToolBox { Q_OBJECT - friend class Q225; + friend class Q226; public: LToolBox(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QToolBox(x1, x2), unique(u) {} @@ -6193,7 +6193,7 @@ public: class LToolButton : public QToolButton { Q_OBJECT - friend class Q226; + friend class Q227; public: LToolButton(uint u, QWidget* x1 = 0) : QToolButton(x1), unique(u) {} @@ -6245,7 +6245,7 @@ public: class LTranslator : public QTranslator { Q_OBJECT - friend class Q227; + friend class Q228; public: LTranslator(uint u, QObject* x1 = 0) : QTranslator(x1), unique(u) {} @@ -6262,7 +6262,7 @@ public: class LTreeView : public QTreeView { Q_OBJECT - friend class Q228; + friend class Q229; public: LTreeView(uint u, QWidget* x1 = 0) : QTreeView(x1), unique(u) {} @@ -6345,7 +6345,7 @@ public: class LTreeWidget : public QTreeWidget { Q_OBJECT - friend class Q229; + friend class Q230; public: LTreeWidget(uint u, QWidget* x1 = 0) : QTreeWidget(x1), unique(u) {} @@ -6431,7 +6431,7 @@ public: class LUndoGroup : public QUndoGroup { Q_OBJECT - friend class Q231; + friend class Q232; public: LUndoGroup(uint u, QObject* x1 = 0) : QUndoGroup(x1), unique(u) {} @@ -6446,7 +6446,7 @@ public: class LUndoStack : public QUndoStack { Q_OBJECT - friend class Q232; + friend class Q233; public: LUndoStack(uint u, QObject* x1 = 0) : QUndoStack(x1), unique(u) {} @@ -6461,7 +6461,7 @@ public: class LUndoView : public QUndoView { Q_OBJECT - friend class Q233; + friend class Q234; public: LUndoView(uint u, QWidget* x1 = 0) : QUndoView(x1), unique(u) {} LUndoView(uint u, QUndoStack* x1, QWidget* x2 = 0) : QUndoView(x1, x2), unique(u) {} @@ -6541,7 +6541,7 @@ public: class LVBoxLayout : public QVBoxLayout { Q_OBJECT - friend class Q234; + friend class Q235; public: LVBoxLayout(uint u) : unique(u) {} LVBoxLayout(uint u, QWidget* x1) : QVBoxLayout(x1), unique(u) {} @@ -6575,7 +6575,7 @@ public: class LValidator : public QValidator { Q_OBJECT - friend class Q235; + friend class Q236; public: LValidator(uint u, QObject* x1 = 0) : QValidator(x1), unique(u) {} @@ -6592,7 +6592,7 @@ public: class LVariantAnimation : public QVariantAnimation { Q_OBJECT - friend class Q236; + friend class Q237; public: LVariantAnimation(uint u, QObject* x1 = 0) : QVariantAnimation(x1), unique(u) {} @@ -6613,7 +6613,7 @@ public: class LWidget : public QWidget { Q_OBJECT - friend class Q245; + friend class Q246; public: LWidget(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QWidget(x1, x2), unique(u) {} @@ -6662,7 +6662,7 @@ public: class LWidgetAction : public QWidgetAction { Q_OBJECT - friend class Q246; + friend class Q247; public: LWidgetAction(uint u, QObject* x1) : QWidgetAction(x1), unique(u) {} @@ -6679,7 +6679,7 @@ public: class LWindow : public QWindow { Q_OBJECT - friend class Q247; + friend class Q248; public: LWindow(uint u, QScreen* x1 = 0) : QWindow(x1), unique(u) {} LWindow(uint u, QWindow* x1) : QWindow(x1), unique(u) {} @@ -6715,7 +6715,7 @@ public: class LWizard : public QWizard { Q_OBJECT - friend class Q248; + friend class Q249; public: LWizard(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QWizard(x1, x2), unique(u) {} @@ -6770,7 +6770,7 @@ public: class LWizardPage : public QWizardPage { Q_OBJECT - friend class Q249; + friend class Q250; public: LWizardPage(uint u, QWidget* x1 = 0) : QWizardPage(x1), unique(u) {} diff --git a/src/gen/_main_q_methods.h b/src/gen/_main_q_methods.h index 1fe20f5..5306a23 100644 --- a/src/gen/_main_q_methods.h +++ b/src/gen/_main_q_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class EQL_EXPORT Q139 : public QObject { // QObject +class EQL_EXPORT Q140 : public QObject { // QObject Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LObject(u, x1); } @@ -45,7 +45,7 @@ public: Q_INVOKABLE QString Str(const char* x1, const char* x2 = 0, int x3 = -1) { return QObject::tr(x1, x2, x3); } }; -class EQL_EXPORT Q1 : public Q139 { // QAbstractAnimation +class EQL_EXPORT Q1 : public Q140 { // QAbstractAnimation Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LAbstractAnimation(u, x1); } @@ -62,7 +62,7 @@ public: Q_INVOKABLE int MtotalDuration(QAbstractAnimation* o) const { return o->totalDuration(); } }; -class EQL_EXPORT Q3 : public Q139 { // QAbstractItemDelegate +class EQL_EXPORT Q3 : public Q140 { // QAbstractItemDelegate Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LAbstractItemDelegate(u, x1); } @@ -77,7 +77,7 @@ public: Q_INVOKABLE void MupdateEditorGeometry(QAbstractItemDelegate* o, QWidget* x1, const QStyleOptionViewItem& x2, const QModelIndex& x3) const { o->updateEditorGeometry(x1, x2, x3); } }; -class EQL_EXPORT Q4 : public Q139 { // QAbstractItemModel +class EQL_EXPORT Q4 : public Q140 { // QAbstractItemModel Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LAbstractItemModel(u, x1); } @@ -178,7 +178,7 @@ public: Q_INVOKABLE int MsupportedDropActions(QAbstractProxyModel* o) const { return o->supportedDropActions(); } }; -class EQL_EXPORT Q14 : public Q139 { // QAbstractState +class EQL_EXPORT Q14 : public Q140 { // QAbstractState Q_OBJECT public: Q_INVOKABLE bool Mactive(QAbstractState* o) const { return o->active(); } @@ -195,7 +195,7 @@ public: Q_INVOKABLE QModelIndex Msibling(QAbstractTableModel* o, int x1, int x2, const QModelIndex& x3) const { return o->sibling(x1, x2, x3); } }; -class EQL_EXPORT Q16 : public Q139 { // QAbstractTextDocumentLayout +class EQL_EXPORT Q16 : public Q140 { // QAbstractTextDocumentLayout Q_OBJECT public: Q_INVOKABLE void* C(uint u, QTextDocument* x1) { return new LAbstractTextDocumentLayout(u, x1); } @@ -211,7 +211,7 @@ public: Q_INVOKABLE QTextCharFormat Mformat(QAbstractTextDocumentLayout* o, int x1) { return ((LAbstractTextDocumentLayout*)o)->format(x1); } }; -class EQL_EXPORT Q17 : public Q139 { // QAbstractTransition +class EQL_EXPORT Q17 : public Q140 { // QAbstractTransition Q_OBJECT public: Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LAbstractTransition(u, x1); } @@ -228,7 +228,7 @@ public: Q_INVOKABLE int MtransitionType(QAbstractTransition* o) const { return o->transitionType(); } }; -class EQL_EXPORT Q19 : public Q139 { // QAction +class EQL_EXPORT Q19 : public Q140 { // QAction Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1) { return new LAction(u, x1); } @@ -283,7 +283,7 @@ public: Q_INVOKABLE QString MwhatsThis(QAction* o) const { return o->whatsThis(); } }; -class EQL_EXPORT Q20 : public Q139 { // QActionGroup +class EQL_EXPORT Q20 : public Q140 { // QActionGroup Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1) { return new LActionGroup(u, x1); } @@ -312,7 +312,7 @@ public: Q_INVOKABLE QAbstractAnimation* MtakeAnimation(QAnimationGroup* o, int x1) { return o->takeAnimation(x1); } }; -class EQL_EXPORT Q27 : public Q139 { // QButtonGroup +class EQL_EXPORT Q27 : public Q140 { // QButtonGroup Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LButtonGroup(u, x1); } @@ -328,7 +328,7 @@ public: Q_INVOKABLE void MsetId(QButtonGroup* o, QAbstractButton* x1, int x2) { o->setId(x1, x2); } }; -class EQL_EXPORT Q36 : public Q139 { // QClipboard +class EQL_EXPORT Q36 : public Q140 { // QClipboard Q_OBJECT public: Q_INVOKABLE void Mclear(QClipboard* o, QClipboard::Mode x1 = QClipboard::Clipboard) { o->clear(x1); } @@ -348,7 +348,7 @@ public: Q_INVOKABLE QString Mtext(QClipboard* o, QString& x1, QClipboard::Mode x2 = QClipboard::Clipboard) const { return o->text(x1, x2); } }; -class EQL_EXPORT Q42 : public Q139 { // QCompleter +class EQL_EXPORT Q42 : public Q140 { // QCompleter Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LCompleter(u, x1); } @@ -386,7 +386,7 @@ public: Q_INVOKABLE bool MwrapAround(QCompleter* o) const { return o->wrapAround(); } }; -class EQL_EXPORT Q43 : public Q139 { // QCoreApplication +class EQL_EXPORT Q43 : public Q140 { // QCoreApplication Q_OBJECT public: Q_INVOKABLE void MinstallNativeEventFilter(QCoreApplication* o, QAbstractNativeEventFilter* x1) { o->installNativeEventFilter(x1); } @@ -433,7 +433,7 @@ public: Q_INVOKABLE QString Stranslate(const char* x1, const char* x2, const char* x3 = 0, int x4 = -1) { return QCoreApplication::translate(x1, x2, x3, x4); } }; -class EQL_EXPORT Q44 : public Q139 { // QDataWidgetMapper +class EQL_EXPORT Q44 : public Q140 { // QDataWidgetMapper Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LDataWidgetMapper(u, x1); } @@ -501,7 +501,7 @@ public: Q_INVOKABLE int MsupportedDropActions(QDirModel* o) const { return o->supportedDropActions(); } }; -class EQL_EXPORT Q55 : public Q139 { // QDrag +class EQL_EXPORT Q55 : public Q140 { // QDrag Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1) { return new LDrag(u, x1); } @@ -520,7 +520,7 @@ public: Q_INVOKABLE QObject* Mtarget(QDrag* o) const { return o->target(); } }; -class EQL_EXPORT Q57 : public Q139 { // QEventLoop +class EQL_EXPORT Q57 : public Q140 { // QEventLoop Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LEventLoop(u, x1); } @@ -544,7 +544,7 @@ public: Q_INVOKABLE void MsetEventType(QEventTransition* o, QEvent::Type x1) { o->setEventType(x1); } }; -class EQL_EXPORT Q62 : public Q139 { // QFileSelector +class EQL_EXPORT Q62 : public Q140 { // QFileSelector Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LFileSelector(u, x1); } @@ -606,7 +606,7 @@ public: Q_INVOKABLE int MsupportedDropActions(QFileSystemModel* o) const { return o->supportedDropActions(); } }; -class EQL_EXPORT Q64 : public Q139 { // QFileSystemWatcher +class EQL_EXPORT Q64 : public Q140 { // QFileSystemWatcher Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LFileSystemWatcher(u, x1); } @@ -625,7 +625,7 @@ public: Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LFinalState(u, x1); } }; -class EQL_EXPORT Q71 : public Q139 { // QGesture +class EQL_EXPORT Q71 : public Q140 { // QGesture Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LGesture(u, x1); } @@ -639,7 +639,7 @@ public: Q_INVOKABLE void MunsetHotSpot(QGesture* o) { o->unsetHotSpot(); } }; -class EQL_EXPORT Q72 : public Q139 { // QGraphicsAnchor +class EQL_EXPORT Q72 : public Q140 { // QGraphicsAnchor Q_OBJECT public: Q_INVOKABLE void MsetSizePolicy(QGraphicsAnchor* o, QSizePolicy::Policy x1) { o->setSizePolicy(x1); } @@ -649,7 +649,7 @@ public: Q_INVOKABLE void MunsetSpacing(QGraphicsAnchor* o) { o->unsetSpacing(); } }; -class EQL_EXPORT Q76 : public Q139 { // QGraphicsEffect +class EQL_EXPORT Q76 : public Q140 { // QGraphicsEffect Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LGraphicsEffect(u, x1); } @@ -662,7 +662,7 @@ public: Q_INVOKABLE void MupdateBoundingRect(QGraphicsEffect* o) { ((LGraphicsEffect*)o)->updateBoundingRect(); } }; -class EQL_EXPORT Q77 : public Q139 { // QGraphicsObject +class EQL_EXPORT Q77 : public Q140 { // QGraphicsObject Q_OBJECT public: Q_INVOKABLE void MgrabGesture(QGraphicsObject* o, Qt::GestureType x1, Qt::GestureFlags x2 = Qt::GestureFlags()) { o->grabGesture(x1, x2); } @@ -677,7 +677,7 @@ public: Q_INVOKABLE QBrush MopacityMask(QGraphicsOpacityEffect* o) const { return o->opacityMask(); } }; -class EQL_EXPORT Q82 : public Q139 { // QGraphicsScene +class EQL_EXPORT Q82 : public Q140 { // QGraphicsScene Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LGraphicsScene(u, x1); } @@ -791,7 +791,7 @@ public: Q_INVOKABLE int Mtype(QGraphicsTextItem* o) const { return o->type(); } }; -class EQL_EXPORT Q85 : public Q139 { // QGraphicsTransform +class EQL_EXPORT Q85 : public Q140 { // QGraphicsTransform Q_OBJECT public: }; @@ -916,7 +916,7 @@ public: Q_INVOKABLE void MsetHistoryType(QHistoryState* o, QHistoryState::HistoryType x1) { o->setHistoryType(x1); } }; -class EQL_EXPORT Q104 : public Q139 { // QIODevice +class EQL_EXPORT Q105 : public Q140 { // QIODevice Q_OBJECT public: Q_INVOKABLE bool MatEnd(QIODevice* o) const { return o->atEnd(); } @@ -956,7 +956,7 @@ public: Q_INVOKABLE void MsetOpenMode(QIODevice* o, QIODevice::OpenMode x1) { ((LIODevice*)o)->setOpenMode(x1); } }; -class EQL_EXPORT Q105 : public Q9 { // QIdentityProxyModel +class EQL_EXPORT Q106 : public Q9 { // QIdentityProxyModel Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LIdentityProxyModel(u, x1); } @@ -979,7 +979,7 @@ public: Q_INVOKABLE QModelIndex Msibling(QIdentityProxyModel* o, int x1, int x2, const QModelIndex& x3) const { return o->sibling(x1, x2, x3); } }; -class EQL_EXPORT Q107 : public Q139 { // QInputMethod +class EQL_EXPORT Q108 : public Q140 { // QInputMethod Q_OBJECT public: Q_INVOKABLE QRectF McursorRectangle(QInputMethod* o) const { return o->cursorRectangle(); } @@ -996,7 +996,7 @@ public: Q_INVOKABLE QVariant SqueryFocusObject(Qt::InputMethodQuery x1, QVariant x2) { return QInputMethod::queryFocusObject(x1, x2); } }; -class EQL_EXPORT Q109 : public Q3 { // QItemDelegate +class EQL_EXPORT Q110 : public Q3 { // QItemDelegate Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LItemDelegate(u, x1); } @@ -1013,7 +1013,7 @@ public: Q_INVOKABLE void MupdateEditorGeometry(QItemDelegate* o, QWidget* x1, const QStyleOptionViewItem& x2, const QModelIndex& x3) const { o->updateEditorGeometry(x1, x2, x3); } }; -class EQL_EXPORT Q110 : public Q139 { // QItemSelectionModel +class EQL_EXPORT Q111 : public Q140 { // QItemSelectionModel Q_OBJECT public: Q_INVOKABLE void* C(uint u, QAbstractItemModel* x1 = 0) { return new LItemSelectionModel(u, x1); } @@ -1035,7 +1035,7 @@ public: Q_INVOKABLE void MemitSelectionChanged(QItemSelectionModel* o, const QItemSelection& x1, const QItemSelection& x2) { ((LItemSelectionModel*)o)->emitSelectionChanged(x1, x2); } }; -class EQL_EXPORT Q111 : public Q58 { // QKeyEventTransition +class EQL_EXPORT Q112 : public Q58 { // QKeyEventTransition Q_OBJECT public: Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LKeyEventTransition(u, x1); } @@ -1046,7 +1046,7 @@ public: Q_INVOKABLE void MsetModifierMask(QKeyEventTransition* o, Qt::KeyboardModifiers x1) { o->setModifierMask(x1); } }; -class EQL_EXPORT Q114 : public Q139 { // QLayout +class EQL_EXPORT Q115 : public Q140 { // QLayout Q_OBJECT public: Q_INVOKABLE bool Mactivate(QLayout* o) { return o->activate(); } @@ -1087,7 +1087,7 @@ public: Q_INVOKABLE QSize SclosestAcceptableSize(const QWidget* x1, const QSize& x2) { return QLayout::closestAcceptableSize(x1, x2); } }; -class EQL_EXPORT Q115 : public Q139 { // QLibrary +class EQL_EXPORT Q116 : public Q140 { // QLibrary Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LLibrary(u, x1); } @@ -1111,7 +1111,7 @@ public: Q_INVOKABLE QFunctionPointer Sresolve(const QString& x1, const QString& x2, const char* x3) { return QLibrary::resolve(x1, x2, x3); } }; -class EQL_EXPORT Q132 : public Q139 { // QMimeData +class EQL_EXPORT Q133 : public Q140 { // QMimeData Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LMimeData(u); } @@ -1138,7 +1138,7 @@ public: Q_INVOKABLE QList Murls(QMimeData* o) const { return o->urls(); } }; -class EQL_EXPORT Q133 : public Q58 { // QMouseEventTransition +class EQL_EXPORT Q134 : public Q58 { // QMouseEventTransition Q_OBJECT public: Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LMouseEventTransition(u, x1); } @@ -1151,7 +1151,7 @@ public: Q_INVOKABLE void MsetModifierMask(QMouseEventTransition* o, Qt::KeyboardModifiers x1) { o->setModifierMask(x1); } }; -class EQL_EXPORT Q134 : public Q139 { // QMovie +class EQL_EXPORT Q135 : public Q140 { // QMovie Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LMovie(u, x1); } @@ -1180,7 +1180,7 @@ public: Q_INVOKABLE QList SsupportedFormats() { return QMovie::supportedFormats(); } }; -class EQL_EXPORT Q140 : public Q139 { // QObjectCleanupHandler +class EQL_EXPORT Q141 : public Q140 { // QObjectCleanupHandler Q_OBJECT public: Q_INVOKABLE QObject* Madd(QObjectCleanupHandler* o, QObject* x1) { return o->add(x1); } @@ -1189,7 +1189,7 @@ public: Q_INVOKABLE void Mremove(QObjectCleanupHandler* o, QObject* x1) { o->remove(x1); } }; -class EQL_EXPORT Q141 : public Q139 { // QOpenGLContext +class EQL_EXPORT Q142 : public Q140 { // QOpenGLContext Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LOpenGLContext(u, x1); } @@ -1218,7 +1218,7 @@ public: Q_INVOKABLE bool SsupportsThreadedOpenGL() { return QOpenGLContext::supportsThreadedOpenGL(); } }; -class EQL_EXPORT Q142 : public Q139 { // QOpenGLShader +class EQL_EXPORT Q143 : public Q140 { // QOpenGLShader Q_OBJECT public: Q_INVOKABLE void* C(uint u, QOpenGLShader::ShaderType x1, QObject* x2 = 0) { return new LOpenGLShader(u, x1, x2); } @@ -1234,7 +1234,7 @@ public: Q_INVOKABLE bool ShasOpenGLShaders(QOpenGLShader::ShaderType x1, QOpenGLContext* x2 = 0) { return QOpenGLShader::hasOpenGLShaders(x1, x2); } }; -class EQL_EXPORT Q143 : public Q139 { // QOpenGLShaderProgram +class EQL_EXPORT Q144 : public Q140 { // QOpenGLShaderProgram Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LOpenGLShaderProgram(u, x1); } @@ -1326,7 +1326,7 @@ public: Q_INVOKABLE bool ShasOpenGLShaderPrograms(QOpenGLContext* x1 = 0) { return QOpenGLShaderProgram::hasOpenGLShaderPrograms(x1); } }; -class EQL_EXPORT Q148 : public Q71 { // QPanGesture +class EQL_EXPORT Q149 : public Q71 { // QPanGesture Q_OBJECT public: Q_INVOKABLE qreal Macceleration(QPanGesture* o) const { return o->acceleration(); } @@ -1338,14 +1338,14 @@ public: Q_INVOKABLE void MsetOffset(QPanGesture* o, const QPointF& x1) { o->setOffset(x1); } }; -class EQL_EXPORT Q149 : public Q21 { // QParallelAnimationGroup +class EQL_EXPORT Q150 : public Q21 { // QParallelAnimationGroup Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LParallelAnimationGroup(u, x1); } Q_INVOKABLE int Mduration(QParallelAnimationGroup* o) const { return o->duration(); } }; -class EQL_EXPORT Q150 : public Q1 { // QPauseAnimation +class EQL_EXPORT Q151 : public Q1 { // QPauseAnimation Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LPauseAnimation(u, x1); } @@ -1354,7 +1354,7 @@ public: Q_INVOKABLE int Mduration(QPauseAnimation* o) const { return o->duration(); } }; -class EQL_EXPORT Q151 : public Q139 { // QPdfWriter +class EQL_EXPORT Q152 : public Q140 { // QPdfWriter Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1) { return new LPdfWriter(u, x1); } @@ -1373,7 +1373,7 @@ public: Q_INVOKABLE bool MnewPage(QPdfWriter* o) { return o->newPage(); } }; -class EQL_EXPORT Q152 : public Q71 { // QPinchGesture +class EQL_EXPORT Q153 : public Q71 { // QPinchGesture Q_OBJECT public: Q_INVOKABLE QPointF McenterPoint(QPinchGesture* o) const { return o->centerPoint(); } @@ -1400,7 +1400,7 @@ public: Q_INVOKABLE qreal MtotalScaleFactor(QPinchGesture* o) const { return o->totalScaleFactor(); } }; -class EQL_EXPORT Q153 : public Q16 { // QPlainTextDocumentLayout +class EQL_EXPORT Q154 : public Q16 { // QPlainTextDocumentLayout Q_OBJECT public: Q_INVOKABLE void* C(uint u, QTextDocument* x1) { return new LPlainTextDocumentLayout(u, x1); } @@ -1416,7 +1416,7 @@ public: Q_INVOKABLE int MpageCount(QPlainTextDocumentLayout* o) const { return o->pageCount(); } }; -class EQL_EXPORT Q155 : public Q139 { // QPluginLoader +class EQL_EXPORT Q156 : public Q140 { // QPluginLoader Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LPluginLoader(u, x1); } @@ -1435,7 +1435,7 @@ public: Q_INVOKABLE QVector SstaticPlugins() { return QPluginLoader::staticPlugins(); } }; -class EQL_EXPORT Q159 : public Q104 { // QProcess +class EQL_EXPORT Q160 : public Q105 { // QProcess Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LProcess(u, x1); } @@ -1489,7 +1489,7 @@ public: Q_INVOKABLE QStringList SsystemEnvironment() { return QProcess::systemEnvironment(); } }; -class EQL_EXPORT Q169 : public Q139 { // QScreen +class EQL_EXPORT Q170 : public Q140 { // QScreen Q_OBJECT public: Q_INVOKABLE int MangleBetween(QScreen* o, Qt::ScreenOrientation x1, Qt::ScreenOrientation x2) const { return o->angleBetween(x1, x2); } @@ -1526,7 +1526,7 @@ public: Q_INVOKABLE QSize MvirtualSize(QScreen* o) const { return o->virtualSize(); } }; -class EQL_EXPORT Q172 : public Q21 { // QSequentialAnimationGroup +class EQL_EXPORT Q173 : public Q21 { // QSequentialAnimationGroup Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSequentialAnimationGroup(u, x1); } @@ -1536,7 +1536,7 @@ public: Q_INVOKABLE int Mduration(QSequentialAnimationGroup* o) const { return o->duration(); } }; -class EQL_EXPORT Q173 : public Q139 { // QSessionManager +class EQL_EXPORT Q174 : public Q140 { // QSessionManager Q_OBJECT public: Q_INVOKABLE bool MallowsErrorInteraction(QSessionManager* o) { return o->allowsErrorInteraction(); } @@ -1557,7 +1557,7 @@ public: Q_INVOKABLE void MsetRestartHint(QSessionManager* o, QSessionManager::RestartHint x1) { o->setRestartHint(x1); } }; -class EQL_EXPORT Q174 : public Q139 { // QSettings +class EQL_EXPORT Q175 : public Q140 { // QSettings Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1, const QString& x2 = QString(), QObject* x3 = 0) { return new LSettings(u, x1, x2, x3); } @@ -1599,7 +1599,7 @@ public: Q_INVOKABLE void SsetPath(QSettings::Format x1, QSettings::Scope x2, const QString& x3) { QSettings::setPath(x1, x2, x3); } }; -class EQL_EXPORT Q175 : public Q139 { // QShortcut +class EQL_EXPORT Q176 : public Q140 { // QShortcut Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LShortcut(u, x1); } @@ -1618,7 +1618,7 @@ public: Q_INVOKABLE QString MwhatsThis(QShortcut* o) const { return o->whatsThis(); } }; -class EQL_EXPORT Q176 : public Q139 { // QSignalMapper +class EQL_EXPORT Q177 : public Q140 { // QSignalMapper Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSignalMapper(u, x1); } @@ -1633,7 +1633,7 @@ public: Q_INVOKABLE void MsetMapping(QSignalMapper* o, QObject* x1, QObject* x2) { o->setMapping(x1, x2); } }; -class EQL_EXPORT Q177 : public Q17 { // QSignalTransition +class EQL_EXPORT Q178 : public Q17 { // QSignalTransition Q_OBJECT public: Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LSignalTransition(u, x1); } @@ -1644,7 +1644,7 @@ public: Q_INVOKABLE QByteArray Msignal(QSignalTransition* o) const { return o->signal(); } }; -class EQL_EXPORT Q180 : public Q9 { // QSortFilterProxyModel +class EQL_EXPORT Q181 : public Q9 { // QSortFilterProxyModel Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSortFilterProxyModel(u, x1); } @@ -1699,7 +1699,7 @@ public: Q_INVOKABLE int MsupportedDropActions(QSortFilterProxyModel* o) const { return o->supportedDropActions(); } }; -class EQL_EXPORT Q190 : public Q114 { // QStackedLayout +class EQL_EXPORT Q191 : public Q115 { // QStackedLayout Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LStackedLayout(u); } @@ -1723,7 +1723,7 @@ public: Q_INVOKABLE QLayoutItem* MtakeAt(QStackedLayout* o, int x1) { return o->takeAt(x1); } }; -class EQL_EXPORT Q192 : public Q4 { // QStandardItemModel +class EQL_EXPORT Q193 : public Q4 { // QStandardItemModel Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LStandardItemModel(u, x1); } @@ -1783,7 +1783,7 @@ public: Q_INVOKABLE int MsupportedDropActions(QStandardItemModel* o) const { return o->supportedDropActions(); } }; -class EQL_EXPORT Q193 : public Q14 { // QState +class EQL_EXPORT Q194 : public Q14 { // QState Q_OBJECT public: Q_INVOKABLE void* C(uint u, QState* x1 = 0) { return new LState(u, x1); } @@ -1802,7 +1802,7 @@ public: Q_INVOKABLE QList Mtransitions(QState* o) const { return o->transitions(); } }; -class EQL_EXPORT Q194 : public Q193 { // QStateMachine +class EQL_EXPORT Q195 : public Q194 { // QStateMachine Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LStateMachine(u, x1); } @@ -1826,7 +1826,7 @@ public: Q_INVOKABLE bool MeventFilter(QStateMachine* o, QObject* x1, QEvent* x2) { return o->eventFilter(x1, x2); } }; -class EQL_EXPORT Q196 : public Q6 { // QStringListModel +class EQL_EXPORT Q197 : public Q6 { // QStringListModel Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LStringListModel(u, x1); } @@ -1844,7 +1844,7 @@ public: Q_INVOKABLE int MsupportedDropActions(QStringListModel* o) const { return o->supportedDropActions(); } }; -class EQL_EXPORT Q197 : public Q139 { // QStyle +class EQL_EXPORT Q198 : public Q140 { // QStyle Q_OBJECT public: Q_INVOKABLE int McombinedLayoutSpacing(QStyle* o, QSizePolicy::ControlTypes x1, QSizePolicy::ControlTypes x2, Qt::Orientation x3, QStyleOption* x4 = 0, QWidget* x5 = 0) const { return o->combinedLayoutSpacing(x1, x2, x3, x4, x5); } @@ -1879,7 +1879,7 @@ public: Q_INVOKABLE QRect SvisualRect(Qt::LayoutDirection x1, const QRect& x2, const QRect& x3) { return QStyle::visualRect(x1, x2, x3); } }; -class EQL_EXPORT Q198 : public Q139 { // QStyleHints +class EQL_EXPORT Q199 : public Q140 { // QStyleHints Q_OBJECT public: Q_INVOKABLE int McursorFlashTime(QStyleHints* o) const { return o->cursorFlashTime(); } @@ -1900,7 +1900,7 @@ public: Q_INVOKABLE bool MuseRtlExtensions(QStyleHints* o) const { return o->useRtlExtensions(); } }; -class EQL_EXPORT Q199 : public Q3 { // QStyledItemDelegate +class EQL_EXPORT Q200 : public Q3 { // QStyledItemDelegate Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LStyledItemDelegate(u, x1); } @@ -1915,7 +1915,7 @@ public: Q_INVOKABLE void MupdateEditorGeometry(QStyledItemDelegate* o, QWidget* x1, const QStyleOptionViewItem& x2, const QModelIndex& x3) const { o->updateEditorGeometry(x1, x2, x3); } }; -class EQL_EXPORT Q202 : public Q71 { // QSwipeGesture +class EQL_EXPORT Q203 : public Q71 { // QSwipeGesture Q_OBJECT public: Q_INVOKABLE int MhorizontalDirection(QSwipeGesture* o) const { return o->horizontalDirection(); } @@ -1924,7 +1924,7 @@ public: Q_INVOKABLE int MverticalDirection(QSwipeGesture* o) const { return o->verticalDirection(); } }; -class EQL_EXPORT Q203 : public Q139 { // QSyntaxHighlighter +class EQL_EXPORT Q204 : public Q140 { // QSyntaxHighlighter Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1) { return new LSyntaxHighlighter(u, x1); } @@ -1943,7 +1943,7 @@ public: Q_INVOKABLE void MsetFormat(QSyntaxHighlighter* o, int x1, int x2, const QFont& x3) { ((LSyntaxHighlighter*)o)->setFormat(x1, x2, x3); } }; -class EQL_EXPORT Q204 : public Q139 { // QSystemTrayIcon +class EQL_EXPORT Q205 : public Q140 { // QSystemTrayIcon Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSystemTrayIcon(u, x1); } @@ -1960,7 +1960,7 @@ public: Q_INVOKABLE bool SsupportsMessages() { return QSystemTrayIcon::supportsMessages(); } }; -class EQL_EXPORT Q209 : public Q71 { // QTapAndHoldGesture +class EQL_EXPORT Q210 : public Q71 { // QTapAndHoldGesture Q_OBJECT public: Q_INVOKABLE QPointF Mposition(QTapAndHoldGesture* o) const { return o->position(); } @@ -1969,14 +1969,14 @@ public: Q_INVOKABLE int Stimeout() { return QTapAndHoldGesture::timeout(); } }; -class EQL_EXPORT Q210 : public Q71 { // QTapGesture +class EQL_EXPORT Q211 : public Q71 { // QTapGesture Q_OBJECT public: Q_INVOKABLE QPointF Mposition(QTapGesture* o) const { return o->position(); } Q_INVOKABLE void MsetPosition(QTapGesture* o, const QPointF& x1) { o->setPosition(x1); } }; -class EQL_EXPORT Q215 : public Q139 { // QTextDocument +class EQL_EXPORT Q216 : public Q140 { // QTextDocument Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTextDocument(u, x1); } @@ -2057,7 +2057,7 @@ public: Q_INVOKABLE bool MuseDesignMetrics(QTextDocument* o) const { return o->useDesignMetrics(); } }; -class EQL_EXPORT Q219 : public Q139 { // QTextObject +class EQL_EXPORT Q220 : public Q140 { // QTextObject Q_OBJECT public: Q_INVOKABLE QTextDocument* Mdocument(QTextObject* o) const { return o->document(); } @@ -2067,7 +2067,7 @@ public: Q_INVOKABLE void MsetFormat(QTextObject* o, const QTextFormat& x1) { ((LTextObject*)o)->setFormat(x1); } }; -class EQL_EXPORT Q222 : public Q139 { // QTimeLine +class EQL_EXPORT Q223 : public Q140 { // QTimeLine Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = 1000, QObject* x2 = 0) { return new LTimeLine(u, x1, x2); } @@ -2096,7 +2096,7 @@ public: Q_INVOKABLE qreal MvalueForTime(QTimeLine* o, int x1) const { return o->valueForTime(x1); } }; -class EQL_EXPORT Q223 : public Q139 { // QTimer +class EQL_EXPORT Q224 : public Q140 { // QTimer Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTimer(u, x1); } @@ -2110,7 +2110,7 @@ public: Q_INVOKABLE int MtimerType(QTimer* o) const { return o->timerType(); } }; -class EQL_EXPORT Q227 : public Q139 { // QTranslator +class EQL_EXPORT Q228 : public Q140 { // QTranslator Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTranslator(u, x1); } @@ -2120,7 +2120,7 @@ public: Q_INVOKABLE QString Mtranslate(QTranslator* o, const char* x1, const char* x2, const char* x3 = 0, int x4 = -1) const { return o->translate(x1, x2, x3, x4); } }; -class EQL_EXPORT Q231 : public Q139 { // QUndoGroup +class EQL_EXPORT Q232 : public Q140 { // QUndoGroup Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LUndoGroup(u, x1); } @@ -2137,7 +2137,7 @@ public: Q_INVOKABLE QString MundoText(QUndoGroup* o) const { return o->undoText(); } }; -class EQL_EXPORT Q232 : public Q139 { // QUndoStack +class EQL_EXPORT Q233 : public Q140 { // QUndoStack Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LUndoStack(u, x1); } @@ -2162,7 +2162,7 @@ public: Q_INVOKABLE QString MundoText(QUndoStack* o) const { return o->undoText(); } }; -class EQL_EXPORT Q235 : public Q139 { // QValidator +class EQL_EXPORT Q236 : public Q140 { // QValidator Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LValidator(u, x1); } @@ -2172,7 +2172,7 @@ public: Q_INVOKABLE int Mvalidate(QValidator* o, QString& x1, int& x2) const { return o->validate(x1, x2); } }; -class EQL_EXPORT Q236 : public Q1 { // QVariantAnimation +class EQL_EXPORT Q237 : public Q1 { // QVariantAnimation Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LVariantAnimation(u, x1); } @@ -2188,7 +2188,7 @@ public: Q_INVOKABLE int Mduration(QVariantAnimation* o) const { return o->duration(); } }; -class EQL_EXPORT Q245 : public Q139 { // QWidget +class EQL_EXPORT Q246 : public Q140 { // QWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LWidget(u, x1, x2); } @@ -2408,7 +2408,7 @@ public: Q_INVOKABLE void SsetTabOrder(QWidget* x1, QWidget* x2) { QWidget::setTabOrder(x1, x2); } }; -class EQL_EXPORT Q246 : public Q19 { // QWidgetAction +class EQL_EXPORT Q247 : public Q19 { // QWidgetAction Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1) { return new LWidgetAction(u, x1); } @@ -2419,7 +2419,7 @@ public: Q_INVOKABLE QList McreatedWidgets(QWidgetAction* o) const { return ((LWidgetAction*)o)->createdWidgets(); } }; -class EQL_EXPORT Q247 : public Q139 { // QWindow +class EQL_EXPORT Q248 : public Q140 { // QWindow Q_OBJECT public: Q_INVOKABLE void* C(uint u, QScreen* x1 = 0) { return new LWindow(u, x1); } @@ -2505,7 +2505,7 @@ public: Q_INVOKABLE QWindow* SfromWinId(WId x1) { return QWindow::fromWinId(x1); } }; -class EQL_EXPORT Q249 : public Q245 { // QWizardPage +class EQL_EXPORT Q250 : public Q246 { // QWizardPage Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LWizardPage(u, x1); } @@ -2532,7 +2532,7 @@ public: Q_INVOKABLE QWizard* Mwizard(QWizardPage* o) const { return ((LWizardPage*)o)->wizard(); } }; -class EQL_EXPORT Q2 : public Q245 { // QAbstractButton +class EQL_EXPORT Q2 : public Q246 { // QAbstractButton Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LAbstractButton(u, x1); } @@ -2559,7 +2559,7 @@ public: Q_INVOKABLE QString Mtext(QAbstractButton* o) const { return o->text(); } }; -class EQL_EXPORT Q11 : public Q245 { // QAbstractSlider +class EQL_EXPORT Q11 : public Q246 { // QAbstractSlider Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LAbstractSlider(u, x1); } @@ -2588,7 +2588,7 @@ public: Q_INVOKABLE void MsetRepeatAction(QAbstractSlider* o, QAbstractSlider::SliderAction x1, int x2 = 500, int x3 = 50) { ((LAbstractSlider*)o)->setRepeatAction(x1, x2, x3); } }; -class EQL_EXPORT Q13 : public Q245 { // QAbstractSpinBox +class EQL_EXPORT Q13 : public Q246 { // QAbstractSpinBox Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LAbstractSpinBox(u, x1); } @@ -2680,7 +2680,7 @@ public: Q_INVOKABLE QIcon SwindowIcon() { return QApplication::windowIcon(); } }; -class EQL_EXPORT Q25 : public Q114 { // QBoxLayout +class EQL_EXPORT Q25 : public Q115 { // QBoxLayout Q_OBJECT public: Q_INVOKABLE void* C(uint u, QBoxLayout::Direction x1, QWidget* x2 = 0) { return new LBoxLayout(u, x1, x2); } @@ -2719,7 +2719,7 @@ public: Q_INVOKABLE QLayoutItem* MtakeAt(QBoxLayout* o, int x1) { return o->takeAt(x1); } }; -class EQL_EXPORT Q26 : public Q104 { // QBuffer +class EQL_EXPORT Q26 : public Q105 { // QBuffer Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LBuffer(u, x1); } @@ -2737,7 +2737,7 @@ public: Q_INVOKABLE qlonglong Msize(QBuffer* o) const { return o->size(); } }; -class EQL_EXPORT Q28 : public Q245 { // QCalendarWidget +class EQL_EXPORT Q28 : public Q246 { // QCalendarWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LCalendarWidget(u, x1); } @@ -2788,7 +2788,7 @@ public: Q_INVOKABLE QSize MsizeHint(QCheckBox* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q39 : public Q245 { // QComboBox +class EQL_EXPORT Q39 : public Q246 { // QComboBox Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LComboBox(u, x1); } @@ -2855,7 +2855,7 @@ public: Q_INVOKABLE QSize MsizeHint(QComboBox* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q41 : public Q197 { // QCommonStyle +class EQL_EXPORT Q41 : public Q198 { // QCommonStyle Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LCommonStyle(u); } @@ -2933,7 +2933,7 @@ public: Q_INVOKABLE void MstepBy(QDateTimeEdit* o, int x1) { o->stepBy(x1); } }; -class EQL_EXPORT Q47 : public Q245 { // QDesktopWidget +class EQL_EXPORT Q47 : public Q246 { // QDesktopWidget Q_OBJECT public: Q_INVOKABLE const QRect MavailableGeometry(QDesktopWidget* o, int x1 = -1) const { return o->availableGeometry(x1); } @@ -2964,7 +2964,7 @@ public: Q_INVOKABLE QSize MsizeHint(QDial* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q49 : public Q245 { // QDialog +class EQL_EXPORT Q49 : public Q246 { // QDialog Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LDialog(u, x1, x2); } @@ -2978,7 +2978,7 @@ public: Q_INVOKABLE QSize MsizeHint(QDialog* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q50 : public Q245 { // QDialogButtonBox +class EQL_EXPORT Q50 : public Q246 { // QDialogButtonBox Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LDialogButtonBox(u, x1); } @@ -3002,7 +3002,7 @@ public: Q_INVOKABLE int MstandardButtons(QDialogButtonBox* o) const { return o->standardButtons(); } }; -class EQL_EXPORT Q52 : public Q245 { // QDockWidget +class EQL_EXPORT Q52 : public Q246 { // QDockWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) { return new LDockWidget(u, x1, x2, x3); } @@ -3047,7 +3047,7 @@ public: Q_INVOKABLE int Mvalidate(QDoubleSpinBox* o, QString& x1, int& x2) const { return o->validate(x1, x2); } }; -class EQL_EXPORT Q54 : public Q235 { // QDoubleValidator +class EQL_EXPORT Q54 : public Q236 { // QDoubleValidator Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LDoubleValidator(u, x1); } @@ -3070,7 +3070,7 @@ public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LErrorMessage(u, x1); } }; -class EQL_EXPORT Q60 : public Q104 { // QFileDevice +class EQL_EXPORT Q60 : public Q105 { // QFileDevice Q_OBJECT public: Q_INVOKABLE int Merror(QFileDevice* o) const { return o->error(); } @@ -3151,7 +3151,7 @@ public: Q_INVOKABLE QUrl SgetSaveFileUrl(QWidget* x1 = 0, const QString& x2 = QString(), const QUrl& x3 = QUrl(), const QString& x4 = QString(), QString* x5 = 0, QFileDialog::Options x6 = 0, const QStringList& x7 = QStringList()) { return QFileDialog::getSaveFileUrl(x1, x2, x3, x4, x5, x6, x7); } }; -class EQL_EXPORT Q66 : public Q245 { // QFocusFrame +class EQL_EXPORT Q66 : public Q246 { // QFocusFrame Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LFocusFrame(u, x1); } @@ -3190,7 +3190,7 @@ public: Q_INVOKABLE QFont SgetFont(bool* x1, QWidget* x2 = 0) { return QFontDialog::getFont(x1, x2); } }; -class EQL_EXPORT Q69 : public Q114 { // QFormLayout +class EQL_EXPORT Q69 : public Q115 { // QFormLayout Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LFormLayout(u, x1); } @@ -3240,7 +3240,7 @@ public: Q_INVOKABLE QLayoutItem* MtakeAt(QFormLayout* o, int x1) { return o->takeAt(x1); } }; -class EQL_EXPORT Q70 : public Q245 { // QFrame +class EQL_EXPORT Q70 : public Q246 { // QFrame Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LFrame(u, x1, x2); } @@ -3330,7 +3330,7 @@ public: Q_INVOKABLE qreal MzScale(QGraphicsScale* o) const { return o->zScale(); } }; -class EQL_EXPORT Q90 : public Q114 { // QGridLayout +class EQL_EXPORT Q90 : public Q115 { // QGridLayout Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LGridLayout(u, x1); } @@ -3374,7 +3374,7 @@ public: Q_INVOKABLE QLayoutItem* MtakeAt(QGridLayout* o, int x1) { return o->takeAt(x1); } }; -class EQL_EXPORT Q91 : public Q245 { // QGroupBox +class EQL_EXPORT Q91 : public Q246 { // QGroupBox Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LGroupBox(u, x1); } @@ -3399,7 +3399,7 @@ public: Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LHBoxLayout(u, x1); } }; -class EQL_EXPORT Q106 : public Q49 { // QInputDialog +class EQL_EXPORT Q107 : public Q49 { // QInputDialog Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LInputDialog(u, x1, x2); } @@ -3453,7 +3453,7 @@ public: Q_INVOKABLE QString SgetText(QWidget* x1, const QString& x2, const QString& x3, QLineEdit::EchoMode x4 = QLineEdit::Normal, const QString& x5 = QString(), bool* x6 = 0, Qt::WindowFlags x7 = 0, Qt::InputMethodHints x8 = Qt::ImhNone) { return QInputDialog::getText(x1, x2, x3, x4, x5, x6, x7, x8); } }; -class EQL_EXPORT Q108 : public Q235 { // QIntValidator +class EQL_EXPORT Q109 : public Q236 { // QIntValidator Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LIntValidator(u, x1); } @@ -3467,7 +3467,7 @@ public: Q_INVOKABLE int Mvalidate(QIntValidator* o, QString& x1, int& x2) const { return o->validate(x1, x2); } }; -class EQL_EXPORT Q112 : public Q70 { // QLCDNumber +class EQL_EXPORT Q113 : public Q70 { // QLCDNumber Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LLCDNumber(u, x1); } @@ -3486,7 +3486,7 @@ public: Q_INVOKABLE QSize MsizeHint(QLCDNumber* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q113 : public Q70 { // QLabel +class EQL_EXPORT Q114 : public Q70 { // QLabel Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LLabel(u, x1, x2); } @@ -3522,7 +3522,7 @@ public: Q_INVOKABLE QSize MsizeHint(QLabel* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q116 : public Q245 { // QLineEdit +class EQL_EXPORT Q117 : public Q246 { // QLineEdit Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LLineEdit(u, x1); } @@ -3587,7 +3587,7 @@ public: Q_INVOKABLE QSize MsizeHint(QLineEdit* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q121 : public Q245 { // QMainWindow +class EQL_EXPORT Q122 : public Q246 { // QMainWindow Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LMainWindow(u, x1, x2); } @@ -3640,7 +3640,7 @@ public: Q_INVOKABLE bool MunifiedTitleAndToolBarOnMac(QMainWindow* o) const { return o->unifiedTitleAndToolBarOnMac(); } }; -class EQL_EXPORT Q123 : public Q245 { // QMdiSubWindow +class EQL_EXPORT Q124 : public Q246 { // QMdiSubWindow Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LMdiSubWindow(u, x1, x2); } @@ -3660,7 +3660,7 @@ public: Q_INVOKABLE QSize MsizeHint(QMdiSubWindow* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q129 : public Q245 { // QMenu +class EQL_EXPORT Q130 : public Q246 { // QMenu Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMenu(u, x1); } @@ -3707,7 +3707,7 @@ public: Q_INVOKABLE QAction* Sexec(const QList& x1, const QPoint& x2, QAction* x3 = 0, QWidget* x4 = 0) { return QMenu::exec(x1, x2, x3, x4); } }; -class EQL_EXPORT Q130 : public Q245 { // QMenuBar +class EQL_EXPORT Q131 : public Q246 { // QMenuBar Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMenuBar(u, x1); } @@ -3736,7 +3736,7 @@ public: Q_INVOKABLE QSize MsizeHint(QMenuBar* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q131 : public Q49 { // QMessageBox +class EQL_EXPORT Q132 : public Q49 { // QMessageBox Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMessageBox(u, x1); } @@ -3786,7 +3786,7 @@ public: Q_INVOKABLE int Swarning(QWidget* x1, const QString& x2, const QString& x3, QMessageBox::StandardButtons x4 = QMessageBox::Ok, QMessageBox::StandardButton x5 = QMessageBox::NoButton) { return QMessageBox::warning(x1, x2, x3, x4, x5); } }; -class EQL_EXPORT Q144 : public Q245 { // QOpenGLWidget +class EQL_EXPORT Q145 : public Q246 { // QOpenGLWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LOpenGLWidget(u, x1, x2); } @@ -3802,7 +3802,7 @@ public: Q_INVOKABLE int MupdateBehavior(QOpenGLWidget* o) const { return o->updateBehavior(); } }; -class EQL_EXPORT Q146 : public Q49 { // QPageSetupDialog +class EQL_EXPORT Q147 : public Q49 { // QPageSetupDialog Q_OBJECT public: Q_INVOKABLE void* C(uint u, QPrinter* x1, QWidget* x2 = 0) { return new LPageSetupDialog(u, x1, x2); } @@ -3814,14 +3814,14 @@ public: Q_INVOKABLE void MsetVisible(QPageSetupDialog* o, bool x1) { o->setVisible(x1); } }; -class EQL_EXPORT Q147 : public Q247 { // QPaintDeviceWindow +class EQL_EXPORT Q148 : public Q248 { // QPaintDeviceWindow Q_OBJECT public: Q_INVOKABLE void Mupdate(QPaintDeviceWindow* o, const QRect& x1) { o->update(x1); } Q_INVOKABLE void Mupdate(QPaintDeviceWindow* o, const QRegion& x1) { o->update(x1); } }; -class EQL_EXPORT Q157 : public Q49 { // QPrintPreviewDialog +class EQL_EXPORT Q158 : public Q49 { // QPrintPreviewDialog Q_OBJECT public: Q_INVOKABLE void* C(uint u, QPrinter* x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) { return new LPrintPreviewDialog(u, x1, x2, x3); } @@ -3832,7 +3832,7 @@ public: Q_INVOKABLE void MsetVisible(QPrintPreviewDialog* o, bool x1) { o->setVisible(x1); } }; -class EQL_EXPORT Q158 : public Q245 { // QPrintPreviewWidget +class EQL_EXPORT Q159 : public Q246 { // QPrintPreviewWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, QPrinter* x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) { return new LPrintPreviewWidget(u, x1, x2, x3); } @@ -3846,7 +3846,7 @@ public: Q_INVOKABLE void MsetVisible(QPrintPreviewWidget* o, bool x1) { o->setVisible(x1); } }; -class EQL_EXPORT Q160 : public Q245 { // QProgressBar +class EQL_EXPORT Q161 : public Q246 { // QProgressBar Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LProgressBar(u, x1); } @@ -3871,7 +3871,7 @@ public: Q_INVOKABLE QSize MsizeHint(QProgressBar* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q161 : public Q49 { // QProgressDialog +class EQL_EXPORT Q162 : public Q49 { // QProgressDialog Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LProgressDialog(u, x1, x2); } @@ -3893,7 +3893,7 @@ public: Q_INVOKABLE QSize MsizeHint(QProgressDialog* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q162 : public Q236 { // QPropertyAnimation +class EQL_EXPORT Q163 : public Q237 { // QPropertyAnimation Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LPropertyAnimation(u, x1); } @@ -3904,7 +3904,7 @@ public: Q_INVOKABLE QObject* MtargetObject(QPropertyAnimation* o) const { return o->targetObject(); } }; -class EQL_EXPORT Q163 : public Q41 { // QProxyStyle +class EQL_EXPORT Q164 : public Q41 { // QProxyStyle Q_OBJECT public: Q_INVOKABLE void* C(uint u, QStyle* x1 = 0) { return new LProxyStyle(u, x1); } @@ -3936,7 +3936,7 @@ public: Q_INVOKABLE void Munpolish(QProxyStyle* o, QApplication* x1) { o->unpolish(x1); } }; -class EQL_EXPORT Q164 : public Q2 { // QPushButton +class EQL_EXPORT Q165 : public Q2 { // QPushButton Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LPushButton(u, x1); } @@ -3955,7 +3955,7 @@ public: Q_INVOKABLE QSize MsizeHint(QPushButton* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q165 : public Q2 { // QRadioButton +class EQL_EXPORT Q166 : public Q2 { // QRadioButton Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LRadioButton(u, x1); } @@ -3965,7 +3965,7 @@ public: Q_INVOKABLE QSize MsizeHint(QRadioButton* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q167 : public Q235 { // QRegExpValidator +class EQL_EXPORT Q168 : public Q236 { // QRegExpValidator Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LRegExpValidator(u, x1); } @@ -3975,7 +3975,7 @@ public: Q_INVOKABLE int Mvalidate(QRegExpValidator* o, QString& x1, int& x2) const { return o->validate(x1, x2); } }; -class EQL_EXPORT Q168 : public Q245 { // QRubberBand +class EQL_EXPORT Q169 : public Q246 { // QRubberBand Q_OBJECT public: Q_INVOKABLE void* C(uint u, QRubberBand::Shape x1, QWidget* x2 = 0) { return new LRubberBand(u, x1, x2); } @@ -3989,7 +3989,7 @@ public: Q_INVOKABLE void MinitStyleOption(QRubberBand* o, QStyleOptionRubberBand* x1) const { ((LRubberBand*)o)->initStyleOption(x1); } }; -class EQL_EXPORT Q171 : public Q11 { // QScrollBar +class EQL_EXPORT Q172 : public Q11 { // QScrollBar Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LScrollBar(u, x1); } @@ -3999,7 +3999,7 @@ public: Q_INVOKABLE QSize MsizeHint(QScrollBar* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q178 : public Q245 { // QSizeGrip +class EQL_EXPORT Q179 : public Q246 { // QSizeGrip Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LSizeGrip(u, x1); } @@ -4007,7 +4007,7 @@ public: Q_INVOKABLE QSize MsizeHint(QSizeGrip* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q179 : public Q11 { // QSlider +class EQL_EXPORT Q180 : public Q11 { // QSlider Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LSlider(u, x1); } @@ -4022,7 +4022,7 @@ public: Q_INVOKABLE QSize MsizeHint(QSlider* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q181 : public Q13 { // QSpinBox +class EQL_EXPORT Q182 : public Q13 { // QSpinBox Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LSpinBox(u, x1); } @@ -4043,7 +4043,7 @@ public: Q_INVOKABLE int Mvalue(QSpinBox* o) const { return o->value(); } }; -class EQL_EXPORT Q182 : public Q245 { // QSplashScreen +class EQL_EXPORT Q183 : public Q246 { // QSplashScreen Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QPixmap& x1 = QPixmap(), Qt::WindowFlags x2 = 0) { return new LSplashScreen(u, x1, x2); } @@ -4055,7 +4055,7 @@ public: Q_INVOKABLE void MsetPixmap(QSplashScreen* o, const QPixmap& x1) { o->setPixmap(x1); } }; -class EQL_EXPORT Q183 : public Q70 { // QSplitter +class EQL_EXPORT Q184 : public Q70 { // QSplitter Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LSplitter(u, x1); } @@ -4087,7 +4087,7 @@ public: Q_INVOKABLE QSize MsizeHint(QSplitter* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q184 : public Q245 { // QSplitterHandle +class EQL_EXPORT Q185 : public Q246 { // QSplitterHandle Q_OBJECT public: Q_INVOKABLE bool MopaqueResize(QSplitterHandle* o) const { return o->opaqueResize(); } @@ -4099,7 +4099,7 @@ public: Q_INVOKABLE QSize MsizeHint(QSplitterHandle* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q191 : public Q70 { // QStackedWidget +class EQL_EXPORT Q192 : public Q70 { // QStackedWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LStackedWidget(u, x1); } @@ -4113,7 +4113,7 @@ public: Q_INVOKABLE QWidget* Mwidget(QStackedWidget* o, int x1) const { return o->widget(x1); } }; -class EQL_EXPORT Q195 : public Q245 { // QStatusBar +class EQL_EXPORT Q196 : public Q246 { // QStatusBar Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LStatusBar(u, x1); } @@ -4129,7 +4129,7 @@ public: Q_INVOKABLE void Mreformat(QStatusBar* o) { ((LStatusBar*)o)->reformat(); } }; -class EQL_EXPORT Q205 : public Q245 { // QTabBar +class EQL_EXPORT Q206 : public Q246 { // QTabBar Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTabBar(u, x1); } @@ -4188,7 +4188,7 @@ public: Q_INVOKABLE QSize MsizeHint(QTabBar* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q206 : public Q245 { // QTabWidget +class EQL_EXPORT Q207 : public Q246 { // QTabWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTabWidget(u, x1); } @@ -4242,13 +4242,13 @@ public: Q_INVOKABLE QSize MsizeHint(QTabWidget* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q213 : public Q219 { // QTextBlockGroup +class EQL_EXPORT Q214 : public Q220 { // QTextBlockGroup Q_OBJECT public: Q_INVOKABLE QList MblockList(QTextBlockGroup* o) const { return ((LTextBlockGroup*)o)->blockList(); } }; -class EQL_EXPORT Q217 : public Q219 { // QTextFrame +class EQL_EXPORT Q218 : public Q220 { // QTextFrame Q_OBJECT public: Q_INVOKABLE void* C(uint u, QTextDocument* x1) { return new LTextFrame(u, x1); } @@ -4262,7 +4262,7 @@ public: Q_INVOKABLE void MsetFrameFormat(QTextFrame* o, const QTextFrameFormat& x1) { o->setFrameFormat(x1); } }; -class EQL_EXPORT Q218 : public Q213 { // QTextList +class EQL_EXPORT Q219 : public Q214 { // QTextList Q_OBJECT public: Q_INVOKABLE void Madd(QTextList* o, const QTextBlock& x1) { o->add(x1); } @@ -4276,7 +4276,7 @@ public: Q_INVOKABLE void MsetFormat(QTextList* o, const QTextListFormat& x1) { o->setFormat(x1); } }; -class EQL_EXPORT Q220 : public Q217 { // QTextTable +class EQL_EXPORT Q221 : public Q218 { // QTextTable Q_OBJECT public: Q_INVOKABLE void MappendColumns(QTextTable* o, int x1) { o->appendColumns(x1); } @@ -4300,14 +4300,14 @@ public: Q_INVOKABLE void MsplitCell(QTextTable* o, int x1, int x2, int x3, int x4) { o->splitCell(x1, x2, x3, x4); } }; -class EQL_EXPORT Q221 : public Q46 { // QTimeEdit +class EQL_EXPORT Q222 : public Q46 { // QTimeEdit Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTimeEdit(u, x1); } Q_INVOKABLE void* C(uint u, const QTime& x1, QWidget* x2 = 0) { return new LTimeEdit(u, x1, x2); } }; -class EQL_EXPORT Q224 : public Q245 { // QToolBar +class EQL_EXPORT Q225 : public Q246 { // QToolBar Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1, QWidget* x2 = 0) { return new LToolBar(u, x1, x2); } @@ -4339,7 +4339,7 @@ public: Q_INVOKABLE QWidget* MwidgetForAction(QToolBar* o, QAction* x1) const { return o->widgetForAction(x1); } }; -class EQL_EXPORT Q225 : public Q70 { // QToolBox +class EQL_EXPORT Q226 : public Q70 { // QToolBox Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LToolBox(u, x1, x2); } @@ -4363,7 +4363,7 @@ public: Q_INVOKABLE QWidget* Mwidget(QToolBox* o, int x1) const { return o->widget(x1); } }; -class EQL_EXPORT Q226 : public Q2 { // QToolButton +class EQL_EXPORT Q227 : public Q2 { // QToolButton Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LToolButton(u, x1); } @@ -4381,14 +4381,14 @@ public: Q_INVOKABLE QSize MsizeHint(QToolButton* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q234 : public Q25 { // QVBoxLayout +class EQL_EXPORT Q235 : public Q25 { // QVBoxLayout Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVBoxLayout(u); } Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LVBoxLayout(u, x1); } }; -class EQL_EXPORT Q248 : public Q49 { // QWizard +class EQL_EXPORT Q249 : public Q49 { // QWizard Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LWizard(u, x1, x2); } @@ -4498,7 +4498,7 @@ public: Q_INVOKABLE QColor SstandardColor(int x1) { return QColorDialog::standardColor(x1); } }; -class EQL_EXPORT Q40 : public Q164 { // QCommandLinkButton +class EQL_EXPORT Q40 : public Q165 { // QCommandLinkButton Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LCommandLinkButton(u, x1); } @@ -4633,7 +4633,7 @@ public: Q_INVOKABLE QSize MsizeHint(QGraphicsView* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q122 : public Q10 { // QMdiArea +class EQL_EXPORT Q123 : public Q10 { // QMdiArea Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMdiArea(u, x1); } @@ -4664,7 +4664,7 @@ public: Q_INVOKABLE QSize MsizeHint(QMdiArea* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q145 : public Q147 { // QOpenGLWindow +class EQL_EXPORT Q146 : public Q148 { // QOpenGLWindow Q_OBJECT public: Q_INVOKABLE void* C(uint u, QOpenGLWindow::UpdateBehavior x1 = QOpenGLWindow::NoPartialUpdate, QWindow* x2 = 0) { return new LOpenGLWindow(u, x1, x2); } @@ -4679,7 +4679,7 @@ public: Q_INVOKABLE int MupdateBehavior(QOpenGLWindow* o) const { return o->updateBehavior(); } }; -class EQL_EXPORT Q154 : public Q10 { // QPlainTextEdit +class EQL_EXPORT Q155 : public Q10 { // QPlainTextEdit Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LPlainTextEdit(u, x1); } @@ -4741,7 +4741,7 @@ public: Q_INVOKABLE QVariant MinputMethodQuery(QPlainTextEdit* o, Qt::InputMethodQuery x1) const { return o->inputMethodQuery(x1); } }; -class EQL_EXPORT Q156 : public Q8 { // QPrintDialog +class EQL_EXPORT Q157 : public Q8 { // QPrintDialog Q_OBJECT public: Q_INVOKABLE void* C(uint u, QPrinter* x1, QWidget* x2 = 0) { return new LPrintDialog(u, x1, x2); } @@ -4757,7 +4757,7 @@ public: Q_INVOKABLE void MsetVisible(QPrintDialog* o, bool x1) { o->setVisible(x1); } }; -class EQL_EXPORT Q170 : public Q10 { // QScrollArea +class EQL_EXPORT Q171 : public Q10 { // QScrollArea Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LScrollArea(u, x1); } @@ -4774,7 +4774,7 @@ public: Q_INVOKABLE QSize MsizeHint(QScrollArea* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q216 : public Q10 { // QTextEdit +class EQL_EXPORT Q217 : public Q10 { // QTextEdit Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTextEdit(u, x1); } @@ -5001,7 +5001,7 @@ public: Q_INVOKABLE QSize MsizeHint(QHeaderView* o) const { return o->sizeHint(); } }; -class EQL_EXPORT Q117 : public Q5 { // QListView +class EQL_EXPORT Q118 : public Q5 { // QListView Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LListView(u, x1); } @@ -5041,7 +5041,7 @@ public: Q_INVOKABLE QRect MvisualRect(QListView* o, const QModelIndex& x1) const { return o->visualRect(x1); } }; -class EQL_EXPORT Q118 : public Q117 { // QListWidget +class EQL_EXPORT Q119 : public Q118 { // QListWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LListWidget(u, x1); } @@ -5081,7 +5081,7 @@ public: Q_INVOKABLE void MdropEvent(QListWidget* o, QDropEvent* x1) { o->dropEvent(x1); } }; -class EQL_EXPORT Q207 : public Q5 { // QTableView +class EQL_EXPORT Q208 : public Q5 { // QTableView Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTableView(u, x1); } @@ -5121,7 +5121,7 @@ public: Q_INVOKABLE void MsetSelectionModel(QTableView* o, QItemSelectionModel* x1) { o->setSelectionModel(x1); } }; -class EQL_EXPORT Q208 : public Q207 { // QTableWidget +class EQL_EXPORT Q209 : public Q208 { // QTableWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTableWidget(u, x1); } @@ -5173,7 +5173,7 @@ public: Q_INVOKABLE QList Mitems(QTableWidget* o, const QMimeData* x1) const { return ((LTableWidget*)o)->items(x1); } }; -class EQL_EXPORT Q214 : public Q216 { // QTextBrowser +class EQL_EXPORT Q215 : public Q217 { // QTextBrowser Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTextBrowser(u, x1); } @@ -5194,7 +5194,7 @@ public: Q_INVOKABLE QVariant MloadResource(QTextBrowser* o, int x1, const QUrl& x2) { return o->loadResource(x1, x2); } }; -class EQL_EXPORT Q228 : public Q5 { // QTreeView +class EQL_EXPORT Q229 : public Q5 { // QTreeView Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTreeView(u, x1); } @@ -5255,7 +5255,7 @@ public: Q_INVOKABLE QRect MvisualRect(QTreeView* o, const QModelIndex& x1) const { return o->visualRect(x1); } }; -class EQL_EXPORT Q229 : public Q228 { // QTreeWidget +class EQL_EXPORT Q230 : public Q229 { // QTreeWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTreeWidget(u, x1); } @@ -5301,7 +5301,7 @@ public: Q_INVOKABLE void MsetSelectionModel(QTreeWidget* o, QItemSelectionModel* x1) { o->setSelectionModel(x1); } }; -class EQL_EXPORT Q233 : public Q117 { // QUndoView +class EQL_EXPORT Q234 : public Q118 { // QUndoView Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LUndoView(u, x1); } diff --git a/src/gen/help/_q_methods.h b/src/gen/help/_q_methods.h index 58ae609..b194efc 100644 --- a/src/gen/help/_q_methods.h +++ b/src/gen/help/_q_methods.h @@ -24,7 +24,7 @@ public: Q_INVOKABLE int MrowCount(QHelpContentModel* o, const QModelIndex& x1 = QModelIndex()) const { return o->rowCount(x1); } }; -class Q97 : public Q139 { // QHelpEngineCore +class Q97 : public Q140 { // QHelpEngineCore Q_OBJECT public: Q_INVOKABLE bool MaddCustomFilter(QHelpEngineCore* o, const QString& x1, const QStringList& x2) { return o->addCustomFilter(x1, x2); } @@ -56,7 +56,7 @@ public: Q_INVOKABLE QString SnamespaceName(const QString& x1) { return QHelpEngineCore::namespaceName(x1); } }; -class Q100 : public Q139 { // QHelpSearchEngine +class Q100 : public Q140 { // QHelpSearchEngine Q_OBJECT public: Q_INVOKABLE int MhitCount(QHelpSearchEngine* o) const { return o->hitCount(); } @@ -65,7 +65,7 @@ public: Q_INVOKABLE QHelpSearchResultWidget* MresultWidget(QHelpSearchEngine* o) { return o->resultWidget(); } }; -class Q98 : public Q196 { // QHelpIndexModel +class Q98 : public Q197 { // QHelpIndexModel Q_OBJECT public: Q_INVOKABLE void McreateIndex(QHelpIndexModel* o, const QString& x1) { o->createIndex(x1); } @@ -73,7 +73,7 @@ public: Q_INVOKABLE bool MisCreatingIndex(QHelpIndexModel* o) const { return o->isCreatingIndex(); } }; -class Q101 : public Q245 { // QHelpSearchQueryWidget +class Q101 : public Q246 { // QHelpSearchQueryWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LHelpSearchQueryWidget(u, x1); } @@ -84,19 +84,19 @@ public: Q_INVOKABLE void MsetQuery(QHelpSearchQueryWidget* o, const QList& x1) { o->setQuery(x1); } }; -class Q102 : public Q245 { // QHelpSearchResultWidget +class Q102 : public Q246 { // QHelpSearchResultWidget Q_OBJECT public: Q_INVOKABLE QUrl MlinkAt(QHelpSearchResultWidget* o, const QPoint& x1) { return o->linkAt(x1); } }; -class Q96 : public Q228 { // QHelpContentWidget +class Q96 : public Q229 { // QHelpContentWidget Q_OBJECT public: Q_INVOKABLE QModelIndex MindexOf(QHelpContentWidget* o, const QUrl& x1) { return o->indexOf(x1); } }; -class Q99 : public Q117 { // QHelpIndexWidget +class Q99 : public Q118 { // QHelpIndexWidget Q_OBJECT public: }; diff --git a/src/gen/multimedia/_ini.cpp b/src/gen/multimedia/_ini.cpp index 7d6e9df..361c176 100644 --- a/src/gen/multimedia/_ini.cpp +++ b/src/gen/multimedia/_ini.cpp @@ -44,25 +44,25 @@ void ini() { LObjects::Q[32] = new Q33; LObjects::Q[33] = new Q34; LObjects::Q[85] = new Q86; - LObjects::Q[123] = new Q124; LObjects::Q[124] = new Q125; LObjects::Q[125] = new Q126; LObjects::Q[126] = new Q127; LObjects::Q[127] = new Q128; - LObjects::Q[165] = new Q166; - LObjects::Q[236] = new Q237; + LObjects::Q[128] = new Q129; + LObjects::Q[166] = new Q167; LObjects::Q[237] = new Q238; + LObjects::Q[238] = new Q239; LObjects::N[17] = new N18; LObjects::N[18] = new N19; LObjects::N[19] = new N20; LObjects::N[26] = new N27; LObjects::N[27] = new N28; - LObjects::N[95] = new N96; - LObjects::N[113] = new N114; + LObjects::N[96] = new N97; LObjects::N[114] = new N115; - LObjects::N[228] = new N229; - LObjects::N[229] = new N230; - LObjects::N[230] = new N231; } + LObjects::N[115] = new N116; + LObjects::N[230] = new N231; + LObjects::N[231] = new N232; + LObjects::N[232] = new N233; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; @@ -77,14 +77,14 @@ const QMetaObject* staticMetaObject(int n) { case 33: m = &QCameraImageProcessing::staticMetaObject; break; case 34: m = &QCameraViewfinder::staticMetaObject; break; case 86: m = &QGraphicsVideoItem::staticMetaObject; break; - case 124: m = &QMediaObject::staticMetaObject; break; - case 125: m = &QMediaPlayer::staticMetaObject; break; - case 126: m = &QMediaPlaylist::staticMetaObject; break; - case 127: m = &QMediaRecorder::staticMetaObject; break; - case 128: m = &QMediaService::staticMetaObject; break; - case 166: m = &QRadioTuner::staticMetaObject; break; - case 237: m = &QVideoWidget::staticMetaObject; break; - case 238: m = &QVideoWidgetControl::staticMetaObject; break; } + case 125: m = &QMediaObject::staticMetaObject; break; + case 126: m = &QMediaPlayer::staticMetaObject; break; + case 127: m = &QMediaPlaylist::staticMetaObject; break; + case 128: m = &QMediaRecorder::staticMetaObject; break; + case 129: m = &QMediaService::staticMetaObject; break; + case 167: m = &QRadioTuner::staticMetaObject; break; + case 238: m = &QVideoWidget::staticMetaObject; break; + case 239: m = &QVideoWidgetControl::staticMetaObject; break; } return m; } void deleteNObject(int n, void* p, int gc) { @@ -94,12 +94,12 @@ void deleteNObject(int n, void* p, int gc) { case 20: if(gc) delete (QAudioFormat*)p; else delete (LAudioFormat*)p; break; case 27: if(gc) delete (QCameraInfo*)p; else delete (LCameraInfo*)p; break; case 28: if(gc) delete (QCameraViewfinderSettings*)p; else delete (LCameraViewfinderSettings*)p; break; - case 96: if(gc) delete (QImageEncoderSettings*)p; else delete (LImageEncoderSettings*)p; break; - case 114: if(gc) delete (QMediaContent*)p; else delete (LMediaContent*)p; break; - case 115: if(gc) delete (QMediaResource*)p; else delete (LMediaResource*)p; break; - case 229: if(gc) delete (QVideoEncoderSettings*)p; else delete (LVideoEncoderSettings*)p; break; - case 230: if(gc) delete (QVideoFrame*)p; else delete (LVideoFrame*)p; break; - case 231: if(gc) delete (QVideoSurfaceFormat*)p; else delete (LVideoSurfaceFormat*)p; break; }} + case 97: if(gc) delete (QImageEncoderSettings*)p; else delete (LImageEncoderSettings*)p; break; + case 115: if(gc) delete (QMediaContent*)p; else delete (LMediaContent*)p; break; + case 116: if(gc) delete (QMediaResource*)p; else delete (LMediaResource*)p; break; + case 231: if(gc) delete (QVideoEncoderSettings*)p; else delete (LVideoEncoderSettings*)p; break; + case 232: if(gc) delete (QVideoFrame*)p; else delete (LVideoFrame*)p; break; + case 233: if(gc) delete (QVideoSurfaceFormat*)p; else delete (LVideoSurfaceFormat*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -112,13 +112,13 @@ NumList* overrideFunctions(const QByteArray& name) { case 32: ids = &LCameraImageCapture::overrideIds; break; case 34: ids = &LCameraViewfinder::overrideIds; break; case 86: ids = &LGraphicsVideoItem::overrideIds; break; - case 124: ids = &LMediaObject::overrideIds; break; - case 125: ids = &LMediaPlayer::overrideIds; break; - case 126: ids = &LMediaPlaylist::overrideIds; break; - case 127: ids = &LMediaRecorder::overrideIds; break; - case 166: ids = &LRadioTuner::overrideIds; break; - case 237: ids = &LVideoWidget::overrideIds; break; - case 238: ids = &LVideoWidgetControl::overrideIds; break; }} + case 125: ids = &LMediaObject::overrideIds; break; + case 126: ids = &LMediaPlayer::overrideIds; break; + case 127: ids = &LMediaPlaylist::overrideIds; break; + case 128: ids = &LMediaRecorder::overrideIds; break; + case 167: ids = &LRadioTuner::overrideIds; break; + case 238: ids = &LVideoWidget::overrideIds; break; + case 239: ids = &LVideoWidgetControl::overrideIds; break; }} else { n = LObjects::n_names.value(name); switch(n) { @@ -127,12 +127,12 @@ NumList* overrideFunctions(const QByteArray& name) { case 20: ids = &LAudioFormat::overrideIds; break; case 27: ids = &LCameraInfo::overrideIds; break; case 28: ids = &LCameraViewfinderSettings::overrideIds; break; - case 96: ids = &LImageEncoderSettings::overrideIds; break; - case 114: ids = &LMediaContent::overrideIds; break; - case 115: ids = &LMediaResource::overrideIds; break; - case 229: ids = &LVideoEncoderSettings::overrideIds; break; - case 230: ids = &LVideoFrame::overrideIds; break; - case 231: ids = &LVideoSurfaceFormat::overrideIds; break; }} + case 97: ids = &LImageEncoderSettings::overrideIds; break; + case 115: ids = &LMediaContent::overrideIds; break; + case 116: ids = &LMediaResource::overrideIds; break; + case 231: ids = &LVideoEncoderSettings::overrideIds; break; + case 232: ids = &LVideoFrame::overrideIds; break; + case 233: ids = &LVideoSurfaceFormat::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/multimedia/_n_classes.h b/src/gen/multimedia/_n_classes.h index 9cf057f..d14a35a 100644 --- a/src/gen/multimedia/_n_classes.h +++ b/src/gen/multimedia/_n_classes.h @@ -63,7 +63,7 @@ public: }; class LImageEncoderSettings : public QImageEncoderSettings { - friend class N96; + friend class N97; public: LImageEncoderSettings(uint u) : unique(u) {} LImageEncoderSettings(uint u, const QImageEncoderSettings& x1) : QImageEncoderSettings(x1), unique(u) {} @@ -73,7 +73,7 @@ public: }; class LMediaContent : public QMediaContent { - friend class N114; + friend class N115; public: LMediaContent(uint u) : unique(u) {} LMediaContent(uint u, const QUrl& x1) : QMediaContent(x1), unique(u) {} @@ -88,7 +88,7 @@ public: }; class LMediaResource : public QMediaResource { - friend class N115; + friend class N116; public: LMediaResource(uint u) : unique(u) {} LMediaResource(uint u, const QUrl& x1, const QString& x2 = QString()) : QMediaResource(x1, x2), unique(u) {} @@ -100,7 +100,7 @@ public: }; class LVideoEncoderSettings : public QVideoEncoderSettings { - friend class N229; + friend class N231; public: LVideoEncoderSettings(uint u) : unique(u) {} LVideoEncoderSettings(uint u, const QVideoEncoderSettings& x1) : QVideoEncoderSettings(x1), unique(u) {} @@ -110,7 +110,7 @@ public: }; class LVideoFrame : public QVideoFrame { - friend class N230; + friend class N232; public: LVideoFrame(uint u) : unique(u) {} LVideoFrame(uint u, QAbstractVideoBuffer* x1, const QSize& x2, PixelFormat x3) : QVideoFrame(x1, x2, x3), unique(u) {} @@ -123,7 +123,7 @@ public: }; class LVideoSurfaceFormat : public QVideoSurfaceFormat { - friend class N231; + friend class N233; 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 75b49ca..bd55dd8 100644 --- a/src/gen/multimedia/_n_methods.h +++ b/src/gen/multimedia/_n_methods.h @@ -117,7 +117,7 @@ public: Q_INVOKABLE void Mswap(QCameraViewfinderSettings* o, QCameraViewfinderSettings& x1) { o->swap(x1); } }; -class N96 : public QObject { // QImageEncoderSettings +class N97 : public QObject { // QImageEncoderSettings Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LImageEncoderSettings(u); } @@ -134,7 +134,7 @@ public: Q_INVOKABLE void MsetResolution(QImageEncoderSettings* o, int x1, int x2) { o->setResolution(x1, x2); } }; -class N114 : public QObject { // QMediaContent +class N115 : public QObject { // QMediaContent Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LMediaContent(u); } @@ -152,7 +152,7 @@ public: Q_INVOKABLE QMediaResourceList Mresources(QMediaContent* o) const { return o->resources(); } }; -class N115 : public QObject { // QMediaResource +class N116 : public QObject { // QMediaResource Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LMediaResource(u); } @@ -184,7 +184,7 @@ public: Q_INVOKABLE QString MvideoCodec(QMediaResource* o) const { return o->videoCodec(); } }; -class N229 : public QObject { // QVideoEncoderSettings +class N231 : public QObject { // QVideoEncoderSettings Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVideoEncoderSettings(u); } @@ -207,7 +207,7 @@ public: Q_INVOKABLE void MsetResolution(QVideoEncoderSettings* o, int x1, int x2) { o->setResolution(x1, x2); } }; -class N230 : public QObject { // QVideoFrame +class N232 : public QObject { // QVideoFrame Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVideoFrame(u); } @@ -243,7 +243,7 @@ public: Q_INVOKABLE int SpixelFormatFromImageFormat(QImage::Format x1) { return QVideoFrame::pixelFormatFromImageFormat(x1); } }; -class N231 : public QObject { // QVideoSurfaceFormat +class N233 : public QObject { // QVideoSurfaceFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVideoSurfaceFormat(u); } diff --git a/src/gen/multimedia/_q_classes.h b/src/gen/multimedia/_q_classes.h index c082bf2..3d820cb 100644 --- a/src/gen/multimedia/_q_classes.h +++ b/src/gen/multimedia/_q_classes.h @@ -151,7 +151,7 @@ public: class LMediaObject : public QMediaObject { Q_OBJECT - friend class Q124; + friend class Q125; public: static NumList overrideIds; @@ -170,7 +170,7 @@ public: class LMediaPlayer : public QMediaPlayer { Q_OBJECT - friend class Q125; + friend class Q126; public: LMediaPlayer(uint u, QObject* x1 = 0, Flags x2 = 0) : QMediaPlayer(x1, x2), unique(u) {} @@ -190,7 +190,7 @@ public: class LMediaPlaylist : public QMediaPlaylist { Q_OBJECT - friend class Q126; + friend class Q127; public: LMediaPlaylist(uint u, QObject* x1 = 0) : QMediaPlaylist(x1), unique(u) {} @@ -206,7 +206,7 @@ public: class LMediaRecorder : public QMediaRecorder { Q_OBJECT - friend class Q127; + friend class Q128; public: LMediaRecorder(uint u, QMediaObject* x1, QObject* x2 = 0) : QMediaRecorder(x1, x2), unique(u) {} @@ -222,7 +222,7 @@ public: class LRadioTuner : public QRadioTuner { Q_OBJECT - friend class Q166; + friend class Q167; public: LRadioTuner(uint u, QObject* x1 = 0) : QRadioTuner(x1), unique(u) {} @@ -242,7 +242,7 @@ public: class LVideoWidget : public QVideoWidget { Q_OBJECT - friend class Q237; + friend class Q238; public: LVideoWidget(uint u, QWidget* x1 = 0) : QVideoWidget(x1), unique(u) {} @@ -291,7 +291,7 @@ public: class LVideoWidgetControl : public QVideoWidgetControl { Q_OBJECT - friend class Q238; + friend class Q239; public: static NumList overrideIds; diff --git a/src/gen/multimedia/_q_methods.h b/src/gen/multimedia/_q_methods.h index 9cb0891..d3f05d4 100644 --- a/src/gen/multimedia/_q_methods.h +++ b/src/gen/multimedia/_q_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class Q238 : public QObject { // QVideoWidgetControl +class Q239 : public QObject { // QVideoWidgetControl Q_OBJECT public: Q_INVOKABLE int MaspectRatioMode(QVideoWidgetControl* o) const { return o->aspectRatioMode(); } @@ -29,7 +29,7 @@ public: Q_INVOKABLE QWidget* MvideoWidget(QVideoWidgetControl* o) { return o->videoWidget(); } }; -class Q18 : public Q139 { // QAbstractVideoSurface +class Q18 : public Q140 { // QAbstractVideoSurface Q_OBJECT public: Q_INVOKABLE int Merror(QAbstractVideoSurface* o) const { return o->error(); } @@ -43,7 +43,7 @@ public: Q_INVOKABLE QVideoSurfaceFormat MsurfaceFormat(QAbstractVideoSurface* o) const { return o->surfaceFormat(); } }; -class Q23 : public Q139 { // QAudioOutput +class Q23 : public Q140 { // QAudioOutput Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QAudioFormat& x1 = QAudioFormat(), QObject* x2 = 0) { return new LAudioOutput(u, x1, x2); } @@ -69,7 +69,7 @@ public: Q_INVOKABLE qreal Mvolume(QAudioOutput* o) const { return o->volume(); } }; -class Q30 : public Q139 { // QCameraExposure +class Q30 : public Q140 { // QCameraExposure Q_OBJECT public: Q_INVOKABLE qreal Maperture(QCameraExposure* o) const { return o->aperture(); } @@ -94,7 +94,7 @@ public: Q_INVOKABLE QList MsupportedShutterSpeeds(QCameraExposure* o, bool* x1 = 0) const { return o->supportedShutterSpeeds(x1); } }; -class Q31 : public Q139 { // QCameraFocus +class Q31 : public Q140 { // QCameraFocus Q_OBJECT public: Q_INVOKABLE QPointF McustomFocusPoint(QCameraFocus* o) const { return o->customFocusPoint(); } @@ -114,7 +114,7 @@ public: Q_INVOKABLE void MzoomTo(QCameraFocus* o, qreal x1, qreal x2) { o->zoomTo(x1, x2); } }; -class Q32 : public Q139 { // QCameraImageCapture +class Q32 : public Q140 { // QCameraImageCapture Q_OBJECT public: Q_INVOKABLE void* C(uint u, QMediaObject* x1, QObject* x2 = 0) { return new LCameraImageCapture(u, x1, x2); } @@ -137,7 +137,7 @@ public: Q_INVOKABLE QMediaObject* MmediaObject(QCameraImageCapture* o) const { return o->mediaObject(); } }; -class Q33 : public Q139 { // QCameraImageProcessing +class Q33 : public Q140 { // QCameraImageProcessing Q_OBJECT public: Q_INVOKABLE int McolorFilter(QCameraImageProcessing* o) const { return o->colorFilter(); } @@ -175,7 +175,7 @@ public: Q_INVOKABLE void Mpaint(QGraphicsVideoItem* o, QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { o->paint(x1, x2, x3); } }; -class Q124 : public Q139 { // QMediaObject +class Q125 : public Q140 { // QMediaObject Q_OBJECT public: Q_INVOKABLE int Mavailability(QMediaObject* o) const { return o->availability(); } @@ -192,7 +192,7 @@ public: Q_INVOKABLE void MremovePropertyWatch(QMediaObject* o, const QByteArray& x1) { ((LMediaObject*)o)->removePropertyWatch(x1); } }; -class Q125 : public Q124 { // QMediaPlayer +class Q126 : public Q125 { // QMediaPlayer Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0, QMediaPlayer::Flags x2 = 0) { return new LMediaPlayer(u, x1, x2); } @@ -223,7 +223,7 @@ public: Q_INVOKABLE int ShasSupport(const QString& x1, const QStringList& x2 = QStringList(), QMediaPlayer::Flags x3 = 0) { return QMediaPlayer::hasSupport(x1, x2, x3); } }; -class Q126 : public Q139 { // QMediaPlaylist +class Q127 : public Q140 { // QMediaPlaylist Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LMediaPlaylist(u, x1); } @@ -253,7 +253,7 @@ public: Q_INVOKABLE QMediaObject* MmediaObject(QMediaPlaylist* o) const { return o->mediaObject(); } }; -class Q127 : public Q139 { // QMediaRecorder +class Q128 : public Q140 { // QMediaRecorder Q_OBJECT public: Q_INVOKABLE void* C(uint u, QMediaObject* x1, QObject* x2 = 0) { return new LMediaRecorder(u, x1, x2); } @@ -293,14 +293,14 @@ public: Q_INVOKABLE QMediaObject* MmediaObject(QMediaRecorder* o) const { return o->mediaObject(); } }; -class Q128 : public Q139 { // QMediaService +class Q129 : public Q140 { // QMediaService Q_OBJECT public: Q_INVOKABLE void MreleaseControl(QMediaService* o, QMediaControl* x1) { o->releaseControl(x1); } Q_INVOKABLE QMediaControl* MrequestControl(QMediaService* o, const char* x1) { return o->requestControl(x1); } }; -class Q166 : public Q124 { // QRadioTuner +class Q167 : public Q125 { // QRadioTuner Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LRadioTuner(u, x1); } @@ -323,7 +323,7 @@ public: Q_INVOKABLE int Mavailability(QRadioTuner* o) const { return o->availability(); } }; -class Q24 : public Q127 { // QAudioRecorder +class Q24 : public Q128 { // QAudioRecorder Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LAudioRecorder(u, x1); } @@ -333,7 +333,7 @@ public: Q_INVOKABLE QString MdefaultAudioInput(QAudioRecorder* o) const { return o->defaultAudioInput(); } }; -class Q29 : public Q124 { // QCamera +class Q29 : public Q125 { // QCamera Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LCamera(u, x1); } @@ -365,7 +365,7 @@ public: Q_INVOKABLE int Mavailability(QCamera* o) const { return o->availability(); } }; -class Q237 : public Q245 { // QVideoWidget +class Q238 : public Q246 { // QVideoWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LVideoWidget(u, x1); } @@ -379,7 +379,7 @@ public: Q_INVOKABLE QSize MsizeHint(QVideoWidget* o) const { return o->sizeHint(); } }; -class Q34 : public Q237 { // QCameraViewfinder +class Q34 : public Q238 { // QCameraViewfinder Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LCameraViewfinder(u, x1); } diff --git a/src/gen/network/_ini.cpp b/src/gen/network/_ini.cpp index e6f43d5..73fc47c 100644 --- a/src/gen/network/_ini.cpp +++ b/src/gen/network/_ini.cpp @@ -7,6 +7,7 @@ QT_BEGIN_NAMESPACE NumList LAbstractSocket::overrideIds = NumList() << 117 << 118 << 119 << 120 << 121 << 122 << 123 << 124 << 125 << 126 << 127 << 128 << 129 << 130 << 131 << 132 << 133 << 134 << 135 << 136; +NumList LHttpMultiPart::overrideIds = NumList(); NumList LLocalServer::overrideIds = NumList() << 285 << 286; NumList LLocalSocket::overrideIds = NumList() << 127 << 128 << 129 << 130 << 131 << 137 << 132 << 133 << 134 << 136; NumList LNetworkAccessManager::overrideIds = NumList(); @@ -18,8 +19,10 @@ NumList LUdpSocket::overrideIds = NumList(); NumList LAuthenticator::overrideIds = NumList(); NumList LHostAddress::overrideIds = NumList(); NumList LHostInfo::overrideIds = NumList(); +NumList LHttpPart::overrideIds = NumList(); NumList LNetworkAddressEntry::overrideIds = NumList(); NumList LNetworkCacheMetaData::overrideIds = NumList(); +NumList LNetworkConfiguration::overrideIds = NumList(); NumList LNetworkCookie::overrideIds = NumList(); NumList LNetworkInterface::overrideIds = NumList(); NumList LNetworkProxy::overrideIds = NumList(); @@ -37,19 +40,20 @@ void ini() { ini2(); LObjects::Q[6] = new Q7; LObjects::Q[11] = new Q12; - LObjects::Q[118] = new Q119; + LObjects::Q[103] = new Q104; LObjects::Q[119] = new Q120; - LObjects::Q[134] = new Q135; + LObjects::Q[120] = new Q121; LObjects::Q[135] = new Q136; LObjects::Q[136] = new Q137; LObjects::Q[137] = new Q138; - LObjects::Q[210] = new Q211; + LObjects::Q[138] = new Q139; LObjects::Q[211] = new Q212; - LObjects::Q[229] = new Q230; + LObjects::Q[212] = new Q213; + LObjects::Q[230] = new Q231; LObjects::N[20] = new N21; LObjects::N[89] = new N90; LObjects::N[90] = new N91; - LObjects::N[120] = new N121; + LObjects::N[92] = new N93; LObjects::N[121] = new N122; LObjects::N[122] = new N123; LObjects::N[123] = new N124; @@ -57,26 +61,29 @@ void ini() { LObjects::N[125] = new N126; LObjects::N[126] = new N127; LObjects::N[127] = new N128; - LObjects::N[171] = new N172; - LObjects::N[172] = new N173; + LObjects::N[128] = new N129; + LObjects::N[129] = new N130; LObjects::N[173] = new N174; LObjects::N[174] = new N175; - LObjects::N[175] = new N176; } + LObjects::N[175] = new N176; + LObjects::N[176] = new N177; + LObjects::N[177] = new N178; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; switch(n) { case 7: m = &QAbstractNetworkCache::staticMetaObject; break; case 12: m = &QAbstractSocket::staticMetaObject; break; - case 119: m = &QLocalServer::staticMetaObject; break; - case 120: m = &QLocalSocket::staticMetaObject; break; - case 135: m = &QNetworkAccessManager::staticMetaObject; break; - case 136: m = &QNetworkCookieJar::staticMetaObject; break; - case 137: m = &QNetworkDiskCache::staticMetaObject; break; - case 138: m = &QNetworkReply::staticMetaObject; break; - case 211: m = &QTcpServer::staticMetaObject; break; - case 212: m = &QTcpSocket::staticMetaObject; break; - case 230: m = &QUdpSocket::staticMetaObject; break; } + case 104: m = &QHttpMultiPart::staticMetaObject; break; + case 120: m = &QLocalServer::staticMetaObject; break; + case 121: m = &QLocalSocket::staticMetaObject; break; + case 136: m = &QNetworkAccessManager::staticMetaObject; break; + case 137: m = &QNetworkCookieJar::staticMetaObject; break; + case 138: m = &QNetworkDiskCache::staticMetaObject; break; + case 139: m = &QNetworkReply::staticMetaObject; break; + case 212: m = &QTcpServer::staticMetaObject; break; + case 213: m = &QTcpSocket::staticMetaObject; break; + case 231: m = &QUdpSocket::staticMetaObject; break; } return m; } void deleteNObject(int n, void* p, int gc) { @@ -84,19 +91,21 @@ void deleteNObject(int n, void* p, int gc) { case 21: if(gc) delete (QAuthenticator*)p; else delete (LAuthenticator*)p; break; case 90: if(gc) delete (QHostAddress*)p; else delete (LHostAddress*)p; break; case 91: if(gc) delete (QHostInfo*)p; else delete (LHostInfo*)p; break; - case 121: if(gc) delete (QNetworkAddressEntry*)p; else delete (LNetworkAddressEntry*)p; break; - case 122: if(gc) delete (QNetworkCacheMetaData*)p; else delete (LNetworkCacheMetaData*)p; break; - case 123: if(gc) delete (QNetworkCookie*)p; else delete (LNetworkCookie*)p; break; - case 124: if(gc) delete (QNetworkInterface*)p; else delete (LNetworkInterface*)p; break; - case 125: if(gc) delete (QNetworkProxy*)p; else delete (LNetworkProxy*)p; break; - case 126: if(gc) delete (QNetworkProxyFactory*)p; else delete (LNetworkProxyFactory*)p; break; - case 127: if(gc) delete (QNetworkProxyQuery*)p; else delete (LNetworkProxyQuery*)p; break; - case 128: if(gc) delete (QNetworkRequest*)p; else delete (LNetworkRequest*)p; break; - case 172: if(gc) delete (QSslCertificate*)p; else delete (LSslCertificate*)p; break; - case 173: if(gc) delete (QSslCipher*)p; else delete (LSslCipher*)p; break; - case 174: if(gc) delete (QSslConfiguration*)p; else delete (LSslConfiguration*)p; break; - case 175: if(gc) delete (QSslError*)p; else delete (LSslError*)p; break; - case 176: if(gc) delete (QSslKey*)p; else delete (LSslKey*)p; break; }} + case 93: if(gc) delete (QHttpPart*)p; else delete (LHttpPart*)p; break; + case 122: if(gc) delete (QNetworkAddressEntry*)p; else delete (LNetworkAddressEntry*)p; break; + case 123: if(gc) delete (QNetworkCacheMetaData*)p; else delete (LNetworkCacheMetaData*)p; break; + case 124: if(gc) delete (QNetworkConfiguration*)p; else delete (LNetworkConfiguration*)p; break; + case 125: if(gc) delete (QNetworkCookie*)p; else delete (LNetworkCookie*)p; break; + case 126: if(gc) delete (QNetworkInterface*)p; else delete (LNetworkInterface*)p; break; + case 127: if(gc) delete (QNetworkProxy*)p; else delete (LNetworkProxy*)p; break; + case 128: if(gc) delete (QNetworkProxyFactory*)p; else delete (LNetworkProxyFactory*)p; break; + case 129: if(gc) delete (QNetworkProxyQuery*)p; else delete (LNetworkProxyQuery*)p; break; + case 130: if(gc) delete (QNetworkRequest*)p; else delete (LNetworkRequest*)p; break; + case 174: if(gc) delete (QSslCertificate*)p; else delete (LSslCertificate*)p; break; + case 175: if(gc) delete (QSslCipher*)p; else delete (LSslCipher*)p; break; + case 176: if(gc) delete (QSslConfiguration*)p; else delete (LSslConfiguration*)p; break; + case 177: if(gc) delete (QSslError*)p; else delete (LSslError*)p; break; + case 178: if(gc) delete (QSslKey*)p; else delete (LSslKey*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -104,33 +113,36 @@ NumList* overrideFunctions(const QByteArray& name) { if(n != -1) { switch(n) { case 12: ids = &LAbstractSocket::overrideIds; break; - case 119: ids = &LLocalServer::overrideIds; break; - case 120: ids = &LLocalSocket::overrideIds; break; - case 135: ids = &LNetworkAccessManager::overrideIds; break; - case 136: ids = &LNetworkCookieJar::overrideIds; break; - case 137: ids = &LNetworkDiskCache::overrideIds; break; - case 211: ids = <cpServer::overrideIds; break; - case 212: ids = <cpSocket::overrideIds; break; - case 230: ids = &LUdpSocket::overrideIds; break; }} + case 104: ids = &LHttpMultiPart::overrideIds; break; + case 120: ids = &LLocalServer::overrideIds; break; + case 121: ids = &LLocalSocket::overrideIds; break; + case 136: ids = &LNetworkAccessManager::overrideIds; break; + case 137: ids = &LNetworkCookieJar::overrideIds; break; + case 138: ids = &LNetworkDiskCache::overrideIds; break; + case 212: ids = <cpServer::overrideIds; break; + case 213: ids = <cpSocket::overrideIds; break; + case 231: ids = &LUdpSocket::overrideIds; break; }} else { n = LObjects::n_names.value(name); switch(n) { case 21: ids = &LAuthenticator::overrideIds; break; case 90: ids = &LHostAddress::overrideIds; break; case 91: ids = &LHostInfo::overrideIds; break; - case 121: ids = &LNetworkAddressEntry::overrideIds; break; - case 122: ids = &LNetworkCacheMetaData::overrideIds; break; - case 123: ids = &LNetworkCookie::overrideIds; break; - case 124: ids = &LNetworkInterface::overrideIds; break; - case 125: ids = &LNetworkProxy::overrideIds; break; - case 126: ids = &LNetworkProxyFactory::overrideIds; break; - case 127: ids = &LNetworkProxyQuery::overrideIds; break; - case 128: ids = &LNetworkRequest::overrideIds; break; - case 172: ids = &LSslCertificate::overrideIds; break; - case 173: ids = &LSslCipher::overrideIds; break; - case 174: ids = &LSslConfiguration::overrideIds; break; - case 175: ids = &LSslError::overrideIds; break; - case 176: ids = &LSslKey::overrideIds; break; }} + case 93: ids = &LHttpPart::overrideIds; break; + case 122: ids = &LNetworkAddressEntry::overrideIds; break; + case 123: ids = &LNetworkCacheMetaData::overrideIds; break; + case 124: ids = &LNetworkConfiguration::overrideIds; break; + case 125: ids = &LNetworkCookie::overrideIds; break; + case 126: ids = &LNetworkInterface::overrideIds; break; + case 127: ids = &LNetworkProxy::overrideIds; break; + case 128: ids = &LNetworkProxyFactory::overrideIds; break; + case 129: ids = &LNetworkProxyQuery::overrideIds; break; + case 130: ids = &LNetworkRequest::overrideIds; break; + case 174: ids = &LSslCertificate::overrideIds; break; + case 175: ids = &LSslCipher::overrideIds; break; + case 176: ids = &LSslConfiguration::overrideIds; break; + case 177: ids = &LSslError::overrideIds; break; + case 178: ids = &LSslKey::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/network/_ini2.h b/src/gen/network/_ini2.h index f779b30..4d97402 100644 --- a/src/gen/network/_ini2.h +++ b/src/gen/network/_ini2.h @@ -8,44 +8,72 @@ QT_BEGIN_NAMESPACE -TO_QT_TYPE_PTR (QHostAddress, qhostaddress) -TO_QT_TYPE_PTR (QHostInfo, qhostinfo) -TO_QT_TYPE_PTR (QNetworkCacheMetaData, qnetworkcachemetadata) -TO_QT_TYPE_PTR (QNetworkInterface, qnetworkinterface) -TO_QT_TYPE_PTR (QNetworkProxy, qnetworkproxy) -TO_QT_TYPE_PTR (QNetworkRequest, qnetworkrequest) -TO_QT_TYPE_PTR (QSslCertificate, qsslcertificate) -TO_QT_TYPE_PTR (QSslCipher, qsslcipher) -TO_QT_TYPE_PTR (QSslConfiguration, qsslconfiguration) -TO_QT_TYPE_PTR (QSslKey, qsslkey) +TO_QT_TYPE_PTR (QHostAddress, qhostaddress) +TO_QT_TYPE_PTR (QHostInfo, qhostinfo) +TO_QT_TYPE_PTR (QHttpPart, qhttppart) +TO_QT_TYPE_PTR (QNetworkAddressEntry, qnetworkaddressentry) +TO_QT_TYPE_PTR (QNetworkCacheMetaData, qnetworkcachemetadata) +TO_QT_TYPE_PTR2 (QNetworkConfiguration, qnetworkconfiguration) +TO_QT_TYPE_PTR2 (QNetworkCookie, qnetworkcookie) +TO_QT_TYPE_PTR (QNetworkInterface, qnetworkinterface) +TO_QT_TYPE_PTR (QNetworkProxy, qnetworkproxy) +TO_QT_TYPE_PTR (QNetworkRequest, qnetworkrequest) +TO_QT_TYPE_PTR (QSslCertificate, qsslcertificate) +TO_QT_TYPE_PTR (QSslCipher, qsslcipher) +TO_QT_TYPE_PTR (QSslConfiguration, qsslconfiguration) +TO_QT_TYPE_PTR (QSslKey, qsslkey) + +TO_QT_LIST_VAL (QNetworkConfiguration) +TO_QT_LIST_VAL (QNetworkCookie) + +TO_CL_LIST_VAL (QNetworkAddressEntry, qnetworkaddressentry) +TO_CL_LIST_VAL (QNetworkConfiguration, qnetworkconfiguration) +TO_CL_LIST_VAL (QNetworkCookie, qnetworkcookie) +TO_CL_LIST_VAL (QNetworkInterface, qnetworkinterface) +TO_CL_LIST_VAL (QNetworkProxy, qnetworkproxy) #define META_TYPE_(var, type) var = qRegisterMetaType< type >(#type); void ini2() { - META_TYPE_(LObjects::T_QHostAddress, QHostAddress) - META_TYPE_(LObjects::T_QHostInfo, QHostInfo) - META_TYPE_(LObjects::T_QNetworkCacheMetaData, QNetworkCacheMetaData) - META_TYPE_(LObjects::T_QNetworkInterface, QNetworkInterface) - META_TYPE_(LObjects::T_QNetworkProxy, QNetworkProxy) - META_TYPE_(LObjects::T_QNetworkRequest, QNetworkRequest) - META_TYPE_(LObjects::T_QSslCertificate, QSslCertificate) - META_TYPE_(LObjects::T_QSslCipher, QSslCipher) - META_TYPE_(LObjects::T_QSslConfiguration, QSslConfiguration) - META_TYPE_(LObjects::T_QSslKey, QSslKey) } + META_TYPE_(LObjects::T_QHostAddress, QHostAddress) + META_TYPE_(LObjects::T_QHostInfo, QHostInfo) + META_TYPE_(LObjects::T_QHttpPart, QHttpPart) + META_TYPE_(LObjects::T_QNetworkAddressEntry, QNetworkAddressEntry) + META_TYPE_(LObjects::T_QList_QNetworkAddressEntry, QList) + META_TYPE_(LObjects::T_QNetworkCacheMetaData, QNetworkCacheMetaData) + META_TYPE_(LObjects::T_QNetworkConfiguration, QNetworkConfiguration) + META_TYPE_(LObjects::T_QList_QNetworkConfiguration, QList) + META_TYPE_(LObjects::T_QNetworkCookie, QNetworkCookie) + META_TYPE_(LObjects::T_QList_QNetworkCookie, QList) + META_TYPE_(LObjects::T_QNetworkInterface, QNetworkInterface) + META_TYPE_(LObjects::T_QList_QNetworkInterface, QList) + META_TYPE_(LObjects::T_QNetworkProxy, QNetworkProxy) + META_TYPE_(LObjects::T_QList_QNetworkProxy, QList) + META_TYPE_(LObjects::T_QNetworkRequest, QNetworkRequest) + META_TYPE_(LObjects::T_QSslCertificate, QSslCertificate) + META_TYPE_(LObjects::T_QSslCipher, QSslCipher) + META_TYPE_(LObjects::T_QSslConfiguration, QSslConfiguration) + META_TYPE_(LObjects::T_QSslKey, QSslKey) } void* toMetaArg(int n, cl_object l_arg, bool* found) { void* p = 0; bool _found = true; - if(LObjects::T_QHostAddress == n) { p = new QHostAddress(*toQHostAddressPointer(l_arg)); } - else if(LObjects::T_QHostInfo == n) { p = new QHostInfo(*toQHostInfoPointer(l_arg)); } - else if(LObjects::T_QNetworkCacheMetaData == n) { p = new QNetworkCacheMetaData(*toQNetworkCacheMetaDataPointer(l_arg)); } - else if(LObjects::T_QNetworkInterface == n) { p = new QNetworkInterface(*toQNetworkInterfacePointer(l_arg)); } - else if(LObjects::T_QNetworkProxy == n) { p = new QNetworkProxy(*toQNetworkProxyPointer(l_arg)); } - else if(LObjects::T_QNetworkRequest == n) { p = new QNetworkRequest(*toQNetworkRequestPointer(l_arg)); } - else if(LObjects::T_QSslCertificate == n) { p = new QSslCertificate(*toQSslCertificatePointer(l_arg)); } - else if(LObjects::T_QSslCipher == n) { p = new QSslCipher(*toQSslCipherPointer(l_arg)); } - else if(LObjects::T_QSslConfiguration == n) { p = new QSslConfiguration(*toQSslConfigurationPointer(l_arg)); } - else if(LObjects::T_QSslKey == n) { p = new QSslKey(*toQSslKeyPointer(l_arg)); } + if(LObjects::T_QHostAddress == n) { p = new QHostAddress(*toQHostAddressPointer(l_arg)); } + else if(LObjects::T_QHostInfo == n) { p = new QHostInfo(*toQHostInfoPointer(l_arg)); } + else if(LObjects::T_QHttpPart == n) { p = new QHttpPart(*toQHttpPartPointer(l_arg)); } + else if(LObjects::T_QNetworkAddressEntry == n) { p = new QNetworkAddressEntry(*toQNetworkAddressEntryPointer(l_arg)); } + else if(LObjects::T_QNetworkCacheMetaData == n) { p = new QNetworkCacheMetaData(*toQNetworkCacheMetaDataPointer(l_arg)); } + else if(LObjects::T_QNetworkConfiguration == n) { p = new QNetworkConfiguration(*toQNetworkConfigurationPointer(l_arg)); } + else if(LObjects::T_QList_QNetworkConfiguration == n) { p = new QList(toQNetworkConfigurationList(l_arg)); } + else if(LObjects::T_QNetworkCookie == n) { p = new QNetworkCookie(*toQNetworkCookiePointer(l_arg)); } + else if(LObjects::T_QList_QNetworkCookie == n) { p = new QList(toQNetworkCookieList(l_arg)); } + else if(LObjects::T_QNetworkInterface == n) { p = new QNetworkInterface(*toQNetworkInterfacePointer(l_arg)); } + else if(LObjects::T_QNetworkProxy == n) { p = new QNetworkProxy(*toQNetworkProxyPointer(l_arg)); } + else if(LObjects::T_QNetworkRequest == n) { p = new QNetworkRequest(*toQNetworkRequestPointer(l_arg)); } + else if(LObjects::T_QSslCertificate == n) { p = new QSslCertificate(*toQSslCertificatePointer(l_arg)); } + else if(LObjects::T_QSslCipher == n) { p = new QSslCipher(*toQSslCipherPointer(l_arg)); } + else if(LObjects::T_QSslConfiguration == n) { p = new QSslConfiguration(*toQSslConfigurationPointer(l_arg)); } + else if(LObjects::T_QSslKey == n) { p = new QSslKey(*toQSslKeyPointer(l_arg)); } else { _found = false; } if(_found) { *found = true; } @@ -54,16 +82,25 @@ void* toMetaArg(int n, cl_object l_arg, bool* found) { cl_object to_lisp_arg(int n, void* p, bool* found) { cl_object l_ret = Cnil; bool _found = true; - if(LObjects::T_QHostAddress == n) { l_ret = from_qhostaddress(*(QHostAddress*)p); } - else if(LObjects::T_QHostInfo == n) { l_ret = from_qhostinfo(*(QHostInfo*)p); } - else if(LObjects::T_QNetworkCacheMetaData == n) { l_ret = from_qnetworkcachemetadata(*(QNetworkCacheMetaData*)p); } - else if(LObjects::T_QNetworkInterface == n) { l_ret = from_qnetworkinterface(*(QNetworkInterface*)p); } - else if(LObjects::T_QNetworkProxy == n) { l_ret = from_qnetworkproxy(*(QNetworkProxy*)p); } - else if(LObjects::T_QNetworkRequest == n) { l_ret = from_qnetworkrequest(*(QNetworkRequest*)p); } - else if(LObjects::T_QSslCertificate == n) { l_ret = from_qsslcertificate(*(QSslCertificate*)p); } - else if(LObjects::T_QSslCipher == n) { l_ret = from_qsslcipher(*(QSslCipher*)p); } - else if(LObjects::T_QSslConfiguration == n) { l_ret = from_qsslconfiguration(*(QSslConfiguration*)p); } - else if(LObjects::T_QSslKey == n) { l_ret = from_qsslkey(*(QSslKey*)p); } + if(LObjects::T_QHostAddress == n) { l_ret = from_qhostaddress(*(QHostAddress*)p); } + else if(LObjects::T_QHostInfo == n) { l_ret = from_qhostinfo(*(QHostInfo*)p); } + else if(LObjects::T_QHttpPart == n) { l_ret = from_qhttppart(*(QHttpPart*)p); } + else if(LObjects::T_QNetworkAddressEntry == n) { l_ret = from_qnetworkaddressentry(*(QNetworkAddressEntry*)p); } + else if(LObjects::T_QList_QNetworkAddressEntry == n) { l_ret = from_qnetworkaddressentrylist(*(QList*)p); } + else if(LObjects::T_QNetworkCacheMetaData == n) { l_ret = from_qnetworkcachemetadata(*(QNetworkCacheMetaData*)p); } + else if(LObjects::T_QNetworkConfiguration == n) { l_ret = from_qnetworkconfiguration(*(QNetworkConfiguration*)p); } + else if(LObjects::T_QList_QNetworkConfiguration == n) { l_ret = from_qnetworkconfigurationlist(*(QList*)p); } + else if(LObjects::T_QNetworkCookie == n) { l_ret = from_qnetworkcookie(*(QNetworkCookie*)p); } + else if(LObjects::T_QList_QNetworkCookie == n) { l_ret = from_qnetworkcookielist(*(QList*)p); } + else if(LObjects::T_QNetworkInterface == n) { l_ret = from_qnetworkinterface(*(QNetworkInterface*)p); } + else if(LObjects::T_QList_QNetworkInterface == n) { l_ret = from_qnetworkinterfacelist(*(QList*)p); } + else if(LObjects::T_QNetworkProxy == n) { l_ret = from_qnetworkproxy(*(QNetworkProxy*)p); } + else if(LObjects::T_QList_QNetworkProxy == n) { l_ret = from_qnetworkproxylist(*(QList*)p); } + else if(LObjects::T_QNetworkRequest == n) { l_ret = from_qnetworkrequest(*(QNetworkRequest*)p); } + else if(LObjects::T_QSslCertificate == n) { l_ret = from_qsslcertificate(*(QSslCertificate*)p); } + else if(LObjects::T_QSslCipher == n) { l_ret = from_qsslcipher(*(QSslCipher*)p); } + else if(LObjects::T_QSslConfiguration == n) { l_ret = from_qsslconfiguration(*(QSslConfiguration*)p); } + else if(LObjects::T_QSslKey == n) { l_ret = from_qsslkey(*(QSslKey*)p); } else { _found = false; } if(_found) { *found = true; } diff --git a/src/gen/network/_n_classes.h b/src/gen/network/_n_classes.h index d44946c..4c0aaab 100644 --- a/src/gen/network/_n_classes.h +++ b/src/gen/network/_n_classes.h @@ -44,8 +44,18 @@ public: uint unique; }; +class LHttpPart : public QHttpPart { + friend class N93; +public: + LHttpPart(uint u) : unique(u) {} + LHttpPart(uint u, const QHttpPart& x1) : QHttpPart(x1), unique(u) {} + + static NumList overrideIds; + uint unique; +}; + class LNetworkAddressEntry : public QNetworkAddressEntry { - friend class N121; + friend class N122; public: LNetworkAddressEntry(uint u) : unique(u) {} LNetworkAddressEntry(uint u, const QNetworkAddressEntry& x1) : QNetworkAddressEntry(x1), unique(u) {} @@ -55,7 +65,7 @@ public: }; class LNetworkCacheMetaData : public QNetworkCacheMetaData { - friend class N122; + friend class N123; public: LNetworkCacheMetaData(uint u) : unique(u) {} LNetworkCacheMetaData(uint u, const QNetworkCacheMetaData& x1) : QNetworkCacheMetaData(x1), unique(u) {} @@ -64,8 +74,18 @@ public: uint unique; }; +class LNetworkConfiguration : public QNetworkConfiguration { + friend class N124; +public: + LNetworkConfiguration(uint u) : unique(u) {} + LNetworkConfiguration(uint u, const QNetworkConfiguration& x1) : QNetworkConfiguration(x1), unique(u) {} + + static NumList overrideIds; + uint unique; +}; + class LNetworkCookie : public QNetworkCookie { - friend class N123; + friend class N125; 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 +95,7 @@ public: }; class LNetworkInterface : public QNetworkInterface { - friend class N124; + friend class N126; public: LNetworkInterface(uint u) : unique(u) {} LNetworkInterface(uint u, const QNetworkInterface& x1) : QNetworkInterface(x1), unique(u) {} @@ -85,7 +105,7 @@ public: }; class LNetworkProxy : public QNetworkProxy { - friend class N125; + friend class N127; 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 +116,7 @@ public: }; class LNetworkProxyFactory : public QNetworkProxyFactory { - friend class N126; + friend class N128; public: LNetworkProxyFactory(uint u) : unique(u) {} @@ -107,7 +127,7 @@ public: }; class LNetworkProxyQuery : public QNetworkProxyQuery { - friend class N127; + friend class N129; public: LNetworkProxyQuery(uint u) : unique(u) {} LNetworkProxyQuery(uint u, const QUrl& x1, QueryType x2 = UrlRequest) : QNetworkProxyQuery(x1, x2), unique(u) {} @@ -123,7 +143,7 @@ public: }; class LNetworkRequest : public QNetworkRequest { - friend class N128; + friend class N130; public: LNetworkRequest(uint u, const QUrl& x1 = QUrl()) : QNetworkRequest(x1), unique(u) {} LNetworkRequest(uint u, const QNetworkRequest& x1) : QNetworkRequest(x1), unique(u) {} @@ -133,7 +153,7 @@ public: }; class LSslCertificate : public QSslCertificate { - friend class N172; + friend class N174; 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 +163,7 @@ public: }; class LSslCipher : public QSslCipher { - friend class N173; + friend class N175; public: LSslCipher(uint u) : unique(u) {} LSslCipher(uint u, const QString& x1) : QSslCipher(x1), unique(u) {} @@ -155,7 +175,7 @@ public: }; class LSslConfiguration : public QSslConfiguration { - friend class N174; + friend class N176; public: LSslConfiguration(uint u) : unique(u) {} LSslConfiguration(uint u, const QSslConfiguration& x1) : QSslConfiguration(x1), unique(u) {} @@ -165,7 +185,7 @@ public: }; class LSslError : public QSslError { - friend class N175; + friend class N177; public: LSslError(uint u) : unique(u) {} LSslError(uint u, SslError x1) : QSslError(x1), unique(u) {} @@ -177,7 +197,7 @@ public: }; class LSslKey : public QSslKey { - friend class N176; + friend class N178; 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 d3c8bbb..73aa18e 100644 --- a/src/gen/network/_n_methods.h +++ b/src/gen/network/_n_methods.h @@ -71,7 +71,17 @@ public: Q_INVOKABLE int SlookupHost(const QString& x1, QObject* x2, const char* x3) { return QHostInfo::lookupHost(x1, x2, x3); } }; -class N121 : public QObject { // QNetworkAddressEntry +class N93 : public QObject { // QHttpPart + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LHttpPart(u); } + Q_INVOKABLE void* C(uint u, const QHttpPart& x1) { return new LHttpPart(u, x1); } + Q_INVOKABLE void MsetBody(QHttpPart* o, const QByteArray& x1) { o->setBody(x1); } + Q_INVOKABLE void MsetHeader(QHttpPart* o, QNetworkRequest::KnownHeaders x1, const QVariant& x2) { o->setHeader(x1, x2); } + Q_INVOKABLE void MsetRawHeader(QHttpPart* o, const QByteArray& x1, const QByteArray& x2) { o->setRawHeader(x1, x2); } +}; + +class N122 : public QObject { // QNetworkAddressEntry Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LNetworkAddressEntry(u); } @@ -84,10 +94,9 @@ public: Q_INVOKABLE void MsetIp(QNetworkAddressEntry* o, const QHostAddress& x1) { o->setIp(x1); } Q_INVOKABLE void MsetNetmask(QNetworkAddressEntry* o, const QHostAddress& x1) { o->setNetmask(x1); } Q_INVOKABLE void MsetPrefixLength(QNetworkAddressEntry* o, int x1) { o->setPrefixLength(x1); } - Q_INVOKABLE void Mswap(QNetworkAddressEntry* o, QNetworkAddressEntry& x1) { o->swap(x1); } }; -class N122 : public QObject { // QNetworkCacheMetaData +class N123 : public QObject { // QNetworkCacheMetaData Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LNetworkCacheMetaData(u); } @@ -100,11 +109,28 @@ public: Q_INVOKABLE void MsetLastModified(QNetworkCacheMetaData* o, const QDateTime& x1) { o->setLastModified(x1); } Q_INVOKABLE void MsetSaveToDisk(QNetworkCacheMetaData* o, bool x1) { o->setSaveToDisk(x1); } Q_INVOKABLE void MsetUrl(QNetworkCacheMetaData* o, const QUrl& x1) { o->setUrl(x1); } - Q_INVOKABLE void Mswap(QNetworkCacheMetaData* o, QNetworkCacheMetaData& x1) { o->swap(x1); } Q_INVOKABLE QUrl Murl(QNetworkCacheMetaData* o) const { return o->url(); } }; -class N123 : public QObject { // QNetworkCookie +class N124 : public QObject { // QNetworkConfiguration + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LNetworkConfiguration(u); } + Q_INVOKABLE void* C(uint u, const QNetworkConfiguration& x1) { return new LNetworkConfiguration(u, x1); } + Q_INVOKABLE int MbearerType(QNetworkConfiguration* o) const { return o->bearerType(); } + Q_INVOKABLE int MbearerTypeFamily(QNetworkConfiguration* o) const { return o->bearerTypeFamily(); } + Q_INVOKABLE QString MbearerTypeName(QNetworkConfiguration* o) const { return o->bearerTypeName(); } + Q_INVOKABLE QList Mchildren(QNetworkConfiguration* o) const { return o->children(); } + Q_INVOKABLE QString Midentifier(QNetworkConfiguration* o) const { return o->identifier(); } + Q_INVOKABLE bool MisRoamingAvailable(QNetworkConfiguration* o) const { return o->isRoamingAvailable(); } + Q_INVOKABLE bool MisValid(QNetworkConfiguration* o) const { return o->isValid(); } + Q_INVOKABLE QString Mname(QNetworkConfiguration* o) const { return o->name(); } + Q_INVOKABLE int Mpurpose(QNetworkConfiguration* o) const { return o->purpose(); } + Q_INVOKABLE int Mstate(QNetworkConfiguration* o) const { return o->state(); } + Q_INVOKABLE int Mtype(QNetworkConfiguration* o) const { return o->type(); } +}; + +class N125 : 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); } @@ -125,13 +151,12 @@ public: Q_INVOKABLE void MsetPath(QNetworkCookie* o, const QString& x1) { o->setPath(x1); } Q_INVOKABLE void MsetSecure(QNetworkCookie* o, bool x1) { o->setSecure(x1); } Q_INVOKABLE void MsetValue(QNetworkCookie* o, const QByteArray& x1) { o->setValue(x1); } - Q_INVOKABLE void Mswap(QNetworkCookie* o, QNetworkCookie& x1) { o->swap(x1); } Q_INVOKABLE QByteArray MtoRawForm(QNetworkCookie* o, QNetworkCookie::RawForm x1 = QNetworkCookie::Full) const { return o->toRawForm(x1); } Q_INVOKABLE QByteArray Mvalue(QNetworkCookie* o) const { return o->value(); } Q_INVOKABLE QList SparseCookies(const QByteArray& x1) { return QNetworkCookie::parseCookies(x1); } }; -class N124 : public QObject { // QNetworkInterface +class N126 : public QObject { // QNetworkInterface Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LNetworkInterface(u); } @@ -143,14 +168,13 @@ public: Q_INVOKABLE int Mindex(QNetworkInterface* o) const { return o->index(); } Q_INVOKABLE bool MisValid(QNetworkInterface* o) const { return o->isValid(); } Q_INVOKABLE QString Mname(QNetworkInterface* o) const { return o->name(); } - Q_INVOKABLE void Mswap(QNetworkInterface* o, QNetworkInterface& x1) { o->swap(x1); } Q_INVOKABLE QList SallAddresses() { return QNetworkInterface::allAddresses(); } Q_INVOKABLE QList SallInterfaces() { return QNetworkInterface::allInterfaces(); } Q_INVOKABLE QNetworkInterface SinterfaceFromIndex(int x1) { return QNetworkInterface::interfaceFromIndex(x1); } Q_INVOKABLE QNetworkInterface SinterfaceFromName(const QString& x1) { return QNetworkInterface::interfaceFromName(x1); } }; -class N125 : public QObject { // QNetworkProxy +class N127 : public QObject { // QNetworkProxy Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LNetworkProxy(u); } @@ -174,14 +198,13 @@ public: Q_INVOKABLE void MsetRawHeader(QNetworkProxy* o, const QByteArray& x1, const QByteArray& x2) { o->setRawHeader(x1, x2); } Q_INVOKABLE void MsetType(QNetworkProxy* o, QNetworkProxy::ProxyType x1) { o->setType(x1); } Q_INVOKABLE void MsetUser(QNetworkProxy* o, const QString& x1) { o->setUser(x1); } - Q_INVOKABLE void Mswap(QNetworkProxy* o, QNetworkProxy& x1) { o->swap(x1); } Q_INVOKABLE int Mtype(QNetworkProxy* o) const { return o->type(); } Q_INVOKABLE QString Muser(QNetworkProxy* o) const { return o->user(); } Q_INVOKABLE QNetworkProxy SapplicationProxy() { return QNetworkProxy::applicationProxy(); } Q_INVOKABLE void SsetApplicationProxy(const QNetworkProxy& x1) { QNetworkProxy::setApplicationProxy(x1); } }; -class N126 : public QObject { // QNetworkProxyFactory +class N128 : public QObject { // QNetworkProxyFactory Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LNetworkProxyFactory(u); } @@ -192,7 +215,7 @@ public: Q_INVOKABLE QList SsystemProxyForQuery(const QNetworkProxyQuery& x1 = QNetworkProxyQuery()) { return QNetworkProxyFactory::systemProxyForQuery(x1); } }; -class N127 : public QObject { // QNetworkProxyQuery +class N129 : public QObject { // QNetworkProxyQuery Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LNetworkProxyQuery(u); } @@ -216,11 +239,10 @@ public: Q_INVOKABLE void MsetProtocolTag(QNetworkProxyQuery* o, const QString& x1) { o->setProtocolTag(x1); } Q_INVOKABLE void MsetQueryType(QNetworkProxyQuery* o, QNetworkProxyQuery::QueryType x1) { o->setQueryType(x1); } Q_INVOKABLE void MsetUrl(QNetworkProxyQuery* o, const QUrl& x1) { o->setUrl(x1); } - Q_INVOKABLE void Mswap(QNetworkProxyQuery* o, QNetworkProxyQuery& x1) { o->swap(x1); } Q_INVOKABLE QUrl Murl(QNetworkProxyQuery* o) const { return o->url(); } }; -class N128 : public QObject { // QNetworkRequest +class N130 : public QObject { // QNetworkRequest Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QUrl& x1 = QUrl()) { return new LNetworkRequest(u, x1); } @@ -240,11 +262,10 @@ public: Q_INVOKABLE void MsetSslConfiguration(QNetworkRequest* o, const QSslConfiguration& x1) { o->setSslConfiguration(x1); } Q_INVOKABLE void MsetUrl(QNetworkRequest* o, const QUrl& x1) { o->setUrl(x1); } Q_INVOKABLE QSslConfiguration MsslConfiguration(QNetworkRequest* o) const { return o->sslConfiguration(); } - Q_INVOKABLE void Mswap(QNetworkRequest* o, QNetworkRequest& x1) { o->swap(x1); } Q_INVOKABLE QUrl Murl(QNetworkRequest* o) const { return o->url(); } }; -class N172 : public QObject { // QSslCertificate +class N174 : 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 +297,7 @@ public: Q_INVOKABLE QList Sverify(const QList& x1, const QString& x2 = QString()) { return QSslCertificate::verify(x1, x2); } }; -class N173 : public QObject { // QSslCipher +class N175 : public QObject { // QSslCipher Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslCipher(u); } @@ -295,7 +316,7 @@ public: Q_INVOKABLE int MusedBits(QSslCipher* o) const { return o->usedBits(); } }; -class N174 : public QObject { // QSslConfiguration +class N176 : public QObject { // QSslConfiguration Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslConfiguration(u); } @@ -340,7 +361,7 @@ public: Q_INVOKABLE QList SsystemCaCertificates() { return QSslConfiguration::systemCaCertificates(); } }; -class N175 : public QObject { // QSslError +class N177 : public QObject { // QSslError Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslError(u); } @@ -353,7 +374,7 @@ public: Q_INVOKABLE void Mswap(QSslError* o, QSslError& x1) { o->swap(x1); } }; -class N176 : public QObject { // QSslKey +class N178 : public QObject { // QSslKey Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslKey(u); } diff --git a/src/gen/network/_q_classes.h b/src/gen/network/_q_classes.h index 5e9f11f..9044756 100644 --- a/src/gen/network/_q_classes.h +++ b/src/gen/network/_q_classes.h @@ -50,9 +50,25 @@ public: void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractSocket::timerEvent(x1); }} }; +class LHttpMultiPart : public QHttpMultiPart { + Q_OBJECT + friend class Q104; +public: + LHttpMultiPart(uint u, QObject* x1 = 0) : QHttpMultiPart(x1), unique(u) {} + LHttpMultiPart(uint u, ContentType x1, QObject* x2 = 0) : QHttpMultiPart(x1, x2), unique(u) {} + + static NumList overrideIds; + uint unique; + + bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QHttpMultiPart::eventFilter(x1, x2); } return ret; } + void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QHttpMultiPart::childEvent(x1); }} + void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QHttpMultiPart::customEvent(x1); }} + void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QHttpMultiPart::timerEvent(x1); }} +}; + class LLocalServer : public QLocalServer { Q_OBJECT - friend class Q119; + friend class Q120; public: LLocalServer(uint u, QObject* x1 = 0) : QLocalServer(x1), unique(u) {} @@ -69,7 +85,7 @@ public: class LLocalSocket : public QLocalSocket { Q_OBJECT - friend class Q120; + friend class Q121; public: LLocalSocket(uint u, QObject* x1 = 0) : QLocalSocket(x1), unique(u) {} @@ -100,7 +116,7 @@ public: class LNetworkAccessManager : public QNetworkAccessManager { Q_OBJECT - friend class Q135; + friend class Q136; public: LNetworkAccessManager(uint u, QObject* x1 = 0) : QNetworkAccessManager(x1), unique(u) {} @@ -115,7 +131,7 @@ public: class LNetworkCookieJar : public QNetworkCookieJar { Q_OBJECT - friend class Q136; + friend class Q137; public: LNetworkCookieJar(uint u, QObject* x1 = 0) : QNetworkCookieJar(x1), unique(u) {} @@ -136,7 +152,7 @@ public: class LNetworkDiskCache : public QNetworkDiskCache { Q_OBJECT - friend class Q137; + friend class Q138; public: LNetworkDiskCache(uint u, QObject* x1 = 0) : QNetworkDiskCache(x1), unique(u) {} @@ -156,7 +172,7 @@ public: class LTcpServer : public QTcpServer { Q_OBJECT - friend class Q211; + friend class Q212; public: LTcpServer(uint u, QObject* x1 = 0) : QTcpServer(x1), unique(u) {} @@ -173,7 +189,7 @@ public: class LTcpSocket : public QTcpSocket { Q_OBJECT - friend class Q212; + friend class Q213; public: LTcpSocket(uint u, QObject* x1 = 0) : QTcpSocket(x1), unique(u) {} @@ -212,7 +228,7 @@ public: class LUdpSocket : public QUdpSocket { Q_OBJECT - friend class Q230; + friend class Q231; public: LUdpSocket(uint u, QObject* x1 = 0) : QUdpSocket(x1), unique(u) {} diff --git a/src/gen/network/_q_methods.h b/src/gen/network/_q_methods.h index d840c5e..1cfcdd7 100644 --- a/src/gen/network/_q_methods.h +++ b/src/gen/network/_q_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class Q7 : public Q139 { // QAbstractNetworkCache +class Q7 : public Q140 { // QAbstractNetworkCache Q_OBJECT public: Q_INVOKABLE qlonglong McacheSize(QAbstractNetworkCache* o) const { return o->cacheSize(); } @@ -20,7 +20,18 @@ public: Q_INVOKABLE void MupdateMetaData(QAbstractNetworkCache* o, const QNetworkCacheMetaData& x1) { o->updateMetaData(x1); } }; -class Q119 : public Q139 { // QLocalServer +class Q104 : public Q140 { // QHttpMultiPart + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LHttpMultiPart(u, x1); } + Q_INVOKABLE void* C(uint u, QHttpMultiPart::ContentType x1, QObject* x2 = 0) { return new LHttpMultiPart(u, x1, x2); } + Q_INVOKABLE void Mappend(QHttpMultiPart* o, const QHttpPart& x1) { o->append(x1); } + Q_INVOKABLE QByteArray Mboundary(QHttpMultiPart* o) const { return o->boundary(); } + Q_INVOKABLE void MsetBoundary(QHttpMultiPart* o, const QByteArray& x1) { o->setBoundary(x1); } + Q_INVOKABLE void MsetContentType(QHttpMultiPart* o, QHttpMultiPart::ContentType x1) { o->setContentType(x1); } +}; + +class Q120 : public Q140 { // QLocalServer Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LLocalServer(u, x1); } @@ -41,7 +52,7 @@ public: Q_INVOKABLE bool SremoveServer(const QString& x1) { return QLocalServer::removeServer(x1); } }; -class Q120 : public Q104 { // QLocalSocket +class Q121 : public Q105 { // QLocalSocket Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LLocalSocket(u, x1); } @@ -70,7 +81,7 @@ public: Q_INVOKABLE bool MwaitForReadyRead(QLocalSocket* o, int x1 = 30000) { return o->waitForReadyRead(x1); } }; -class Q135 : public Q139 { // QNetworkAccessManager +class Q136 : public Q140 { // QNetworkAccessManager Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LNetworkAccessManager(u, x1); } @@ -100,7 +111,7 @@ public: Q_INVOKABLE QStringList MsupportedSchemes(QNetworkAccessManager* o) const { return o->supportedSchemes(); } }; -class Q136 : public Q139 { // QNetworkCookieJar +class Q137 : public Q140 { // QNetworkCookieJar Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LNetworkCookieJar(u, x1); } @@ -113,7 +124,7 @@ public: Q_INVOKABLE void MsetAllCookies(QNetworkCookieJar* o, const QList& x1) { ((LNetworkCookieJar*)o)->setAllCookies(x1); } }; -class Q137 : public Q7 { // QNetworkDiskCache +class Q138 : public Q7 { // QNetworkDiskCache Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LNetworkDiskCache(u, x1); } @@ -128,7 +139,7 @@ public: Q_INVOKABLE void MupdateMetaData(QNetworkDiskCache* o, const QNetworkCacheMetaData& x1) { o->updateMetaData(x1); } }; -class Q138 : public Q104 { // QNetworkReply +class Q139 : public Q105 { // QNetworkReply Q_OBJECT public: Q_INVOKABLE QVariant Mattribute(QNetworkReply* o, QNetworkRequest::Attribute x1) const { return o->attribute(x1); } @@ -151,7 +162,7 @@ public: Q_INVOKABLE void Mclose(QNetworkReply* o) { o->close(); } }; -class Q211 : public Q139 { // QTcpServer +class Q212 : public Q140 { // QTcpServer Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTcpServer(u, x1); } @@ -174,7 +185,7 @@ public: Q_INVOKABLE void MaddPendingConnection(QTcpServer* o, QTcpSocket* x1) { ((LTcpServer*)o)->addPendingConnection(x1); } }; -class Q12 : public Q104 { // QAbstractSocket +class Q12 : public Q105 { // QAbstractSocket Q_OBJECT public: Q_INVOKABLE void* C(uint u, QAbstractSocket::SocketType x1, QObject* x2) { return new LAbstractSocket(u, x1, x2); } @@ -222,13 +233,13 @@ public: Q_INVOKABLE bool MwaitForReadyRead(QAbstractSocket* o, int x1 = 30000) { return o->waitForReadyRead(x1); } }; -class Q212 : public Q12 { // QTcpSocket +class Q213 : public Q12 { // QTcpSocket Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LTcpSocket(u, x1); } }; -class Q230 : public Q12 { // QUdpSocket +class Q231 : public Q12 { // QUdpSocket Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LUdpSocket(u, x1); } diff --git a/src/gen/sql/_ini.cpp b/src/gen/sql/_ini.cpp index b4c8116..b46269f 100644 --- a/src/gen/sql/_ini.cpp +++ b/src/gen/sql/_ini.cpp @@ -23,62 +23,62 @@ NumList LSqlResult::overrideIds = NumList() << 332 << 488 << 489 << 479 << 107 < void ini() { static bool _ = false; if(_) return; _ = true; ini2(); - LObjects::Q[184] = new Q185; LObjects::Q[185] = new Q186; LObjects::Q[186] = new Q187; LObjects::Q[187] = new Q188; LObjects::Q[188] = new Q189; - LObjects::N[163] = new N164; - LObjects::N[164] = new N165; + LObjects::Q[189] = new Q190; LObjects::N[165] = new N166; LObjects::N[166] = new N167; LObjects::N[167] = new N168; LObjects::N[168] = new N169; LObjects::N[169] = new N170; - LObjects::N[170] = new N171; } + LObjects::N[170] = new N171; + LObjects::N[171] = new N172; + LObjects::N[172] = new N173; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; switch(n) { - case 185: m = &QSqlDriver::staticMetaObject; break; - case 186: m = &QSqlQueryModel::staticMetaObject; break; - case 187: m = &QSqlRelationalDelegate::staticMetaObject; break; - case 188: m = &QSqlRelationalTableModel::staticMetaObject; break; - case 189: m = &QSqlTableModel::staticMetaObject; break; } + case 186: m = &QSqlDriver::staticMetaObject; break; + case 187: m = &QSqlQueryModel::staticMetaObject; break; + case 188: m = &QSqlRelationalDelegate::staticMetaObject; break; + case 189: m = &QSqlRelationalTableModel::staticMetaObject; break; + case 190: m = &QSqlTableModel::staticMetaObject; break; } return m; } void deleteNObject(int n, void* p, int gc) { switch(n) { - case 164: if(gc) delete (QSqlDatabase*)p; else delete (LSqlDatabase*)p; break; - case 165: if(gc) delete (QSqlError*)p; else delete (LSqlError*)p; break; - case 166: if(gc) delete (QSqlField*)p; else delete (LSqlField*)p; break; - case 167: if(gc) delete (QSqlIndex*)p; else delete (LSqlIndex*)p; break; - case 168: if(gc) delete (QSqlQuery*)p; else delete (LSqlQuery*)p; break; - case 169: if(gc) delete (QSqlRecord*)p; else delete (LSqlRecord*)p; break; - case 170: if(gc) delete (QSqlRelation*)p; else delete (LSqlRelation*)p; break; - case 171: if(gc) delete (QSqlResult*)p; else delete (LSqlResult*)p; break; }} + case 166: if(gc) delete (QSqlDatabase*)p; else delete (LSqlDatabase*)p; break; + case 167: if(gc) delete (QSqlError*)p; else delete (LSqlError*)p; break; + case 168: if(gc) delete (QSqlField*)p; else delete (LSqlField*)p; break; + case 169: if(gc) delete (QSqlIndex*)p; else delete (LSqlIndex*)p; break; + case 170: if(gc) delete (QSqlQuery*)p; else delete (LSqlQuery*)p; break; + case 171: if(gc) delete (QSqlRecord*)p; else delete (LSqlRecord*)p; break; + case 172: if(gc) delete (QSqlRelation*)p; else delete (LSqlRelation*)p; break; + case 173: if(gc) delete (QSqlResult*)p; else delete (LSqlResult*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; int n = LObjects::q_names.value(name, -1); if(n != -1) { switch(n) { - case 185: ids = &LSqlDriver::overrideIds; break; - case 186: ids = &LSqlQueryModel::overrideIds; break; - case 187: ids = &LSqlRelationalDelegate::overrideIds; break; - case 188: ids = &LSqlRelationalTableModel::overrideIds; break; - case 189: ids = &LSqlTableModel::overrideIds; break; }} + case 186: ids = &LSqlDriver::overrideIds; break; + case 187: ids = &LSqlQueryModel::overrideIds; break; + case 188: ids = &LSqlRelationalDelegate::overrideIds; break; + case 189: ids = &LSqlRelationalTableModel::overrideIds; break; + case 190: ids = &LSqlTableModel::overrideIds; break; }} else { n = LObjects::n_names.value(name); switch(n) { - case 164: ids = &LSqlDatabase::overrideIds; break; - case 165: ids = &LSqlError::overrideIds; break; - case 166: ids = &LSqlField::overrideIds; break; - case 167: ids = &LSqlIndex::overrideIds; break; - case 168: ids = &LSqlQuery::overrideIds; break; - case 169: ids = &LSqlRecord::overrideIds; break; - case 170: ids = &LSqlRelation::overrideIds; break; - case 171: ids = &LSqlResult::overrideIds; break; }} + case 166: ids = &LSqlDatabase::overrideIds; break; + case 167: ids = &LSqlError::overrideIds; break; + case 168: ids = &LSqlField::overrideIds; break; + case 169: ids = &LSqlIndex::overrideIds; break; + case 170: ids = &LSqlQuery::overrideIds; break; + case 171: ids = &LSqlRecord::overrideIds; break; + case 172: ids = &LSqlRelation::overrideIds; break; + case 173: ids = &LSqlResult::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/sql/_n_classes.h b/src/gen/sql/_n_classes.h index cd243e8..01564d6 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 N164; + friend class N166; 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 N165; + friend class N167; 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 N166; + friend class N168; 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 N167; + friend class N169; 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 N168; + friend class N170; 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 N169; + friend class N171; 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 N170; + friend class N172; 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 N171; + friend class N173; public: static NumList overrideIds; diff --git a/src/gen/sql/_n_methods.h b/src/gen/sql/_n_methods.h index b4ec928..090906b 100644 --- a/src/gen/sql/_n_methods.h +++ b/src/gen/sql/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N164 : public QObject { // QSqlDatabase +class N166 : 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 N165 : public QObject { // QSqlError +class N167 : 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 N166 : public QObject { // QSqlField +class N168 : 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 N168 : public QObject { // QSqlQuery +class N170 : 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 N169 : public QObject { // QSqlRecord +class N171 : 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 N170 : public QObject { // QSqlRelation +class N172 : 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 N171 : public QObject { // QSqlResult +class N173 : 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 N167 : public N169 { // QSqlIndex +class N169 : public N171 { // QSqlIndex Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1 = QString(), const QString& x2 = QString()) { return new LSqlIndex(u, x1, x2); } diff --git a/src/gen/sql/_q_classes.h b/src/gen/sql/_q_classes.h index cfe1683..31075f7 100644 --- a/src/gen/sql/_q_classes.h +++ b/src/gen/sql/_q_classes.h @@ -13,7 +13,7 @@ QT_BEGIN_NAMESPACE class LSqlDriver : public QSqlDriver { Q_OBJECT - friend class Q185; + friend class Q186; public: LSqlDriver(uint u, QObject* x1 = 0) : QSqlDriver(x1), unique(u) {} @@ -51,7 +51,7 @@ public: class LSqlQueryModel : public QSqlQueryModel { Q_OBJECT - friend class Q186; + friend class Q187; public: LSqlQueryModel(uint u, QObject* x1 = 0) : QSqlQueryModel(x1), unique(u) {} @@ -95,7 +95,7 @@ public: class LSqlRelationalDelegate : public QSqlRelationalDelegate { Q_OBJECT - friend class Q187; + friend class Q188; public: LSqlRelationalDelegate(uint u, QObject* x1 = 0) : QSqlRelationalDelegate(x1), unique(u) {} @@ -123,7 +123,7 @@ public: class LSqlRelationalTableModel : public QSqlRelationalTableModel { Q_OBJECT - friend class Q188; + friend class Q189; public: LSqlRelationalTableModel(uint u, QObject* x1 = 0, QSqlDatabase x2 = QSqlDatabase()) : QSqlRelationalTableModel(x1, x2), unique(u) {} @@ -180,7 +180,7 @@ public: class LSqlTableModel : public QSqlTableModel { Q_OBJECT - friend class Q189; + friend class Q190; public: LSqlTableModel(uint u, QObject* x1 = 0, QSqlDatabase x2 = QSqlDatabase()) : QSqlTableModel(x1, x2), unique(u) {} diff --git a/src/gen/sql/_q_methods.h b/src/gen/sql/_q_methods.h index 139ce3b..9fcef06 100644 --- a/src/gen/sql/_q_methods.h +++ b/src/gen/sql/_q_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class Q185 : public Q139 { // QSqlDriver +class Q186 : public Q140 { // QSqlDriver Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSqlDriver(u, x1); } @@ -42,7 +42,7 @@ public: Q_INVOKABLE bool MunsubscribeFromNotification(QSqlDriver* o, const QString& x1) { return o->unsubscribeFromNotification(x1); } }; -class Q186 : public Q15 { // QSqlQueryModel +class Q187 : public Q15 { // QSqlQueryModel Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSqlQueryModel(u, x1); } @@ -65,7 +65,7 @@ public: Q_INVOKABLE bool MsetHeaderData(QSqlQueryModel* o, int x1, Qt::Orientation x2, const QVariant& x3, int x4 = Qt::EditRole) { return o->setHeaderData(x1, x2, x3, x4); } }; -class Q187 : public Q109 { // QSqlRelationalDelegate +class Q188 : public Q110 { // QSqlRelationalDelegate Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSqlRelationalDelegate(u, x1); } @@ -73,7 +73,7 @@ public: Q_INVOKABLE void MsetModelData(QSqlRelationalDelegate* o, QWidget* x1, QAbstractItemModel* x2, const QModelIndex& x3) const { o->setModelData(x1, x2, x3); } }; -class Q189 : public Q186 { // QSqlTableModel +class Q190 : public Q187 { // QSqlTableModel Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0, QSqlDatabase x2 = QSqlDatabase()) { return new LSqlTableModel(u, x1, x2); } @@ -109,7 +109,7 @@ public: Q_INVOKABLE void Msort(QSqlTableModel* o, int x1, Qt::SortOrder x2) { o->sort(x1, x2); } }; -class Q188 : public Q189 { // QSqlRelationalTableModel +class Q189 : public Q190 { // QSqlRelationalTableModel Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0, QSqlDatabase x2 = QSqlDatabase()) { return new LSqlRelationalTableModel(u, x1, x2); } diff --git a/src/gen/svg/_ini.cpp b/src/gen/svg/_ini.cpp index 038dc5d..3f1b61f 100644 --- a/src/gen/svg/_ini.cpp +++ b/src/gen/svg/_ini.cpp @@ -15,21 +15,21 @@ void ini() { static bool _ = false; if(_) return; _ = true; ini2(); LObjects::Q[82] = new Q83; - LObjects::Q[199] = new Q200; LObjects::Q[200] = new Q201; - LObjects::N[184] = new N185; } + LObjects::Q[201] = new Q202; + LObjects::N[186] = new N187; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; switch(n) { case 83: m = &QGraphicsSvgItem::staticMetaObject; break; - case 200: m = &QSvgRenderer::staticMetaObject; break; - case 201: m = &QSvgWidget::staticMetaObject; break; } + case 201: m = &QSvgRenderer::staticMetaObject; break; + case 202: m = &QSvgWidget::staticMetaObject; break; } return m; } void deleteNObject(int n, void* p, int gc) { switch(n) { - case 185: if(gc) delete (QSvgGenerator*)p; else delete (LSvgGenerator*)p; break; }} + case 187: if(gc) delete (QSvgGenerator*)p; else delete (LSvgGenerator*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -37,12 +37,12 @@ NumList* overrideFunctions(const QByteArray& name) { if(n != -1) { switch(n) { case 83: ids = &LGraphicsSvgItem::overrideIds; break; - case 200: ids = &LSvgRenderer::overrideIds; break; - case 201: ids = &LSvgWidget::overrideIds; break; }} + case 201: ids = &LSvgRenderer::overrideIds; break; + case 202: ids = &LSvgWidget::overrideIds; break; }} else { n = LObjects::n_names.value(name); switch(n) { - case 185: ids = &LSvgGenerator::overrideIds; break; }} + case 187: 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 8e0b90e..4e8c63d 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 N185; + friend class N187; public: LSvgGenerator(uint u) : unique(u) {} diff --git a/src/gen/svg/_n_methods.h b/src/gen/svg/_n_methods.h index ff8e3d5..ab3603e 100644 --- a/src/gen/svg/_n_methods.h +++ b/src/gen/svg/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N185 : public N136 { // QSvgGenerator +class N187 : public N138 { // QSvgGenerator Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSvgGenerator(u); } diff --git a/src/gen/svg/_q_classes.h b/src/gen/svg/_q_classes.h index b287c78..abe0783 100644 --- a/src/gen/svg/_q_classes.h +++ b/src/gen/svg/_q_classes.h @@ -32,7 +32,7 @@ public: class LSvgRenderer : public QSvgRenderer { Q_OBJECT - friend class Q200; + friend class Q201; public: LSvgRenderer(uint u, QObject* x1 = 0) : QSvgRenderer(x1), unique(u) {} LSvgRenderer(uint u, const QString& x1, QObject* x2 = 0) : QSvgRenderer(x1, x2), unique(u) {} @@ -49,7 +49,7 @@ public: class LSvgWidget : public QSvgWidget { Q_OBJECT - friend class Q201; + friend class Q202; public: LSvgWidget(uint u, QWidget* x1 = 0) : QSvgWidget(x1), unique(u) {} LSvgWidget(uint u, const QString& x1, QWidget* x2 = 0) : QSvgWidget(x1, x2), unique(u) {} diff --git a/src/gen/svg/_q_methods.h b/src/gen/svg/_q_methods.h index a3f1f0a..aab1ff2 100644 --- a/src/gen/svg/_q_methods.h +++ b/src/gen/svg/_q_methods.h @@ -27,7 +27,7 @@ public: Q_INVOKABLE int Mtype(QGraphicsSvgItem* o) const { return o->type(); } }; -class Q200 : public Q139 { // QSvgRenderer +class Q201 : public Q140 { // QSvgRenderer Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LSvgRenderer(u, x1); } @@ -47,7 +47,7 @@ public: Q_INVOKABLE QRectF MviewBoxF(QSvgRenderer* o) const { return o->viewBoxF(); } }; -class Q201 : public Q245 { // QSvgWidget +class Q202 : public Q246 { // QSvgWidget Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LSvgWidget(u, x1); } diff --git a/src/gen/webkit/_ini.cpp b/src/gen/webkit/_ini.cpp index 55399fc..518d3f4 100644 --- a/src/gen/webkit/_ini.cpp +++ b/src/gen/webkit/_ini.cpp @@ -23,41 +23,41 @@ void ini() { static bool _ = false; if(_) return; _ = true; ini2(); LObjects::Q[87] = new Q88; - LObjects::Q[238] = new Q239; LObjects::Q[239] = new Q240; LObjects::Q[240] = new Q241; LObjects::Q[241] = new Q242; LObjects::Q[242] = new Q243; LObjects::Q[243] = new Q244; - LObjects::N[231] = new N232; - LObjects::N[232] = new N233; + LObjects::Q[244] = new Q245; LObjects::N[233] = new N234; LObjects::N[234] = new N235; LObjects::N[235] = new N236; LObjects::N[236] = new N237; LObjects::N[237] = new N238; - LObjects::N[238] = new N239; } + LObjects::N[238] = new N239; + LObjects::N[239] = new N240; + LObjects::N[240] = new N241; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; switch(n) { case 88: m = &QGraphicsWebView::staticMetaObject; break; - case 239: m = &QWebFrame::staticMetaObject; break; - case 240: m = &QWebHistoryInterface::staticMetaObject; break; - case 241: m = &QWebInspector::staticMetaObject; break; - case 242: m = &QWebPage::staticMetaObject; break; - case 243: m = &QWebPluginFactory::staticMetaObject; break; - case 244: m = &QWebView::staticMetaObject; break; } + case 240: m = &QWebFrame::staticMetaObject; break; + case 241: m = &QWebHistoryInterface::staticMetaObject; break; + case 242: m = &QWebInspector::staticMetaObject; break; + case 243: m = &QWebPage::staticMetaObject; break; + case 244: m = &QWebPluginFactory::staticMetaObject; break; + case 245: m = &QWebView::staticMetaObject; break; } return m; } void deleteNObject(int n, void* p, int gc) { switch(n) { - case 232: if(gc) delete (QWebDatabase*)p; else delete (LWebDatabase*)p; break; - case 233: if(gc) delete (QWebElement*)p; else delete (LWebElement*)p; break; - case 234: if(gc) delete (QWebElementCollection*)p; else delete (LWebElementCollection*)p; break; - case 236: if(gc) delete (QWebHistoryItem*)p; else delete (LWebHistoryItem*)p; break; - case 237: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break; - case 238: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }} + case 234: if(gc) delete (QWebDatabase*)p; else delete (LWebDatabase*)p; break; + case 235: if(gc) delete (QWebElement*)p; else delete (LWebElement*)p; break; + case 236: if(gc) delete (QWebElementCollection*)p; else delete (LWebElementCollection*)p; break; + case 238: if(gc) delete (QWebHistoryItem*)p; else delete (LWebHistoryItem*)p; break; + case 239: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break; + case 240: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -65,20 +65,20 @@ NumList* overrideFunctions(const QByteArray& name) { if(n != -1) { switch(n) { case 88: ids = &LGraphicsWebView::overrideIds; break; - case 240: ids = &LWebHistoryInterface::overrideIds; break; - case 241: ids = &LWebInspector::overrideIds; break; - case 242: ids = &LWebPage::overrideIds; break; - case 243: ids = &LWebPluginFactory::overrideIds; break; - case 244: ids = &LWebView::overrideIds; break; }} + case 241: ids = &LWebHistoryInterface::overrideIds; break; + case 242: ids = &LWebInspector::overrideIds; break; + case 243: ids = &LWebPage::overrideIds; break; + case 244: ids = &LWebPluginFactory::overrideIds; break; + case 245: ids = &LWebView::overrideIds; break; }} else { n = LObjects::n_names.value(name); switch(n) { - case 232: ids = &LWebDatabase::overrideIds; break; - case 233: ids = &LWebElement::overrideIds; break; - case 234: ids = &LWebElementCollection::overrideIds; break; - case 236: ids = &LWebHistoryItem::overrideIds; break; - case 237: ids = &LWebHitTestResult::overrideIds; break; - case 238: ids = &LWebSecurityOrigin::overrideIds; break; }} + case 234: ids = &LWebDatabase::overrideIds; break; + case 235: ids = &LWebElement::overrideIds; break; + case 236: ids = &LWebElementCollection::overrideIds; break; + case 238: ids = &LWebHistoryItem::overrideIds; break; + case 239: ids = &LWebHitTestResult::overrideIds; break; + case 240: ids = &LWebSecurityOrigin::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/webkit/_ini2.h b/src/gen/webkit/_ini2.h index 8284071..abd203c 100644 --- a/src/gen/webkit/_ini2.h +++ b/src/gen/webkit/_ini2.h @@ -12,11 +12,14 @@ TO_QT_TYPE_PTR (QWebElement, qwebelement) TO_QT_TYPE_PTR (QWebElementCollection, qwebelementcollection) TO_QT_TYPE_PTR (QWebHitTestResult, qwebhittestresult) +TO_CL_LIST_VAL (QWebElement, qwebelement) + #define META_TYPE_(var, type) var = qRegisterMetaType< type >(#type); void ini2() { // note: QWebHistoryItem can't be registered as QMetaType, lacking a public default constructor META_TYPE_(LObjects::T_QWebElement, QWebElement) + META_TYPE_(LObjects::T_QList_QWebElement, QList) META_TYPE_(LObjects::T_QWebElementCollection, QWebElementCollection) META_TYPE_(LObjects::T_QWebHitTestResult, QWebHitTestResult) } @@ -35,6 +38,7 @@ cl_object to_lisp_arg(int n, void* p, bool* found) { cl_object l_ret = Cnil; bool _found = true; if(LObjects::T_QWebElement == n) { l_ret = from_qwebelement(*(QWebElement*)p); } + else if(LObjects::T_QList_QWebElement == n) { l_ret = from_qwebelementlist(*(QList*)p); } else if(LObjects::T_QWebElementCollection == n) { l_ret = from_qwebelementcollection(*(QWebElementCollection*)p); } else if(LObjects::T_QWebHitTestResult == n) { l_ret = from_qwebhittestresult(*(QWebHitTestResult*)p); } else { _found = false; } diff --git a/src/gen/webkit/_n_classes.h b/src/gen/webkit/_n_classes.h index c16507c..a3c3f1b 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 N232; + friend class N234; public: LWebDatabase(uint u, const QWebDatabase& x1) : QWebDatabase(x1), unique(u) {} @@ -23,7 +23,7 @@ public: }; class LWebElement : public QWebElement { - friend class N233; + friend class N235; 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 N234; + friend class N236; 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 N236; + friend class N238; public: LWebHistoryItem(uint u, const QWebHistoryItem& x1) : QWebHistoryItem(x1), unique(u) {} @@ -53,7 +53,7 @@ public: }; class LWebHitTestResult : public QWebHitTestResult { - friend class N237; + friend class N239; 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 N238; + friend class N240; 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 2390cd6..4b1e441 100644 --- a/src/gen/webkit/_n_methods.h +++ b/src/gen/webkit/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N232 : public QObject { // QWebDatabase +class N234 : 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 N233 : public QObject { // QWebElement +class N235 : 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 N234 : public QObject { // QWebElementCollection +class N236 : 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 N235 : public QObject { // QWebHistory +class N237 : 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 N236 : public QObject { // QWebHistoryItem +class N238 : 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 N237 : public QObject { // QWebHitTestResult +class N239 : 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 N238 : public QObject { // QWebSecurityOrigin +class N240 : 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 N239 : public QObject { // QWebSettings +class N241 : public QObject { // QWebSettings Q_OBJECT public: Q_INVOKABLE QString McssMediaType(QWebSettings* o) const { return o->cssMediaType(); } diff --git a/src/gen/webkit/_q_classes.h b/src/gen/webkit/_q_classes.h index 70c616b..fb7b35b 100644 --- a/src/gen/webkit/_q_classes.h +++ b/src/gen/webkit/_q_classes.h @@ -73,7 +73,7 @@ public: class LWebHistoryInterface : public QWebHistoryInterface { Q_OBJECT - friend class Q240; + friend class Q241; public: LWebHistoryInterface(uint u, QObject* x1 = 0) : QWebHistoryInterface(x1), unique(u) {} @@ -90,7 +90,7 @@ public: class LWebInspector : public QWebInspector { Q_OBJECT - friend class Q241; + friend class Q242; public: LWebInspector(uint u, QWidget* x1 = 0) : QWebInspector(x1), unique(u) {} @@ -139,7 +139,7 @@ public: class LWebPage : public QWebPage { Q_OBJECT - friend class Q242; + friend class Q243; public: LWebPage(uint u, QObject* x1 = 0) : QWebPage(x1), unique(u) {} @@ -167,7 +167,7 @@ public: class LWebPluginFactory : public QWebPluginFactory { Q_OBJECT - friend class Q243; + friend class Q244; public: LWebPluginFactory(uint u, QObject* x1 = 0) : QWebPluginFactory(x1), unique(u) {} @@ -185,7 +185,7 @@ public: class LWebView : public QWebView { Q_OBJECT - friend class Q244; + friend class Q245; public: LWebView(uint u, QWidget* x1 = 0) : QWebView(x1), unique(u) {} diff --git a/src/gen/webkit/_q_methods.h b/src/gen/webkit/_q_methods.h index b580ab4..2c15163 100644 --- a/src/gen/webkit/_q_methods.h +++ b/src/gen/webkit/_q_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class Q239 : public Q139 { // QWebFrame +class Q240 : public Q140 { // QWebFrame Q_OBJECT public: Q_INVOKABLE void MaddToJavaScriptWindowObject(QWebFrame* o, const QString& x1, QObject* x2, QWebFrame::ValueOwnership x3 = QWebFrame::QtOwnership) { o->addToJavaScriptWindowObject(x1, x2, x3); } @@ -62,7 +62,7 @@ public: Q_INVOKABLE bool Mevent(QWebFrame* o, QEvent* x1) { return o->event(x1); } }; -class Q240 : public Q139 { // QWebHistoryInterface +class Q241 : public Q140 { // QWebHistoryInterface Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebHistoryInterface(u, x1); } @@ -72,7 +72,7 @@ public: Q_INVOKABLE void SsetDefaultInterface(QWebHistoryInterface* x1) { QWebHistoryInterface::setDefaultInterface(x1); } }; -class Q242 : public Q139 { // QWebPage +class Q243 : public Q140 { // QWebPage Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebPage(u, x1); } @@ -126,7 +126,7 @@ public: Q_INVOKABLE bool Mevent(QWebPage* o, QEvent* x1) { return o->event(x1); } }; -class Q243 : public Q139 { // QWebPluginFactory +class Q244 : public Q140 { // QWebPluginFactory Q_OBJECT public: Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebPluginFactory(u, x1); } @@ -173,7 +173,7 @@ public: Q_INVOKABLE void MupdateGeometry(QGraphicsWebView* o) { o->updateGeometry(); } }; -class Q241 : public Q245 { // QWebInspector +class Q242 : public Q246 { // QWebInspector Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LWebInspector(u, x1); } @@ -183,7 +183,7 @@ public: Q_INVOKABLE QSize MsizeHint(QWebInspector* o) const { return o->sizeHint(); } }; -class Q244 : public Q245 { // QWebView +class Q245 : public Q246 { // QWebView Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LWebView(u, x1); } diff --git a/src/lisp/all-wrappers-1.lisp b/src/lisp/all-wrappers-1.lisp index 55b29b7..a197628 100644 --- a/src/lisp/all-wrappers-1.lisp +++ b/src/lisp/all-wrappers-1.lisp @@ -386,6 +386,9 @@ #:|base| #:|batchSize| #:|bcp47Name| + #:|bearerTypeFamily| + #:|bearerTypeName| + #:|bearerType| #:|beep.QApplication| #:|beforeDelete| #:|beforeInsert| @@ -477,6 +480,7 @@ #:|boundValues| #:|boundValue| #:|boundaryReasons| + #:|boundary| #:|boundingRect(QChar)| #:|boundingRect(QRect...)| #:|boundingRect(QRectF,QString...)| @@ -1195,11 +1199,7 @@ #:|doubleProperty| #:|doubleValueChanged| #:|doubleValueSelected| - #:|doubleValue| - #:|downloadProgress| - #:|downloadRequested| - #:|dragCursor| - #:|dragDropMode|)) + #:|doubleValue|)) (in-package :eql) diff --git a/src/lisp/all-wrappers-10.lisp b/src/lisp/all-wrappers-10.lisp index 6d5799a..2f73477 100644 --- a/src/lisp/all-wrappers-10.lisp +++ b/src/lisp/all-wrappers-10.lisp @@ -1,5 +1,26 @@ (in-package :eql) +(defun |rowResized| (object &rest arguments) + (%qinvoke-method object nil "rowResized" arguments)) + +(defun |rowSpacing| (object &rest arguments) + (%qinvoke-method object nil "rowSpacing" arguments)) + +(defun |rowSpan| (object &rest arguments) + (%qinvoke-method object nil "rowSpan" arguments)) + +(defun |rowStart| (object &rest arguments) + (%qinvoke-method object nil "rowStart" arguments)) + +(defun |rowStretchFactor| (object &rest arguments) + (%qinvoke-method object nil "rowStretchFactor" arguments)) + +(defun |rowStretch| (object &rest arguments) + (%qinvoke-method object nil "rowStretch" arguments)) + +(defun |rowViewportPosition| (object &rest arguments) + (%qinvoke-method object nil "rowViewportPosition" arguments)) + (defun |rowWrapPolicy| (object &rest arguments) (%qinvoke-method object nil "rowWrapPolicy" arguments)) @@ -921,6 +942,9 @@ (defun |setBlurRadius| (object &rest arguments) (%qinvoke-method object nil "setBlurRadius" arguments)) +(defun |setBody| (object &rest arguments) + (%qinvoke-method object nil "setBody" arguments)) + (defun |setBold| (object &rest arguments) (%qinvoke-method object nil "setBold" arguments)) @@ -954,6 +978,9 @@ (defun |setBottom| (object &rest arguments) (%qinvoke-method object nil "setBottom" arguments)) +(defun |setBoundary| (object &rest arguments) + (%qinvoke-method object nil "setBoundary" arguments)) + (defun |setBoundingRect| (object &rest arguments) (%qinvoke-method object nil "setBoundingRect" arguments)) @@ -1320,6 +1347,9 @@ (defun |setContentPos| (object &rest arguments) (%qinvoke-method object nil "setContentPos" arguments)) +(defun |setContentType| (object &rest arguments) + (%qinvoke-method object nil "setContentType" arguments)) + (defun |setContentsMargins| (object &rest arguments) (%qinvoke-method object nil "setContentsMargins" arguments)) @@ -3569,33 +3599,3 @@ (defun |setRestartCommand| (object &rest arguments) (%qinvoke-method object nil "setRestartCommand" arguments)) - -(defun |setRestartHint| (object &rest arguments) - (%qinvoke-method object nil "setRestartHint" arguments)) - -(defun |setResult| (object &rest arguments) - (%qinvoke-method object nil "setResult" arguments)) - -(defun |setRetainSizeWhenHidden| (object &rest arguments) - (%qinvoke-method object nil "setRetainSizeWhenHidden" arguments)) - -(defun |setRevision| (object &rest arguments) - (%qinvoke-method object nil "setRevision" arguments)) - -(defun |setRgbF| (object &rest arguments) - (%qinvoke-method object nil "setRgbF" arguments)) - -(defun |setRgba| (object &rest arguments) - (%qinvoke-method object nil "setRgba" arguments)) - -(defun |setRgb| (object &rest arguments) - (%qinvoke-method object nil "setRgb" arguments)) - -(defun |setRightMargin| (object &rest arguments) - (%qinvoke-method object nil "setRightMargin" arguments)) - -(defun |setRightPadding| (object &rest arguments) - (%qinvoke-method object nil "setRightPadding" arguments)) - -(defun |setRight| (object &rest arguments) - (%qinvoke-method object nil "setRight" arguments)) diff --git a/src/lisp/all-wrappers-11.lisp b/src/lisp/all-wrappers-11.lisp index 30814f6..acad1f6 100644 --- a/src/lisp/all-wrappers-11.lisp +++ b/src/lisp/all-wrappers-11.lisp @@ -1,5 +1,35 @@ (in-package :eql) +(defun |setRestartHint| (object &rest arguments) + (%qinvoke-method object nil "setRestartHint" arguments)) + +(defun |setResult| (object &rest arguments) + (%qinvoke-method object nil "setResult" arguments)) + +(defun |setRetainSizeWhenHidden| (object &rest arguments) + (%qinvoke-method object nil "setRetainSizeWhenHidden" arguments)) + +(defun |setRevision| (object &rest arguments) + (%qinvoke-method object nil "setRevision" arguments)) + +(defun |setRgbF| (object &rest arguments) + (%qinvoke-method object nil "setRgbF" arguments)) + +(defun |setRgba| (object &rest arguments) + (%qinvoke-method object nil "setRgba" arguments)) + +(defun |setRgb| (object &rest arguments) + (%qinvoke-method object nil "setRgb" arguments)) + +(defun |setRightMargin| (object &rest arguments) + (%qinvoke-method object nil "setRightMargin" arguments)) + +(defun |setRightPadding| (object &rest arguments) + (%qinvoke-method object nil "setRightPadding" arguments)) + +(defun |setRight| (object &rest arguments) + (%qinvoke-method object nil "setRight" arguments)) + (defun |setRootIndex| (object &rest arguments) (%qinvoke-method object nil "setRootIndex" arguments)) @@ -3569,33 +3599,3 @@ (defun |updateInterval| (object &rest arguments) (%qinvoke-method object nil "updateInterval" arguments)) - -(defun |updateMetaData| (object &rest arguments) - (%qinvoke-method object nil "updateMetaData" arguments)) - -(defun |updateMicroFocus| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "updateMicroFocus" arguments)) - -(defun |updatePositionDependentActions| (object &rest arguments) - (%qinvoke-method object nil "updatePositionDependentActions" arguments)) - -(defun |updatePreviewWidget| (object &rest arguments) - (%qinvoke-method object nil "updatePreviewWidget" arguments)) - -(defun |updatePreview| (object &rest arguments) - (%qinvoke-method object nil "updatePreview" arguments)) - -(defun |updateRequest| (object &rest arguments) - (%qinvoke-method object nil "updateRequest" arguments)) - -(defun |updateSceneRect| (object &rest arguments) - (%qinvoke-method object nil "updateSceneRect" arguments)) - -(defun |updateScene| (object &rest arguments) - (%qinvoke-method object nil "updateScene" arguments)) - -(defun |updateSection| (object &rest arguments) - (%qinvoke-method object nil "updateSection" arguments)) - -(defun |updated| (object &rest arguments) - (%qinvoke-method object nil "updated" arguments)) diff --git a/src/lisp/all-wrappers-12.lisp b/src/lisp/all-wrappers-12.lisp index ec3d4ce..4f5d290 100644 --- a/src/lisp/all-wrappers-12.lisp +++ b/src/lisp/all-wrappers-12.lisp @@ -1,5 +1,35 @@ (in-package :eql) +(defun |updateMetaData| (object &rest arguments) + (%qinvoke-method object nil "updateMetaData" arguments)) + +(defun |updateMicroFocus| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "updateMicroFocus" arguments)) + +(defun |updatePositionDependentActions| (object &rest arguments) + (%qinvoke-method object nil "updatePositionDependentActions" arguments)) + +(defun |updatePreviewWidget| (object &rest arguments) + (%qinvoke-method object nil "updatePreviewWidget" arguments)) + +(defun |updatePreview| (object &rest arguments) + (%qinvoke-method object nil "updatePreview" arguments)) + +(defun |updateRequest| (object &rest arguments) + (%qinvoke-method object nil "updateRequest" arguments)) + +(defun |updateSceneRect| (object &rest arguments) + (%qinvoke-method object nil "updateSceneRect" arguments)) + +(defun |updateScene| (object &rest arguments) + (%qinvoke-method object nil "updateScene" arguments)) + +(defun |updateSection| (object &rest arguments) + (%qinvoke-method object nil "updateSection" arguments)) + +(defun |updated| (object &rest arguments) + (%qinvoke-method object nil "updated" arguments)) + (defun |updatesEnabled| (object &rest arguments) (%qinvoke-method object nil "updatesEnabled" arguments)) diff --git a/src/lisp/all-wrappers-2.lisp b/src/lisp/all-wrappers-2.lisp index f7d6c99..69efa8c 100644 --- a/src/lisp/all-wrappers-2.lisp +++ b/src/lisp/all-wrappers-2.lisp @@ -1,5 +1,9 @@ (defpackage :eql (:export + #:|downloadProgress| + #:|downloadRequested| + #:|dragCursor| + #:|dragDropMode| #:|dragDropOverwriteMode| #:|dragEnabled| #:|dragMode| @@ -773,6 +777,7 @@ #:|id(int).QPageSize| #:|id.QPageSize| #:|idealWidth| + #:|identifier| #:|idnWhitelist.QUrl| #:|id| #:|ignore(QGesture*)| @@ -1131,6 +1136,7 @@ #:|isRelative| #:|isRemote| #:|isRightToLeft.QGuiApplication| + #:|isRoamingAvailable| #:|isRoot| #:|isRotating| #:|isRowHidden| @@ -1193,10 +1199,4 @@ #:|isVirtualDesktop| #:|isVisible.QToolTip| #:|isVisibleTo| - #:|isVisible| - #:|isWhiteBalanceModeSupported| - #:|isWidgetType| - #:|isWidget| - #:|isWindowModified| - #:|isWindowType| - #:|isWindow|)) + #:|isVisible|)) diff --git a/src/lisp/all-wrappers-3.lisp b/src/lisp/all-wrappers-3.lisp index 9302d0f..c6ccf46 100644 --- a/src/lisp/all-wrappers-3.lisp +++ b/src/lisp/all-wrappers-3.lisp @@ -1,5 +1,11 @@ (defpackage :eql (:export + #:|isWhiteBalanceModeSupported| + #:|isWidgetType| + #:|isWidget| + #:|isWindowModified| + #:|isWindowType| + #:|isWindow| #:|isWrapping| #:|isWritable| #:|isoSensitivityChanged| @@ -904,6 +910,7 @@ #:|proxyModel| #:|proxy| #:|publicKey| + #:|purpose| #:|push| #:|put(QNetworkRequest,QByteArray)| #:|put(QNetworkRequest,QHttpMultiPart*)| @@ -1192,11 +1199,4 @@ #:|rowMaximumHeight| #:|rowMinimumHeight| #:|rowMoved| - #:|rowPreferredHeight| - #:|rowResized| - #:|rowSpacing| - #:|rowSpan| - #:|rowStart| - #:|rowStretchFactor| - #:|rowStretch| - #:|rowViewportPosition|)) + #:|rowPreferredHeight|)) diff --git a/src/lisp/all-wrappers-4.lisp b/src/lisp/all-wrappers-4.lisp index 971387f..0d3a6cf 100644 --- a/src/lisp/all-wrappers-4.lisp +++ b/src/lisp/all-wrappers-4.lisp @@ -1,5 +1,12 @@ (defpackage :eql (:export + #:|rowResized| + #:|rowSpacing| + #:|rowSpan| + #:|rowStart| + #:|rowStretchFactor| + #:|rowStretch| + #:|rowViewportPosition| #:|rowWrapPolicy| #:|rowsAboutToBeInserted| #:|rowsAboutToBeMoved| @@ -307,6 +314,7 @@ #:|setBlue| #:|setBlurHints| #:|setBlurRadius| + #:|setBody| #:|setBold| #:|setBorderBrush| #:|setBorderColor(float...)| @@ -318,6 +326,7 @@ #:|setBottomMargin| #:|setBottomPadding| #:|setBottom| + #:|setBoundary| #:|setBoundingRect| #:|setBoundingRegionGranularity| #:|setBrightness| @@ -440,6 +449,7 @@ #:|setContentEditable| #:|setContentPosRange| #:|setContentPos| + #:|setContentType| #:|setContentsMargins| #:|setContent| #:|setContextMenuPolicy| @@ -1189,14 +1199,4 @@ #:|setResizesToContents| #:|setResolution| #:|setResolveSymlinks| - #:|setRestartCommand| - #:|setRestartHint| - #:|setResult| - #:|setRetainSizeWhenHidden| - #:|setRevision| - #:|setRgbF| - #:|setRgba| - #:|setRgb| - #:|setRightMargin| - #:|setRightPadding| - #:|setRight|)) + #:|setRestartCommand|)) diff --git a/src/lisp/all-wrappers-5.lisp b/src/lisp/all-wrappers-5.lisp index c221a1e..155f595 100644 --- a/src/lisp/all-wrappers-5.lisp +++ b/src/lisp/all-wrappers-5.lisp @@ -1,5 +1,15 @@ (defpackage :eql (:export + #:|setRestartHint| + #:|setResult| + #:|setRetainSizeWhenHidden| + #:|setRevision| + #:|setRgbF| + #:|setRgba| + #:|setRgb| + #:|setRightMargin| + #:|setRightPadding| + #:|setRight| #:|setRootIndex| #:|setRootIsDecorated| #:|setRootModelIndex| @@ -1189,14 +1199,4 @@ #:|updateEditorGeometry| #:|updateGeometries| #:|updateGeometry| - #:|updateInterval| - #:|updateMetaData| - #:|updateMicroFocus| - #:|updatePositionDependentActions| - #:|updatePreviewWidget| - #:|updatePreview| - #:|updateRequest| - #:|updateSceneRect| - #:|updateScene| - #:|updateSection| - #:|updated|)) + #:|updateInterval|)) diff --git a/src/lisp/all-wrappers-6.lisp b/src/lisp/all-wrappers-6.lisp index 3bebb42..9bf78d3 100644 --- a/src/lisp/all-wrappers-6.lisp +++ b/src/lisp/all-wrappers-6.lisp @@ -1,5 +1,15 @@ (defpackage :eql (:export + #:|updateMetaData| + #:|updateMicroFocus| + #:|updatePositionDependentActions| + #:|updatePreviewWidget| + #:|updatePreview| + #:|updateRequest| + #:|updateSceneRect| + #:|updateScene| + #:|updateSection| + #:|updated| #:|updatesEnabled| #:|update| #:|uploadProgress| diff --git a/src/lisp/all-wrappers-7.lisp b/src/lisp/all-wrappers-7.lisp index 02dd09f..57c4b35 100644 --- a/src/lisp/all-wrappers-7.lisp +++ b/src/lisp/all-wrappers-7.lisp @@ -1158,6 +1158,15 @@ (defun |bcp47Name| (object &rest arguments) (%qinvoke-method object nil "bcp47Name" arguments)) +(defun |bearerTypeFamily| (object &rest arguments) + (%qinvoke-method object nil "bearerTypeFamily" arguments)) + +(defun |bearerTypeName| (object &rest arguments) + (%qinvoke-method object nil "bearerTypeName" arguments)) + +(defun |bearerType| (object &rest arguments) + (%qinvoke-method object nil "bearerType" arguments)) + (defun |beep.QApplication| (&rest arguments) (%qinvoke-method "QApplication" nil "beep" arguments)) @@ -1431,6 +1440,9 @@ (defun |boundaryReasons| (object &rest arguments) (%qinvoke-method object nil "boundaryReasons" arguments)) +(defun |boundary| (object &rest arguments) + (%qinvoke-method object nil "boundary" arguments)) + (defun |boundingRect(QChar)| (object &rest arguments) (%qinvoke-method object nil "boundingRect(QChar)" arguments)) @@ -3587,15 +3599,3 @@ (defun |doubleValue| (object &rest arguments) (%qinvoke-method object nil "doubleValue" arguments)) - -(defun |downloadProgress| (object &rest arguments) - (%qinvoke-method object nil "downloadProgress" arguments)) - -(defun |downloadRequested| (object &rest arguments) - (%qinvoke-method object nil "downloadRequested" arguments)) - -(defun |dragCursor| (object &rest arguments) - (%qinvoke-method object nil "dragCursor" arguments)) - -(defun |dragDropMode| (object &rest arguments) - (%qinvoke-method object nil "dragDropMode" arguments)) diff --git a/src/lisp/all-wrappers-8.lisp b/src/lisp/all-wrappers-8.lisp index e62406c..3d4be12 100644 --- a/src/lisp/all-wrappers-8.lisp +++ b/src/lisp/all-wrappers-8.lisp @@ -1,5 +1,17 @@ (in-package :eql) +(defun |downloadProgress| (object &rest arguments) + (%qinvoke-method object nil "downloadProgress" arguments)) + +(defun |downloadRequested| (object &rest arguments) + (%qinvoke-method object nil "downloadRequested" arguments)) + +(defun |dragCursor| (object &rest arguments) + (%qinvoke-method object nil "dragCursor" arguments)) + +(defun |dragDropMode| (object &rest arguments) + (%qinvoke-method object nil "dragDropMode" arguments)) + (defun |dragDropOverwriteMode| (object &rest arguments) (%qinvoke-method object nil "dragDropOverwriteMode" arguments)) @@ -2319,6 +2331,9 @@ (defun |idealWidth| (object &rest arguments) (%qinvoke-method object nil "idealWidth" arguments)) +(defun |identifier| (object &rest arguments) + (%qinvoke-method object nil "identifier" arguments)) + (defun |idnWhitelist.QUrl| (&rest arguments) (%qinvoke-method "QUrl" nil "idnWhitelist" arguments)) @@ -3393,6 +3408,9 @@ (defun |isRightToLeft.QGuiApplication| (&rest arguments) (%qinvoke-method "QGuiApplication" nil "isRightToLeft" arguments)) +(defun |isRoamingAvailable| (object &rest arguments) + (%qinvoke-method object nil "isRoamingAvailable" arguments)) + (defun |isRoot| (object &rest arguments) (%qinvoke-method object nil "isRoot" arguments)) @@ -3581,21 +3599,3 @@ (defun |isVisible| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "isVisible" arguments)) - -(defun |isWhiteBalanceModeSupported| (object &rest arguments) - (%qinvoke-method object nil "isWhiteBalanceModeSupported" arguments)) - -(defun |isWidgetType| (object &rest arguments) - (%qinvoke-method object nil "isWidgetType" arguments)) - -(defun |isWidget| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "isWidget" arguments)) - -(defun |isWindowModified| (object &rest arguments) - (%qinvoke-method object nil "isWindowModified" arguments)) - -(defun |isWindowType| (object &rest arguments) - (%qinvoke-method object nil "isWindowType" arguments)) - -(defun |isWindow| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "isWindow" arguments)) diff --git a/src/lisp/all-wrappers-9.lisp b/src/lisp/all-wrappers-9.lisp index 7641ff5..b2ccfa9 100644 --- a/src/lisp/all-wrappers-9.lisp +++ b/src/lisp/all-wrappers-9.lisp @@ -1,5 +1,23 @@ (in-package :eql) +(defun |isWhiteBalanceModeSupported| (object &rest arguments) + (%qinvoke-method object nil "isWhiteBalanceModeSupported" arguments)) + +(defun |isWidgetType| (object &rest arguments) + (%qinvoke-method object nil "isWidgetType" arguments)) + +(defun |isWidget| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "isWidget" arguments)) + +(defun |isWindowModified| (object &rest arguments) + (%qinvoke-method object nil "isWindowModified" arguments)) + +(defun |isWindowType| (object &rest arguments) + (%qinvoke-method object nil "isWindowType" arguments)) + +(defun |isWindow| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "isWindow" arguments)) + (defun |isWrapping| (object &rest arguments) (%qinvoke-method object nil "isWrapping" arguments)) @@ -2712,6 +2730,9 @@ (defun |publicKey| (object &rest arguments) (%qinvoke-method object nil "publicKey" arguments)) +(defun |purpose| (object &rest arguments) + (%qinvoke-method object nil "purpose" arguments)) + (defun |push| (object &rest arguments) (%qinvoke-method object nil "push" arguments)) @@ -3578,24 +3599,3 @@ (defun |rowPreferredHeight| (object &rest arguments) (%qinvoke-method object nil "rowPreferredHeight" arguments)) - -(defun |rowResized| (object &rest arguments) - (%qinvoke-method object nil "rowResized" arguments)) - -(defun |rowSpacing| (object &rest arguments) - (%qinvoke-method object nil "rowSpacing" arguments)) - -(defun |rowSpan| (object &rest arguments) - (%qinvoke-method object nil "rowSpan" arguments)) - -(defun |rowStart| (object &rest arguments) - (%qinvoke-method object nil "rowStart" arguments)) - -(defun |rowStretchFactor| (object &rest arguments) - (%qinvoke-method object nil "rowStretchFactor" arguments)) - -(defun |rowStretch| (object &rest arguments) - (%qinvoke-method object nil "rowStretch" arguments)) - -(defun |rowViewportPosition| (object &rest arguments) - (%qinvoke-method object nil "rowViewportPosition" arguments)) diff --git a/src/lisp/enum-lists/parsed-enums.lisp b/src/lisp/enum-lists/parsed-enums.lisp index c1a8331..afc353a 100644 --- a/src/lisp/enum-lists/parsed-enums.lisp +++ b/src/lisp/enum-lists/parsed-enums.lisp @@ -505,6 +505,10 @@ ("|QHeaderView.Custom|" . 2) ("|QHistoryState.ShallowHistory|" . 0) ("|QHistoryState.DeepHistory|" . 1) +("|QHttpMultiPart.MixedType|" . 0) +("|QHttpMultiPart.RelatedType|" . 1) +("|QHttpMultiPart.FormDataType|" . 2) +("|QHttpMultiPart.AlternativeType|" . 3) ("|QIODevice.NotOpen|" . #x0000) ("|QIODevice.ReadOnly|" . #x0001) ("|QIODevice.WriteOnly|" . #x0002) @@ -2820,6 +2824,31 @@ ("|QLocale.VaiScript|" . 35) ("|QLocale.VarangKshitiScript|" . 127) ("|QLocale.YiScript|" . 34) +("|QNetworkConfiguration.BearerUnknown|" . 0) +("|QNetworkConfiguration.BearerEthernet|" . 1) +("|QNetworkConfiguration.BearerWLAN|" . 2) +("|QNetworkConfiguration.Bearer2G|" . 3) +("|QNetworkConfiguration.Bearer3G|" . 11) +("|QNetworkConfiguration.Bearer4G|" . 12) +("|QNetworkConfiguration.BearerCDMA2000|" . 4) +("|QNetworkConfiguration.BearerWCDMA|" . 5) +("|QNetworkConfiguration.BearerHSPA|" . 6) +("|QNetworkConfiguration.BearerBluetooth|" . 7) +("|QNetworkConfiguration.BearerWiMAX|" . 8) +("|QNetworkConfiguration.BearerEVDO|" . 9) +("|QNetworkConfiguration.BearerLTE|" . 10) +("|QNetworkConfiguration.UnknownPurpose|" . 0) +("|QNetworkConfiguration.PublicPurpose|" . 1) +("|QNetworkConfiguration.PrivatePurpose|" . 2) +("|QNetworkConfiguration.ServiceSpecificPurpose|" . 3) +("|QNetworkConfiguration.Undefined|" . #x0000001) +("|QNetworkConfiguration.Defined|" . #x0000002) +("|QNetworkConfiguration.Discovered|" . #x0000006) +("|QNetworkConfiguration.Active|" . #x000000e) +("|QNetworkConfiguration.InternetAccessPoint|" . 0) +("|QNetworkConfiguration.ServiceNetwork|" . 1) +("|QNetworkConfiguration.UserChoice|" . 2) +("|QNetworkConfiguration.Invalid|" . 3) ("|QNetworkCookie.NameAndValueOnly|" . 0) ("|QNetworkCookie.Full|" . 1) ("|QNetworkInterface.IsUp|" . #x1) diff --git a/src/lisp/enums1.lisp b/src/lisp/enums1.lisp index 78a6259..42c4de3 100644 --- a/src/lisp/enums1.lisp +++ b/src/lisp/enums1.lisp @@ -1203,6 +1203,10 @@ (defenum |QHostInfo.HostNotFound| 1) (defenum |QHostInfo.NoError| 0) (defenum |QHostInfo.UnknownError| 2) +(defenum |QHttpMultiPart.AlternativeType| 3) +(defenum |QHttpMultiPart.FormDataType| 2) +(defenum |QHttpMultiPart.MixedType| 0) +(defenum |QHttpMultiPart.RelatedType| 1) (defenum |QIODevice.Append| 4) (defenum |QIODevice.NotOpen| 0) (defenum |QIODevice.ReadOnly| 1) @@ -1260,7 +1264,3 @@ (defenum |QItemSelectionModel.ClearAndSelect| 3) (defenum |QItemSelectionModel.Clear| 1) (defenum |QItemSelectionModel.Columns| 64) -(defenum |QItemSelectionModel.Current| 16) -(defenum |QItemSelectionModel.Deselect| 4) -(defenum |QItemSelectionModel.NoUpdate| 0) -(defenum |QItemSelectionModel.Rows| 32) diff --git a/src/lisp/enums2.lisp b/src/lisp/enums2.lisp index 4b38664..0b49200 100644 --- a/src/lisp/enums2.lisp +++ b/src/lisp/enums2.lisp @@ -14,6 +14,10 @@ (defconstant ,name ,value) (export ',name ,(find-package :eql)))) +(defenum |QItemSelectionModel.Current| 16) +(defenum |QItemSelectionModel.Deselect| 4) +(defenum |QItemSelectionModel.NoUpdate| 0) +(defenum |QItemSelectionModel.Rows| 32) (defenum |QItemSelectionModel.SelectCurrent| 18) (defenum |QItemSelectionModel.Select| 2) (defenum |QItemSelectionModel.ToggleCurrent| 24) @@ -1062,6 +1066,31 @@ (defenum |QNetworkAccessManager.PostOperation| 4) (defenum |QNetworkAccessManager.PutOperation| 3) (defenum |QNetworkAccessManager.UnknownAccessibility| -1) +(defenum |QNetworkConfiguration.Active| 14) +(defenum |QNetworkConfiguration.Bearer2G| 3) +(defenum |QNetworkConfiguration.Bearer3G| 11) +(defenum |QNetworkConfiguration.Bearer4G| 12) +(defenum |QNetworkConfiguration.BearerBluetooth| 7) +(defenum |QNetworkConfiguration.BearerCDMA2000| 4) +(defenum |QNetworkConfiguration.BearerEVDO| 9) +(defenum |QNetworkConfiguration.BearerEthernet| 1) +(defenum |QNetworkConfiguration.BearerHSPA| 6) +(defenum |QNetworkConfiguration.BearerLTE| 10) +(defenum |QNetworkConfiguration.BearerUnknown| 0) +(defenum |QNetworkConfiguration.BearerWCDMA| 5) +(defenum |QNetworkConfiguration.BearerWLAN| 2) +(defenum |QNetworkConfiguration.BearerWiMAX| 8) +(defenum |QNetworkConfiguration.Defined| 2) +(defenum |QNetworkConfiguration.Discovered| 6) +(defenum |QNetworkConfiguration.InternetAccessPoint| 0) +(defenum |QNetworkConfiguration.Invalid| 3) +(defenum |QNetworkConfiguration.PrivatePurpose| 2) +(defenum |QNetworkConfiguration.PublicPurpose| 1) +(defenum |QNetworkConfiguration.ServiceNetwork| 1) +(defenum |QNetworkConfiguration.ServiceSpecificPurpose| 3) +(defenum |QNetworkConfiguration.Undefined| 1) +(defenum |QNetworkConfiguration.UnknownPurpose| 0) +(defenum |QNetworkConfiguration.UserChoice| 2) (defenum |QNetworkCookie.Full| 1) (defenum |QNetworkCookie.NameAndValueOnly| 0) (defenum |QNetworkInterface.CanBroadcast| 4) @@ -1235,32 +1264,3 @@ (defenum |QOpenGLTexture.Linear| 9729) (defenum |QOpenGLTexture.LuminanceAlphaFormat| 6410) (defenum |QOpenGLTexture.LuminanceAlpha| 6410) -(defenum |QOpenGLTexture.LuminanceFormat| 6409) -(defenum |QOpenGLTexture.Luminance| 6409) -(defenum |QOpenGLTexture.MirroredRepeat| 33648) -(defenum |QOpenGLTexture.NPOTTextureRepeat| 4096) -(defenum |QOpenGLTexture.NPOTTextures| 2048) -(defenum |QOpenGLTexture.NearestMipMapLinear| 9986) -(defenum |QOpenGLTexture.NearestMipMapNearest| 9984) -(defenum |QOpenGLTexture.Nearest| 9728) -(defenum |QOpenGLTexture.NoFormat| 0) -(defenum |QOpenGLTexture.NoPixelType| 0) -(defenum |QOpenGLTexture.NoSourceFormat| 0) -(defenum |QOpenGLTexture.OneValue| 1) -(defenum |QOpenGLTexture.R11_EAC_SNorm| 37489) -(defenum |QOpenGLTexture.R11_EAC_UNorm| 37488) -(defenum |QOpenGLTexture.R16F| 33325) -(defenum |QOpenGLTexture.R16I| 33331) -(defenum |QOpenGLTexture.R16U| 33332) -(defenum |QOpenGLTexture.R16_SNorm| 36760) -(defenum |QOpenGLTexture.R16_UNorm| 33322) -(defenum |QOpenGLTexture.R32F| 33326) -(defenum |QOpenGLTexture.R32I| 33333) -(defenum |QOpenGLTexture.R32U| 33334) -(defenum |QOpenGLTexture.R5G6B5| 36194) -(defenum |QOpenGLTexture.R8I| 33329) -(defenum |QOpenGLTexture.R8U| 33330) -(defenum |QOpenGLTexture.R8_SNorm| 36756) -(defenum |QOpenGLTexture.R8_UNorm| 33321) -(defenum |QOpenGLTexture.RG11B10F| 35898) -(defenum |QOpenGLTexture.RG11_EAC_SNorm| 37491) diff --git a/src/lisp/enums3.lisp b/src/lisp/enums3.lisp index 6c12e9e..1bd70bd 100644 --- a/src/lisp/enums3.lisp +++ b/src/lisp/enums3.lisp @@ -14,6 +14,35 @@ (defconstant ,name ,value) (export ',name ,(find-package :eql)))) +(defenum |QOpenGLTexture.LuminanceFormat| 6409) +(defenum |QOpenGLTexture.Luminance| 6409) +(defenum |QOpenGLTexture.MirroredRepeat| 33648) +(defenum |QOpenGLTexture.NPOTTextureRepeat| 4096) +(defenum |QOpenGLTexture.NPOTTextures| 2048) +(defenum |QOpenGLTexture.NearestMipMapLinear| 9986) +(defenum |QOpenGLTexture.NearestMipMapNearest| 9984) +(defenum |QOpenGLTexture.Nearest| 9728) +(defenum |QOpenGLTexture.NoFormat| 0) +(defenum |QOpenGLTexture.NoPixelType| 0) +(defenum |QOpenGLTexture.NoSourceFormat| 0) +(defenum |QOpenGLTexture.OneValue| 1) +(defenum |QOpenGLTexture.R11_EAC_SNorm| 37489) +(defenum |QOpenGLTexture.R11_EAC_UNorm| 37488) +(defenum |QOpenGLTexture.R16F| 33325) +(defenum |QOpenGLTexture.R16I| 33331) +(defenum |QOpenGLTexture.R16U| 33332) +(defenum |QOpenGLTexture.R16_SNorm| 36760) +(defenum |QOpenGLTexture.R16_UNorm| 33322) +(defenum |QOpenGLTexture.R32F| 33326) +(defenum |QOpenGLTexture.R32I| 33333) +(defenum |QOpenGLTexture.R32U| 33334) +(defenum |QOpenGLTexture.R5G6B5| 36194) +(defenum |QOpenGLTexture.R8I| 33329) +(defenum |QOpenGLTexture.R8U| 33330) +(defenum |QOpenGLTexture.R8_SNorm| 36756) +(defenum |QOpenGLTexture.R8_UNorm| 33321) +(defenum |QOpenGLTexture.RG11B10F| 35898) +(defenum |QOpenGLTexture.RG11_EAC_SNorm| 37491) (defenum |QOpenGLTexture.RG11_EAC_UNorm| 37490) (defenum |QOpenGLTexture.RG16F| 33327) (defenum |QOpenGLTexture.RG16I| 33337) @@ -1235,32 +1264,3 @@ (defenum |QStyle.SE_ProgressBarLayoutItem| 37) (defenum |QStyle.SE_PushButtonContents| 0) (defenum |QStyle.SE_PushButtonFocusRect| 1) -(defenum |QStyle.SE_PushButtonLayoutItem| 38) -(defenum |QStyle.SE_RadioButtonClickRect| 9) -(defenum |QStyle.SE_RadioButtonContents| 7) -(defenum |QStyle.SE_RadioButtonFocusRect| 8) -(defenum |QStyle.SE_RadioButtonIndicator| 6) -(defenum |QStyle.SE_RadioButtonLayoutItem| 39) -(defenum |QStyle.SE_ShapedFrameContents| 52) -(defenum |QStyle.SE_SliderFocusRect| 11) -(defenum |QStyle.SE_SliderLayoutItem| 40) -(defenum |QStyle.SE_SpinBoxLayoutItem| 41) -(defenum |QStyle.SE_TabBarTabLeftButton| 49) -(defenum |QStyle.SE_TabBarTabRightButton| 50) -(defenum |QStyle.SE_TabBarTabText| 51) -(defenum |QStyle.SE_TabBarTearIndicator| 24) -(defenum |QStyle.SE_TabWidgetLayoutItem| 45) -(defenum |QStyle.SE_TabWidgetLeftCorner| 21) -(defenum |QStyle.SE_TabWidgetRightCorner| 22) -(defenum |QStyle.SE_TabWidgetTabBar| 18) -(defenum |QStyle.SE_TabWidgetTabContents| 20) -(defenum |QStyle.SE_TabWidgetTabPane| 19) -(defenum |QStyle.SE_ToolBarHandle| 53) -(defenum |QStyle.SE_ToolBoxTabContents| 15) -(defenum |QStyle.SE_ToolButtonLayoutItem| 42) -(defenum |QStyle.SE_TreeViewDisclosureItem| 25) -(defenum |QStyle.SE_ViewItemCheckIndicator| 23) -(defenum |QStyle.SH_BlinkCursorWhenTextSelected| 28) -(defenum |QStyle.SH_Button_FocusPolicy| 49) -(defenum |QStyle.SH_ComboBox_LayoutDirection| 58) -(defenum |QStyle.SH_ComboBox_ListMouseTracking| 19) diff --git a/src/lisp/enums4.lisp b/src/lisp/enums4.lisp index cc88bc3..55faa94 100644 --- a/src/lisp/enums4.lisp +++ b/src/lisp/enums4.lisp @@ -14,6 +14,35 @@ (defconstant ,name ,value) (export ',name ,(find-package :eql)))) +(defenum |QStyle.SE_PushButtonLayoutItem| 38) +(defenum |QStyle.SE_RadioButtonClickRect| 9) +(defenum |QStyle.SE_RadioButtonContents| 7) +(defenum |QStyle.SE_RadioButtonFocusRect| 8) +(defenum |QStyle.SE_RadioButtonIndicator| 6) +(defenum |QStyle.SE_RadioButtonLayoutItem| 39) +(defenum |QStyle.SE_ShapedFrameContents| 52) +(defenum |QStyle.SE_SliderFocusRect| 11) +(defenum |QStyle.SE_SliderLayoutItem| 40) +(defenum |QStyle.SE_SpinBoxLayoutItem| 41) +(defenum |QStyle.SE_TabBarTabLeftButton| 49) +(defenum |QStyle.SE_TabBarTabRightButton| 50) +(defenum |QStyle.SE_TabBarTabText| 51) +(defenum |QStyle.SE_TabBarTearIndicator| 24) +(defenum |QStyle.SE_TabWidgetLayoutItem| 45) +(defenum |QStyle.SE_TabWidgetLeftCorner| 21) +(defenum |QStyle.SE_TabWidgetRightCorner| 22) +(defenum |QStyle.SE_TabWidgetTabBar| 18) +(defenum |QStyle.SE_TabWidgetTabContents| 20) +(defenum |QStyle.SE_TabWidgetTabPane| 19) +(defenum |QStyle.SE_ToolBarHandle| 53) +(defenum |QStyle.SE_ToolBoxTabContents| 15) +(defenum |QStyle.SE_ToolButtonLayoutItem| 42) +(defenum |QStyle.SE_TreeViewDisclosureItem| 25) +(defenum |QStyle.SE_ViewItemCheckIndicator| 23) +(defenum |QStyle.SH_BlinkCursorWhenTextSelected| 28) +(defenum |QStyle.SH_Button_FocusPolicy| 49) +(defenum |QStyle.SH_ComboBox_LayoutDirection| 58) +(defenum |QStyle.SH_ComboBox_ListMouseTracking| 19) (defenum |QStyle.SH_ComboBox_PopupFrameStyle| 69) (defenum |QStyle.SH_ComboBox_Popup| 25) (defenum |QStyle.SH_ComboBox_UseNativePopup| 103) @@ -1235,32 +1264,3 @@ (defenum |Qt.Key_AudioRandomPlay| 16777476) (defenum |Qt.Key_AudioRepeat| 16777475) (defenum |Qt.Key_AudioRewind| 16777413) -(defenum |Qt.Key_Away| 16777464) -(defenum |Qt.Key_A| 65) -(defenum |Qt.Key_BackForward| 16777414) -(defenum |Qt.Key_Backslash| 92) -(defenum |Qt.Key_Backspace| 16777219) -(defenum |Qt.Key_Backtab| 16777218) -(defenum |Qt.Key_Back| 16777313) -(defenum |Qt.Key_Bar| 124) -(defenum |Qt.Key_BassBoost| 16777331) -(defenum |Qt.Key_BassDown| 16777333) -(defenum |Qt.Key_BassUp| 16777332) -(defenum |Qt.Key_Battery| 16777470) -(defenum |Qt.Key_Bluetooth| 16777471) -(defenum |Qt.Key_Blue| 16777495) -(defenum |Qt.Key_Book| 16777417) -(defenum |Qt.Key_BraceLeft| 123) -(defenum |Qt.Key_BraceRight| 125) -(defenum |Qt.Key_BracketLeft| 91) -(defenum |Qt.Key_BracketRight| 93) -(defenum |Qt.Key_BrightnessAdjust| 16777410) -(defenum |Qt.Key_B| 66) -(defenum |Qt.Key_CD| 16777418) -(defenum |Qt.Key_Calculator| 16777419) -(defenum |Qt.Key_Calendar| 16777444) -(defenum |Qt.Key_Call| 17825796) -(defenum |Qt.Key_CameraFocus| 17825825) -(defenum |Qt.Key_Camera| 17825824) -(defenum |Qt.Key_Cancel| 16908289) -(defenum |Qt.Key_CapsLock| 16777252) diff --git a/src/lisp/enums5.lisp b/src/lisp/enums5.lisp index 9e398ff..2cfd6bc 100644 --- a/src/lisp/enums5.lisp +++ b/src/lisp/enums5.lisp @@ -14,6 +14,35 @@ (defconstant ,name ,value) (export ',name ,(find-package :eql)))) +(defenum |Qt.Key_Away| 16777464) +(defenum |Qt.Key_A| 65) +(defenum |Qt.Key_BackForward| 16777414) +(defenum |Qt.Key_Backslash| 92) +(defenum |Qt.Key_Backspace| 16777219) +(defenum |Qt.Key_Backtab| 16777218) +(defenum |Qt.Key_Back| 16777313) +(defenum |Qt.Key_Bar| 124) +(defenum |Qt.Key_BassBoost| 16777331) +(defenum |Qt.Key_BassDown| 16777333) +(defenum |Qt.Key_BassUp| 16777332) +(defenum |Qt.Key_Battery| 16777470) +(defenum |Qt.Key_Bluetooth| 16777471) +(defenum |Qt.Key_Blue| 16777495) +(defenum |Qt.Key_Book| 16777417) +(defenum |Qt.Key_BraceLeft| 123) +(defenum |Qt.Key_BraceRight| 125) +(defenum |Qt.Key_BracketLeft| 91) +(defenum |Qt.Key_BracketRight| 93) +(defenum |Qt.Key_BrightnessAdjust| 16777410) +(defenum |Qt.Key_B| 66) +(defenum |Qt.Key_CD| 16777418) +(defenum |Qt.Key_Calculator| 16777419) +(defenum |Qt.Key_Calendar| 16777444) +(defenum |Qt.Key_Call| 17825796) +(defenum |Qt.Key_CameraFocus| 17825825) +(defenum |Qt.Key_Camera| 17825824) +(defenum |Qt.Key_Cancel| 16908289) +(defenum |Qt.Key_CapsLock| 16777252) (defenum |Qt.Key_Ccedilla| 199) (defenum |Qt.Key_ChannelDown| 16777497) (defenum |Qt.Key_ChannelUp| 16777496) diff --git a/src/lisp/ini.lisp b/src/lisp/ini.lisp index 68299b5..f255299 100644 --- a/src/lisp/ini.lisp +++ b/src/lisp/ini.lisp @@ -4,9 +4,10 @@ (in-package :eql) -(defvar *break-on-errors* nil "Unless NIL, causes a simple (BREAK) on any EQL error.") -(defvar *slime-mode* nil) -(defvar *qtpl* nil "To set in ~/.eclrc only; the same as command line option -qtpl.") +(defvar *break-on-errors* nil "Unless NIL, causes a simple (BREAK) on any EQL error.") +(defvar *byte-array-as-string* nil "Indicates to print a byte array as string, not as vector. See e.g. QPROPERTIES.") +(defvar *slime-mode* nil) +(defvar *qtpl* nil "To set in ~/.eclrc only; the same as command line option -qtpl.") (defmacro alias (s1 s2) `(setf (symbol-function ',s1) (function ,s2))) @@ -213,8 +214,11 @@ (when (qt-object-p object*) (labels ((null-qt-object (obj) (qt-object 0 0 (qt-object-id obj))) - (readable (obj fun) - (cond ((string= "dynamicPropertyNames" fun) + (readable (obj fun ret) + (cond ((and *byte-array-as-string* + (string= "QByteArray" ret)) + (x:bytes-to-string obj)) + ((string= "dynamicPropertyNames" fun) (mapcar 'x:bytes-to-string obj)) ((qt-object-p obj) (let ((name (qt-object-name obj))) @@ -265,19 +269,25 @@ (setf functions (mapcar (lambda (fun) (setf fun (x:string-substitute "" "const " fun) fun (x:string-substitute "" " const" fun)) - (let ((p (position #\( fun))) - (subseq fun (1+ (position #\Space fun :from-end t :end p)) p))) + (let* ((p2 (position #\( fun)) + (p1 (position #\Space fun :from-end t :end p2))) + (cons (subseq fun (1+ p1) p2) ; function name + (subseq fun 0 p1)))) ; return type functions)) - (setf functions (sort (remove-duplicates functions :test 'string=) 'string<)) - (let ((tab-stop (+ 2 (apply 'max (mapcar 'length functions))))) - (dolist (fun functions) - (let ((prop-p (find fun properties :test 'string=))) + (setf functions (sort (remove-duplicates functions :test 'string= :key 'first) + 'string< :key 'first)) + (let ((tab-stop (+ 2 (apply 'max (mapcar (lambda (x) (length (first x))) functions))))) + (dolist (fun-ret functions) + (let* ((fun (car fun-ret)) + (ret (cdr fun-ret)) + (prop-p (find fun properties :test 'string=))) (princ (format nil "~%~A~C~VT~S" ; "~VT" doesn't work on all terminals fun (if prop-p #\Space #\*) tab-stop (readable (if prop-p (qget object* fun) (! fun object*)) - fun)))))) + fun + ret)))))) (terpri) (terpri) (values))))))) diff --git a/src/lisp/merged-enums.lisp b/src/lisp/merged-enums.lisp index dad5bc6..465240e 100644 --- a/src/lisp/merged-enums.lisp +++ b/src/lisp/merged-enums.lisp @@ -1187,6 +1187,10 @@ (defenum |QHostInfo.HostNotFound| 1) (defenum |QHostInfo.NoError| 0) (defenum |QHostInfo.UnknownError| 2) +(defenum |QHttpMultiPart.AlternativeType| 3) +(defenum |QHttpMultiPart.FormDataType| 2) +(defenum |QHttpMultiPart.MixedType| 0) +(defenum |QHttpMultiPart.RelatedType| 1) (defenum |QIODevice.Append| 4) (defenum |QIODevice.NotOpen| 0) (defenum |QIODevice.ReadOnly| 1) @@ -2296,6 +2300,31 @@ (defenum |QNetworkAccessManager.PostOperation| 4) (defenum |QNetworkAccessManager.PutOperation| 3) (defenum |QNetworkAccessManager.UnknownAccessibility| -1) +(defenum |QNetworkConfiguration.Active| 14) +(defenum |QNetworkConfiguration.Bearer2G| 3) +(defenum |QNetworkConfiguration.Bearer3G| 11) +(defenum |QNetworkConfiguration.Bearer4G| 12) +(defenum |QNetworkConfiguration.BearerBluetooth| 7) +(defenum |QNetworkConfiguration.BearerCDMA2000| 4) +(defenum |QNetworkConfiguration.BearerEVDO| 9) +(defenum |QNetworkConfiguration.BearerEthernet| 1) +(defenum |QNetworkConfiguration.BearerHSPA| 6) +(defenum |QNetworkConfiguration.BearerLTE| 10) +(defenum |QNetworkConfiguration.BearerUnknown| 0) +(defenum |QNetworkConfiguration.BearerWCDMA| 5) +(defenum |QNetworkConfiguration.BearerWLAN| 2) +(defenum |QNetworkConfiguration.BearerWiMAX| 8) +(defenum |QNetworkConfiguration.Defined| 2) +(defenum |QNetworkConfiguration.Discovered| 6) +(defenum |QNetworkConfiguration.InternetAccessPoint| 0) +(defenum |QNetworkConfiguration.Invalid| 3) +(defenum |QNetworkConfiguration.PrivatePurpose| 2) +(defenum |QNetworkConfiguration.PublicPurpose| 1) +(defenum |QNetworkConfiguration.ServiceNetwork| 1) +(defenum |QNetworkConfiguration.ServiceSpecificPurpose| 3) +(defenum |QNetworkConfiguration.Undefined| 1) +(defenum |QNetworkConfiguration.UnknownPurpose| 0) +(defenum |QNetworkConfiguration.UserChoice| 2) (defenum |QNetworkCookie.Full| 1) (defenum |QNetworkCookie.NameAndValueOnly| 0) (defenum |QNetworkInterface.CanBroadcast| 4) diff --git a/src/lisp/package.lisp b/src/lisp/package.lisp index dfb09d7..1148485 100644 --- a/src/lisp/package.lisp +++ b/src/lisp/package.lisp @@ -4,6 +4,7 @@ (:use :common-lisp) (:export #:*break-on-errors* + #:*byte-array-as-string* #:*slime-mode* #:*qtpl* #:!