From 8b8b1cc0222d7d2ffadd18510ae712afcd6f614c Mon Sep 17 00:00:00 2001 From: polos Date: Sun, 18 Dec 2016 22:39:37 +0100 Subject: [PATCH] add classes QPageLayout, QPageSize; small revisions; --- doc/auto-doc.htm | 2 +- examples/8-OpenGL/main-window.lisp | 2 +- examples/X-extras/calculator.lisp | 6 +- helper/missing-types.txt | 3 - helper/my-class-lists/gui/n-names.lisp | 3 + helper/no-static-meta-object.lisp | 3 + helper/parse.lisp | 7 +- helper/parsed/n-methods.lisp | 79 +++ helper/parsed/n-override.lisp | 3 + helper/parsed/q-methods.lisp | 2 +- src/ecl_fun.cpp | 14 +- src/eql.cpp | 2 +- src/gen/_lobjects.cpp | 793 +++++++++++++------------ src/gen/_lobjects.h | 3 +- src/gen/_main_n_classes.h | 205 ++++--- src/gen/_main_n_methods.h | 275 ++++++--- src/gen/_main_q_methods.h | 2 +- src/gen/multimedia/_ini.cpp | 24 +- src/gen/multimedia/_n_classes.h | 8 +- src/gen/multimedia/_n_methods.h | 8 +- src/gen/network/_ini.cpp | 62 +- src/gen/network/_n_classes.h | 26 +- src/gen/network/_n_methods.h | 26 +- src/gen/sql/_ini.cpp | 40 +- src/gen/sql/_n_classes.h | 16 +- src/gen/sql/_n_methods.h | 16 +- src/gen/svg/_ini.cpp | 6 +- src/gen/svg/_n_classes.h | 2 +- src/gen/svg/_n_methods.h | 2 +- src/gen/webkit/_ini.cpp | 32 +- src/gen/webkit/_n_classes.h | 12 +- src/gen/webkit/_n_methods.h | 16 +- src/lisp/all-wrappers-1.lisp | 10 +- src/lisp/all-wrappers-10.lisp | 150 ++--- src/lisp/all-wrappers-11.lisp | 210 +++---- src/lisp/all-wrappers-12.lisp | 105 ++++ src/lisp/all-wrappers-2.lisp | 28 +- src/lisp/all-wrappers-3.lisp | 48 +- src/lisp/all-wrappers-4.lisp | 52 +- src/lisp/all-wrappers-5.lisp | 72 +-- src/lisp/all-wrappers-6.lisp | 35 ++ src/lisp/all-wrappers-7.lisp | 24 +- src/lisp/all-wrappers-8.lisp | 78 +-- src/lisp/all-wrappers-9.lisp | 138 ++--- src/lisp/enum-lists/parsed-enums.lisp | 144 +++++ src/lisp/enums3.lisp | 288 ++++----- src/lisp/enums4.lisp | 288 ++++----- src/lisp/enums5.lisp | 144 +++++ src/lisp/merged-enums.lisp | 144 +++++ 49 files changed, 2238 insertions(+), 1420 deletions(-) diff --git a/doc/auto-doc.htm b/doc/auto-doc.htm index 83dea5b..42622fc 100644 --- a/doc/auto-doc.htm +++ b/doc/auto-doc.htm @@ -51,7 +51,7 @@ Finds all occurrencies of the given search string in the given object's meta inf (qapropos nil "QWidget") (qapropos) (qapropos '|toString|) ; wrapper function symbol - (qapropos nil *qt-main*) ; see Qt_EQL, Qt_EQL (custom Qt classes) + (qapropos nil *qt-main*) ; see Qt_EQL (QObject derived C++ classes)

QAPROPOS* (&optional search-string class-name) diff --git a/examples/8-OpenGL/main-window.lisp b/examples/8-OpenGL/main-window.lisp index e4b6cec..0076309 100644 --- a/examples/8-OpenGL/main-window.lisp +++ b/examples/8-OpenGL/main-window.lisp @@ -60,7 +60,7 @@ (|about.QMessageBox| *me* (tr "About Grabber") - (tr "The Grabber example demonstrates two approaches for rendering OpenGL into a Qt pixmap."))) + (tr "The Grabber example demonstrates how to render an OpenGL frame buffer into a Qt pixmap."))) (defun add-action (menu text shortcut function) (let ((action (|addAction| menu text))) diff --git a/examples/X-extras/calculator.lisp b/examples/X-extras/calculator.lisp index 293425b..715ac03 100644 --- a/examples/X-extras/calculator.lisp +++ b/examples/X-extras/calculator.lisp @@ -126,11 +126,15 @@ ,@(loop :for arg :in args :collect `(qconnect ,arg "clicked()" ',(intern (string-upcase (format nil "~A-clicked" arg))))))) +(let (policy) + (defun size-policy-expanding () + (or policy (setf policy (qnew "QSizePolicy(...)" |QSizePolicy.Expanding| |QSizePolicy.Expanding|))))) + (defun run () (flet ((b () (qnew "QToolButton" "minimumSize" '(35 25) - "sizePolicy" #.(qnew "QSizePolicy(...)" |QSizePolicy.Expanding| |QSizePolicy.Expanding|)))) + "sizePolicy" (size-policy-expanding)))) (let* ((layout* (|layout| *main*)) (layout (if (qnull layout*) ; for multiple calls of RUN (qnew "QGridLayout(QWidget*)" *main*) diff --git a/helper/missing-types.txt b/helper/missing-types.txt index cbfeb5f..4a00c23 100644 --- a/helper/missing-types.txt +++ b/helper/missing-types.txt @@ -45,7 +45,6 @@ QList QList QList QList -QMarginsF QMediaControl QMediaResource QMediaResourceList @@ -53,8 +52,6 @@ QMultiMap QNetworkConfiguration QOpenGLContextGroup QOpenGLFunctions -QPageLayout -QPageSize QPixelFormat QPlatformNativeInterface QPlatformScreen diff --git a/helper/my-class-lists/gui/n-names.lisp b/helper/my-class-lists/gui/n-names.lisp index ca1196b..9a33740 100644 --- a/helper/my-class-lists/gui/n-names.lisp +++ b/helper/my-class-lists/gui/n-names.lisp @@ -83,6 +83,7 @@ "QListWidgetItem" "QLocale" "QMargins" + "QMarginsF" "QMatrix" "QMatrix4x4" "QMetaObject" @@ -92,6 +93,8 @@ "QOpenGLPaintDevice" "QOpenGLTexture" "//QPagedPaintDevice" + "QPageLayout" + "QPageSize" "//QPaintDevice" "QPaintEvent" "QPainter" diff --git a/helper/no-static-meta-object.lisp b/helper/no-static-meta-object.lisp index e67cb76..3f84f64 100644 --- a/helper/no-static-meta-object.lisp +++ b/helper/no-static-meta-object.lisp @@ -62,6 +62,7 @@ "QLibraryInfo" "QListWidgetItem" "QMargins" + "QMarginsF" "QMatrix" "QMatrix4x4" "QMediaContent" @@ -78,6 +79,8 @@ "QOpenGLPaintDevice" "QOpenGLTexture" "QPagedPaintDevice" + "QPageLayout" + "QPageSize" "QPaintDevice" "QPainterPath" "QPainterPathStroker" diff --git a/helper/parse.lisp b/helper/parse.lisp index 5a49ed7..2cc010d 100644 --- a/helper/parse.lisp +++ b/helper/parse.lisp @@ -227,8 +227,11 @@ (when (search "QByteArray const" x:it) (setf x:it (x:string-substitute "const QByteArray" "QByteArray const" x:it))) (when (find #\( x:it) - (x:when-it* (search " = QRect( QPoint( 0, 0 ), QSize( -1, -1 ) )" x:it) ; special case - (setf x:it (concatenate 'string (subseq x:it 0 x:it*) " = QRect_QWIDGET_GRAB)"))) + ;; special default values + (x:when-it* (search " = QRect( QPoint( 0, 0 ), QSize( -1, -1 ) )" x:it) + (setf x:it (concatenate 'string (subseq x:it 0 x:it*) " = QRect_DEFAULT)"))) + (x:when-it* (search " = QMarginsF( 0, 0, 0, 0 )" x:it) + (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) diff --git a/helper/parsed/n-methods.lisp b/helper/parsed/n-methods.lisp index 2227253..6ead40d 100644 --- a/helper/parsed/n-methods.lisp +++ b/helper/parsed/n-methods.lisp @@ -1731,6 +1731,20 @@ "void setRight ( int )" "void setTop ( int )" "int top () const") + (("QMarginsF" . NIL) + "new QMarginsF ()" + "new QMarginsF ( qreal , qreal , qreal , qreal )" + "new QMarginsF ( const QMargins & )" + "qreal bottom () const" + "bool isNull () const" + "qreal left () const" + "qreal right () const" + "void setBottom ( qreal )" + "void setLeft ( qreal )" + "void setRight ( qreal )" + "void setTop ( qreal )" + "QMargins toMargins () const" + "qreal top () const") (("QMatrix" . NIL) "new QMatrix ()" "new QMatrix ( qreal , qreal , qreal , qreal , qreal , qreal )" @@ -2115,6 +2129,71 @@ "static GLuint boundTextureId ( BindingTarget )" "static GLuint boundTextureId ( uint , BindingTarget )" "static bool hasFeature ( Feature )") + (("QPageLayout" . NIL) + "new QPageLayout ()" + "new QPageLayout ( const QPageSize & , Orientation , const QMarginsF & , Unit = Point , const QMarginsF & = QMarginsF_DEFAULT )" + "new QPageLayout ( const QPageLayout & )" + "QRectF fullRect () const" + "QRectF fullRect ( Unit ) const" + "QRect fullRectPixels ( int ) const" + "QRect fullRectPoints () const" + "bool isEquivalentTo ( const QPageLayout & ) const" + "bool isValid () const" + "QMarginsF margins () const" + "QMarginsF margins ( Unit ) const" + "QMarginsF maximumMargins () const" + "QMarginsF minimumMargins () const" + "Mode mode () const" + "Orientation orientation () const" + "QPageSize pageSize () const" + "QRectF paintRect () const" + "QRectF paintRect ( Unit ) const" + "QRect paintRectPixels ( int ) const" + "QRect paintRectPoints () const" + "bool setBottomMargin ( qreal )" + "bool setLeftMargin ( qreal )" + "bool setMargins ( const QMarginsF & )" + "void setMinimumMargins ( const QMarginsF & )" + "void setMode ( Mode )" + "void setOrientation ( Orientation )" + "void setPageSize ( const QPageSize & , const QMarginsF & = QMarginsF_DEFAULT )" + "bool setRightMargin ( qreal )" + "bool setTopMargin ( qreal )" + "void setUnits ( Unit )" + "void swap ( QPageLayout & )" + "Unit units () const") + (("QPageSize" . NIL) + "new QPageSize ()" + "new QPageSize ( PageSizeId )" + "new QPageSize ( const QSize & , const QString & = QString() , SizeMatchPolicy = FuzzyMatch )" + "new QPageSize ( const QSizeF & , Unit , const QString & = QString() , SizeMatchPolicy = FuzzyMatch )" + "new QPageSize ( const QPageSize & )" + "QSizeF definitionSize () const" + "Unit definitionUnits () const" + "PageSizeId id () const" + "bool isEquivalentTo ( const QPageSize & ) const" + "bool isValid () const" + "QString key () const" + "QString name () const" + "QRectF rect ( Unit ) const" + "QRect rectPixels ( int ) const" + "QRect rectPoints () const" + "QSizeF size ( Unit ) const" + "QSize sizePixels ( int ) const" + "QSize sizePoints () const" + "void swap ( QPageSize & )" + "int windowsId () const" + "static QSizeF definitionSize ( PageSizeId )" + "static Unit definitionUnits ( PageSizeId )" + "static PageSizeId id ( const QSize & , SizeMatchPolicy = FuzzyMatch )" + "static PageSizeId id ( const QSizeF & , Unit , SizeMatchPolicy = FuzzyMatch )" + "static PageSizeId id ( int )" + "static QString key ( PageSizeId )" + "static QString name ( PageSizeId )" + "static QSizeF size ( PageSizeId , Unit )" + "static QSize sizePixels ( PageSizeId , int )" + "static QSize sizePoints ( PageSizeId )" + "static int windowsId ( PageSizeId )") (("QPagedPaintDevice" . "QPaintDevice") "virtual bool newPage () = 0" "QPageLayout pageLayout () const" diff --git a/helper/parsed/n-override.lisp b/helper/parsed/n-override.lisp index 2acab46..d7336e6 100644 --- a/helper/parsed/n-override.lisp +++ b/helper/parsed/n-override.lisp @@ -265,6 +265,7 @@ "virtual void setData ( int , const QVariant & )") (("QLocale" . NIL)) (("QMargins" . NIL)) + (("QMarginsF" . NIL)) (("QMatrix" . NIL)) (("QMatrix4x4" . NIL)) (("QMediaContent" . NIL)) @@ -285,6 +286,8 @@ "virtual void ensureActiveTarget ()" "virtual int metric ( QPaintDevice::PaintDeviceMetric ) const") (("QOpenGLTexture" . NIL)) + (("QPageLayout" . NIL)) + (("QPageSize" . NIL)) (("QPagedPaintDevice" . "QPaintDevice") "virtual bool newPage () = 0" "virtual void setPageSize ( PageSize )" diff --git a/helper/parsed/q-methods.lisp b/helper/parsed/q-methods.lisp index b9ac734..b1d7a5a 100644 --- a/helper/parsed/q-methods.lisp +++ b/helper/parsed/q-methods.lisp @@ -4986,7 +4986,7 @@ "QRect frameGeometry () const" "QSize frameSize () const" "const QRect & geometry () const" - "QPixmap grab ( const QRect & = QRect_QWIDGET_GRAB )" + "QPixmap grab ( const QRect & = QRect_DEFAULT )" "void grabGesture ( Qt::GestureType , Qt::GestureFlags = Qt::GestureFlags() )" "void grabKeyboard ()" "void grabMouse ()" diff --git a/src/ecl_fun.cpp b/src/ecl_fun.cpp index 79c6a49..d5d1da5 100644 --- a/src/ecl_fun.cpp +++ b/src/ecl_fun.cpp @@ -70,7 +70,10 @@ META_TYPE (T_QWidgetList, QWidgetList) META_TYPE (T_QList_int, QList) META_TYPE (T_QList_qreal, QList) META_TYPE (T_QMargins, QMargins) +META_TYPE (T_QMarginsF, QMarginsF) META_TYPE (T_QModelIndex, QModelIndex) +META_TYPE (T_QPageLayout, QPageLayout) +META_TYPE (T_QPageSize, QPageSize) META_TYPE (T_QPainterPath, QPainterPath) META_TYPE (T_QPolygonF, QPolygonF) META_TYPE (T_QRgb, QRgb) @@ -775,7 +778,10 @@ TO_QT_TYPE_PTR2 (QKeySequence, qkeysequence) TO_QT_TYPE_PTR2 (QLocale, qlocale) TO_QT_TYPE_PTR2 (QMatrix, qmatrix) TO_QT_TYPE_PTR (QMargins, qmargins) +TO_QT_TYPE_PTR (QMarginsF, qmarginsf) TO_QT_TYPE_PTR2 (QModelIndex, qmodelindex) +TO_QT_TYPE_PTR (QPageLayout, qpagelayout) +TO_QT_TYPE_PTR (QPageSize, qpagesize) TO_QT_TYPE_PTR (QPainterPath, qpainterpath) TO_QT_TYPE_PTR2 (QPalette, qpalette) TO_QT_TYPE_PTR2 (QPen, qpen) @@ -1222,7 +1228,10 @@ static MetaArg toMetaArg(const QByteArray& sType, cl_object l_arg) { else if(T_QList_int == n) p = new QList(toIntList(l_arg)); else if(T_QList_qreal == n) p = new QList(toRealList(l_arg)); else if(T_QMargins == n) p = new QMargins(*toQMarginsPointer(l_arg)); + else if(T_QMarginsF == n) p = new QMarginsF(*toQMarginsFPointer(l_arg)); else if(T_QModelIndex == n) p = new QModelIndex(*toQModelIndexPointer(l_arg)); + else if(T_QPageLayout == n) p = new QPageLayout(*toQPageLayoutPointer(l_arg)); + else if(T_QPageSize == n) p = new QPageSize(*toQPageSizePointer(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)); @@ -1383,7 +1392,10 @@ cl_object to_lisp_arg(const MetaArg& arg) { else if(T_QList_int == n) l_ret = from_intlist(*(QList*)p); else if(T_QList_qreal == n) l_ret = from_qreallist(*(QList*)p); else if(T_QMargins == n) l_ret = from_qmargins(*(QMargins*)p); + else if(T_QMarginsF == n) l_ret = from_qmarginsf(*(QMarginsF*)p); else if(T_QModelIndex == n) l_ret = from_qmodelindex(*(QModelIndex*)p); + else if(T_QPageLayout == n) l_ret = from_qpagelayout(*(QPageLayout*)p); + else if(T_QPageSize == n) l_ret = from_qpagesize(*(QPageSize*)p); 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); @@ -1579,7 +1591,7 @@ cl_object qapropos2(cl_object l_search, cl_object l_class, cl_object l_type) { /// (qapropos nil "QWidget") /// (qapropos) /// (qapropos '|toString|) ; wrapper function symbol - /// (qapropos nil *qt-main*) ; see Qt_EQL, Qt_EQL (custom Qt classes) + /// (qapropos nil *qt-main*) ; see Qt_EQL (QObject derived C++ classes) ecl_process_env()->nvalues = 1; QByteArray search; if(ECL_STRINGP(l_search)) { diff --git a/src/eql.cpp b/src/eql.cpp index e5629d7..edbf4f8 100644 --- a/src/eql.cpp +++ b/src/eql.cpp @@ -7,7 +7,7 @@ #include #include -const char EQL::version[] = "16.12.4"; // Dec 2016 +const char EQL::version[] = "16.12.5"; // Dec 2016 extern "C" void ini_EQL(cl_object); diff --git a/src/gen/_lobjects.cpp b/src/gen/_lobjects.cpp index b98fcfb..a111e58 100644 --- a/src/gen/_lobjects.cpp +++ b/src/gen/_lobjects.cpp @@ -349,6 +349,7 @@ NumList LLinearGradient::overrideIds = NumList(); NumList LListWidgetItem::overrideIds = NumList() << 458 << 459 << 460; NumList LLocale::overrideIds = NumList(); NumList LMargins::overrideIds = NumList(); +NumList LMarginsF::overrideIds = NumList(); NumList LMatrix::overrideIds = NumList(); NumList LMatrix4x4::overrideIds = NumList(); NumList LMetaObject::overrideIds = NumList(); @@ -357,6 +358,8 @@ NumList LMouseEvent::overrideIds = NumList(); NumList LMoveEvent::overrideIds = NumList(); NumList LOpenGLPaintDevice::overrideIds = NumList() << 462 << 463; NumList LOpenGLTexture::overrideIds = NumList(); +NumList LPageLayout::overrideIds = NumList(); +NumList LPageSize::overrideIds = NumList(); NumList LPaintEvent::overrideIds = NumList(); NumList LPainter::overrideIds = NumList(); NumList LPainterPath::overrideIds = NumList(); @@ -442,7 +445,7 @@ void LObjects::ini(EQL* e) { eql = e; dynObject = new DynObject; Q = new QObject* [243]; for(int i = 0; i < 243; ++i) { Q[i] = 0; } - N = new QObject* [216]; for(int i = 0; i < 216; ++i) { N[i] = 0; } + N = new QObject* [219]; for(int i = 0; i < 219; ++i) { N[i] = 0; } Q[0] = new Q1; Q[1] = new Q2; Q[2] = new Q3; @@ -717,11 +720,11 @@ void LObjects::ini(EQL* e) { N[91] = new N92; N[92] = new N93; N[93] = new N94; - N[95] = new N96; + N[94] = new N95; N[96] = new N97; N[97] = new N98; N[98] = new N99; - N[107] = new N108; + N[99] = new N100; N[108] = new N109; N[109] = new N110; N[110] = new N111; @@ -752,15 +755,15 @@ void LObjects::ini(EQL* e) { N[135] = new N136; N[136] = new N137; N[137] = new N138; - N[151] = new N152; - N[152] = new N153; - N[153] = new N154; + N[138] = new N139; + N[139] = new N140; + N[140] = new N141; N[154] = new N155; N[155] = new N156; N[156] = new N157; + N[157] = new N158; N[158] = new N159; N[159] = new N160; - N[160] = new N161; N[161] = new N162; N[162] = new N163; N[163] = new N164; @@ -799,12 +802,15 @@ void LObjects::ini(EQL* e) { N[196] = new N197; N[197] = new N198; N[198] = new N199; - N[210] = new N211; - N[211] = new N212; - N[212] = new N213; + N[199] = new N200; + N[200] = new N201; + N[201] = new N202; N[213] = new N214; N[214] = new N215; N[215] = new N216; + N[216] = new N217; + N[217] = new N218; + N[218] = new N219; q_names["QAbstractAnimation"] = 1; q_names["QAbstractButton"] = 2; q_names["QAbstractItemDelegate"] = 3; @@ -1140,130 +1146,133 @@ void LObjects::ini(EQL* e) { n_names["QListWidgetItem"] = 90; n_names["QLocale"] = 91; n_names["QMargins"] = 92; - n_names["QMatrix"] = 93; - n_names["QMatrix4x4"] = 94; - n_names["QMediaContent"] = 95; - n_names["QMetaObject"] = 96; - n_names["QModelIndex"] = 97; - n_names["QMouseEvent"] = 98; - n_names["QMoveEvent"] = 99; - n_names["QNetworkAddressEntry"] = 100; - n_names["QNetworkCacheMetaData"] = 101; - n_names["QNetworkCookie"] = 102; - n_names["QNetworkInterface"] = 103; - n_names["QNetworkProxy"] = 104; - n_names["QNetworkProxyFactory"] = 105; - n_names["QNetworkProxyQuery"] = 106; - n_names["QNetworkRequest"] = 107; - n_names["QOpenGLPaintDevice"] = 108; - n_names["QOpenGLTexture"] = 109; - n_names["QPagedPaintDevice"] = 110; - n_names["QPaintDevice"] = 111; - n_names["QPaintEvent"] = 112; - n_names["QPainter"] = 113; - n_names["QPainterPath"] = 114; - n_names["QPainterPathStroker"] = 115; - n_names["QPalette"] = 116; - n_names["QPen"] = 117; - n_names["QPersistentModelIndex"] = 118; - n_names["QPicture"] = 119; - n_names["QPixmap"] = 120; - n_names["QPixmapCache"] = 121; - n_names["QPrinter"] = 122; - n_names["QPrinterInfo"] = 123; - n_names["QProcessEnvironment"] = 124; - n_names["QQuaternion"] = 125; - n_names["QRadialGradient"] = 126; - n_names["QReadLocker"] = 127; - n_names["QReadWriteLock"] = 128; - n_names["QRegExp"] = 129; - n_names["QRegion"] = 130; - n_names["QRegularExpression"] = 131; - n_names["QResizeEvent"] = 132; - n_names["QRunnable"] = 133; - n_names["QSemaphore"] = 134; - n_names["QShortcutEvent"] = 135; - n_names["QShowEvent"] = 136; - n_names["QSizePolicy"] = 137; - n_names["QSpacerItem"] = 138; - n_names["QSqlDatabase"] = 139; - n_names["QSqlError"] = 140; - n_names["QSqlField"] = 141; - n_names["QSqlIndex"] = 142; - n_names["QSqlQuery"] = 143; - n_names["QSqlRecord"] = 144; - n_names["QSqlRelation"] = 145; - n_names["QSqlResult"] = 146; - n_names["QSslCertificate"] = 147; - n_names["QSslCipher"] = 148; - n_names["QSslConfiguration"] = 149; - n_names["QSslError"] = 150; - n_names["QSslKey"] = 151; - n_names["QStandardItem"] = 152; - n_names["QStandardPaths"] = 153; - n_names["QStatusTipEvent"] = 154; - n_names["QStyleOption"] = 155; - n_names["QStyleOptionGraphicsItem"] = 156; - n_names["QSurface"] = 157; - n_names["QSvgGenerator"] = 158; - n_names["QSysInfo"] = 159; - n_names["QSystemSemaphore"] = 160; - n_names["QTableWidgetItem"] = 161; - n_names["QTableWidgetSelectionRange"] = 162; - n_names["QTabletEvent"] = 163; - n_names["QTextBlock"] = 164; - n_names["QTextBlockFormat"] = 165; - n_names["QTextBlockUserData"] = 166; - n_names["QTextBoundaryFinder"] = 167; - n_names["QTextCharFormat"] = 168; - n_names["QTextCodec"] = 169; - n_names["QTextCursor"] = 170; - n_names["QTextDecoder"] = 171; - n_names["QTextDocumentFragment"] = 172; - n_names["QTextDocumentWriter"] = 173; - n_names["QTextEncoder"] = 174; - n_names["QTextFormat"] = 175; - n_names["QTextFragment"] = 176; - n_names["QTextFrameFormat"] = 177; - n_names["QTextImageFormat"] = 178; - n_names["QTextLayout"] = 179; - n_names["QTextLength"] = 180; - n_names["QTextLine"] = 181; - n_names["QTextListFormat"] = 182; - n_names["QTextOption"] = 183; - n_names["QTextTableCell"] = 184; - n_names["QTextTableCellFormat"] = 185; - n_names["QTextTableFormat"] = 186; - n_names["QTime"] = 187; - n_names["QTimeZone"] = 188; - n_names["QTimerEvent"] = 189; - n_names["QToolTip"] = 190; - n_names["QTouchEvent"] = 191; - n_names["QTransform"] = 192; - n_names["QTreeWidgetItem"] = 193; - n_names["QUndoCommand"] = 194; - n_names["QUrl"] = 195; - n_names["QVariant"] = 196; - n_names["QVector2D"] = 197; - n_names["QVector3D"] = 198; - n_names["QVector4D"] = 199; - n_names["QVideoEncoderSettings"] = 200; - n_names["QVideoFrame"] = 201; - n_names["QVideoSurfaceFormat"] = 202; - n_names["QWebDatabase"] = 203; - n_names["QWebElement"] = 204; - n_names["QWebElementCollection"] = 205; - n_names["QWebHistory"] = 206; - n_names["QWebHistoryItem"] = 207; - n_names["QWebHitTestResult"] = 208; - n_names["QWebSecurityOrigin"] = 209; - n_names["QWebSettings"] = 210; - n_names["QWhatsThis"] = 211; - n_names["QWhatsThisClickedEvent"] = 212; - n_names["QWheelEvent"] = 213; - n_names["QWidgetItem"] = 214; - n_names["QWindowStateChangeEvent"] = 215; - n_names["QWriteLocker"] = 216; + n_names["QMarginsF"] = 93; + n_names["QMatrix"] = 94; + n_names["QMatrix4x4"] = 95; + n_names["QMediaContent"] = 96; + n_names["QMetaObject"] = 97; + n_names["QModelIndex"] = 98; + n_names["QMouseEvent"] = 99; + n_names["QMoveEvent"] = 100; + n_names["QNetworkAddressEntry"] = 101; + n_names["QNetworkCacheMetaData"] = 102; + n_names["QNetworkCookie"] = 103; + n_names["QNetworkInterface"] = 104; + n_names["QNetworkProxy"] = 105; + n_names["QNetworkProxyFactory"] = 106; + n_names["QNetworkProxyQuery"] = 107; + n_names["QNetworkRequest"] = 108; + n_names["QOpenGLPaintDevice"] = 109; + n_names["QOpenGLTexture"] = 110; + n_names["QPageLayout"] = 111; + n_names["QPageSize"] = 112; + n_names["QPagedPaintDevice"] = 113; + n_names["QPaintDevice"] = 114; + n_names["QPaintEvent"] = 115; + n_names["QPainter"] = 116; + n_names["QPainterPath"] = 117; + n_names["QPainterPathStroker"] = 118; + n_names["QPalette"] = 119; + n_names["QPen"] = 120; + n_names["QPersistentModelIndex"] = 121; + n_names["QPicture"] = 122; + n_names["QPixmap"] = 123; + n_names["QPixmapCache"] = 124; + n_names["QPrinter"] = 125; + n_names["QPrinterInfo"] = 126; + n_names["QProcessEnvironment"] = 127; + n_names["QQuaternion"] = 128; + n_names["QRadialGradient"] = 129; + n_names["QReadLocker"] = 130; + n_names["QReadWriteLock"] = 131; + n_names["QRegExp"] = 132; + n_names["QRegion"] = 133; + n_names["QRegularExpression"] = 134; + n_names["QResizeEvent"] = 135; + n_names["QRunnable"] = 136; + n_names["QSemaphore"] = 137; + n_names["QShortcutEvent"] = 138; + n_names["QShowEvent"] = 139; + n_names["QSizePolicy"] = 140; + n_names["QSpacerItem"] = 141; + n_names["QSqlDatabase"] = 142; + n_names["QSqlError"] = 143; + n_names["QSqlField"] = 144; + n_names["QSqlIndex"] = 145; + n_names["QSqlQuery"] = 146; + n_names["QSqlRecord"] = 147; + n_names["QSqlRelation"] = 148; + n_names["QSqlResult"] = 149; + n_names["QSslCertificate"] = 150; + n_names["QSslCipher"] = 151; + n_names["QSslConfiguration"] = 152; + n_names["QSslError"] = 153; + n_names["QSslKey"] = 154; + n_names["QStandardItem"] = 155; + n_names["QStandardPaths"] = 156; + n_names["QStatusTipEvent"] = 157; + n_names["QStyleOption"] = 158; + n_names["QStyleOptionGraphicsItem"] = 159; + n_names["QSurface"] = 160; + n_names["QSvgGenerator"] = 161; + n_names["QSysInfo"] = 162; + n_names["QSystemSemaphore"] = 163; + n_names["QTableWidgetItem"] = 164; + n_names["QTableWidgetSelectionRange"] = 165; + n_names["QTabletEvent"] = 166; + n_names["QTextBlock"] = 167; + n_names["QTextBlockFormat"] = 168; + n_names["QTextBlockUserData"] = 169; + n_names["QTextBoundaryFinder"] = 170; + n_names["QTextCharFormat"] = 171; + n_names["QTextCodec"] = 172; + n_names["QTextCursor"] = 173; + n_names["QTextDecoder"] = 174; + n_names["QTextDocumentFragment"] = 175; + n_names["QTextDocumentWriter"] = 176; + n_names["QTextEncoder"] = 177; + n_names["QTextFormat"] = 178; + n_names["QTextFragment"] = 179; + n_names["QTextFrameFormat"] = 180; + n_names["QTextImageFormat"] = 181; + n_names["QTextLayout"] = 182; + n_names["QTextLength"] = 183; + n_names["QTextLine"] = 184; + n_names["QTextListFormat"] = 185; + n_names["QTextOption"] = 186; + n_names["QTextTableCell"] = 187; + n_names["QTextTableCellFormat"] = 188; + n_names["QTextTableFormat"] = 189; + n_names["QTime"] = 190; + n_names["QTimeZone"] = 191; + n_names["QTimerEvent"] = 192; + n_names["QToolTip"] = 193; + n_names["QTouchEvent"] = 194; + n_names["QTransform"] = 195; + n_names["QTreeWidgetItem"] = 196; + n_names["QUndoCommand"] = 197; + n_names["QUrl"] = 198; + n_names["QVariant"] = 199; + n_names["QVector2D"] = 200; + n_names["QVector3D"] = 201; + n_names["QVector4D"] = 202; + n_names["QVideoEncoderSettings"] = 203; + n_names["QVideoFrame"] = 204; + n_names["QVideoSurfaceFormat"] = 205; + n_names["QWebDatabase"] = 206; + n_names["QWebElement"] = 207; + n_names["QWebElementCollection"] = 208; + n_names["QWebHistory"] = 209; + n_names["QWebHistoryItem"] = 210; + n_names["QWebHitTestResult"] = 211; + n_names["QWebSecurityOrigin"] = 212; + n_names["QWebSettings"] = 213; + n_names["QWhatsThis"] = 214; + n_names["QWhatsThisClickedEvent"] = 215; + n_names["QWheelEvent"] = 216; + n_names["QWidgetItem"] = 217; + n_names["QWindowStateChangeEvent"] = 218; + n_names["QWriteLocker"] = 219; override_function_ids["duration()"] = 1; override_function_ids["updateCurrentTime(int)"] = 2; override_function_ids["updateDirection(QAbstractAnimation::Direction)"] = 3; @@ -2265,7 +2274,7 @@ void LObjects::ini(EQL* e) { nNames = n_names.keys(); }} quint64 LObjects::override_id(uint unique, int id) { - return (215 * (quint64)unique + id); } + return (218 * (quint64)unique + id); } void* LObjects::overrideFun(quint64 id) { return override_lisp_functions.value(id, 0); } @@ -2280,31 +2289,31 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) { n = -LObjects::n_names.value(name, 0); }} const QMetaObject* m = 0; switch(n) { - case -215: m = &QWindowStateChangeEvent::staticMetaObject; break; - case -213: m = &QWheelEvent::staticMetaObject; break; - case -212: m = &QWhatsThisClickedEvent::staticMetaObject; break; - case -191: m = &QTouchEvent::staticMetaObject; break; - case -189: m = &QTimerEvent::staticMetaObject; break; - case -186: m = &QTextTableFormat::staticMetaObject; break; - case -185: m = &QTextTableCellFormat::staticMetaObject; break; - case -182: m = &QTextListFormat::staticMetaObject; break; - case -178: m = &QTextImageFormat::staticMetaObject; break; - case -177: m = &QTextFrameFormat::staticMetaObject; break; - case -175: m = &QTextFormat::staticMetaObject; break; - case -168: m = &QTextCharFormat::staticMetaObject; break; - case -165: m = &QTextBlockFormat::staticMetaObject; break; - case -163: m = &QTabletEvent::staticMetaObject; break; - case -154: m = &QStatusTipEvent::staticMetaObject; break; - case -137: m = &QSizePolicy::staticMetaObject; break; - case -136: m = &QShowEvent::staticMetaObject; break; - case -135: m = &QShortcutEvent::staticMetaObject; break; - case -132: m = &QResizeEvent::staticMetaObject; break; - case -126: m = &QRadialGradient::staticMetaObject; break; - case -116: m = &QPalette::staticMetaObject; break; - case -113: m = &QPainter::staticMetaObject; break; - case -112: m = &QPaintEvent::staticMetaObject; break; - case -99: m = &QMoveEvent::staticMetaObject; break; - case -98: m = &QMouseEvent::staticMetaObject; break; + case -218: m = &QWindowStateChangeEvent::staticMetaObject; break; + case -216: m = &QWheelEvent::staticMetaObject; break; + case -215: m = &QWhatsThisClickedEvent::staticMetaObject; break; + case -194: m = &QTouchEvent::staticMetaObject; break; + case -192: m = &QTimerEvent::staticMetaObject; break; + case -189: m = &QTextTableFormat::staticMetaObject; break; + case -188: m = &QTextTableCellFormat::staticMetaObject; break; + case -185: m = &QTextListFormat::staticMetaObject; break; + case -181: m = &QTextImageFormat::staticMetaObject; break; + case -180: m = &QTextFrameFormat::staticMetaObject; break; + case -178: m = &QTextFormat::staticMetaObject; break; + case -171: m = &QTextCharFormat::staticMetaObject; break; + case -168: m = &QTextBlockFormat::staticMetaObject; break; + case -166: m = &QTabletEvent::staticMetaObject; break; + case -157: m = &QStatusTipEvent::staticMetaObject; break; + case -140: m = &QSizePolicy::staticMetaObject; break; + case -139: m = &QShowEvent::staticMetaObject; break; + case -138: m = &QShortcutEvent::staticMetaObject; break; + case -135: m = &QResizeEvent::staticMetaObject; break; + case -129: m = &QRadialGradient::staticMetaObject; break; + case -119: m = &QPalette::staticMetaObject; break; + case -116: m = &QPainter::staticMetaObject; break; + case -115: m = &QPaintEvent::staticMetaObject; break; + case -100: m = &QMoveEvent::staticMetaObject; break; + case -99: m = &QMouseEvent::staticMetaObject; break; case -91: m = &QLocale::staticMetaObject; break; case -89: m = &QLinearGradient::staticMetaObject; break; case -85: m = &QKeyEvent::staticMetaObject; break; @@ -2684,91 +2693,94 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 90: if(gc) delete (QListWidgetItem*)p; else delete (LListWidgetItem*)p; break; case 91: if(gc) delete (QLocale*)p; else delete (LLocale*)p; break; case 92: if(gc) delete (QMargins*)p; else delete (LMargins*)p; break; - case 93: if(gc) delete (QMatrix*)p; else delete (LMatrix*)p; break; - case 94: if(gc) delete (QMatrix4x4*)p; else delete (LMatrix4x4*)p; break; - case 96: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break; - case 97: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break; - case 98: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break; - case 99: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break; - case 108: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break; - case 109: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break; - case 112: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break; - case 113: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break; - case 114: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break; - case 115: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break; - case 116: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break; - case 117: if(gc) delete (QPen*)p; else delete (LPen*)p; break; - case 118: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break; - case 119: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break; - case 120: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break; - case 121: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break; - case 122: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break; - case 123: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break; - case 124: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break; - case 125: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break; - case 126: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break; - case 127: if(gc) delete (QReadLocker*)p; else delete (LReadLocker*)p; break; - case 128: if(gc) delete (QReadWriteLock*)p; else delete (LReadWriteLock*)p; break; - case 129: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break; - case 130: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break; - case 131: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break; - case 132: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break; - case 133: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break; - case 134: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break; - case 135: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break; - case 136: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break; - case 137: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break; - case 138: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break; - case 152: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break; - case 154: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break; - case 155: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break; - case 156: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break; - case 160: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break; - case 161: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break; - case 162: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break; - case 163: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break; - case 164: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break; - case 165: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break; - case 166: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break; - case 167: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break; - case 168: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break; - case 169: if(gc) /* nothing */; else delete (LTextCodec*)p; break; - case 170: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break; - case 171: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break; - case 172: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break; - case 173: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break; - case 174: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break; - case 175: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break; - case 176: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break; - case 177: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break; - case 178: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break; - case 179: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break; - case 180: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break; - case 181: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break; - case 182: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break; - case 183: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break; - case 184: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break; - case 185: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break; - case 186: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break; - case 187: if(gc) delete (QTime*)p; else delete (LTime*)p; break; - case 188: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break; - case 189: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break; - case 190: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break; - case 191: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break; - case 192: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break; - case 193: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break; - case 194: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break; - case 195: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break; - case 196: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break; - case 197: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break; - case 198: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break; - case 199: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break; - case 211: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break; - case 212: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break; - case 213: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break; - case 214: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break; - case 215: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break; - case 216: if(gc) delete (QWriteLocker*)p; else delete (LWriteLocker*)p; break; + case 93: if(gc) delete (QMarginsF*)p; else delete (LMarginsF*)p; break; + case 94: if(gc) delete (QMatrix*)p; else delete (LMatrix*)p; break; + case 95: if(gc) delete (QMatrix4x4*)p; else delete (LMatrix4x4*)p; break; + case 97: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break; + case 98: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break; + case 99: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break; + case 100: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break; + case 109: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break; + case 110: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break; + case 111: if(gc) delete (QPageLayout*)p; else delete (LPageLayout*)p; break; + case 112: if(gc) delete (QPageSize*)p; else delete (LPageSize*)p; break; + case 115: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break; + case 116: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break; + case 117: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break; + case 118: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break; + case 119: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break; + case 120: if(gc) delete (QPen*)p; else delete (LPen*)p; break; + case 121: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break; + case 122: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break; + case 123: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break; + case 124: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break; + case 125: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break; + case 126: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break; + case 127: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break; + case 128: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break; + case 129: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break; + case 130: if(gc) delete (QReadLocker*)p; else delete (LReadLocker*)p; break; + case 131: if(gc) delete (QReadWriteLock*)p; else delete (LReadWriteLock*)p; break; + case 132: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break; + case 133: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break; + case 134: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break; + case 135: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break; + case 136: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break; + case 137: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break; + case 138: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break; + case 139: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break; + case 140: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break; + case 141: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break; + case 155: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break; + case 157: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break; + case 158: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break; + case 159: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break; + case 163: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break; + case 164: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break; + case 165: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break; + case 166: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break; + case 167: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break; + case 168: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break; + case 169: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break; + case 170: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break; + case 171: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break; + case 172: if(gc) /* nothing */; else delete (LTextCodec*)p; break; + case 173: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break; + case 174: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break; + case 175: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break; + case 176: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break; + case 177: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break; + case 178: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break; + case 179: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break; + case 180: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break; + case 181: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break; + case 182: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break; + case 183: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break; + case 184: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break; + case 185: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break; + case 186: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break; + case 187: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break; + case 188: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break; + case 189: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break; + case 190: if(gc) delete (QTime*)p; else delete (LTime*)p; break; + case 191: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break; + case 192: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break; + case 193: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break; + case 194: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break; + case 195: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break; + case 196: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break; + case 197: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break; + case 198: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break; + case 199: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break; + case 200: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break; + case 201: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break; + case 202: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break; + case 214: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break; + case 215: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break; + case 216: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break; + case 217: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break; + case 218: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break; + case 219: if(gc) delete (QWriteLocker*)p; else delete (LWriteLocker*)p; break; case 70: case 72: if(deleteNObject_help) { @@ -2780,17 +2792,16 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 16: case 17: case 80: - case 95: - case 200: - case 201: - case 202: + case 96: + case 203: + case 204: + case 205: if(deleteNObject_multimedia) { deleteNObject_multimedia(n, p, gc); } break; case 11: case 74: case 75: - case 100: case 101: case 102: case 103: @@ -2798,37 +2809,38 @@ void LObjects::deleteNObject(int n, void* p, int gc) { case 105: case 106: case 107: - case 147: - case 148: - case 149: + case 108: case 150: case 151: + case 152: + case 153: + case 154: if(deleteNObject_network) { deleteNObject_network(n, p, gc); } break; - case 139: - case 140: - case 141: case 142: case 143: case 144: case 145: case 146: + case 147: + case 148: + case 149: if(deleteNObject_sql) { deleteNObject_sql(n, p, gc); } break; - case 158: + case 161: if(deleteNObject_svg) { deleteNObject_svg(n, p, gc); } break; - case 203: - case 204: - case 205: case 206: case 207: case 208: case 209: case 210: + case 211: + case 212: + case 213: if(deleteNObject_webkit) { deleteNObject_webkit(n, p, gc); } break; }} @@ -2883,37 +2895,37 @@ const char* LObjects::nObjectSuperClass(const QByteArray& name) { case 82: s = "QEvent"; break; case 85: s = "QInputEvent"; break; case 89: s = "QGradient"; break; - case 98: s = "QInputEvent"; break; - case 99: s = "QEvent"; break; - case 108: s = "QPaintDevice"; break; - case 110: s = "QPaintDevice"; break; - case 112: s = "QEvent"; break; - case 119: s = "QPaintDevice"; break; - case 120: s = "QPaintDevice"; break; - case 122: s = "QPagedPaintDevice"; break; - case 126: s = "QGradient"; break; - case 132: s = "QEvent"; break; + case 99: s = "QInputEvent"; break; + case 100: s = "QEvent"; break; + case 109: s = "QPaintDevice"; break; + case 113: s = "QPaintDevice"; break; + case 115: s = "QEvent"; break; + case 122: s = "QPaintDevice"; break; + case 123: s = "QPaintDevice"; break; + case 125: s = "QPagedPaintDevice"; break; + case 129: s = "QGradient"; break; case 135: s = "QEvent"; break; - case 136: s = "QEvent"; break; - case 138: s = "QLayoutItem"; break; - case 142: s = "QSqlRecord"; break; - case 154: s = "QEvent"; break; - case 156: s = "QStyleOption"; break; - case 158: s = "QPaintDevice"; break; - case 163: s = "QInputEvent"; break; - case 165: s = "QTextFormat"; break; + case 138: s = "QEvent"; break; + case 139: s = "QEvent"; break; + case 141: s = "QLayoutItem"; break; + case 145: s = "QSqlRecord"; break; + case 157: s = "QEvent"; break; + case 159: s = "QStyleOption"; break; + case 161: s = "QPaintDevice"; break; + case 166: s = "QInputEvent"; break; case 168: s = "QTextFormat"; break; - case 177: s = "QTextFormat"; break; - case 178: s = "QTextCharFormat"; break; - case 182: s = "QTextFormat"; break; - case 185: s = "QTextCharFormat"; break; - case 186: s = "QTextFrameFormat"; break; - case 189: s = "QEvent"; break; - case 191: s = "QInputEvent"; break; - case 212: s = "QEvent"; break; - case 213: s = "QInputEvent"; break; - case 214: s = "QLayoutItem"; break; - case 215: s = "QEvent"; break; } + case 171: s = "QTextFormat"; break; + case 180: s = "QTextFormat"; break; + case 181: s = "QTextCharFormat"; break; + case 185: s = "QTextFormat"; break; + case 188: s = "QTextCharFormat"; break; + case 189: s = "QTextFrameFormat"; break; + case 192: s = "QEvent"; break; + case 194: s = "QInputEvent"; break; + case 215: s = "QEvent"; break; + case 216: s = "QInputEvent"; break; + case 217: s = "QLayoutItem"; break; + case 218: s = "QEvent"; break; } return s; } StrList LObjects::overrideFunctions(const QByteArray& name) { @@ -3266,91 +3278,94 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 90: ids = LListWidgetItem::overrideIds; break; case 91: ids = LLocale::overrideIds; break; case 92: ids = LMargins::overrideIds; break; - case 93: ids = LMatrix::overrideIds; break; - case 94: ids = LMatrix4x4::overrideIds; break; - case 96: ids = LMetaObject::overrideIds; break; - case 97: ids = LModelIndex::overrideIds; break; - case 98: ids = LMouseEvent::overrideIds; break; - case 99: ids = LMoveEvent::overrideIds; break; - case 108: ids = LOpenGLPaintDevice::overrideIds; break; - case 109: ids = LOpenGLTexture::overrideIds; break; - case 112: ids = LPaintEvent::overrideIds; break; - case 113: ids = LPainter::overrideIds; break; - case 114: ids = LPainterPath::overrideIds; break; - case 115: ids = LPainterPathStroker::overrideIds; break; - case 116: ids = LPalette::overrideIds; break; - case 117: ids = LPen::overrideIds; break; - case 118: ids = LPersistentModelIndex::overrideIds; break; - case 119: ids = LPicture::overrideIds; break; - case 120: ids = LPixmap::overrideIds; break; - case 121: ids = LPixmapCache::overrideIds; break; - case 122: ids = LPrinter::overrideIds; break; - case 123: ids = LPrinterInfo::overrideIds; break; - case 124: ids = LProcessEnvironment::overrideIds; break; - case 125: ids = LQuaternion::overrideIds; break; - case 126: ids = LRadialGradient::overrideIds; break; - case 127: ids = LReadLocker::overrideIds; break; - case 128: ids = LReadWriteLock::overrideIds; break; - case 129: ids = LRegExp::overrideIds; break; - case 130: ids = LRegion::overrideIds; break; - case 131: ids = LRegularExpression::overrideIds; break; - case 132: ids = LResizeEvent::overrideIds; break; - case 133: ids = LRunnable::overrideIds; break; - case 134: ids = LSemaphore::overrideIds; break; - case 135: ids = LShortcutEvent::overrideIds; break; - case 136: ids = LShowEvent::overrideIds; break; - case 137: ids = LSizePolicy::overrideIds; break; - case 138: ids = LSpacerItem::overrideIds; break; - case 152: ids = LStandardItem::overrideIds; break; - case 154: ids = LStatusTipEvent::overrideIds; break; - case 155: ids = LStyleOption::overrideIds; break; - case 156: ids = LStyleOptionGraphicsItem::overrideIds; break; - case 160: ids = LSystemSemaphore::overrideIds; break; - case 161: ids = LTableWidgetItem::overrideIds; break; - case 162: ids = LTableWidgetSelectionRange::overrideIds; break; - case 163: ids = LTabletEvent::overrideIds; break; - case 164: ids = LTextBlock::overrideIds; break; - case 165: ids = LTextBlockFormat::overrideIds; break; - case 166: ids = LTextBlockUserData::overrideIds; break; - case 167: ids = LTextBoundaryFinder::overrideIds; break; - case 168: ids = LTextCharFormat::overrideIds; break; - case 169: ids = LTextCodec::overrideIds; break; - case 170: ids = LTextCursor::overrideIds; break; - case 171: ids = LTextDecoder::overrideIds; break; - case 172: ids = LTextDocumentFragment::overrideIds; break; - case 173: ids = LTextDocumentWriter::overrideIds; break; - case 174: ids = LTextEncoder::overrideIds; break; - case 175: ids = LTextFormat::overrideIds; break; - case 176: ids = LTextFragment::overrideIds; break; - case 177: ids = LTextFrameFormat::overrideIds; break; - case 178: ids = LTextImageFormat::overrideIds; break; - case 179: ids = LTextLayout::overrideIds; break; - case 180: ids = LTextLength::overrideIds; break; - case 181: ids = LTextLine::overrideIds; break; - case 182: ids = LTextListFormat::overrideIds; break; - case 183: ids = LTextOption::overrideIds; break; - case 184: ids = LTextTableCell::overrideIds; break; - case 185: ids = LTextTableCellFormat::overrideIds; break; - case 186: ids = LTextTableFormat::overrideIds; break; - case 187: ids = LTime::overrideIds; break; - case 188: ids = LTimeZone::overrideIds; break; - case 189: ids = LTimerEvent::overrideIds; break; - case 190: ids = LToolTip::overrideIds; break; - case 191: ids = LTouchEvent::overrideIds; break; - case 192: ids = LTransform::overrideIds; break; - case 193: ids = LTreeWidgetItem::overrideIds; break; - case 194: ids = LUndoCommand::overrideIds; break; - case 195: ids = LUrl::overrideIds; break; - case 196: ids = LVariant::overrideIds; break; - case 197: ids = LVector2D::overrideIds; break; - case 198: ids = LVector3D::overrideIds; break; - case 199: ids = LVector4D::overrideIds; break; - case 211: ids = LWhatsThis::overrideIds; break; - case 212: ids = LWhatsThisClickedEvent::overrideIds; break; - case 213: ids = LWheelEvent::overrideIds; break; - case 214: ids = LWidgetItem::overrideIds; break; - case 215: ids = LWindowStateChangeEvent::overrideIds; break; - case 216: ids = LWriteLocker::overrideIds; break; + case 93: ids = LMarginsF::overrideIds; break; + case 94: ids = LMatrix::overrideIds; break; + case 95: ids = LMatrix4x4::overrideIds; break; + case 97: ids = LMetaObject::overrideIds; break; + case 98: ids = LModelIndex::overrideIds; break; + case 99: ids = LMouseEvent::overrideIds; break; + case 100: ids = LMoveEvent::overrideIds; break; + case 109: ids = LOpenGLPaintDevice::overrideIds; break; + case 110: ids = LOpenGLTexture::overrideIds; break; + case 111: ids = LPageLayout::overrideIds; break; + case 112: ids = LPageSize::overrideIds; break; + case 115: ids = LPaintEvent::overrideIds; break; + case 116: ids = LPainter::overrideIds; break; + case 117: ids = LPainterPath::overrideIds; break; + case 118: ids = LPainterPathStroker::overrideIds; break; + case 119: ids = LPalette::overrideIds; break; + case 120: ids = LPen::overrideIds; break; + case 121: ids = LPersistentModelIndex::overrideIds; break; + case 122: ids = LPicture::overrideIds; break; + case 123: ids = LPixmap::overrideIds; break; + case 124: ids = LPixmapCache::overrideIds; break; + case 125: ids = LPrinter::overrideIds; break; + case 126: ids = LPrinterInfo::overrideIds; break; + case 127: ids = LProcessEnvironment::overrideIds; break; + case 128: ids = LQuaternion::overrideIds; break; + case 129: ids = LRadialGradient::overrideIds; break; + case 130: ids = LReadLocker::overrideIds; break; + case 131: ids = LReadWriteLock::overrideIds; break; + case 132: ids = LRegExp::overrideIds; break; + case 133: ids = LRegion::overrideIds; break; + case 134: ids = LRegularExpression::overrideIds; break; + case 135: ids = LResizeEvent::overrideIds; break; + case 136: ids = LRunnable::overrideIds; break; + case 137: ids = LSemaphore::overrideIds; break; + case 138: ids = LShortcutEvent::overrideIds; break; + case 139: ids = LShowEvent::overrideIds; break; + case 140: ids = LSizePolicy::overrideIds; break; + case 141: ids = LSpacerItem::overrideIds; break; + case 155: ids = LStandardItem::overrideIds; break; + case 157: ids = LStatusTipEvent::overrideIds; break; + case 158: ids = LStyleOption::overrideIds; break; + case 159: ids = LStyleOptionGraphicsItem::overrideIds; break; + case 163: ids = LSystemSemaphore::overrideIds; break; + case 164: ids = LTableWidgetItem::overrideIds; break; + case 165: ids = LTableWidgetSelectionRange::overrideIds; break; + case 166: ids = LTabletEvent::overrideIds; break; + case 167: ids = LTextBlock::overrideIds; break; + case 168: ids = LTextBlockFormat::overrideIds; break; + case 169: ids = LTextBlockUserData::overrideIds; break; + case 170: ids = LTextBoundaryFinder::overrideIds; break; + case 171: ids = LTextCharFormat::overrideIds; break; + case 172: ids = LTextCodec::overrideIds; break; + case 173: ids = LTextCursor::overrideIds; break; + case 174: ids = LTextDecoder::overrideIds; break; + case 175: ids = LTextDocumentFragment::overrideIds; break; + case 176: ids = LTextDocumentWriter::overrideIds; break; + case 177: ids = LTextEncoder::overrideIds; break; + case 178: ids = LTextFormat::overrideIds; break; + case 179: ids = LTextFragment::overrideIds; break; + case 180: ids = LTextFrameFormat::overrideIds; break; + case 181: ids = LTextImageFormat::overrideIds; break; + case 182: ids = LTextLayout::overrideIds; break; + case 183: ids = LTextLength::overrideIds; break; + case 184: ids = LTextLine::overrideIds; break; + case 185: ids = LTextListFormat::overrideIds; break; + case 186: ids = LTextOption::overrideIds; break; + case 187: ids = LTextTableCell::overrideIds; break; + case 188: ids = LTextTableCellFormat::overrideIds; break; + case 189: ids = LTextTableFormat::overrideIds; break; + case 190: ids = LTime::overrideIds; break; + case 191: ids = LTimeZone::overrideIds; break; + case 192: ids = LTimerEvent::overrideIds; break; + case 193: ids = LToolTip::overrideIds; break; + case 194: ids = LTouchEvent::overrideIds; break; + case 195: ids = LTransform::overrideIds; break; + case 196: ids = LTreeWidgetItem::overrideIds; break; + case 197: ids = LUndoCommand::overrideIds; break; + case 198: ids = LUrl::overrideIds; break; + case 199: ids = LVariant::overrideIds; break; + case 200: ids = LVector2D::overrideIds; break; + case 201: ids = LVector3D::overrideIds; break; + case 202: ids = LVector4D::overrideIds; break; + case 214: ids = LWhatsThis::overrideIds; break; + case 215: ids = LWhatsThisClickedEvent::overrideIds; break; + case 216: ids = LWheelEvent::overrideIds; break; + case 217: ids = LWidgetItem::overrideIds; break; + case 218: ids = LWindowStateChangeEvent::overrideIds; break; + case 219: ids = LWriteLocker::overrideIds; break; case 70: case 72: if(override_help) { @@ -3364,10 +3379,10 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 16: case 17: case 80: - case 95: - case 200: - case 201: - case 202: + case 96: + case 203: + case 204: + case 205: if(override_multimedia) { NumList* _ids = override_multimedia(name); if(_ids) { @@ -3376,7 +3391,6 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 11: case 74: case 75: - case 100: case 101: case 102: case 103: @@ -3384,43 +3398,44 @@ StrList LObjects::overrideFunctions(const QByteArray& name) { case 105: case 106: case 107: - case 147: - case 148: - case 149: + case 108: case 150: case 151: + case 152: + case 153: + case 154: if(override_network) { NumList* _ids = override_network(name); if(_ids) { ids = *_ids; }} break; - case 139: - case 140: - case 141: case 142: case 143: case 144: case 145: case 146: + case 147: + case 148: + case 149: if(override_sql) { NumList* _ids = override_sql(name); if(_ids) { ids = *_ids; }} break; - case 158: + case 161: if(override_svg) { NumList* _ids = override_svg(name); if(_ids) { ids = *_ids; }} break; - case 203: - case 204: - case 205: case 206: case 207: case 208: case 209: case 210: + case 211: + case 212: + case 213: if(override_webkit) { NumList* _ids = override_webkit(name); if(_ids) { diff --git a/src/gen/_lobjects.h b/src/gen/_lobjects.h index e656265..3d16ea3 100644 --- a/src/gen/_lobjects.h +++ b/src/gen/_lobjects.h @@ -26,7 +26,8 @@ QT_BEGIN_NAMESPACE typedef QList NumList; typedef QList StrList; -#define QRect_QWIDGET_GRAB QRect(0, 0, -1, -1) +#define QMarginsF_DEFAULT QMarginsF(0, 0, 0, 0) +#define QRect_DEFAULT QRect(0, 0, -1, -1) class EQL; class DynObject; diff --git a/src/gen/_main_n_classes.h b/src/gen/_main_n_classes.h index 7f417ac..db9cdd5 100644 --- a/src/gen/_main_n_classes.h +++ b/src/gen/_main_n_classes.h @@ -1083,8 +1083,19 @@ public: uint unique; }; -class LMatrix : public QMatrix { +class LMarginsF : public QMarginsF { friend class N93; +public: + LMarginsF(uint u) : unique(u) {} + LMarginsF(uint u, qreal x1, qreal x2, qreal x3, qreal x4) : QMarginsF(x1, x2, x3, x4), unique(u) {} + LMarginsF(uint u, const QMargins& x1) : QMarginsF(x1), unique(u) {} + + static NumList overrideIds; + uint unique; +}; + +class LMatrix : public QMatrix { + friend class N94; 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) {} @@ -1095,7 +1106,7 @@ public: }; class LMatrix4x4 : public QMatrix4x4 { - friend class N94; + friend class N95; 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) {} @@ -1107,7 +1118,7 @@ public: }; class LMetaObject : public QMetaObject { - friend class N96; + friend class N97; public: static NumList overrideIds; @@ -1115,7 +1126,7 @@ public: }; class LModelIndex : public QModelIndex { - friend class N97; + friend class N98; public: LModelIndex(uint u) : unique(u) {} @@ -1124,7 +1135,7 @@ public: }; class LMouseEvent : public QMouseEvent { - friend class N98; + friend class N99; public: LMouseEvent(uint u, Type x1, const QPointF& x2, Qt::MouseButton x3, Qt::MouseButtons x4, Qt::KeyboardModifiers x5) : QMouseEvent(x1, x2, x3, x4, x5), unique(u) {} LMouseEvent(uint u, Type x1, const QPointF& x2, const QPointF& x3, Qt::MouseButton x4, Qt::MouseButtons x5, Qt::KeyboardModifiers x6) : QMouseEvent(x1, x2, x3, x4, x5, x6), unique(u) {} @@ -1135,7 +1146,7 @@ public: }; class LMoveEvent : public QMoveEvent { - friend class N99; + friend class N100; public: LMoveEvent(uint u, const QPoint& x1, const QPoint& x2) : QMoveEvent(x1, x2), unique(u) {} @@ -1144,7 +1155,7 @@ public: }; class LOpenGLPaintDevice : public QOpenGLPaintDevice { - friend class N108; + friend class N109; public: LOpenGLPaintDevice(uint u) : unique(u) {} LOpenGLPaintDevice(uint u, const QSize& x1) : QOpenGLPaintDevice(x1), unique(u) {} @@ -1158,7 +1169,7 @@ public: }; class LOpenGLTexture : public QOpenGLTexture { - friend class N109; + friend class N110; public: LOpenGLTexture(uint u, Target x1) : QOpenGLTexture(x1), unique(u) {} LOpenGLTexture(uint u, const QImage& x1, MipMapGeneration x2 = GenerateMipMaps) : QOpenGLTexture(x1, x2), unique(u) {} @@ -1167,8 +1178,32 @@ public: uint unique; }; -class LPaintEvent : public QPaintEvent { +class LPageLayout : public QPageLayout { + friend class N111; +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) {} + LPageLayout(uint u, const QPageLayout& x1) : QPageLayout(x1), unique(u) {} + + static NumList overrideIds; + uint unique; +}; + +class LPageSize : public QPageSize { friend class N112; +public: + LPageSize(uint u) : unique(u) {} + LPageSize(uint u, PageSizeId x1) : QPageSize(x1), unique(u) {} + LPageSize(uint u, const QSize& x1, const QString& x2 = QString(), SizeMatchPolicy x3 = FuzzyMatch) : QPageSize(x1, x2, x3), unique(u) {} + LPageSize(uint u, const QSizeF& x1, Unit x2, const QString& x3 = QString(), SizeMatchPolicy x4 = FuzzyMatch) : QPageSize(x1, x2, x3, x4), unique(u) {} + LPageSize(uint u, const QPageSize& x1) : QPageSize(x1), unique(u) {} + + static NumList overrideIds; + uint unique; +}; + +class LPaintEvent : public QPaintEvent { + friend class N115; public: LPaintEvent(uint u, const QRegion& x1) : QPaintEvent(x1), unique(u) {} LPaintEvent(uint u, const QRect& x1) : QPaintEvent(x1), unique(u) {} @@ -1178,7 +1213,7 @@ public: }; class LPainter : public QPainter { - friend class N113; + friend class N116; public: LPainter(uint u, QImage* x1) : QPainter(x1), unique(u) {} LPainter(uint u, QPdfWriter* x1) : QPainter(x1), unique(u) {} @@ -1193,7 +1228,7 @@ public: }; class LPainterPath : public QPainterPath { - friend class N114; + friend class N117; public: LPainterPath(uint u) : unique(u) {} LPainterPath(uint u, const QPointF& x1) : QPainterPath(x1), unique(u) {} @@ -1204,7 +1239,7 @@ public: }; class LPainterPathStroker : public QPainterPathStroker { - friend class N115; + friend class N118; public: LPainterPathStroker(uint u) : unique(u) {} LPainterPathStroker(uint u, const QPen& x1) : QPainterPathStroker(x1), unique(u) {} @@ -1214,7 +1249,7 @@ public: }; class LPalette : public QPalette { - friend class N116; + friend class N119; public: LPalette(uint u) : unique(u) {} LPalette(uint u, const QColor& x1) : QPalette(x1), unique(u) {} @@ -1228,7 +1263,7 @@ public: }; class LPen : public QPen { - friend class N117; + friend class N120; public: LPen(uint u) : unique(u) {} LPen(uint u, Qt::PenStyle x1) : QPen(x1), unique(u) {} @@ -1241,7 +1276,7 @@ public: }; class LPersistentModelIndex : public QPersistentModelIndex { - friend class N118; + friend class N121; public: LPersistentModelIndex(uint u, const QModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {} LPersistentModelIndex(uint u, const QPersistentModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {} @@ -1251,7 +1286,7 @@ public: }; class LPicture : public QPicture { - friend class N119; + friend class N122; public: LPicture(uint u, int x1 = -1) : QPicture(x1), unique(u) {} LPicture(uint u, const QPicture& x1) : QPicture(x1), unique(u) {} @@ -1264,7 +1299,7 @@ public: }; class LPixmap : public QPixmap { - friend class N120; + friend class N123; public: LPixmap(uint u) : unique(u) {} LPixmap(uint u, int x1, int x2) : QPixmap(x1, x2), unique(u) {} @@ -1279,7 +1314,7 @@ public: }; class LPixmapCache : public QPixmapCache { - friend class N121; + friend class N124; public: static NumList overrideIds; @@ -1287,7 +1322,7 @@ public: }; class LPrinter : public QPrinter { - friend class N122; + friend class N125; public: LPrinter(uint u, PrinterMode x1 = ScreenResolution) : QPrinter(x1), unique(u) {} @@ -1300,7 +1335,7 @@ public: }; class LPrinterInfo : public QPrinterInfo { - friend class N123; + friend class N126; public: static NumList overrideIds; @@ -1308,7 +1343,7 @@ public: }; class LProcessEnvironment : public QProcessEnvironment { - friend class N124; + friend class N127; public: LProcessEnvironment(uint u) : unique(u) {} LProcessEnvironment(uint u, const QProcessEnvironment& x1) : QProcessEnvironment(x1), unique(u) {} @@ -1318,7 +1353,7 @@ public: }; class LQuaternion : public QQuaternion { - friend class N125; + friend class N128; public: LQuaternion(uint u) : unique(u) {} LQuaternion(uint u, float x1, float x2, float x3, float x4) : QQuaternion(x1, x2, x3, x4), unique(u) {} @@ -1330,7 +1365,7 @@ public: }; class LRadialGradient : public QRadialGradient { - friend class N126; + friend class N129; public: LRadialGradient(uint u) : unique(u) {} LRadialGradient(uint u, const QPointF& x1, qreal x2, const QPointF& x3) : QRadialGradient(x1, x2, x3), unique(u) {} @@ -1345,7 +1380,7 @@ public: }; class LReadLocker : public QReadLocker { - friend class N127; + friend class N130; public: LReadLocker(uint u, QReadWriteLock* x1) : QReadLocker(x1), unique(u) {} @@ -1354,7 +1389,7 @@ public: }; class LReadWriteLock : public QReadWriteLock { - friend class N128; + friend class N131; public: LReadWriteLock(uint u, RecursionMode x1 = NonRecursive) : QReadWriteLock(x1), unique(u) {} @@ -1363,7 +1398,7 @@ public: }; class LRegExp : public QRegExp { - friend class N129; + friend class N132; public: LRegExp(uint u) : unique(u) {} LRegExp(uint u, const QString& x1, Qt::CaseSensitivity x2 = Qt::CaseSensitive, PatternSyntax x3 = RegExp) : QRegExp(x1, x2, x3), unique(u) {} @@ -1374,7 +1409,7 @@ public: }; class LRegion : public QRegion { - friend class N130; + friend class N133; public: LRegion(uint u) : unique(u) {} LRegion(uint u, int x1, int x2, int x3, int x4, RegionType x5 = Rectangle) : QRegion(x1, x2, x3, x4, x5), unique(u) {} @@ -1388,7 +1423,7 @@ public: }; class LRegularExpression : public QRegularExpression { - friend class N131; + friend class N134; public: LRegularExpression(uint u) : unique(u) {} LRegularExpression(uint u, const QString& x1, PatternOptions x2 = NoPatternOption) : QRegularExpression(x1, x2), unique(u) {} @@ -1399,7 +1434,7 @@ public: }; class LResizeEvent : public QResizeEvent { - friend class N132; + friend class N135; public: LResizeEvent(uint u, const QSize& x1, const QSize& x2) : QResizeEvent(x1, x2), unique(u) {} @@ -1408,7 +1443,7 @@ public: }; class LRunnable : public QRunnable { - friend class N133; + friend class N136; public: LRunnable(uint u) : unique(u) {} @@ -1419,7 +1454,7 @@ public: }; class LSemaphore : public QSemaphore { - friend class N134; + friend class N137; public: LSemaphore(uint u, int x1 = 0) : QSemaphore(x1), unique(u) {} @@ -1428,7 +1463,7 @@ public: }; class LShortcutEvent : public QShortcutEvent { - friend class N135; + friend class N138; public: LShortcutEvent(uint u, const QKeySequence& x1, int x2, bool x3 = false) : QShortcutEvent(x1, x2, x3), unique(u) {} @@ -1437,7 +1472,7 @@ public: }; class LShowEvent : public QShowEvent { - friend class N136; + friend class N139; public: LShowEvent(uint u) : unique(u) {} @@ -1446,7 +1481,7 @@ public: }; class LSizePolicy : public QSizePolicy { - friend class N137; + friend class N140; public: LSizePolicy(uint u) : unique(u) {} LSizePolicy(uint u, Policy x1, Policy x2, ControlType x3 = DefaultType) : QSizePolicy(x1, x2, x3), unique(u) {} @@ -1456,7 +1491,7 @@ public: }; class LSpacerItem : public QSpacerItem { - friend class N138; + friend class N141; public: LSpacerItem(uint u, int x1, int x2, QSizePolicy::Policy x3 = QSizePolicy::Minimum, QSizePolicy::Policy x4 = QSizePolicy::Minimum) : QSpacerItem(x1, x2, x3, x4), unique(u) {} @@ -1481,7 +1516,7 @@ public: }; class LStandardItem : public QStandardItem { - friend class N152; + friend class N155; public: LStandardItem(uint u) : unique(u) {} LStandardItem(uint u, const QString& x1) : QStandardItem(x1), unique(u) {} @@ -1498,7 +1533,7 @@ public: }; class LStatusTipEvent : public QStatusTipEvent { - friend class N154; + friend class N157; public: LStatusTipEvent(uint u, const QString& x1) : QStatusTipEvent(x1), unique(u) {} @@ -1507,7 +1542,7 @@ public: }; class LStyleOption : public QStyleOption { - friend class N155; + friend class N158; public: LStyleOption(uint u, int x1 = QStyleOption::Version, int x2 = SO_Default) : QStyleOption(x1, x2), unique(u) {} LStyleOption(uint u, const QStyleOption& x1) : QStyleOption(x1), unique(u) {} @@ -1517,7 +1552,7 @@ public: }; class LStyleOptionGraphicsItem : public QStyleOptionGraphicsItem { - friend class N156; + friend class N159; public: LStyleOptionGraphicsItem(uint u) : unique(u) {} LStyleOptionGraphicsItem(uint u, const QStyleOptionGraphicsItem& x1) : QStyleOptionGraphicsItem(x1), unique(u) {} @@ -1527,7 +1562,7 @@ public: }; class LSystemSemaphore : public QSystemSemaphore { - friend class N160; + friend class N163; public: LSystemSemaphore(uint u, const QString& x1, int x2 = 0, AccessMode x3 = Open) : QSystemSemaphore(x1, x2, x3), unique(u) {} @@ -1536,7 +1571,7 @@ public: }; class LTableWidgetItem : public QTableWidgetItem { - friend class N161; + friend class N164; public: LTableWidgetItem(uint u, int x1 = Type) : QTableWidgetItem(x1), unique(u) {} LTableWidgetItem(uint u, const QString& x1, int x2 = Type) : QTableWidgetItem(x1, x2), unique(u) {} @@ -1552,7 +1587,7 @@ public: }; class LTableWidgetSelectionRange : public QTableWidgetSelectionRange { - friend class N162; + friend class N165; public: LTableWidgetSelectionRange(uint u) : unique(u) {} LTableWidgetSelectionRange(uint u, int x1, int x2, int x3, int x4) : QTableWidgetSelectionRange(x1, x2, x3, x4), unique(u) {} @@ -1563,7 +1598,7 @@ public: }; class LTabletEvent : public QTabletEvent { - friend class N163; + friend class N166; public: LTabletEvent(uint u, Type x1, const QPointF& x2, const QPointF& x3, int x4, int x5, qreal x6, int x7, int x8, qreal x9, qreal x10, int x11, Qt::KeyboardModifiers x12, qint64 x13, Qt::MouseButton x14, Qt::MouseButtons x15) : QTabletEvent(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15), unique(u) {} @@ -1572,7 +1607,7 @@ public: }; class LTextBlock : public QTextBlock { - friend class N164; + friend class N167; public: LTextBlock(uint u, const QTextBlock& x1) : QTextBlock(x1), unique(u) {} @@ -1581,7 +1616,7 @@ public: }; class LTextBlockFormat : public QTextBlockFormat { - friend class N165; + friend class N168; public: LTextBlockFormat(uint u) : unique(u) {} @@ -1590,7 +1625,7 @@ public: }; class LTextBlockUserData : public QTextBlockUserData { - friend class N166; + friend class N169; public: static NumList overrideIds; @@ -1598,7 +1633,7 @@ public: }; class LTextBoundaryFinder : public QTextBoundaryFinder { - friend class N167; + friend class N170; public: LTextBoundaryFinder(uint u) : unique(u) {} LTextBoundaryFinder(uint u, const QTextBoundaryFinder& x1) : QTextBoundaryFinder(x1), unique(u) {} @@ -1610,7 +1645,7 @@ public: }; class LTextCharFormat : public QTextCharFormat { - friend class N168; + friend class N171; public: LTextCharFormat(uint u) : unique(u) {} @@ -1619,7 +1654,7 @@ public: }; class LTextCodec : public QTextCodec { - friend class N169; + friend class N172; public: static NumList overrideIds; @@ -1633,7 +1668,7 @@ public: }; class LTextCursor : public QTextCursor { - friend class N170; + friend class N173; public: LTextCursor(uint u) : unique(u) {} LTextCursor(uint u, QTextDocument* x1) : QTextCursor(x1), unique(u) {} @@ -1646,7 +1681,7 @@ public: }; class LTextDecoder : public QTextDecoder { - friend class N171; + friend class N174; public: LTextDecoder(uint u, const QTextCodec* x1) : QTextDecoder(x1), unique(u) {} LTextDecoder(uint u, const QTextCodec* x1, QTextCodec::ConversionFlags x2) : QTextDecoder(x1, x2), unique(u) {} @@ -1656,7 +1691,7 @@ public: }; class LTextDocumentFragment : public QTextDocumentFragment { - friend class N172; + friend class N175; public: LTextDocumentFragment(uint u) : unique(u) {} LTextDocumentFragment(uint u, const QTextDocument* x1) : QTextDocumentFragment(x1), unique(u) {} @@ -1668,7 +1703,7 @@ public: }; class LTextDocumentWriter : public QTextDocumentWriter { - friend class N173; + friend class N176; public: LTextDocumentWriter(uint u) : unique(u) {} LTextDocumentWriter(uint u, const QString& x1, const QByteArray& x2 = QByteArray()) : QTextDocumentWriter(x1, x2), unique(u) {} @@ -1678,7 +1713,7 @@ public: }; class LTextEncoder : public QTextEncoder { - friend class N174; + friend class N177; public: LTextEncoder(uint u, const QTextCodec* x1) : QTextEncoder(x1), unique(u) {} LTextEncoder(uint u, const QTextCodec* x1, QTextCodec::ConversionFlags x2) : QTextEncoder(x1, x2), unique(u) {} @@ -1688,7 +1723,7 @@ public: }; class LTextFormat : public QTextFormat { - friend class N175; + friend class N178; public: LTextFormat(uint u) : unique(u) {} LTextFormat(uint u, int x1) : QTextFormat(x1), unique(u) {} @@ -1699,7 +1734,7 @@ public: }; class LTextFragment : public QTextFragment { - friend class N176; + friend class N179; public: LTextFragment(uint u) : unique(u) {} LTextFragment(uint u, const QTextFragment& x1) : QTextFragment(x1), unique(u) {} @@ -1709,7 +1744,7 @@ public: }; class LTextFrameFormat : public QTextFrameFormat { - friend class N177; + friend class N180; public: LTextFrameFormat(uint u) : unique(u) {} @@ -1718,7 +1753,7 @@ public: }; class LTextImageFormat : public QTextImageFormat { - friend class N178; + friend class N181; public: LTextImageFormat(uint u) : unique(u) {} @@ -1727,7 +1762,7 @@ public: }; class LTextLayout : public QTextLayout { - friend class N179; + friend class N182; public: LTextLayout(uint u) : unique(u) {} LTextLayout(uint u, const QString& x1) : QTextLayout(x1), unique(u) {} @@ -1738,7 +1773,7 @@ public: }; class LTextLength : public QTextLength { - friend class N180; + friend class N183; public: LTextLength(uint u) : unique(u) {} LTextLength(uint u, Type x1, qreal x2) : QTextLength(x1, x2), unique(u) {} @@ -1748,7 +1783,7 @@ public: }; class LTextLine : public QTextLine { - friend class N181; + friend class N184; public: LTextLine(uint u) : unique(u) {} @@ -1757,7 +1792,7 @@ public: }; class LTextListFormat : public QTextListFormat { - friend class N182; + friend class N185; public: LTextListFormat(uint u) : unique(u) {} @@ -1766,7 +1801,7 @@ public: }; class LTextOption : public QTextOption { - friend class N183; + friend class N186; public: LTextOption(uint u) : unique(u) {} LTextOption(uint u, Qt::Alignment x1) : QTextOption(x1), unique(u) {} @@ -1777,7 +1812,7 @@ public: }; class LTextTableCell : public QTextTableCell { - friend class N184; + friend class N187; public: LTextTableCell(uint u) : unique(u) {} LTextTableCell(uint u, const QTextTableCell& x1) : QTextTableCell(x1), unique(u) {} @@ -1787,7 +1822,7 @@ public: }; class LTextTableCellFormat : public QTextTableCellFormat { - friend class N185; + friend class N188; public: LTextTableCellFormat(uint u) : unique(u) {} @@ -1796,7 +1831,7 @@ public: }; class LTextTableFormat : public QTextTableFormat { - friend class N186; + friend class N189; public: LTextTableFormat(uint u) : unique(u) {} @@ -1805,7 +1840,7 @@ public: }; class LTime : public QTime { - friend class N187; + friend class N190; public: LTime(uint u) : unique(u) {} LTime(uint u, int x1, int x2, int x3 = 0, int x4 = 0) : QTime(x1, x2, x3, x4), unique(u) {} @@ -1815,7 +1850,7 @@ public: }; class LTimeZone : public QTimeZone { - friend class N188; + friend class N191; public: LTimeZone(uint u) : unique(u) {} LTimeZone(uint u, const QByteArray& x1) : QTimeZone(x1), unique(u) {} @@ -1828,7 +1863,7 @@ public: }; class LTimerEvent : public QTimerEvent { - friend class N189; + friend class N192; public: LTimerEvent(uint u, int x1) : QTimerEvent(x1), unique(u) {} @@ -1837,7 +1872,7 @@ public: }; class LToolTip : public QToolTip { - friend class N190; + friend class N193; public: static NumList overrideIds; @@ -1845,7 +1880,7 @@ public: }; class LTouchEvent : public QTouchEvent { - friend class N191; + friend class N194; public: LTouchEvent(uint u, QEvent::Type x1, QTouchDevice* x2 = 0, Qt::KeyboardModifiers x3 = Qt::NoModifier, Qt::TouchPointStates x4 = 0, const QList& x5 = QList()) : QTouchEvent(x1, x2, x3, x4, x5), unique(u) {} @@ -1854,7 +1889,7 @@ public: }; class LTransform : public QTransform { - friend class N192; + friend class N195; public: LTransform(uint u) : unique(u) {} LTransform(uint u, qreal x1, qreal x2, qreal x3, qreal x4, qreal x5, qreal x6, qreal x7, qreal x8, qreal x9 = 1.0) : QTransform(x1, x2, x3, x4, x5, x6, x7, x8, x9), unique(u) {} @@ -1866,7 +1901,7 @@ public: }; class LTreeWidgetItem : public QTreeWidgetItem { - friend class N193; + friend class N196; public: LTreeWidgetItem(uint u, int x1 = Type) : QTreeWidgetItem(x1), unique(u) {} LTreeWidgetItem(uint u, const QStringList& x1, int x2 = Type) : QTreeWidgetItem(x1, x2), unique(u) {} @@ -1887,7 +1922,7 @@ public: }; class LUndoCommand : public QUndoCommand { - friend class N194; + friend class N197; public: LUndoCommand(uint u, QUndoCommand* x1 = 0) : QUndoCommand(x1), unique(u) {} LUndoCommand(uint u, const QString& x1, QUndoCommand* x2 = 0) : QUndoCommand(x1, x2), unique(u) {} @@ -1902,7 +1937,7 @@ public: }; class LUrl : public QUrl { - friend class N195; + friend class N198; public: LUrl(uint u) : unique(u) {} LUrl(uint u, const QUrl& x1) : QUrl(x1), unique(u) {} @@ -1913,7 +1948,7 @@ public: }; class LVariant : public QVariant { - friend class N196; + friend class N199; public: LVariant(uint u, const QCursor& x1) : QVariant(x1), unique(u) {} LVariant(uint u) : unique(u) {} @@ -1962,7 +1997,7 @@ public: }; class LVector2D : public QVector2D { - friend class N197; + friend class N200; public: LVector2D(uint u) : unique(u) {} LVector2D(uint u, float x1, float x2) : QVector2D(x1, x2), unique(u) {} @@ -1976,7 +2011,7 @@ public: }; class LVector3D : public QVector3D { - friend class N198; + friend class N201; public: LVector3D(uint u) : unique(u) {} LVector3D(uint u, float x1, float x2, float x3) : QVector3D(x1, x2, x3), unique(u) {} @@ -1991,7 +2026,7 @@ public: }; class LVector4D : public QVector4D { - friend class N199; + friend class N202; public: LVector4D(uint u) : unique(u) {} LVector4D(uint u, float x1, float x2, float x3, float x4) : QVector4D(x1, x2, x3, x4), unique(u) {} @@ -2007,7 +2042,7 @@ public: }; class LWhatsThis : public QWhatsThis { - friend class N211; + friend class N214; public: static NumList overrideIds; @@ -2015,7 +2050,7 @@ public: }; class LWhatsThisClickedEvent : public QWhatsThisClickedEvent { - friend class N212; + friend class N215; public: LWhatsThisClickedEvent(uint u, const QString& x1) : QWhatsThisClickedEvent(x1), unique(u) {} @@ -2024,7 +2059,7 @@ public: }; class LWheelEvent : public QWheelEvent { - friend class N213; + friend class N216; public: LWheelEvent(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8) : QWheelEvent(x1, x2, x3, x4, x5, x6, x7, x8), unique(u) {} LWheelEvent(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8, Qt::ScrollPhase x9) : QWheelEvent(x1, x2, x3, x4, x5, x6, x7, x8, x9), unique(u) {} @@ -2035,7 +2070,7 @@ public: }; class LWidgetItem : public QWidgetItem { - friend class N214; + friend class N217; public: LWidgetItem(uint u, QWidget* x1) : QWidgetItem(x1), unique(u) {} @@ -2060,7 +2095,7 @@ public: }; class LWindowStateChangeEvent : public QWindowStateChangeEvent { - friend class N215; + friend class N218; public: static NumList overrideIds; @@ -2068,7 +2103,7 @@ public: }; class LWriteLocker : public QWriteLocker { - friend class N216; + friend class N219; public: LWriteLocker(uint u, QReadWriteLock* x1) : QWriteLocker(x1), unique(u) {} diff --git a/src/gen/_main_n_methods.h b/src/gen/_main_n_methods.h index f2b9874..68383ff 100644 --- a/src/gen/_main_n_methods.h +++ b/src/gen/_main_n_methods.h @@ -1188,7 +1188,25 @@ public: Q_INVOKABLE int Mtop(QMargins* o) const { return o->top(); } }; -class EQL_EXPORT N93 : public QObject { // QMatrix +class EQL_EXPORT N93 : public QObject { // QMarginsF + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LMarginsF(u); } + Q_INVOKABLE void* C(uint u, qreal x1, qreal x2, qreal x3, qreal x4) { return new LMarginsF(u, x1, x2, x3, x4); } + Q_INVOKABLE void* C(uint u, const QMargins& x1) { return new LMarginsF(u, x1); } + Q_INVOKABLE qreal Mbottom(QMarginsF* o) const { return o->bottom(); } + Q_INVOKABLE bool MisNull(QMarginsF* o) const { return o->isNull(); } + Q_INVOKABLE qreal Mleft(QMarginsF* o) const { return o->left(); } + Q_INVOKABLE qreal Mright(QMarginsF* o) const { return o->right(); } + Q_INVOKABLE void MsetBottom(QMarginsF* o, qreal x1) { o->setBottom(x1); } + Q_INVOKABLE void MsetLeft(QMarginsF* o, qreal x1) { o->setLeft(x1); } + Q_INVOKABLE void MsetRight(QMarginsF* o, qreal x1) { o->setRight(x1); } + Q_INVOKABLE void MsetTop(QMarginsF* o, qreal x1) { o->setTop(x1); } + Q_INVOKABLE QMargins MtoMargins(QMarginsF* o) const { return o->toMargins(); } + Q_INVOKABLE qreal Mtop(QMarginsF* o) const { return o->top(); } +}; + +class EQL_EXPORT N94 : public QObject { // QMatrix Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LMatrix(u); } @@ -1223,7 +1241,7 @@ public: Q_INVOKABLE QMatrix Mtranslate(QMatrix* o, qreal x1, qreal x2) { return o->translate(x1, x2); } }; -class EQL_EXPORT N94 : public QObject { // QMatrix4x4 +class EQL_EXPORT N95 : public QObject { // QMatrix4x4 Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LMatrix4x4(u); } @@ -1272,7 +1290,7 @@ public: Q_INVOKABLE void Mviewport(QMatrix4x4* o, const QRectF& x1) { o->viewport(x1); } }; -class EQL_EXPORT N96 : public QObject { // QMetaObject +class EQL_EXPORT N97 : public QObject { // QMetaObject Q_OBJECT public: Q_INVOKABLE int MclassInfoCount(QMetaObject* o) const { return o->classInfoCount(); } @@ -1299,7 +1317,7 @@ public: Q_INVOKABLE QByteArray SnormalizedType(const char* x1) { return QMetaObject::normalizedType(x1); } }; -class EQL_EXPORT N97 : public QObject { // QModelIndex +class EQL_EXPORT N98 : public QObject { // QModelIndex Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LModelIndex(u); } @@ -1314,7 +1332,7 @@ public: Q_INVOKABLE QModelIndex Msibling(QModelIndex* o, int x1, int x2) const { return o->sibling(x1, x2); } }; -class EQL_EXPORT N109 : public QObject { // QOpenGLTexture +class EQL_EXPORT N110 : public QObject { // QOpenGLTexture Q_OBJECT public: Q_INVOKABLE void* C(uint u, QOpenGLTexture::Target x1) { return new LOpenGLTexture(u, x1); } @@ -1397,7 +1415,80 @@ public: Q_INVOKABLE bool ShasFeature(QOpenGLTexture::Feature x1) { return QOpenGLTexture::hasFeature(x1); } }; -class EQL_EXPORT N111 : public QObject { // QPaintDevice +class EQL_EXPORT N111 : public QObject { // QPageLayout + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LPageLayout(u); } + Q_INVOKABLE void* C(uint u, const QPageSize& x1, QPageLayout::Orientation x2, const QMarginsF& x3, QPageLayout::Unit x4 = QPageLayout::Point, const QMarginsF& x5 = QMarginsF_DEFAULT) { return new LPageLayout(u, x1, x2, x3, x4, x5); } + Q_INVOKABLE void* C(uint u, const QPageLayout& x1) { return new LPageLayout(u, x1); } + Q_INVOKABLE QRectF MfullRect(QPageLayout* o) const { return o->fullRect(); } + Q_INVOKABLE QRectF MfullRect(QPageLayout* o, QPageLayout::Unit x1) const { return o->fullRect(x1); } + Q_INVOKABLE QRect MfullRectPixels(QPageLayout* o, int x1) const { return o->fullRectPixels(x1); } + Q_INVOKABLE QRect MfullRectPoints(QPageLayout* o) const { return o->fullRectPoints(); } + Q_INVOKABLE bool MisEquivalentTo(QPageLayout* o, const QPageLayout& x1) const { return o->isEquivalentTo(x1); } + Q_INVOKABLE bool MisValid(QPageLayout* o) const { return o->isValid(); } + Q_INVOKABLE QMarginsF Mmargins(QPageLayout* o) const { return o->margins(); } + Q_INVOKABLE QMarginsF Mmargins(QPageLayout* o, QPageLayout::Unit x1) const { return o->margins(x1); } + Q_INVOKABLE QMarginsF MmaximumMargins(QPageLayout* o) const { return o->maximumMargins(); } + Q_INVOKABLE QMarginsF MminimumMargins(QPageLayout* o) const { return o->minimumMargins(); } + Q_INVOKABLE int Mmode(QPageLayout* o) const { return o->mode(); } + Q_INVOKABLE int Morientation(QPageLayout* o) const { return o->orientation(); } + Q_INVOKABLE QPageSize MpageSize(QPageLayout* o) const { return o->pageSize(); } + Q_INVOKABLE QRectF MpaintRect(QPageLayout* o) const { return o->paintRect(); } + Q_INVOKABLE QRectF MpaintRect(QPageLayout* o, QPageLayout::Unit x1) const { return o->paintRect(x1); } + Q_INVOKABLE QRect MpaintRectPixels(QPageLayout* o, int x1) const { return o->paintRectPixels(x1); } + Q_INVOKABLE QRect MpaintRectPoints(QPageLayout* o) const { return o->paintRectPoints(); } + Q_INVOKABLE bool MsetBottomMargin(QPageLayout* o, qreal x1) { return o->setBottomMargin(x1); } + Q_INVOKABLE bool MsetLeftMargin(QPageLayout* o, qreal x1) { return o->setLeftMargin(x1); } + Q_INVOKABLE bool MsetMargins(QPageLayout* o, const QMarginsF& x1) { return o->setMargins(x1); } + Q_INVOKABLE void MsetMinimumMargins(QPageLayout* o, const QMarginsF& x1) { o->setMinimumMargins(x1); } + Q_INVOKABLE void MsetMode(QPageLayout* o, QPageLayout::Mode x1) { o->setMode(x1); } + Q_INVOKABLE void MsetOrientation(QPageLayout* o, QPageLayout::Orientation x1) { o->setOrientation(x1); } + Q_INVOKABLE void MsetPageSize(QPageLayout* o, const QPageSize& x1, const QMarginsF& x2 = QMarginsF_DEFAULT) { o->setPageSize(x1, x2); } + Q_INVOKABLE bool MsetRightMargin(QPageLayout* o, qreal x1) { return o->setRightMargin(x1); } + Q_INVOKABLE bool MsetTopMargin(QPageLayout* o, qreal x1) { return o->setTopMargin(x1); } + Q_INVOKABLE void MsetUnits(QPageLayout* o, QPageLayout::Unit x1) { o->setUnits(x1); } + Q_INVOKABLE void Mswap(QPageLayout* o, QPageLayout& x1) { o->swap(x1); } + Q_INVOKABLE int Munits(QPageLayout* o) const { return o->units(); } +}; + +class EQL_EXPORT N112 : public QObject { // QPageSize + Q_OBJECT +public: + Q_INVOKABLE void* C(uint u) { return new LPageSize(u); } + Q_INVOKABLE void* C(uint u, QPageSize::PageSizeId x1) { return new LPageSize(u, x1); } + Q_INVOKABLE void* C(uint u, const QSize& x1, const QString& x2 = QString(), QPageSize::SizeMatchPolicy x3 = QPageSize::FuzzyMatch) { return new LPageSize(u, x1, x2, x3); } + Q_INVOKABLE void* C(uint u, const QSizeF& x1, QPageSize::Unit x2, const QString& x3 = QString(), QPageSize::SizeMatchPolicy x4 = QPageSize::FuzzyMatch) { return new LPageSize(u, x1, x2, x3, x4); } + Q_INVOKABLE void* C(uint u, const QPageSize& x1) { return new LPageSize(u, x1); } + Q_INVOKABLE QSizeF MdefinitionSize(QPageSize* o) const { return o->definitionSize(); } + Q_INVOKABLE int MdefinitionUnits(QPageSize* o) const { return o->definitionUnits(); } + Q_INVOKABLE int Mid(QPageSize* o) const { return o->id(); } + Q_INVOKABLE bool MisEquivalentTo(QPageSize* o, const QPageSize& x1) const { return o->isEquivalentTo(x1); } + Q_INVOKABLE bool MisValid(QPageSize* o) const { return o->isValid(); } + Q_INVOKABLE QString Mkey(QPageSize* o) const { return o->key(); } + Q_INVOKABLE QString Mname(QPageSize* o) const { return o->name(); } + Q_INVOKABLE QRectF Mrect(QPageSize* o, QPageSize::Unit x1) const { return o->rect(x1); } + Q_INVOKABLE QRect MrectPixels(QPageSize* o, int x1) const { return o->rectPixels(x1); } + Q_INVOKABLE QRect MrectPoints(QPageSize* o) const { return o->rectPoints(); } + Q_INVOKABLE QSizeF Msize(QPageSize* o, QPageSize::Unit x1) const { return o->size(x1); } + Q_INVOKABLE QSize MsizePixels(QPageSize* o, int x1) const { return o->sizePixels(x1); } + Q_INVOKABLE QSize MsizePoints(QPageSize* o) const { return o->sizePoints(); } + Q_INVOKABLE void Mswap(QPageSize* o, QPageSize& x1) { o->swap(x1); } + Q_INVOKABLE int MwindowsId(QPageSize* o) const { return o->windowsId(); } + Q_INVOKABLE QSizeF SdefinitionSize(QPageSize::PageSizeId x1) { return QPageSize::definitionSize(x1); } + Q_INVOKABLE int SdefinitionUnits(QPageSize::PageSizeId x1) { return QPageSize::definitionUnits(x1); } + Q_INVOKABLE int Sid(const QSize& x1, QPageSize::SizeMatchPolicy x2 = QPageSize::FuzzyMatch) { return QPageSize::id(x1, x2); } + Q_INVOKABLE int Sid(const QSizeF& x1, QPageSize::Unit x2, QPageSize::SizeMatchPolicy x3 = QPageSize::FuzzyMatch) { return QPageSize::id(x1, x2, x3); } + Q_INVOKABLE int Sid(int x1) { return QPageSize::id(x1); } + Q_INVOKABLE QString Skey(QPageSize::PageSizeId x1) { return QPageSize::key(x1); } + Q_INVOKABLE QString Sname(QPageSize::PageSizeId x1) { return QPageSize::name(x1); } + Q_INVOKABLE QSizeF Ssize(QPageSize::PageSizeId x1, QPageSize::Unit x2) { return QPageSize::size(x1, x2); } + Q_INVOKABLE QSize SsizePixels(QPageSize::PageSizeId x1, int x2) { return QPageSize::sizePixels(x1, x2); } + Q_INVOKABLE QSize SsizePoints(QPageSize::PageSizeId x1) { return QPageSize::sizePoints(x1); } + Q_INVOKABLE int SwindowsId(QPageSize::PageSizeId x1) { return QPageSize::windowsId(x1); } +}; + +class EQL_EXPORT N114 : public QObject { // QPaintDevice Q_OBJECT public: Q_INVOKABLE int McolorCount(QPaintDevice* o) const { return o->colorCount(); } @@ -1414,7 +1505,7 @@ public: Q_INVOKABLE int MwidthMM(QPaintDevice* o) const { return o->widthMM(); } }; -class EQL_EXPORT N113 : public QObject { // QPainter +class EQL_EXPORT N116 : public QObject { // QPainter Q_OBJECT public: Q_INVOKABLE void* C(uint u, QImage* x1) { return new LPainter(u, x1); } @@ -1611,7 +1702,7 @@ public: Q_INVOKABLE QTransform MworldTransform(QPainter* o) const { return o->worldTransform(); } }; -class EQL_EXPORT N114 : public QObject { // QPainterPath +class EQL_EXPORT N117 : public QObject { // QPainterPath Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPainterPath(u); } @@ -1679,7 +1770,7 @@ public: Q_INVOKABLE QPainterPath Munited(QPainterPath* o, const QPainterPath& x1) const { return o->united(x1); } }; -class EQL_EXPORT N115 : public QObject { // QPainterPathStroker +class EQL_EXPORT N118 : public QObject { // QPainterPathStroker Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPainterPathStroker(u); } @@ -1702,7 +1793,7 @@ public: Q_INVOKABLE qreal Mwidth(QPainterPathStroker* o) const { return o->width(); } }; -class EQL_EXPORT N116 : public QObject { // QPalette +class EQL_EXPORT N119 : public QObject { // QPalette Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPalette(u); } @@ -1749,7 +1840,7 @@ public: Q_INVOKABLE QBrush MwindowText(QPalette* o) const { return o->windowText(); } }; -class EQL_EXPORT N117 : public QObject { // QPen +class EQL_EXPORT N120 : public QObject { // QPen Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPen(u); } @@ -1783,7 +1874,7 @@ public: Q_INVOKABLE qreal MwidthF(QPen* o) const { return o->widthF(); } }; -class EQL_EXPORT N118 : public QObject { // QPersistentModelIndex +class EQL_EXPORT N121 : public QObject { // QPersistentModelIndex Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QModelIndex& x1) { return new LPersistentModelIndex(u, x1); } @@ -1800,7 +1891,7 @@ public: Q_INVOKABLE void Mswap(QPersistentModelIndex* o, QPersistentModelIndex& x1) { o->swap(x1); } }; -class EQL_EXPORT N121 : public QObject { // QPixmapCache +class EQL_EXPORT N124 : public QObject { // QPixmapCache Q_OBJECT public: Q_INVOKABLE int ScacheLimit() { return QPixmapCache::cacheLimit(); } @@ -1811,7 +1902,7 @@ public: Q_INVOKABLE void SsetCacheLimit(int x1) { QPixmapCache::setCacheLimit(x1); } }; -class EQL_EXPORT N123 : public QObject { // QPrinterInfo +class EQL_EXPORT N126 : public QObject { // QPrinterInfo Q_OBJECT public: Q_INVOKABLE int MdefaultDuplexMode(QPrinterInfo* o) const { return o->defaultDuplexMode(); } @@ -1834,7 +1925,7 @@ public: Q_INVOKABLE QString SdefaultPrinterName() { return QPrinterInfo::defaultPrinterName(); } }; -class EQL_EXPORT N124 : public QObject { // QProcessEnvironment +class EQL_EXPORT N127 : public QObject { // QProcessEnvironment Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LProcessEnvironment(u); } @@ -1852,7 +1943,7 @@ public: Q_INVOKABLE QProcessEnvironment SsystemEnvironment() { return QProcessEnvironment::systemEnvironment(); } }; -class EQL_EXPORT N125 : public QObject { // QQuaternion +class EQL_EXPORT N128 : public QObject { // QQuaternion Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LQuaternion(u); } @@ -1893,7 +1984,7 @@ public: Q_INVOKABLE QQuaternion Sslerp(const QQuaternion& x1, const QQuaternion& x2, float x3) { return QQuaternion::slerp(x1, x2, x3); } }; -class EQL_EXPORT N127 : public QObject { // QReadLocker +class EQL_EXPORT N130 : public QObject { // QReadLocker Q_OBJECT public: Q_INVOKABLE void* C(uint u, QReadWriteLock* x1) { return new LReadLocker(u, x1); } @@ -1902,7 +1993,7 @@ public: Q_INVOKABLE void Munlock(QReadLocker* o) { o->unlock(); } }; -class EQL_EXPORT N128 : public QObject { // QReadWriteLock +class EQL_EXPORT N131 : public QObject { // QReadWriteLock Q_OBJECT public: Q_INVOKABLE void* C(uint u, QReadWriteLock::RecursionMode x1 = QReadWriteLock::NonRecursive) { return new LReadWriteLock(u, x1); } @@ -1915,7 +2006,7 @@ public: Q_INVOKABLE void Munlock(QReadWriteLock* o) { o->unlock(); } }; -class EQL_EXPORT N129 : public QObject { // QRegExp +class EQL_EXPORT N132 : public QObject { // QRegExp Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRegExp(u); } @@ -1944,7 +2035,7 @@ public: Q_INVOKABLE QString Sescape(const QString& x1) { return QRegExp::escape(x1); } }; -class EQL_EXPORT N130 : public QObject { // QRegion +class EQL_EXPORT N133 : public QObject { // QRegion Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRegion(u); } @@ -1976,7 +2067,7 @@ public: Q_INVOKABLE QRegion Mxored(QRegion* o, const QRegion& x1) const { return o->xored(x1); } }; -class EQL_EXPORT N131 : public QObject { // QRegularExpression +class EQL_EXPORT N134 : public QObject { // QRegularExpression Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRegularExpression(u); } @@ -2000,7 +2091,7 @@ public: Q_INVOKABLE QString Sescape(const QString& x1) { return QRegularExpression::escape(x1); } }; -class EQL_EXPORT N133 : public QObject { // QRunnable +class EQL_EXPORT N136 : public QObject { // QRunnable Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRunnable(u); } @@ -2009,7 +2100,7 @@ public: Q_INVOKABLE void MsetAutoDelete(QRunnable* o, bool x1) { o->setAutoDelete(x1); } }; -class EQL_EXPORT N134 : public QObject { // QSemaphore +class EQL_EXPORT N137 : public QObject { // QSemaphore Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = 0) { return new LSemaphore(u, x1); } @@ -2020,7 +2111,7 @@ public: Q_INVOKABLE bool MtryAcquire(QSemaphore* o, int x1, int x2) { return o->tryAcquire(x1, x2); } }; -class EQL_EXPORT N137 : public QObject { // QSizePolicy +class EQL_EXPORT N140 : public QObject { // QSizePolicy Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSizePolicy(u); } @@ -2045,7 +2136,7 @@ public: Q_INVOKABLE int MverticalStretch(QSizePolicy* o) const { return o->verticalStretch(); } }; -class EQL_EXPORT N152 : public QObject { // QStandardItem +class EQL_EXPORT N155 : public QObject { // QStandardItem Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LStandardItem(u); } @@ -2132,7 +2223,7 @@ public: Q_INVOKABLE void MemitDataChanged(QStandardItem* o) { ((LStandardItem*)o)->emitDataChanged(); } }; -class EQL_EXPORT N153 : public QObject { // QStandardPaths +class EQL_EXPORT N156 : public QObject { // QStandardPaths Q_OBJECT public: Q_INVOKABLE QString SdisplayName(QStandardPaths::StandardLocation x1) { return QStandardPaths::displayName(x1); } @@ -2144,7 +2235,7 @@ public: Q_INVOKABLE QString SwritableLocation(QStandardPaths::StandardLocation x1) { return QStandardPaths::writableLocation(x1); } }; -class EQL_EXPORT N155 : public QObject { // QStyleOption +class EQL_EXPORT N158 : 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); } @@ -2152,7 +2243,7 @@ public: Q_INVOKABLE void MinitFrom(QStyleOption* o, const QWidget* x1) { o->initFrom(x1); } }; -class EQL_EXPORT N157 : public QObject { // QSurface +class EQL_EXPORT N160 : public QObject { // QSurface Q_OBJECT public: Q_INVOKABLE QSurfaceFormat Mformat(QSurface* o) const { return o->format(); } @@ -2162,7 +2253,7 @@ public: Q_INVOKABLE int MsurfaceType(QSurface* o) const { return o->surfaceType(); } }; -class EQL_EXPORT N159 : public QObject { // QSysInfo +class EQL_EXPORT N162 : public QObject { // QSysInfo Q_OBJECT public: Q_INVOKABLE QString SbuildAbi() { return QSysInfo::buildAbi(); } @@ -2177,7 +2268,7 @@ public: Q_INVOKABLE int SwindowsVersion() { return QSysInfo::windowsVersion(); } }; -class EQL_EXPORT N160 : public QObject { // QSystemSemaphore +class EQL_EXPORT N163 : 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); } @@ -2189,7 +2280,7 @@ public: Q_INVOKABLE void MsetKey(QSystemSemaphore* o, const QString& x1, int x2 = 0, QSystemSemaphore::AccessMode x3 = QSystemSemaphore::Open) { o->setKey(x1, x2, x3); } }; -class EQL_EXPORT N161 : public QObject { // QTableWidgetItem +class EQL_EXPORT N164 : public QObject { // QTableWidgetItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = QTableWidgetItem::Type) { return new LTableWidgetItem(u, x1); } @@ -2231,7 +2322,7 @@ public: Q_INVOKABLE QString MwhatsThis(QTableWidgetItem* o) const { return o->whatsThis(); } }; -class EQL_EXPORT N162 : public QObject { // QTableWidgetSelectionRange +class EQL_EXPORT N165 : public QObject { // QTableWidgetSelectionRange Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTableWidgetSelectionRange(u); } @@ -2245,7 +2336,7 @@ public: Q_INVOKABLE int MtopRow(QTableWidgetSelectionRange* o) const { return o->topRow(); } }; -class EQL_EXPORT N164 : public QObject { // QTextBlock +class EQL_EXPORT N167 : public QObject { // QTextBlock Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QTextBlock& x1) { return new LTextBlock(u, x1); } @@ -2280,12 +2371,12 @@ public: Q_INVOKABLE int MuserState(QTextBlock* o) const { return o->userState(); } }; -class EQL_EXPORT N166 : public QObject { // QTextBlockUserData +class EQL_EXPORT N169 : public QObject { // QTextBlockUserData Q_OBJECT public: }; -class EQL_EXPORT N167 : public QObject { // QTextBoundaryFinder +class EQL_EXPORT N170 : public QObject { // QTextBoundaryFinder Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextBoundaryFinder(u); } @@ -2305,7 +2396,7 @@ public: Q_INVOKABLE int Mtype(QTextBoundaryFinder* o) const { return o->type(); } }; -class EQL_EXPORT N169 : public QObject { // QTextCodec +class EQL_EXPORT N172 : public QObject { // QTextCodec Q_OBJECT public: Q_INVOKABLE QList Maliases(QTextCodec* o) const { return o->aliases(); } @@ -2333,7 +2424,7 @@ public: Q_INVOKABLE void SsetCodecForLocale(QTextCodec* x1) { QTextCodec::setCodecForLocale(x1); } }; -class EQL_EXPORT N170 : public QObject { // QTextCursor +class EQL_EXPORT N173 : public QObject { // QTextCursor Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextCursor(u); } @@ -2409,7 +2500,7 @@ public: Q_INVOKABLE bool MvisualNavigation(QTextCursor* o) const { return o->visualNavigation(); } }; -class EQL_EXPORT N171 : public QObject { // QTextDecoder +class EQL_EXPORT N174 : public QObject { // QTextDecoder Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QTextCodec* x1) { return new LTextDecoder(u, x1); } @@ -2419,7 +2510,7 @@ public: Q_INVOKABLE QString MtoUnicode(QTextDecoder* o, const QByteArray& x1) { return o->toUnicode(x1); } }; -class EQL_EXPORT N172 : public QObject { // QTextDocumentFragment +class EQL_EXPORT N175 : public QObject { // QTextDocumentFragment Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextDocumentFragment(u); } @@ -2434,7 +2525,7 @@ public: Q_INVOKABLE QTextDocumentFragment SfromPlainText(const QString& x1) { return QTextDocumentFragment::fromPlainText(x1); } }; -class EQL_EXPORT N173 : public QObject { // QTextDocumentWriter +class EQL_EXPORT N176 : public QObject { // QTextDocumentWriter Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextDocumentWriter(u); } @@ -2450,7 +2541,7 @@ public: Q_INVOKABLE QList SsupportedDocumentFormats() { return QTextDocumentWriter::supportedDocumentFormats(); } }; -class EQL_EXPORT N174 : public QObject { // QTextEncoder +class EQL_EXPORT N177 : public QObject { // QTextEncoder Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QTextCodec* x1) { return new LTextEncoder(u, x1); } @@ -2459,7 +2550,7 @@ public: Q_INVOKABLE QByteArray MfromUnicode(QTextEncoder* o, const QChar* x1, int x2) { return o->fromUnicode(x1, x2); } }; -class EQL_EXPORT N175 : public QObject { // QTextFormat +class EQL_EXPORT N178 : public QObject { // QTextFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextFormat(u); } @@ -2513,7 +2604,7 @@ public: Q_INVOKABLE int Mtype(QTextFormat* o) const { return o->type(); } }; -class EQL_EXPORT N176 : public QObject { // QTextFragment +class EQL_EXPORT N179 : public QObject { // QTextFragment Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextFragment(u); } @@ -2528,7 +2619,7 @@ public: Q_INVOKABLE QString Mtext(QTextFragment* o) const { return o->text(); } }; -class EQL_EXPORT N179 : public QObject { // QTextLayout +class EQL_EXPORT N182 : public QObject { // QTextLayout Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextLayout(u); } @@ -2570,7 +2661,7 @@ public: Q_INVOKABLE QTextOption MtextOption(QTextLayout* o) const { return o->textOption(); } }; -class EQL_EXPORT N180 : public QObject { // QTextLength +class EQL_EXPORT N183 : public QObject { // QTextLength Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextLength(u); } @@ -2580,7 +2671,7 @@ public: Q_INVOKABLE qreal Mvalue(QTextLength* o, qreal x1) const { return o->value(x1); } }; -class EQL_EXPORT N181 : public QObject { // QTextLine +class EQL_EXPORT N184 : public QObject { // QTextLine Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextLine(u); } @@ -2612,7 +2703,7 @@ public: Q_INVOKABLE qreal My(QTextLine* o) const { return o->y(); } }; -class EQL_EXPORT N183 : public QObject { // QTextOption +class EQL_EXPORT N186 : public QObject { // QTextOption Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextOption(u); } @@ -2634,7 +2725,7 @@ public: Q_INVOKABLE int MwrapMode(QTextOption* o) const { return o->wrapMode(); } }; -class EQL_EXPORT N184 : public QObject { // QTextTableCell +class EQL_EXPORT N187 : public QObject { // QTextTableCell Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextTableCell(u); } @@ -2651,7 +2742,7 @@ public: Q_INVOKABLE int MtableCellFormatIndex(QTextTableCell* o) const { return o->tableCellFormatIndex(); } }; -class EQL_EXPORT N187 : public QObject { // QTime +class EQL_EXPORT N190 : public QObject { // QTime Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTime(u); } @@ -2680,7 +2771,7 @@ public: Q_INVOKABLE bool SisValid(int x1, int x2, int x3, int x4 = 0) { return QTime::isValid(x1, x2, x3, x4); } }; -class EQL_EXPORT N188 : public QObject { // QTimeZone +class EQL_EXPORT N191 : public QObject { // QTimeZone Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTimeZone(u); } @@ -2716,7 +2807,7 @@ public: Q_INVOKABLE QList SwindowsIdToIanaIds(const QByteArray& x1, QLocale::Country x2) { return QTimeZone::windowsIdToIanaIds(x1, x2); } }; -class EQL_EXPORT N190 : public QObject { // QToolTip +class EQL_EXPORT N193 : public QObject { // QToolTip Q_OBJECT public: Q_INVOKABLE QFont Sfont() { return QToolTip::font(); } @@ -2731,7 +2822,7 @@ public: Q_INVOKABLE QString Stext() { return QToolTip::text(); } }; -class EQL_EXPORT N192 : public QObject { // QTransform +class EQL_EXPORT N195 : public QObject { // QTransform Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTransform(u); } @@ -2786,7 +2877,7 @@ public: Q_INVOKABLE bool SsquareToQuad(const QPolygonF& x1, QTransform& x2) { return QTransform::squareToQuad(x1, x2); } }; -class EQL_EXPORT N193 : public QObject { // QTreeWidgetItem +class EQL_EXPORT N196 : public QObject { // QTreeWidgetItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = QTreeWidgetItem::Type) { return new LTreeWidgetItem(u, x1); } @@ -2855,7 +2946,7 @@ public: Q_INVOKABLE void MemitDataChanged(QTreeWidgetItem* o) { ((LTreeWidgetItem*)o)->emitDataChanged(); } }; -class EQL_EXPORT N194 : public QObject { // QUndoCommand +class EQL_EXPORT N197 : public QObject { // QUndoCommand Q_OBJECT public: Q_INVOKABLE void* C(uint u, QUndoCommand* x1 = 0) { return new LUndoCommand(u, x1); } @@ -2871,7 +2962,7 @@ public: Q_INVOKABLE void Mundo(QUndoCommand* o) { o->undo(); } }; -class EQL_EXPORT N195 : public QObject { // QUrl +class EQL_EXPORT N198 : public QObject { // QUrl Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LUrl(u); } @@ -2933,7 +3024,7 @@ public: Q_INVOKABLE QStringList StoStringList(const QList& x1, QUrl::FormattingOptions x2 = QUrl::PrettyDecoded) { return QUrl::toStringList(x1, x2); } }; -class EQL_EXPORT N196 : public QObject { // QVariant +class EQL_EXPORT N199 : public QObject { // QVariant Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QCursor& x1) { return new LVariant(u, x1); } @@ -3026,7 +3117,7 @@ public: Q_INVOKABLE const char* StypeToName(int x1) { return QVariant::typeToName(x1); } }; -class EQL_EXPORT N197 : public QObject { // QVector2D +class EQL_EXPORT N200 : public QObject { // QVector2D Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVector2D(u); } @@ -3053,7 +3144,7 @@ public: Q_INVOKABLE float SdotProduct(const QVector2D& x1, const QVector2D& x2) { return QVector2D::dotProduct(x1, x2); } }; -class EQL_EXPORT N198 : public QObject { // QVector3D +class EQL_EXPORT N201 : public QObject { // QVector3D Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVector3D(u); } @@ -3090,7 +3181,7 @@ public: Q_INVOKABLE QVector3D Snormal(const QVector3D& x1, const QVector3D& x2, const QVector3D& x3) { return QVector3D::normal(x1, x2, x3); } }; -class EQL_EXPORT N199 : public QObject { // QVector4D +class EQL_EXPORT N202 : public QObject { // QVector4D Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVector4D(u); } @@ -3123,7 +3214,7 @@ public: Q_INVOKABLE float SdotProduct(const QVector4D& x1, const QVector4D& x2) { return QVector4D::dotProduct(x1, x2); } }; -class EQL_EXPORT N211 : public QObject { // QWhatsThis +class EQL_EXPORT N214 : public QObject { // QWhatsThis Q_OBJECT public: Q_INVOKABLE QAction* ScreateAction(QObject* x1 = 0) { return QWhatsThis::createAction(x1); } @@ -3134,7 +3225,7 @@ public: Q_INVOKABLE void SshowText(const QPoint& x1, const QString& x2, QWidget* x3 = 0) { QWhatsThis::showText(x1, x2, x3); } }; -class EQL_EXPORT N216 : public QObject { // QWriteLocker +class EQL_EXPORT N219 : public QObject { // QWriteLocker Q_OBJECT public: Q_INVOKABLE void* C(uint u, QReadWriteLock* x1) { return new LWriteLocker(u, x1); } @@ -3580,7 +3671,7 @@ public: Q_INVOKABLE void* C(uint u) { return new LIconDragEvent(u); } }; -class EQL_EXPORT N79 : public N111 { // QImage +class EQL_EXPORT N79 : public N114 { // QImage Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LImage(u); } @@ -3712,7 +3803,7 @@ public: Q_INVOKABLE QPointF Mstart(QLinearGradient* o) const { return o->start(); } }; -class EQL_EXPORT N98 : public N81 { // QMouseEvent +class EQL_EXPORT N99 : public N81 { // QMouseEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, QMouseEvent::Type x1, const QPointF& x2, Qt::MouseButton x3, Qt::MouseButtons x4, Qt::KeyboardModifiers x5) { return new LMouseEvent(u, x1, x2, x3, x4, x5); } @@ -3733,7 +3824,7 @@ public: Q_INVOKABLE int My(QMouseEvent* o) const { return o->y(); } }; -class EQL_EXPORT N99 : public N36 { // QMoveEvent +class EQL_EXPORT N100 : public N36 { // QMoveEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QPoint& x1, const QPoint& x2) { return new LMoveEvent(u, x1, x2); } @@ -3741,7 +3832,7 @@ public: Q_INVOKABLE QPoint Mpos(QMoveEvent* o) const { return o->pos(); } }; -class EQL_EXPORT N108 : public N111 { // QOpenGLPaintDevice +class EQL_EXPORT N109 : public N114 { // QOpenGLPaintDevice Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LOpenGLPaintDevice(u); } @@ -3760,7 +3851,7 @@ public: Q_INVOKABLE QSize Msize(QOpenGLPaintDevice* o) const { return o->size(); } }; -class EQL_EXPORT N110 : public N111 { // QPagedPaintDevice +class EQL_EXPORT N113 : public N114 { // QPagedPaintDevice Q_OBJECT public: Q_INVOKABLE bool MnewPage(QPagedPaintDevice* o) { return o->newPage(); } @@ -3776,7 +3867,7 @@ public: Q_INVOKABLE void MsetPageSizeMM(QPagedPaintDevice* o, const QSizeF& x1) { o->setPageSizeMM(x1); } }; -class EQL_EXPORT N112 : public N36 { // QPaintEvent +class EQL_EXPORT N115 : public N36 { // QPaintEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QRegion& x1) { return new LPaintEvent(u, x1); } @@ -3785,7 +3876,7 @@ public: Q_INVOKABLE QRegion Mregion(QPaintEvent* o) const { return o->region(); } }; -class EQL_EXPORT N119 : public N111 { // QPicture +class EQL_EXPORT N122 : public N114 { // QPicture Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1 = -1) { return new LPicture(u, x1); } @@ -3802,7 +3893,7 @@ public: Q_INVOKABLE void Mswap(QPicture* o, QPicture& x1) { o->swap(x1); } }; -class EQL_EXPORT N120 : public N111 { // QPixmap +class EQL_EXPORT N123 : public N114 { // QPixmap Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LPixmap(u); } @@ -3851,7 +3942,7 @@ public: Q_INVOKABLE QMatrix StrueMatrix(const QMatrix& x1, int x2, int x3) { return QPixmap::trueMatrix(x1, x2, x3); } }; -class EQL_EXPORT N122 : public N110 { // QPrinter +class EQL_EXPORT N125 : public N113 { // QPrinter Q_OBJECT public: Q_INVOKABLE void* C(uint u, QPrinter::PrinterMode x1 = QPrinter::ScreenResolution) { return new LPrinter(u, x1); } @@ -3906,7 +3997,7 @@ public: Q_INVOKABLE bool MnewPage(QPrinter* o) { return o->newPage(); } }; -class EQL_EXPORT N126 : public N46 { // QRadialGradient +class EQL_EXPORT N129 : public N46 { // QRadialGradient Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LRadialGradient(u); } @@ -3930,7 +4021,7 @@ public: Q_INVOKABLE void MsetRadius(QRadialGradient* o, qreal x1) { o->setRadius(x1); } }; -class EQL_EXPORT N132 : public N36 { // QResizeEvent +class EQL_EXPORT N135 : public N36 { // QResizeEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QSize& x1, const QSize& x2) { return new LResizeEvent(u, x1, x2); } @@ -3938,7 +4029,7 @@ public: Q_INVOKABLE QSize Msize(QResizeEvent* o) const { return o->size(); } }; -class EQL_EXPORT N135 : public N36 { // QShortcutEvent +class EQL_EXPORT N138 : public N36 { // QShortcutEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QKeySequence& x1, int x2, bool x3 = false) { return new LShortcutEvent(u, x1, x2, x3); } @@ -3947,13 +4038,13 @@ public: Q_INVOKABLE int MshortcutId(QShortcutEvent* o) const { return o->shortcutId(); } }; -class EQL_EXPORT N136 : public N36 { // QShowEvent +class EQL_EXPORT N139 : public N36 { // QShowEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LShowEvent(u); } }; -class EQL_EXPORT N138 : public N87 { // QSpacerItem +class EQL_EXPORT N141 : public N87 { // QSpacerItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1, int x2, QSizePolicy::Policy x3 = QSizePolicy::Minimum, QSizePolicy::Policy x4 = QSizePolicy::Minimum) { return new LSpacerItem(u, x1, x2, x3, x4); } @@ -3969,14 +4060,14 @@ public: Q_INVOKABLE QSpacerItem* MspacerItem(QSpacerItem* o) { return o->spacerItem(); } }; -class EQL_EXPORT N154 : public N36 { // QStatusTipEvent +class EQL_EXPORT N157 : public N36 { // QStatusTipEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1) { return new LStatusTipEvent(u, x1); } Q_INVOKABLE QString Mtip(QStatusTipEvent* o) const { return o->tip(); } }; -class EQL_EXPORT N156 : public N155 { // QStyleOptionGraphicsItem +class EQL_EXPORT N159 : public N158 { // QStyleOptionGraphicsItem Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LStyleOptionGraphicsItem(u); } @@ -3984,7 +4075,7 @@ public: Q_INVOKABLE qreal SlevelOfDetailFromTransform(const QTransform& x1) { return QStyleOptionGraphicsItem::levelOfDetailFromTransform(x1); } }; -class EQL_EXPORT N163 : public N81 { // QTabletEvent +class EQL_EXPORT N166 : public N81 { // QTabletEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, QTabletEvent::Type x1, const QPointF& x2, const QPointF& x3, int x4, int x5, qreal x6, int x7, int x8, qreal x9, qreal x10, int x11, Qt::KeyboardModifiers x12, qint64 x13, Qt::MouseButton x14, Qt::MouseButtons x15) { return new LTabletEvent(u, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15); } @@ -4011,7 +4102,7 @@ public: Q_INVOKABLE int Mz(QTabletEvent* o) const { return o->z(); } }; -class EQL_EXPORT N165 : public N175 { // QTextBlockFormat +class EQL_EXPORT N168 : public N178 { // QTextBlockFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextBlockFormat(u); } @@ -4042,7 +4133,7 @@ public: Q_INVOKABLE qreal MtopMargin(QTextBlockFormat* o) const { return o->topMargin(); } }; -class EQL_EXPORT N168 : public N175 { // QTextCharFormat +class EQL_EXPORT N171 : public N178 { // QTextCharFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextCharFormat(u); } @@ -4102,7 +4193,7 @@ public: Q_INVOKABLE int MverticalAlignment(QTextCharFormat* o) const { return o->verticalAlignment(); } }; -class EQL_EXPORT N177 : public N175 { // QTextFrameFormat +class EQL_EXPORT N180 : public N178 { // QTextFrameFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextFrameFormat(u); } @@ -4137,7 +4228,7 @@ public: Q_INVOKABLE QTextLength Mwidth(QTextFrameFormat* o) const { return o->width(); } }; -class EQL_EXPORT N178 : public N168 { // QTextImageFormat +class EQL_EXPORT N181 : public N171 { // QTextImageFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextImageFormat(u); } @@ -4150,7 +4241,7 @@ public: Q_INVOKABLE qreal Mwidth(QTextImageFormat* o) const { return o->width(); } }; -class EQL_EXPORT N182 : public N175 { // QTextListFormat +class EQL_EXPORT N185 : public N178 { // QTextListFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextListFormat(u); } @@ -4165,7 +4256,7 @@ public: Q_INVOKABLE int Mstyle(QTextListFormat* o) const { return o->style(); } }; -class EQL_EXPORT N185 : public N168 { // QTextTableCellFormat +class EQL_EXPORT N188 : public N171 { // QTextTableCellFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextTableCellFormat(u); } @@ -4181,7 +4272,7 @@ public: Q_INVOKABLE qreal MtopPadding(QTextTableCellFormat* o) const { return o->topPadding(); } }; -class EQL_EXPORT N186 : public N177 { // QTextTableFormat +class EQL_EXPORT N189 : public N180 { // QTextTableFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LTextTableFormat(u); } @@ -4200,14 +4291,14 @@ public: Q_INVOKABLE void MsetHeaderRowCount(QTextTableFormat* o, int x1) { o->setHeaderRowCount(x1); } }; -class EQL_EXPORT N189 : public N36 { // QTimerEvent +class EQL_EXPORT N192 : public N36 { // QTimerEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, int x1) { return new LTimerEvent(u, x1); } Q_INVOKABLE int MtimerId(QTimerEvent* o) const { return o->timerId(); } }; -class EQL_EXPORT N191 : public N81 { // QTouchEvent +class EQL_EXPORT N194 : public N81 { // QTouchEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, QEvent::Type x1, QTouchDevice* x2 = 0, Qt::KeyboardModifiers x3 = Qt::NoModifier, Qt::TouchPointStates x4 = 0, const QList& x5 = QList()) { return new LTouchEvent(u, x1, x2, x3, x4, x5); } @@ -4218,14 +4309,14 @@ public: Q_INVOKABLE QWindow* Mwindow(QTouchEvent* o) const { return o->window(); } }; -class EQL_EXPORT N212 : public N36 { // QWhatsThisClickedEvent +class EQL_EXPORT N215 : public N36 { // QWhatsThisClickedEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1) { return new LWhatsThisClickedEvent(u, x1); } Q_INVOKABLE QString Mhref(QWhatsThisClickedEvent* o) const { return o->href(); } }; -class EQL_EXPORT N213 : public N81 { // QWheelEvent +class EQL_EXPORT N216 : public N81 { // QWheelEvent Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8) { return new LWheelEvent(u, x1, x2, x3, x4, x5, x6, x7, x8); } @@ -4246,7 +4337,7 @@ public: Q_INVOKABLE int My(QWheelEvent* o) const { return o->y(); } }; -class EQL_EXPORT N214 : public N87 { // QWidgetItem +class EQL_EXPORT N217 : public N87 { // QWidgetItem Q_OBJECT public: Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LWidgetItem(u, x1); } @@ -4263,13 +4354,13 @@ public: Q_INVOKABLE QWidget* Mwidget(QWidgetItem* o) { return o->widget(); } }; -class EQL_EXPORT N215 : public N36 { // QWindowStateChangeEvent +class EQL_EXPORT N218 : public N36 { // QWindowStateChangeEvent Q_OBJECT public: Q_INVOKABLE int MoldState(QWindowStateChangeEvent* o) const { return o->oldState(); } }; -class EQL_EXPORT N14 : public N120 { // QBitmap +class EQL_EXPORT N14 : public N123 { // QBitmap Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LBitmap(u); } diff --git a/src/gen/_main_q_methods.h b/src/gen/_main_q_methods.h index 64640d4..b034c93 100644 --- a/src/gen/_main_q_methods.h +++ b/src/gen/_main_q_methods.h @@ -2130,7 +2130,7 @@ public: Q_INVOKABLE QRect MframeGeometry(QWidget* o) const { return o->frameGeometry(); } Q_INVOKABLE QSize MframeSize(QWidget* o) const { return o->frameSize(); } Q_INVOKABLE QRect Mgeometry(QWidget* o) const { return o->geometry(); } - Q_INVOKABLE QPixmap Mgrab(QWidget* o, const QRect& x1 = QRect_QWIDGET_GRAB) { return o->grab(x1); } + Q_INVOKABLE QPixmap Mgrab(QWidget* o, const QRect& x1 = QRect_DEFAULT) { return o->grab(x1); } Q_INVOKABLE void MgrabGesture(QWidget* o, Qt::GestureType x1, Qt::GestureFlags x2 = Qt::GestureFlags()) { o->grabGesture(x1, x2); } Q_INVOKABLE void MgrabKeyboard(QWidget* o) { o->grabKeyboard(); } Q_INVOKABLE void MgrabMouse(QWidget* o) { o->grabMouse(); } diff --git a/src/gen/multimedia/_ini.cpp b/src/gen/multimedia/_ini.cpp index ffeb25b..26a1b7c 100644 --- a/src/gen/multimedia/_ini.cpp +++ b/src/gen/multimedia/_ini.cpp @@ -57,10 +57,10 @@ void ini() { LObjects::N[15] = new N16; LObjects::N[16] = new N17; LObjects::N[79] = new N80; - LObjects::N[94] = new N95; - LObjects::N[199] = new N200; - LObjects::N[200] = new N201; - LObjects::N[201] = new N202; } + LObjects::N[95] = new N96; + LObjects::N[202] = new N203; + LObjects::N[203] = new N204; + LObjects::N[204] = new N205; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; @@ -93,10 +93,10 @@ void deleteNObject(int n, void* p, int gc) { case 16: if(gc) delete (QCameraInfo*)p; else delete (LCameraInfo*)p; break; case 17: if(gc) delete (QCameraViewfinderSettings*)p; else delete (LCameraViewfinderSettings*)p; break; case 80: if(gc) delete (QImageEncoderSettings*)p; else delete (LImageEncoderSettings*)p; break; - case 95: if(gc) delete (QMediaContent*)p; else delete (LMediaContent*)p; break; - case 200: if(gc) delete (QVideoEncoderSettings*)p; else delete (LVideoEncoderSettings*)p; break; - case 201: if(gc) delete (QVideoFrame*)p; else delete (LVideoFrame*)p; break; - case 202: if(gc) delete (QVideoSurfaceFormat*)p; else delete (LVideoSurfaceFormat*)p; break; }} + case 96: if(gc) delete (QMediaContent*)p; else delete (LMediaContent*)p; break; + case 203: if(gc) delete (QVideoEncoderSettings*)p; else delete (LVideoEncoderSettings*)p; break; + case 204: if(gc) delete (QVideoFrame*)p; else delete (LVideoFrame*)p; break; + case 205: if(gc) delete (QVideoSurfaceFormat*)p; else delete (LVideoSurfaceFormat*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -125,10 +125,10 @@ NumList* overrideFunctions(const QByteArray& name) { case 16: ids = &LCameraInfo::overrideIds; break; case 17: ids = &LCameraViewfinderSettings::overrideIds; break; case 80: ids = &LImageEncoderSettings::overrideIds; break; - case 95: ids = &LMediaContent::overrideIds; break; - case 200: ids = &LVideoEncoderSettings::overrideIds; break; - case 201: ids = &LVideoFrame::overrideIds; break; - case 202: ids = &LVideoSurfaceFormat::overrideIds; break; }} + case 96: ids = &LMediaContent::overrideIds; break; + case 203: ids = &LVideoEncoderSettings::overrideIds; break; + case 204: ids = &LVideoFrame::overrideIds; break; + case 205: ids = &LVideoSurfaceFormat::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/multimedia/_n_classes.h b/src/gen/multimedia/_n_classes.h index df8507e..d7f7b02 100644 --- a/src/gen/multimedia/_n_classes.h +++ b/src/gen/multimedia/_n_classes.h @@ -73,7 +73,7 @@ public: }; class LMediaContent : public QMediaContent { - friend class N95; + friend class N96; public: LMediaContent(uint u) : unique(u) {} LMediaContent(uint u, const QUrl& x1) : QMediaContent(x1), unique(u) {} @@ -88,7 +88,7 @@ public: }; class LVideoEncoderSettings : public QVideoEncoderSettings { - friend class N200; + friend class N203; public: LVideoEncoderSettings(uint u) : unique(u) {} LVideoEncoderSettings(uint u, const QVideoEncoderSettings& x1) : QVideoEncoderSettings(x1), unique(u) {} @@ -98,7 +98,7 @@ public: }; class LVideoFrame : public QVideoFrame { - friend class N201; + friend class N204; public: LVideoFrame(uint u) : unique(u) {} LVideoFrame(uint u, QAbstractVideoBuffer* x1, const QSize& x2, PixelFormat x3) : QVideoFrame(x1, x2, x3), unique(u) {} @@ -111,7 +111,7 @@ public: }; class LVideoSurfaceFormat : public QVideoSurfaceFormat { - friend class N202; + friend class N205; 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 ca9d724..b612429 100644 --- a/src/gen/multimedia/_n_methods.h +++ b/src/gen/multimedia/_n_methods.h @@ -134,7 +134,7 @@ public: Q_INVOKABLE void MsetResolution(QImageEncoderSettings* o, int x1, int x2) { o->setResolution(x1, x2); } }; -class N95 : public QObject { // QMediaContent +class N96 : 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 N200 : public QObject { // QVideoEncoderSettings +class N203 : public QObject { // QVideoEncoderSettings Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVideoEncoderSettings(u); } @@ -175,7 +175,7 @@ public: Q_INVOKABLE void MsetResolution(QVideoEncoderSettings* o, int x1, int x2) { o->setResolution(x1, x2); } }; -class N201 : public QObject { // QVideoFrame +class N204 : public QObject { // QVideoFrame Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVideoFrame(u); } @@ -211,7 +211,7 @@ public: Q_INVOKABLE int SpixelFormatFromImageFormat(QImage::Format x1) { return QVideoFrame::pixelFormatFromImageFormat(x1); } }; -class N202 : public QObject { // QVideoSurfaceFormat +class N205 : public QObject { // QVideoSurfaceFormat Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LVideoSurfaceFormat(u); } diff --git a/src/gen/network/_ini.cpp b/src/gen/network/_ini.cpp index 6f7fbd0..197e7fb 100644 --- a/src/gen/network/_ini.cpp +++ b/src/gen/network/_ini.cpp @@ -49,7 +49,6 @@ void ini() { LObjects::N[10] = new N11; LObjects::N[73] = new N74; LObjects::N[74] = new N75; - LObjects::N[99] = new N100; LObjects::N[100] = new N101; LObjects::N[101] = new N102; LObjects::N[102] = new N103; @@ -57,11 +56,12 @@ void ini() { LObjects::N[104] = new N105; LObjects::N[105] = new N106; LObjects::N[106] = new N107; - LObjects::N[146] = new N147; - LObjects::N[147] = new N148; - LObjects::N[148] = new N149; + LObjects::N[107] = new N108; LObjects::N[149] = new N150; - LObjects::N[150] = new N151; } + LObjects::N[150] = new N151; + LObjects::N[151] = new N152; + LObjects::N[152] = new N153; + LObjects::N[153] = new N154; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; @@ -84,19 +84,19 @@ void deleteNObject(int n, void* p, int gc) { case 11: if(gc) delete (QAuthenticator*)p; else delete (LAuthenticator*)p; break; case 74: if(gc) delete (QHostAddress*)p; else delete (LHostAddress*)p; break; case 75: if(gc) delete (QHostInfo*)p; else delete (LHostInfo*)p; break; - case 100: if(gc) delete (QNetworkAddressEntry*)p; else delete (LNetworkAddressEntry*)p; break; - case 101: if(gc) delete (QNetworkCacheMetaData*)p; else delete (LNetworkCacheMetaData*)p; break; - case 102: if(gc) delete (QNetworkCookie*)p; else delete (LNetworkCookie*)p; break; - case 103: if(gc) delete (QNetworkInterface*)p; else delete (LNetworkInterface*)p; break; - case 104: if(gc) delete (QNetworkProxy*)p; else delete (LNetworkProxy*)p; break; - case 105: if(gc) delete (QNetworkProxyFactory*)p; else delete (LNetworkProxyFactory*)p; break; - case 106: if(gc) delete (QNetworkProxyQuery*)p; else delete (LNetworkProxyQuery*)p; break; - case 107: if(gc) delete (QNetworkRequest*)p; else delete (LNetworkRequest*)p; break; - case 147: if(gc) delete (QSslCertificate*)p; else delete (LSslCertificate*)p; break; - case 148: if(gc) delete (QSslCipher*)p; else delete (LSslCipher*)p; break; - case 149: if(gc) delete (QSslConfiguration*)p; else delete (LSslConfiguration*)p; break; - case 150: if(gc) delete (QSslError*)p; else delete (LSslError*)p; break; - case 151: if(gc) delete (QSslKey*)p; else delete (LSslKey*)p; break; }} + case 101: if(gc) delete (QNetworkAddressEntry*)p; else delete (LNetworkAddressEntry*)p; break; + case 102: if(gc) delete (QNetworkCacheMetaData*)p; else delete (LNetworkCacheMetaData*)p; break; + case 103: if(gc) delete (QNetworkCookie*)p; else delete (LNetworkCookie*)p; break; + case 104: if(gc) delete (QNetworkInterface*)p; else delete (LNetworkInterface*)p; break; + case 105: if(gc) delete (QNetworkProxy*)p; else delete (LNetworkProxy*)p; break; + case 106: if(gc) delete (QNetworkProxyFactory*)p; else delete (LNetworkProxyFactory*)p; break; + case 107: if(gc) delete (QNetworkProxyQuery*)p; else delete (LNetworkProxyQuery*)p; break; + case 108: if(gc) delete (QNetworkRequest*)p; else delete (LNetworkRequest*)p; break; + case 150: if(gc) delete (QSslCertificate*)p; else delete (LSslCertificate*)p; break; + case 151: if(gc) delete (QSslCipher*)p; else delete (LSslCipher*)p; break; + case 152: if(gc) delete (QSslConfiguration*)p; else delete (LSslConfiguration*)p; break; + case 153: if(gc) delete (QSslError*)p; else delete (LSslError*)p; break; + case 154: if(gc) delete (QSslKey*)p; else delete (LSslKey*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -118,19 +118,19 @@ NumList* overrideFunctions(const QByteArray& name) { case 11: ids = &LAuthenticator::overrideIds; break; case 74: ids = &LHostAddress::overrideIds; break; case 75: ids = &LHostInfo::overrideIds; break; - case 100: ids = &LNetworkAddressEntry::overrideIds; break; - case 101: ids = &LNetworkCacheMetaData::overrideIds; break; - case 102: ids = &LNetworkCookie::overrideIds; break; - case 103: ids = &LNetworkInterface::overrideIds; break; - case 104: ids = &LNetworkProxy::overrideIds; break; - case 105: ids = &LNetworkProxyFactory::overrideIds; break; - case 106: ids = &LNetworkProxyQuery::overrideIds; break; - case 107: ids = &LNetworkRequest::overrideIds; break; - case 147: ids = &LSslCertificate::overrideIds; break; - case 148: ids = &LSslCipher::overrideIds; break; - case 149: ids = &LSslConfiguration::overrideIds; break; - case 150: ids = &LSslError::overrideIds; break; - case 151: ids = &LSslKey::overrideIds; break; }} + case 101: ids = &LNetworkAddressEntry::overrideIds; break; + case 102: ids = &LNetworkCacheMetaData::overrideIds; break; + case 103: ids = &LNetworkCookie::overrideIds; break; + case 104: ids = &LNetworkInterface::overrideIds; break; + case 105: ids = &LNetworkProxy::overrideIds; break; + case 106: ids = &LNetworkProxyFactory::overrideIds; break; + case 107: ids = &LNetworkProxyQuery::overrideIds; break; + case 108: ids = &LNetworkRequest::overrideIds; break; + case 150: ids = &LSslCertificate::overrideIds; break; + case 151: ids = &LSslCipher::overrideIds; break; + case 152: ids = &LSslConfiguration::overrideIds; break; + case 153: ids = &LSslError::overrideIds; break; + case 154: ids = &LSslKey::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/network/_n_classes.h b/src/gen/network/_n_classes.h index 1db2df9..b012253 100644 --- a/src/gen/network/_n_classes.h +++ b/src/gen/network/_n_classes.h @@ -45,7 +45,7 @@ public: }; class LNetworkAddressEntry : public QNetworkAddressEntry { - friend class N100; + friend class N101; public: LNetworkAddressEntry(uint u) : unique(u) {} LNetworkAddressEntry(uint u, const QNetworkAddressEntry& x1) : QNetworkAddressEntry(x1), unique(u) {} @@ -55,7 +55,7 @@ public: }; class LNetworkCacheMetaData : public QNetworkCacheMetaData { - friend class N101; + friend class N102; public: LNetworkCacheMetaData(uint u) : unique(u) {} LNetworkCacheMetaData(uint u, const QNetworkCacheMetaData& x1) : QNetworkCacheMetaData(x1), unique(u) {} @@ -65,7 +65,7 @@ public: }; class LNetworkCookie : public QNetworkCookie { - friend class N102; + friend class N103; public: LNetworkCookie(uint u, const QByteArray& x1 = QByteArray(), const QByteArray& x2 = QByteArray()) : QNetworkCookie(x1, x2), unique(u) {} LNetworkCookie(uint u, const QNetworkCookie& x1) : QNetworkCookie(x1), unique(u) {} @@ -75,7 +75,7 @@ public: }; class LNetworkInterface : public QNetworkInterface { - friend class N103; + friend class N104; public: LNetworkInterface(uint u) : unique(u) {} LNetworkInterface(uint u, const QNetworkInterface& x1) : QNetworkInterface(x1), unique(u) {} @@ -85,7 +85,7 @@ public: }; class LNetworkProxy : public QNetworkProxy { - friend class N104; + friend class N105; public: LNetworkProxy(uint u) : unique(u) {} LNetworkProxy(uint u, ProxyType x1, const QString& x2 = QString(), quint16 x3 = 0, const QString& x4 = QString(), const QString& x5 = QString()) : QNetworkProxy(x1, x2, x3, x4, x5), unique(u) {} @@ -96,7 +96,7 @@ public: }; class LNetworkProxyFactory : public QNetworkProxyFactory { - friend class N105; + friend class N106; public: LNetworkProxyFactory(uint u) : unique(u) {} @@ -107,7 +107,7 @@ public: }; class LNetworkProxyQuery : public QNetworkProxyQuery { - friend class N106; + friend class N107; public: LNetworkProxyQuery(uint u) : unique(u) {} LNetworkProxyQuery(uint u, const QUrl& x1, QueryType x2 = UrlRequest) : QNetworkProxyQuery(x1, x2), unique(u) {} @@ -123,7 +123,7 @@ public: }; class LNetworkRequest : public QNetworkRequest { - friend class N107; + friend class N108; public: LNetworkRequest(uint u, const QUrl& x1 = QUrl()) : QNetworkRequest(x1), unique(u) {} LNetworkRequest(uint u, const QNetworkRequest& x1) : QNetworkRequest(x1), unique(u) {} @@ -133,7 +133,7 @@ public: }; class LSslCertificate : public QSslCertificate { - friend class N147; + friend class N150; public: LSslCertificate(uint u, const QByteArray& x1 = QByteArray(), QSsl::EncodingFormat x2 = QSsl::Pem) : QSslCertificate(x1, x2), unique(u) {} LSslCertificate(uint u, const QSslCertificate& x1) : QSslCertificate(x1), unique(u) {} @@ -143,7 +143,7 @@ public: }; class LSslCipher : public QSslCipher { - friend class N148; + friend class N151; public: LSslCipher(uint u) : unique(u) {} LSslCipher(uint u, const QString& x1) : QSslCipher(x1), unique(u) {} @@ -155,7 +155,7 @@ public: }; class LSslConfiguration : public QSslConfiguration { - friend class N149; + friend class N152; public: LSslConfiguration(uint u) : unique(u) {} LSslConfiguration(uint u, const QSslConfiguration& x1) : QSslConfiguration(x1), unique(u) {} @@ -165,7 +165,7 @@ public: }; class LSslError : public QSslError { - friend class N150; + friend class N153; public: LSslError(uint u) : unique(u) {} LSslError(uint u, SslError x1) : QSslError(x1), unique(u) {} @@ -177,7 +177,7 @@ public: }; class LSslKey : public QSslKey { - friend class N151; + friend class N154; 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 30dafd9..c3b1fab 100644 --- a/src/gen/network/_n_methods.h +++ b/src/gen/network/_n_methods.h @@ -71,7 +71,7 @@ public: Q_INVOKABLE int SlookupHost(const QString& x1, QObject* x2, const char* x3) { return QHostInfo::lookupHost(x1, x2, x3); } }; -class N100 : public QObject { // QNetworkAddressEntry +class N101 : public QObject { // QNetworkAddressEntry Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LNetworkAddressEntry(u); } @@ -87,7 +87,7 @@ public: Q_INVOKABLE void Mswap(QNetworkAddressEntry* o, QNetworkAddressEntry& x1) { o->swap(x1); } }; -class N101 : public QObject { // QNetworkCacheMetaData +class N102 : public QObject { // QNetworkCacheMetaData Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LNetworkCacheMetaData(u); } @@ -104,7 +104,7 @@ public: Q_INVOKABLE QUrl Murl(QNetworkCacheMetaData* o) const { return o->url(); } }; -class N102 : public QObject { // QNetworkCookie +class N103 : public QObject { // QNetworkCookie Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QByteArray& x1 = QByteArray(), const QByteArray& x2 = QByteArray()) { return new LNetworkCookie(u, x1, x2); } @@ -131,7 +131,7 @@ public: Q_INVOKABLE QList SparseCookies(const QByteArray& x1) { return QNetworkCookie::parseCookies(x1); } }; -class N103 : public QObject { // QNetworkInterface +class N104 : public QObject { // QNetworkInterface Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LNetworkInterface(u); } @@ -150,7 +150,7 @@ public: Q_INVOKABLE QNetworkInterface SinterfaceFromName(const QString& x1) { return QNetworkInterface::interfaceFromName(x1); } }; -class N104 : public QObject { // QNetworkProxy +class N105 : public QObject { // QNetworkProxy Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LNetworkProxy(u); } @@ -181,7 +181,7 @@ public: Q_INVOKABLE void SsetApplicationProxy(const QNetworkProxy& x1) { QNetworkProxy::setApplicationProxy(x1); } }; -class N105 : public QObject { // QNetworkProxyFactory +class N106 : public QObject { // QNetworkProxyFactory Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LNetworkProxyFactory(u); } @@ -192,7 +192,7 @@ public: Q_INVOKABLE QList SsystemProxyForQuery(const QNetworkProxyQuery& x1 = QNetworkProxyQuery()) { return QNetworkProxyFactory::systemProxyForQuery(x1); } }; -class N106 : public QObject { // QNetworkProxyQuery +class N107 : public QObject { // QNetworkProxyQuery Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LNetworkProxyQuery(u); } @@ -220,7 +220,7 @@ public: Q_INVOKABLE QUrl Murl(QNetworkProxyQuery* o) const { return o->url(); } }; -class N107 : public QObject { // QNetworkRequest +class N108 : public QObject { // QNetworkRequest Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QUrl& x1 = QUrl()) { return new LNetworkRequest(u, x1); } @@ -244,7 +244,7 @@ public: Q_INVOKABLE QUrl Murl(QNetworkRequest* o) const { return o->url(); } }; -class N147 : public QObject { // QSslCertificate +class N150 : public QObject { // QSslCertificate Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QByteArray& x1 = QByteArray(), QSsl::EncodingFormat x2 = QSsl::Pem) { return new LSslCertificate(u, x1, x2); } @@ -276,7 +276,7 @@ public: Q_INVOKABLE QList Sverify(const QList& x1, const QString& x2 = QString()) { return QSslCertificate::verify(x1, x2); } }; -class N148 : public QObject { // QSslCipher +class N151 : public QObject { // QSslCipher Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslCipher(u); } @@ -295,7 +295,7 @@ public: Q_INVOKABLE int MusedBits(QSslCipher* o) const { return o->usedBits(); } }; -class N149 : public QObject { // QSslConfiguration +class N152 : public QObject { // QSslConfiguration Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslConfiguration(u); } @@ -340,7 +340,7 @@ public: Q_INVOKABLE QList SsystemCaCertificates() { return QSslConfiguration::systemCaCertificates(); } }; -class N150 : public QObject { // QSslError +class N153 : public QObject { // QSslError Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslError(u); } @@ -353,7 +353,7 @@ public: Q_INVOKABLE void Mswap(QSslError* o, QSslError& x1) { o->swap(x1); } }; -class N151 : public QObject { // QSslKey +class N154 : public QObject { // QSslKey Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSslKey(u); } diff --git a/src/gen/sql/_ini.cpp b/src/gen/sql/_ini.cpp index 03d5fa2..ccc31bf 100644 --- a/src/gen/sql/_ini.cpp +++ b/src/gen/sql/_ini.cpp @@ -28,14 +28,14 @@ void ini() { LObjects::Q[181] = new Q182; LObjects::Q[182] = new Q183; LObjects::Q[183] = new Q184; - LObjects::N[138] = new N139; - LObjects::N[139] = new N140; - LObjects::N[140] = new N141; LObjects::N[141] = new N142; LObjects::N[142] = new N143; LObjects::N[143] = new N144; LObjects::N[144] = new N145; - LObjects::N[145] = new N146; } + LObjects::N[145] = new N146; + LObjects::N[146] = new N147; + LObjects::N[147] = new N148; + LObjects::N[148] = new N149; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; @@ -49,14 +49,14 @@ const QMetaObject* staticMetaObject(int n) { void deleteNObject(int n, void* p, int gc) { switch(n) { - case 139: if(gc) delete (QSqlDatabase*)p; else delete (LSqlDatabase*)p; break; - case 140: if(gc) delete (QSqlError*)p; else delete (LSqlError*)p; break; - case 141: if(gc) delete (QSqlField*)p; else delete (LSqlField*)p; break; - case 142: if(gc) delete (QSqlIndex*)p; else delete (LSqlIndex*)p; break; - case 143: if(gc) delete (QSqlQuery*)p; else delete (LSqlQuery*)p; break; - case 144: if(gc) delete (QSqlRecord*)p; else delete (LSqlRecord*)p; break; - case 145: if(gc) delete (QSqlRelation*)p; else delete (LSqlRelation*)p; break; - case 146: if(gc) delete (QSqlResult*)p; else delete (LSqlResult*)p; break; }} + case 142: if(gc) delete (QSqlDatabase*)p; else delete (LSqlDatabase*)p; break; + case 143: if(gc) delete (QSqlError*)p; else delete (LSqlError*)p; break; + case 144: if(gc) delete (QSqlField*)p; else delete (LSqlField*)p; break; + case 145: if(gc) delete (QSqlIndex*)p; else delete (LSqlIndex*)p; break; + case 146: if(gc) delete (QSqlQuery*)p; else delete (LSqlQuery*)p; break; + case 147: if(gc) delete (QSqlRecord*)p; else delete (LSqlRecord*)p; break; + case 148: if(gc) delete (QSqlRelation*)p; else delete (LSqlRelation*)p; break; + case 149: if(gc) delete (QSqlResult*)p; else delete (LSqlResult*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -71,14 +71,14 @@ NumList* overrideFunctions(const QByteArray& name) { else { n = LObjects::n_names.value(name); switch(n) { - case 139: ids = &LSqlDatabase::overrideIds; break; - case 140: ids = &LSqlError::overrideIds; break; - case 141: ids = &LSqlField::overrideIds; break; - case 142: ids = &LSqlIndex::overrideIds; break; - case 143: ids = &LSqlQuery::overrideIds; break; - case 144: ids = &LSqlRecord::overrideIds; break; - case 145: ids = &LSqlRelation::overrideIds; break; - case 146: ids = &LSqlResult::overrideIds; break; }} + case 142: ids = &LSqlDatabase::overrideIds; break; + case 143: ids = &LSqlError::overrideIds; break; + case 144: ids = &LSqlField::overrideIds; break; + case 145: ids = &LSqlIndex::overrideIds; break; + case 146: ids = &LSqlQuery::overrideIds; break; + case 147: ids = &LSqlRecord::overrideIds; break; + case 148: ids = &LSqlRelation::overrideIds; break; + case 149: ids = &LSqlResult::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/sql/_n_classes.h b/src/gen/sql/_n_classes.h index f06f205..c8349bc 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 N139; + friend class N142; 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 N140; + friend class N143; 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 N141; + friend class N144; 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 N142; + friend class N145; 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 N143; + friend class N146; 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 N144; + friend class N147; 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 N145; + friend class N148; 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 N146; + friend class N149; public: static NumList overrideIds; diff --git a/src/gen/sql/_n_methods.h b/src/gen/sql/_n_methods.h index 23882f9..a2142c3 100644 --- a/src/gen/sql/_n_methods.h +++ b/src/gen/sql/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N139 : public QObject { // QSqlDatabase +class N142 : 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 N140 : public QObject { // QSqlError +class N143 : 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 N141 : public QObject { // QSqlField +class N144 : 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 N143 : public QObject { // QSqlQuery +class N146 : 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 N144 : public QObject { // QSqlRecord +class N147 : 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 N145 : public QObject { // QSqlRelation +class N148 : 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 N146 : public QObject { // QSqlResult +class N149 : 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 N142 : public N144 { // QSqlIndex +class N145 : public N147 { // QSqlIndex Q_OBJECT public: Q_INVOKABLE void* C(uint u, const QString& x1 = QString(), const QString& x2 = QString()) { return new LSqlIndex(u, x1, x2); } diff --git a/src/gen/svg/_ini.cpp b/src/gen/svg/_ini.cpp index 40d5ddb..9579aae 100644 --- a/src/gen/svg/_ini.cpp +++ b/src/gen/svg/_ini.cpp @@ -17,7 +17,7 @@ void ini() { LObjects::Q[81] = new Q82; LObjects::Q[193] = new Q194; LObjects::Q[194] = new Q195; - LObjects::N[157] = new N158; } + LObjects::N[160] = new N161; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; @@ -29,7 +29,7 @@ const QMetaObject* staticMetaObject(int n) { void deleteNObject(int n, void* p, int gc) { switch(n) { - case 158: if(gc) delete (QSvgGenerator*)p; else delete (LSvgGenerator*)p; break; }} + case 161: if(gc) delete (QSvgGenerator*)p; else delete (LSvgGenerator*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -42,7 +42,7 @@ NumList* overrideFunctions(const QByteArray& name) { else { n = LObjects::n_names.value(name); switch(n) { - case 158: ids = &LSvgGenerator::overrideIds; break; }} + case 161: 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 a007801..52aadbd 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 N158; + friend class N161; public: LSvgGenerator(uint u) : unique(u) {} diff --git a/src/gen/svg/_n_methods.h b/src/gen/svg/_n_methods.h index 27449b2..abacf58 100644 --- a/src/gen/svg/_n_methods.h +++ b/src/gen/svg/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N158 : public N111 { // QSvgGenerator +class N161 : public N114 { // QSvgGenerator Q_OBJECT public: Q_INVOKABLE void* C(uint u) { return new LSvgGenerator(u); } diff --git a/src/gen/webkit/_ini.cpp b/src/gen/webkit/_ini.cpp index 1fe4077..2fd8fcb 100644 --- a/src/gen/webkit/_ini.cpp +++ b/src/gen/webkit/_ini.cpp @@ -29,14 +29,14 @@ void ini() { LObjects::Q[235] = new Q236; LObjects::Q[236] = new Q237; LObjects::Q[237] = new Q238; - LObjects::N[202] = new N203; - LObjects::N[203] = new N204; - LObjects::N[204] = new N205; LObjects::N[205] = new N206; LObjects::N[206] = new N207; LObjects::N[207] = new N208; LObjects::N[208] = new N209; - LObjects::N[209] = new N210; } + LObjects::N[209] = new N210; + LObjects::N[210] = new N211; + LObjects::N[211] = new N212; + LObjects::N[212] = new N213; } const QMetaObject* staticMetaObject(int n) { const QMetaObject* m = 0; @@ -52,12 +52,12 @@ const QMetaObject* staticMetaObject(int n) { void deleteNObject(int n, void* p, int gc) { switch(n) { - case 203: if(gc) delete (QWebDatabase*)p; else delete (LWebDatabase*)p; break; - case 204: if(gc) delete (QWebElement*)p; else delete (LWebElement*)p; break; - case 205: if(gc) delete (QWebElementCollection*)p; else delete (LWebElementCollection*)p; break; - case 207: if(gc) delete (QWebHistoryItem*)p; else delete (LWebHistoryItem*)p; break; - case 208: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break; - case 209: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }} + case 206: if(gc) delete (QWebDatabase*)p; else delete (LWebDatabase*)p; break; + case 207: if(gc) delete (QWebElement*)p; else delete (LWebElement*)p; break; + case 208: if(gc) delete (QWebElementCollection*)p; else delete (LWebElementCollection*)p; break; + case 210: if(gc) delete (QWebHistoryItem*)p; else delete (LWebHistoryItem*)p; break; + case 211: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break; + case 212: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }} NumList* overrideFunctions(const QByteArray& name) { NumList* ids = 0; @@ -73,12 +73,12 @@ NumList* overrideFunctions(const QByteArray& name) { else { n = LObjects::n_names.value(name); switch(n) { - case 203: ids = &LWebDatabase::overrideIds; break; - case 204: ids = &LWebElement::overrideIds; break; - case 205: ids = &LWebElementCollection::overrideIds; break; - case 207: ids = &LWebHistoryItem::overrideIds; break; - case 208: ids = &LWebHitTestResult::overrideIds; break; - case 209: ids = &LWebSecurityOrigin::overrideIds; break; }} + case 206: ids = &LWebDatabase::overrideIds; break; + case 207: ids = &LWebElement::overrideIds; break; + case 208: ids = &LWebElementCollection::overrideIds; break; + case 210: ids = &LWebHistoryItem::overrideIds; break; + case 211: ids = &LWebHitTestResult::overrideIds; break; + case 212: ids = &LWebSecurityOrigin::overrideIds; break; }} return ids; } QT_END_NAMESPACE diff --git a/src/gen/webkit/_n_classes.h b/src/gen/webkit/_n_classes.h index e0c2caf..adb0068 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 N203; + friend class N206; public: LWebDatabase(uint u, const QWebDatabase& x1) : QWebDatabase(x1), unique(u) {} @@ -23,7 +23,7 @@ public: }; class LWebElement : public QWebElement { - friend class N204; + friend class N207; 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 N205; + friend class N208; 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 N207; + friend class N210; public: LWebHistoryItem(uint u, const QWebHistoryItem& x1) : QWebHistoryItem(x1), unique(u) {} @@ -53,7 +53,7 @@ public: }; class LWebHitTestResult : public QWebHitTestResult { - friend class N208; + friend class N211; 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 N209; + friend class N212; 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 b9f4700..cda7eb2 100644 --- a/src/gen/webkit/_n_methods.h +++ b/src/gen/webkit/_n_methods.h @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -class N203 : public QObject { // QWebDatabase +class N206 : 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 N204 : public QObject { // QWebElement +class N207 : 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 N205 : public QObject { // QWebElementCollection +class N208 : 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 N206 : public QObject { // QWebHistory +class N209 : 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 N207 : public QObject { // QWebHistoryItem +class N210 : 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 N208 : public QObject { // QWebHitTestResult +class N211 : 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 N209 : public QObject { // QWebSecurityOrigin +class N212 : 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 N210 : public QObject { // QWebSettings +class N213 : public QObject { // QWebSettings Q_OBJECT public: Q_INVOKABLE QString McssMediaType(QWebSettings* o) const { return o->cssMediaType(); } diff --git a/src/lisp/all-wrappers-1.lisp b/src/lisp/all-wrappers-1.lisp index 20292f9..25bb16e 100644 --- a/src/lisp/all-wrappers-1.lisp +++ b/src/lisp/all-wrappers-1.lisp @@ -1055,6 +1055,10 @@ #:|defaultTextOption| #:|defaultValue| #:|defaultWidget| + #:|definitionSize.QPageSize| + #:|definitionSize| + #:|definitionUnits.QPageSize| + #:|definitionUnits| #:|deleteAccessibleInterface.QAccessible| #:|deleteChar| #:|deleteCookie| @@ -1195,11 +1199,7 @@ #:|drawItemText| #:|drawLine(QLine)| #:|drawLine(QLineF)| - #:|drawLine(QPoint...)| - #:|drawLine(QPointF...)| - #:|drawLines(QVector)| - #:|drawLines(QVector)| - #:|drawLines(QVector)|)) + #:|drawLine(QPoint...)|)) (in-package :eql) diff --git a/src/lisp/all-wrappers-10.lisp b/src/lisp/all-wrappers-10.lisp index 34c55cd..87b99ec 100644 --- a/src/lisp/all-wrappers-10.lisp +++ b/src/lisp/all-wrappers-10.lisp @@ -1,5 +1,74 @@ (in-package :eql) +(defun |sectionClicked| (object &rest arguments) + (%qinvoke-method object nil "sectionClicked" arguments)) + +(defun |sectionCountChanged| (object &rest arguments) + (%qinvoke-method object nil "sectionCountChanged" arguments)) + +(defun |sectionCount| (object &rest arguments) + (%qinvoke-method object nil "sectionCount" arguments)) + +(defun |sectionDoubleClicked| (object &rest arguments) + (%qinvoke-method object nil "sectionDoubleClicked" arguments)) + +(defun |sectionEntered| (object &rest arguments) + (%qinvoke-method object nil "sectionEntered" arguments)) + +(defun |sectionHandleDoubleClicked| (object &rest arguments) + (%qinvoke-method object nil "sectionHandleDoubleClicked" arguments)) + +(defun |sectionMoved| (object &rest arguments) + (%qinvoke-method object nil "sectionMoved" arguments)) + +(defun |sectionPosition| (object &rest arguments) + (%qinvoke-method object nil "sectionPosition" arguments)) + +(defun |sectionPressed| (object &rest arguments) + (%qinvoke-method object nil "sectionPressed" arguments)) + +(defun |sectionResizeMode| (object &rest arguments) + (%qinvoke-method object nil "sectionResizeMode" arguments)) + +(defun |sectionResized| (object &rest arguments) + (%qinvoke-method object nil "sectionResized" arguments)) + +(defun |sectionSizeHint| (object &rest arguments) + (%qinvoke-method object nil "sectionSizeHint" arguments)) + +(defun |sectionSize| (object &rest arguments) + (%qinvoke-method object nil "sectionSize" arguments)) + +(defun |sectionText| (object &rest arguments) + (%qinvoke-method object nil "sectionText" arguments)) + +(defun |sectionViewportPosition| (object &rest arguments) + (%qinvoke-method object nil "sectionViewportPosition" arguments)) + +(defun |sectionsAboutToBeRemoved| (object &rest arguments) + (%qinvoke-method object nil "sectionsAboutToBeRemoved" arguments)) + +(defun |sectionsClickable| (object &rest arguments) + (%qinvoke-method object nil "sectionsClickable" arguments)) + +(defun |sectionsHidden| (object &rest arguments) + (%qinvoke-method object nil "sectionsHidden" arguments)) + +(defun |sectionsInserted| (object &rest arguments) + (%qinvoke-method object nil "sectionsInserted" arguments)) + +(defun |sectionsMovable| (object &rest arguments) + (%qinvoke-method object nil "sectionsMovable" arguments)) + +(defun |sectionsMoved| (object &rest arguments) + (%qinvoke-method object nil "sectionsMoved" arguments)) + +(defun |securityOrigin| (object &rest arguments) + (%qinvoke-method object nil "securityOrigin" arguments)) + +(defun |seekableChanged| (object &rest arguments) + (%qinvoke-method object nil "seekableChanged" arguments)) + (defun |seek| (object &rest arguments) (%qinvoke-method object nil "seek" arguments)) @@ -2277,6 +2346,9 @@ (defun |setManualWhiteBalance| (object &rest arguments) (%qinvoke-method object nil "setManualWhiteBalance" arguments)) +(defun |setMargins| (object &rest arguments) + (%qinvoke-method object nil "setMargins" arguments)) + (defun |setMargin| (object &rest arguments) (%qinvoke-method object nil "setMargin" arguments)) @@ -2418,6 +2490,9 @@ (defun |setMinimumLevelOfDetail| (object &rest arguments) (%qinvoke-method object nil "setMinimumLevelOfDetail" arguments)) +(defun |setMinimumMargins| (object &rest arguments) + (%qinvoke-method object nil "setMinimumMargins" arguments)) + (defun |setMinimumRenderSize| (object &rest arguments) (%qinvoke-method object nil "setMinimumRenderSize" arguments)) @@ -3524,78 +3599,3 @@ (defun |setStandardColor.QColorDialog| (&rest arguments) (%qinvoke-method "QColorDialog" nil "setStandardColor" arguments)) - -(defun |setStandardErrorFile| (object &rest arguments) - (%qinvoke-method object nil "setStandardErrorFile" arguments)) - -(defun |setStandardInputFile| (object &rest arguments) - (%qinvoke-method object nil "setStandardInputFile" arguments)) - -(defun |setStandardOutputFile| (object &rest arguments) - (%qinvoke-method object nil "setStandardOutputFile" arguments)) - -(defun |setStandardOutputProcess| (object &rest arguments) - (%qinvoke-method object nil "setStandardOutputProcess" arguments)) - -(defun |setStartAngle| (object &rest arguments) - (%qinvoke-method object nil "setStartAngle" arguments)) - -(defun |setStartCenterPoint| (object &rest arguments) - (%qinvoke-method object nil "setStartCenterPoint" arguments)) - -(defun |setStartDragDistance.QApplication| (&rest arguments) - (%qinvoke-method "QApplication" nil "setStartDragDistance" arguments)) - -(defun |setStartDragTime.QApplication| (&rest arguments) - (%qinvoke-method "QApplication" nil "setStartDragTime" arguments)) - -(defun |setStartFrame| (object &rest arguments) - (%qinvoke-method object nil "setStartFrame" arguments)) - -(defun |setStartId| (object &rest arguments) - (%qinvoke-method object nil "setStartId" arguments)) - -(defun |setStartTime| (object &rest arguments) - (%qinvoke-method object nil "setStartTime" arguments)) - -(defun |setStartValue| (object &rest arguments) - (%qinvoke-method object nil "setStartValue" arguments)) - -(defun |setStart| (object &rest arguments) - (%qinvoke-method object nil "setStart" arguments)) - -(defun |setState| (object &rest arguments) - (%qinvoke-method object nil "setState" arguments)) - -(defun |setStatusBar| (object &rest arguments) - (%qinvoke-method object nil "setStatusBar" arguments)) - -(defun |setStatusTip| (object &rest arguments) - (%qinvoke-method object nil "setStatusTip" arguments)) - -(defun |setStereoMode| (object &rest arguments) - (%qinvoke-method object nil "setStereoMode" arguments)) - -(defun |setStickyFocus| (object &rest arguments) - (%qinvoke-method object nil "setStickyFocus" arguments)) - -(defun |setStops| (object &rest arguments) - (%qinvoke-method object nil "setStops" arguments)) - -(defun |setStrength| (object &rest arguments) - (%qinvoke-method object nil "setStrength" arguments)) - -(defun |setStretchFactor(QLayout*...)| (object &rest arguments) - (%qinvoke-method object nil "setStretchFactor(QLayout*...)" arguments)) - -(defun |setStretchFactor(QWidget*...)| (object &rest arguments) - (%qinvoke-method object nil "setStretchFactor(QWidget*...)" arguments)) - -(defun |setStretchFactor| (object &rest arguments) - (%qinvoke-method object nil "setStretchFactor" arguments)) - -(defun |setStretchLastSection| (object &rest arguments) - (%qinvoke-method object nil "setStretchLastSection" arguments)) - -(defun |setStretch| (object &rest arguments) - (%qinvoke-method object nil "setStretch" arguments)) diff --git a/src/lisp/all-wrappers-11.lisp b/src/lisp/all-wrappers-11.lisp index cdb2443..16f2453 100644 --- a/src/lisp/all-wrappers-11.lisp +++ b/src/lisp/all-wrappers-11.lisp @@ -1,5 +1,80 @@ (in-package :eql) +(defun |setStandardErrorFile| (object &rest arguments) + (%qinvoke-method object nil "setStandardErrorFile" arguments)) + +(defun |setStandardInputFile| (object &rest arguments) + (%qinvoke-method object nil "setStandardInputFile" arguments)) + +(defun |setStandardOutputFile| (object &rest arguments) + (%qinvoke-method object nil "setStandardOutputFile" arguments)) + +(defun |setStandardOutputProcess| (object &rest arguments) + (%qinvoke-method object nil "setStandardOutputProcess" arguments)) + +(defun |setStartAngle| (object &rest arguments) + (%qinvoke-method object nil "setStartAngle" arguments)) + +(defun |setStartCenterPoint| (object &rest arguments) + (%qinvoke-method object nil "setStartCenterPoint" arguments)) + +(defun |setStartDragDistance.QApplication| (&rest arguments) + (%qinvoke-method "QApplication" nil "setStartDragDistance" arguments)) + +(defun |setStartDragTime.QApplication| (&rest arguments) + (%qinvoke-method "QApplication" nil "setStartDragTime" arguments)) + +(defun |setStartFrame| (object &rest arguments) + (%qinvoke-method object nil "setStartFrame" arguments)) + +(defun |setStartId| (object &rest arguments) + (%qinvoke-method object nil "setStartId" arguments)) + +(defun |setStartTime| (object &rest arguments) + (%qinvoke-method object nil "setStartTime" arguments)) + +(defun |setStartValue| (object &rest arguments) + (%qinvoke-method object nil "setStartValue" arguments)) + +(defun |setStart| (object &rest arguments) + (%qinvoke-method object nil "setStart" arguments)) + +(defun |setState| (object &rest arguments) + (%qinvoke-method object nil "setState" arguments)) + +(defun |setStatusBar| (object &rest arguments) + (%qinvoke-method object nil "setStatusBar" arguments)) + +(defun |setStatusTip| (object &rest arguments) + (%qinvoke-method object nil "setStatusTip" arguments)) + +(defun |setStereoMode| (object &rest arguments) + (%qinvoke-method object nil "setStereoMode" arguments)) + +(defun |setStickyFocus| (object &rest arguments) + (%qinvoke-method object nil "setStickyFocus" arguments)) + +(defun |setStops| (object &rest arguments) + (%qinvoke-method object nil "setStops" arguments)) + +(defun |setStrength| (object &rest arguments) + (%qinvoke-method object nil "setStrength" arguments)) + +(defun |setStretchFactor(QLayout*...)| (object &rest arguments) + (%qinvoke-method object nil "setStretchFactor(QLayout*...)" arguments)) + +(defun |setStretchFactor(QWidget*...)| (object &rest arguments) + (%qinvoke-method object nil "setStretchFactor(QWidget*...)" arguments)) + +(defun |setStretchFactor| (object &rest arguments) + (%qinvoke-method object nil "setStretchFactor" arguments)) + +(defun |setStretchLastSection| (object &rest arguments) + (%qinvoke-method object nil "setStretchLastSection" arguments)) + +(defun |setStretch| (object &rest arguments) + (%qinvoke-method object nil "setStretch" arguments)) + (defun |setStrikeOut| (object &rest arguments) (%qinvoke-method object nil "setStrikeOut" arguments)) @@ -426,6 +501,9 @@ (defun |setUniformValue| (object &rest arguments) (%qinvoke-method object nil "setUniformValue" arguments)) +(defun |setUnits| (object &rest arguments) + (%qinvoke-method object nil "setUnits" arguments)) + (defun |setUpdateBehavior| (object &rest arguments) (%qinvoke-method object nil "setUpdateBehavior" arguments)) @@ -936,6 +1014,9 @@ (defun |singleStep| (object &rest arguments) (%qinvoke-method object nil "singleStep" arguments)) +(defun |size.QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "size" arguments)) + (defun |sizeAdjustPolicy| (object &rest arguments) (%qinvoke-method object nil "sizeAdjustPolicy" arguments)) @@ -963,6 +1044,18 @@ (defun |sizeIncrement| (object &rest arguments) (%qinvoke-method object nil "sizeIncrement" arguments)) +(defun |sizePixels.QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "sizePixels" arguments)) + +(defun |sizePixels| (object &rest arguments) + (%qinvoke-method object nil "sizePixels" arguments)) + +(defun |sizePoints.QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "sizePoints" arguments)) + +(defun |sizePoints| (object &rest arguments) + (%qinvoke-method object nil "sizePoints" arguments)) + (defun |sizePolicy| (object &rest arguments) (%qinvoke-method object nil "sizePolicy" arguments)) @@ -2286,6 +2379,9 @@ (defun |toMSecsSinceEpoch| (object &rest arguments) (%qinvoke-method object nil "toMSecsSinceEpoch" arguments)) +(defun |toMargins| (object &rest arguments) + (%qinvoke-method object nil "toMargins" arguments)) + (defun |toModelIndex| (object &rest arguments) (%qinvoke-method object nil "toModelIndex" arguments)) @@ -2910,6 +3006,9 @@ (defun |united| (object &rest arguments) (%qinvoke-method object nil "united" arguments)) +(defun |units| (object &rest arguments) + (%qinvoke-method object nil "units" arguments)) + (defun |unload| (object &rest arguments) (%qinvoke-method object nil "unload" arguments)) @@ -3483,119 +3582,20 @@ (defun |windowType| (object &rest arguments) (%qinvoke-method object nil "windowType" arguments)) +(defun |windowsId.QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "windowsId" arguments)) + (defun |windowsIdToDefaultIanaId.QTimeZone| (&rest arguments) (%qinvoke-method "QTimeZone" nil "windowsIdToDefaultIanaId" arguments)) (defun |windowsIdToIanaIds.QTimeZone| (&rest arguments) (%qinvoke-method "QTimeZone" nil "windowsIdToIanaIds" arguments)) +(defun |windowsId| (object &rest arguments) + (%qinvoke-method object nil "windowsId" arguments)) + (defun |windowsVersion.QSysInfo| (&rest arguments) (%qinvoke-method "QSysInfo" nil "windowsVersion" arguments)) (defun |window| (object &rest arguments) (%qinvoke-method object (%auto-cast object) "window" arguments)) - -(defun |wizardStyle| (object &rest arguments) - (%qinvoke-method object nil "wizardStyle" arguments)) - -(defun |wizard| (object &rest arguments) - (%qinvoke-method object nil "wizard" arguments)) - -(defun |wordSpacing| (object &rest arguments) - (%qinvoke-method object nil "wordSpacing" arguments)) - -(defun |wordWrapMode| (object &rest arguments) - (%qinvoke-method object nil "wordWrapMode" arguments)) - -(defun |wordWrap| (object &rest arguments) - (%qinvoke-method object nil "wordWrap" arguments)) - -(defun |workAreaResized| (object &rest arguments) - (%qinvoke-method object nil "workAreaResized" arguments)) - -(defun |workingDirectory| (object &rest arguments) - (%qinvoke-method object nil "workingDirectory" arguments)) - -(defun |worldMatrixEnabled| (object &rest arguments) - (%qinvoke-method object nil "worldMatrixEnabled" arguments)) - -(defun |worldTransform| (object &rest arguments) - (%qinvoke-method object nil "worldTransform" arguments)) - -(defun |wrapAround| (object &rest arguments) - (%qinvoke-method object nil "wrapAround" arguments)) - -(defun |wrapMode| (object &rest arguments) - (%qinvoke-method object nil "wrapMode" arguments)) - -(defun |wrapping| (object &rest arguments) - (%qinvoke-method object nil "wrapping" arguments)) - -(defun |writableLocation.QStandardPaths| (&rest arguments) - (%qinvoke-method "QStandardPaths" nil "writableLocation" arguments)) - -(defun |write(QByteArray)| (object &rest arguments) - (%qinvoke-method object nil "write(QByteArray)" arguments)) - -(defun |write(QTextDocumentFragment)| (object &rest arguments) - (%qinvoke-method object nil "write(QTextDocumentFragment)" arguments)) - -(defun |write(const QTextDocument*)| (object &rest arguments) - (%qinvoke-method object nil "write(const QTextDocument*)" arguments)) - -(defun |write(const char*)| (object &rest arguments) - (%qinvoke-method object nil "write(const char*)" arguments)) - -(defun |writeDatagram| (object &rest arguments) - (%qinvoke-method object nil "writeDatagram" arguments)) - -(defun |write| (object &rest arguments) - (%qinvoke-method object nil "write" arguments)) - -(defun |writingSystemName.QFontDatabase| (&rest arguments) - (%qinvoke-method "QFontDatabase" nil "writingSystemName" arguments)) - -(defun |writingSystemSample.QFontDatabase| (&rest arguments) - (%qinvoke-method "QFontDatabase" nil "writingSystemSample" arguments)) - -(defun |writingSystem| (object &rest arguments) - (%qinvoke-method object nil "writingSystem" arguments)) - -(defun |w| (object &rest arguments) - (%qinvoke-method object nil "w" arguments)) - -(defun |xChanged| (object &rest arguments) - (%qinvoke-method object nil "xChanged" arguments)) - -(defun |xHeight| (object &rest arguments) - (%qinvoke-method object nil "xHeight" arguments)) - -(defun |xOffset| (object &rest arguments) - (%qinvoke-method object nil "xOffset" arguments)) - -(defun |xScaleChanged| (object &rest arguments) - (%qinvoke-method object nil "xScaleChanged" arguments)) - -(defun |xScale| (object &rest arguments) - (%qinvoke-method object nil "xScale" arguments)) - -(defun |xTilt| (object &rest arguments) - (%qinvoke-method object nil "xTilt" arguments)) - -(defun |xToCursor| (object &rest arguments) - (%qinvoke-method object nil "xToCursor" arguments)) - -(defun |xored| (object &rest arguments) - (%qinvoke-method object nil "xored" arguments)) - -(defun |x| (object &rest arguments) - (%qinvoke-method object (%auto-cast object) "x" arguments)) - -(defun |yCbCrColorSpace| (object &rest arguments) - (%qinvoke-method object nil "yCbCrColorSpace" arguments)) - -(defun |yChanged| (object &rest arguments) - (%qinvoke-method object nil "yChanged" arguments)) - -(defun |yOffset| (object &rest arguments) - (%qinvoke-method object nil "yOffset" arguments)) diff --git a/src/lisp/all-wrappers-12.lisp b/src/lisp/all-wrappers-12.lisp index 3ecc65a..7c258ce 100644 --- a/src/lisp/all-wrappers-12.lisp +++ b/src/lisp/all-wrappers-12.lisp @@ -1,5 +1,110 @@ (in-package :eql) +(defun |wizardStyle| (object &rest arguments) + (%qinvoke-method object nil "wizardStyle" arguments)) + +(defun |wizard| (object &rest arguments) + (%qinvoke-method object nil "wizard" arguments)) + +(defun |wordSpacing| (object &rest arguments) + (%qinvoke-method object nil "wordSpacing" arguments)) + +(defun |wordWrapMode| (object &rest arguments) + (%qinvoke-method object nil "wordWrapMode" arguments)) + +(defun |wordWrap| (object &rest arguments) + (%qinvoke-method object nil "wordWrap" arguments)) + +(defun |workAreaResized| (object &rest arguments) + (%qinvoke-method object nil "workAreaResized" arguments)) + +(defun |workingDirectory| (object &rest arguments) + (%qinvoke-method object nil "workingDirectory" arguments)) + +(defun |worldMatrixEnabled| (object &rest arguments) + (%qinvoke-method object nil "worldMatrixEnabled" arguments)) + +(defun |worldTransform| (object &rest arguments) + (%qinvoke-method object nil "worldTransform" arguments)) + +(defun |wrapAround| (object &rest arguments) + (%qinvoke-method object nil "wrapAround" arguments)) + +(defun |wrapMode| (object &rest arguments) + (%qinvoke-method object nil "wrapMode" arguments)) + +(defun |wrapping| (object &rest arguments) + (%qinvoke-method object nil "wrapping" arguments)) + +(defun |writableLocation.QStandardPaths| (&rest arguments) + (%qinvoke-method "QStandardPaths" nil "writableLocation" arguments)) + +(defun |write(QByteArray)| (object &rest arguments) + (%qinvoke-method object nil "write(QByteArray)" arguments)) + +(defun |write(QTextDocumentFragment)| (object &rest arguments) + (%qinvoke-method object nil "write(QTextDocumentFragment)" arguments)) + +(defun |write(const QTextDocument*)| (object &rest arguments) + (%qinvoke-method object nil "write(const QTextDocument*)" arguments)) + +(defun |write(const char*)| (object &rest arguments) + (%qinvoke-method object nil "write(const char*)" arguments)) + +(defun |writeDatagram| (object &rest arguments) + (%qinvoke-method object nil "writeDatagram" arguments)) + +(defun |write| (object &rest arguments) + (%qinvoke-method object nil "write" arguments)) + +(defun |writingSystemName.QFontDatabase| (&rest arguments) + (%qinvoke-method "QFontDatabase" nil "writingSystemName" arguments)) + +(defun |writingSystemSample.QFontDatabase| (&rest arguments) + (%qinvoke-method "QFontDatabase" nil "writingSystemSample" arguments)) + +(defun |writingSystem| (object &rest arguments) + (%qinvoke-method object nil "writingSystem" arguments)) + +(defun |w| (object &rest arguments) + (%qinvoke-method object nil "w" arguments)) + +(defun |xChanged| (object &rest arguments) + (%qinvoke-method object nil "xChanged" arguments)) + +(defun |xHeight| (object &rest arguments) + (%qinvoke-method object nil "xHeight" arguments)) + +(defun |xOffset| (object &rest arguments) + (%qinvoke-method object nil "xOffset" arguments)) + +(defun |xScaleChanged| (object &rest arguments) + (%qinvoke-method object nil "xScaleChanged" arguments)) + +(defun |xScale| (object &rest arguments) + (%qinvoke-method object nil "xScale" arguments)) + +(defun |xTilt| (object &rest arguments) + (%qinvoke-method object nil "xTilt" arguments)) + +(defun |xToCursor| (object &rest arguments) + (%qinvoke-method object nil "xToCursor" arguments)) + +(defun |xored| (object &rest arguments) + (%qinvoke-method object nil "xored" arguments)) + +(defun |x| (object &rest arguments) + (%qinvoke-method object (%auto-cast object) "x" arguments)) + +(defun |yCbCrColorSpace| (object &rest arguments) + (%qinvoke-method object nil "yCbCrColorSpace" arguments)) + +(defun |yChanged| (object &rest arguments) + (%qinvoke-method object nil "yChanged" arguments)) + +(defun |yOffset| (object &rest arguments) + (%qinvoke-method object nil "yOffset" arguments)) + (defun |yScaleChanged| (object &rest arguments) (%qinvoke-method object nil "yScaleChanged" arguments)) diff --git a/src/lisp/all-wrappers-2.lisp b/src/lisp/all-wrappers-2.lisp index 1bc6eab..6a11d9b 100644 --- a/src/lisp/all-wrappers-2.lisp +++ b/src/lisp/all-wrappers-2.lisp @@ -1,5 +1,9 @@ (defpackage :eql (:export + #:|drawLine(QPointF...)| + #:|drawLines(QVector)| + #:|drawLines(QVector)| + #:|drawLines(QVector)| #:|drawLines(QVector)| #:|drawLines(const QLine*...)| #:|drawLines(const QLineF*...)| @@ -500,6 +504,9 @@ #:|fromWinId.QWindow| #:|frustum| #:|fullPage| + #:|fullRectPixels| + #:|fullRectPoints| + #:|fullRect| #:|fullScreenChanged| #:|fullServerName| #:|functions| @@ -714,6 +721,11 @@ #:|iconSize| #:|iconText| #:|icon| + #:|id(QSize).QPageSize| + #:|id(QSize...).QPageSize| + #:|id(QSizeF...).QPageSize| + #:|id(int).QPageSize| + #:|id.QPageSize| #:|idealWidth| #:|idnWhitelist.QUrl| #:|id| @@ -973,6 +985,7 @@ #:|isEnabledTo| #:|isEnabled| #:|isEqual| + #:|isEquivalentTo| #:|isExclusive| #:|isExecutable| #:|isExpanded| @@ -1186,17 +1199,4 @@ #:|items(QRectF)| #:|items(QRectF...)| #:|items(Qt::SortOrder)| - #:|items(int...)| - #:|itemsBoundingRect| - #:|itemsExpandable| - #:|items| - #:|item| - #:|javaScriptWindowObjectCleared| - #:|joinMulticastGroup| - #:|joinPreviousEditBlock| - #:|joinStyle| - #:|jumpToFrame| - #:|jumpToNextFrame| - #:|keepPositionOnInsert| - #:|kernelType.QSysInfo| - #:|kernelVersion.QSysInfo|)) + #:|items(int...)|)) diff --git a/src/lisp/all-wrappers-3.lisp b/src/lisp/all-wrappers-3.lisp index 4afa3f1..79b59d5 100644 --- a/src/lisp/all-wrappers-3.lisp +++ b/src/lisp/all-wrappers-3.lisp @@ -1,6 +1,20 @@ (defpackage :eql (:export + #:|itemsBoundingRect| + #:|itemsExpandable| + #:|items| + #:|item| + #:|javaScriptWindowObjectCleared| + #:|joinMulticastGroup| + #:|joinPreviousEditBlock| + #:|joinStyle| + #:|jumpToFrame| + #:|jumpToNextFrame| + #:|keepPositionOnInsert| + #:|kernelType.QSysInfo| + #:|kernelVersion.QSysInfo| #:|kerning| + #:|key.QPageSize| #:|keyBindings.QKeySequence| #:|keyBindingsForAction| #:|keyExchangeMethod| @@ -263,6 +277,7 @@ #:|mappedSection| #:|mappedWidgetAt| #:|map| + #:|margins| #:|margin| #:|markContentsDirty| #:|mask| @@ -298,6 +313,7 @@ #:|maximumHeight| #:|maximumItemCount| #:|maximumLevelOfDetail| + #:|maximumMargins| #:|maximumMipLevels| #:|maximumOpticalZoomChanged| #:|maximumOpticalZoom| @@ -370,6 +386,7 @@ #:|minimumHeightForWidth| #:|minimumHeight| #:|minimumLevelOfDetail| + #:|minimumMargins| #:|minimumPhysicalPageSize| #:|minimumRenderSize| #:|minimumSectionSize| @@ -431,6 +448,7 @@ #:|multicastInterface| #:|mutedChanged| #:|myComputer| + #:|name.QPageSize| #:|nameFilterDisables| #:|nameFilters| #:|nameToType.QVariant| @@ -590,6 +608,9 @@ #:|paint(QPainter*,int...)| #:|paintDevice| #:|paintFlipped| + #:|paintRectPixels| + #:|paintRectPoints| + #:|paintRect| #:|paintRequested| #:|paintWindowFrame| #:|paintingActive| @@ -840,6 +861,8 @@ #:|record| #:|rectCount| #:|rectForIndex| + #:|rectPixels| + #:|rectPoints| #:|rects| #:|rect| #:|redF| @@ -1176,27 +1199,4 @@ #:|search| #:|second| #:|secsTo| - #:|sectionAt| - #:|sectionClicked| - #:|sectionCountChanged| - #:|sectionCount| - #:|sectionDoubleClicked| - #:|sectionEntered| - #:|sectionHandleDoubleClicked| - #:|sectionMoved| - #:|sectionPosition| - #:|sectionPressed| - #:|sectionResizeMode| - #:|sectionResized| - #:|sectionSizeHint| - #:|sectionSize| - #:|sectionText| - #:|sectionViewportPosition| - #:|sectionsAboutToBeRemoved| - #:|sectionsClickable| - #:|sectionsHidden| - #:|sectionsInserted| - #:|sectionsMovable| - #:|sectionsMoved| - #:|securityOrigin| - #:|seekableChanged|)) + #:|sectionAt|)) diff --git a/src/lisp/all-wrappers-4.lisp b/src/lisp/all-wrappers-4.lisp index 139e809..0a9441b 100644 --- a/src/lisp/all-wrappers-4.lisp +++ b/src/lisp/all-wrappers-4.lisp @@ -1,5 +1,28 @@ (defpackage :eql (:export + #:|sectionClicked| + #:|sectionCountChanged| + #:|sectionCount| + #:|sectionDoubleClicked| + #:|sectionEntered| + #:|sectionHandleDoubleClicked| + #:|sectionMoved| + #:|sectionPosition| + #:|sectionPressed| + #:|sectionResizeMode| + #:|sectionResized| + #:|sectionSizeHint| + #:|sectionSize| + #:|sectionText| + #:|sectionViewportPosition| + #:|sectionsAboutToBeRemoved| + #:|sectionsClickable| + #:|sectionsHidden| + #:|sectionsInserted| + #:|sectionsMovable| + #:|sectionsMoved| + #:|securityOrigin| + #:|seekableChanged| #:|seek| #:|segmentStyle| #:|select(QItemSelection...)| @@ -759,6 +782,7 @@ #:|setManualIsoSensitivity| #:|setManualShutterSpeed| #:|setManualWhiteBalance| + #:|setMargins| #:|setMargin| #:|setMask(QBitmap)| #:|setMask(QRegion)| @@ -806,6 +830,7 @@ #:|setMinimumFrameRate| #:|setMinimumHeight| #:|setMinimumLevelOfDetail| + #:|setMinimumMargins| #:|setMinimumRenderSize| #:|setMinimumSectionSize| #:|setMinimumSize| @@ -1174,29 +1199,4 @@ #:|setStackingMode| #:|setStack| #:|setStandardButtons| - #:|setStandardColor.QColorDialog| - #:|setStandardErrorFile| - #:|setStandardInputFile| - #:|setStandardOutputFile| - #:|setStandardOutputProcess| - #:|setStartAngle| - #:|setStartCenterPoint| - #:|setStartDragDistance.QApplication| - #:|setStartDragTime.QApplication| - #:|setStartFrame| - #:|setStartId| - #:|setStartTime| - #:|setStartValue| - #:|setStart| - #:|setState| - #:|setStatusBar| - #:|setStatusTip| - #:|setStereoMode| - #:|setStickyFocus| - #:|setStops| - #:|setStrength| - #:|setStretchFactor(QLayout*...)| - #:|setStretchFactor(QWidget*...)| - #:|setStretchFactor| - #:|setStretchLastSection| - #:|setStretch|)) + #:|setStandardColor.QColorDialog|)) diff --git a/src/lisp/all-wrappers-5.lisp b/src/lisp/all-wrappers-5.lisp index 7a1d431..3cdb5b1 100644 --- a/src/lisp/all-wrappers-5.lisp +++ b/src/lisp/all-wrappers-5.lisp @@ -1,5 +1,30 @@ (defpackage :eql (:export + #:|setStandardErrorFile| + #:|setStandardInputFile| + #:|setStandardOutputFile| + #:|setStandardOutputProcess| + #:|setStartAngle| + #:|setStartCenterPoint| + #:|setStartDragDistance.QApplication| + #:|setStartDragTime.QApplication| + #:|setStartFrame| + #:|setStartId| + #:|setStartTime| + #:|setStartValue| + #:|setStart| + #:|setState| + #:|setStatusBar| + #:|setStatusTip| + #:|setStereoMode| + #:|setStickyFocus| + #:|setStops| + #:|setStrength| + #:|setStretchFactor(QLayout*...)| + #:|setStretchFactor(QWidget*...)| + #:|setStretchFactor| + #:|setStretchLastSection| + #:|setStretch| #:|setStrikeOut| #:|setStringList| #:|setStyle(QString).QApplication| @@ -142,6 +167,7 @@ #:|setUniformValue(int,QVector4D)| #:|setUniformValue(int...)| #:|setUniformValue| + #:|setUnits| #:|setUpdateBehavior| #:|setUpdateInterval| #:|setUpdatesEnabled| @@ -312,6 +338,7 @@ #:|signal| #:|simplified| #:|singleStep| + #:|size.QPageSize| #:|sizeAdjustPolicy| #:|sizeConstraint| #:|sizeFromContents| @@ -321,6 +348,10 @@ #:|sizeHintForRow| #:|sizeHint| #:|sizeIncrement| + #:|sizePixels.QPageSize| + #:|sizePixels| + #:|sizePoints.QPageSize| + #:|sizePoints| #:|sizePolicy| #:|sizes| #:|size| @@ -762,6 +793,7 @@ #:|toLongLong| #:|toLower| #:|toMSecsSinceEpoch| + #:|toMargins| #:|toModelIndex| #:|toNativeSeparators.QDir| #:|toNextBoundary| @@ -970,6 +1002,7 @@ #:|united(QRect)| #:|united(QRegion)| #:|united| + #:|units| #:|unload| #:|unlock| #:|unmap| @@ -1161,42 +1194,9 @@ #:|windowTitleChanged| #:|windowTitle| #:|windowType| + #:|windowsId.QPageSize| #:|windowsIdToDefaultIanaId.QTimeZone| #:|windowsIdToIanaIds.QTimeZone| + #:|windowsId| #:|windowsVersion.QSysInfo| - #:|window| - #:|wizardStyle| - #:|wizard| - #:|wordSpacing| - #:|wordWrapMode| - #:|wordWrap| - #:|workAreaResized| - #:|workingDirectory| - #:|worldMatrixEnabled| - #:|worldTransform| - #:|wrapAround| - #:|wrapMode| - #:|wrapping| - #:|writableLocation.QStandardPaths| - #:|write(QByteArray)| - #:|write(QTextDocumentFragment)| - #:|write(const QTextDocument*)| - #:|write(const char*)| - #:|writeDatagram| - #:|write| - #:|writingSystemName.QFontDatabase| - #:|writingSystemSample.QFontDatabase| - #:|writingSystem| - #:|w| - #:|xChanged| - #:|xHeight| - #:|xOffset| - #:|xScaleChanged| - #:|xScale| - #:|xTilt| - #:|xToCursor| - #:|xored| - #:|x| - #:|yCbCrColorSpace| - #:|yChanged| - #:|yOffset|)) + #:|window|)) diff --git a/src/lisp/all-wrappers-6.lisp b/src/lisp/all-wrappers-6.lisp index 4f3957a..79fe3f3 100644 --- a/src/lisp/all-wrappers-6.lisp +++ b/src/lisp/all-wrappers-6.lisp @@ -1,5 +1,40 @@ (defpackage :eql (:export + #:|wizardStyle| + #:|wizard| + #:|wordSpacing| + #:|wordWrapMode| + #:|wordWrap| + #:|workAreaResized| + #:|workingDirectory| + #:|worldMatrixEnabled| + #:|worldTransform| + #:|wrapAround| + #:|wrapMode| + #:|wrapping| + #:|writableLocation.QStandardPaths| + #:|write(QByteArray)| + #:|write(QTextDocumentFragment)| + #:|write(const QTextDocument*)| + #:|write(const char*)| + #:|writeDatagram| + #:|write| + #:|writingSystemName.QFontDatabase| + #:|writingSystemSample.QFontDatabase| + #:|writingSystem| + #:|w| + #:|xChanged| + #:|xHeight| + #:|xOffset| + #:|xScaleChanged| + #:|xScale| + #:|xTilt| + #:|xToCursor| + #:|xored| + #:|x| + #:|yCbCrColorSpace| + #:|yChanged| + #:|yOffset| #:|yScaleChanged| #:|yScale| #:|yTilt| diff --git a/src/lisp/all-wrappers-7.lisp b/src/lisp/all-wrappers-7.lisp index ffe05c9..3ef42f6 100644 --- a/src/lisp/all-wrappers-7.lisp +++ b/src/lisp/all-wrappers-7.lisp @@ -3165,6 +3165,18 @@ (defun |defaultWidget| (object &rest arguments) (%qinvoke-method object nil "defaultWidget" arguments)) +(defun |definitionSize.QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "definitionSize" arguments)) + +(defun |definitionSize| (object &rest arguments) + (%qinvoke-method object nil "definitionSize" arguments)) + +(defun |definitionUnits.QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "definitionUnits" arguments)) + +(defun |definitionUnits| (object &rest arguments) + (%qinvoke-method object nil "definitionUnits" arguments)) + (defun |deleteAccessibleInterface.QAccessible| (&rest arguments) (%qinvoke-method "QAccessible" nil "deleteAccessibleInterface" arguments)) @@ -3587,15 +3599,3 @@ (defun |drawLine(QPoint...)| (object &rest arguments) (%qinvoke-method object nil "drawLine(QPoint...)" arguments)) - -(defun |drawLine(QPointF...)| (object &rest arguments) - (%qinvoke-method object nil "drawLine(QPointF...)" arguments)) - -(defun |drawLines(QVector)| (object &rest arguments) - (%qinvoke-method object nil "drawLines(QVector)" arguments)) - -(defun |drawLines(QVector)| (object &rest arguments) - (%qinvoke-method object nil "drawLines(QVector)" arguments)) - -(defun |drawLines(QVector)| (object &rest arguments) - (%qinvoke-method object nil "drawLines(QVector)" arguments)) diff --git a/src/lisp/all-wrappers-8.lisp b/src/lisp/all-wrappers-8.lisp index 9d2a086..dd00b1f 100644 --- a/src/lisp/all-wrappers-8.lisp +++ b/src/lisp/all-wrappers-8.lisp @@ -1,5 +1,17 @@ (in-package :eql) +(defun |drawLine(QPointF...)| (object &rest arguments) + (%qinvoke-method object nil "drawLine(QPointF...)" arguments)) + +(defun |drawLines(QVector)| (object &rest arguments) + (%qinvoke-method object nil "drawLines(QVector)" arguments)) + +(defun |drawLines(QVector)| (object &rest arguments) + (%qinvoke-method object nil "drawLines(QVector)" arguments)) + +(defun |drawLines(QVector)| (object &rest arguments) + (%qinvoke-method object nil "drawLines(QVector)" arguments)) + (defun |drawLines(QVector)| (object &rest arguments) (%qinvoke-method object nil "drawLines(QVector)" arguments)) @@ -1500,6 +1512,15 @@ (defun |fullPage| (object &rest arguments) (%qinvoke-method object nil "fullPage" arguments)) +(defun |fullRectPixels| (object &rest arguments) + (%qinvoke-method object nil "fullRectPixels" arguments)) + +(defun |fullRectPoints| (object &rest arguments) + (%qinvoke-method object nil "fullRectPoints" arguments)) + +(defun |fullRect| (object &rest arguments) + (%qinvoke-method object nil "fullRect" arguments)) + (defun |fullScreenChanged| (object &rest arguments) (%qinvoke-method object nil "fullScreenChanged" arguments)) @@ -2142,6 +2163,21 @@ (defun |icon| (object &rest arguments) (%qinvoke-method object nil "icon" arguments)) +(defun |id(QSize).QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "id(QSize)" arguments)) + +(defun |id(QSize...).QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "id(QSize...)" arguments)) + +(defun |id(QSizeF...).QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "id(QSizeF...)" arguments)) + +(defun |id(int).QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "id(int)" arguments)) + +(defun |id.QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "id" arguments)) + (defun |idealWidth| (object &rest arguments) (%qinvoke-method object nil "idealWidth" arguments)) @@ -2919,6 +2955,9 @@ (defun |isEqual| (object &rest arguments) (%qinvoke-method object nil "isEqual" arguments)) +(defun |isEquivalentTo| (object &rest arguments) + (%qinvoke-method object nil "isEquivalentTo" arguments)) + (defun |isExclusive| (object &rest arguments) (%qinvoke-method object nil "isExclusive" arguments)) @@ -3560,42 +3599,3 @@ (defun |items(int...)| (object &rest arguments) (%qinvoke-method object nil "items(int...)" arguments)) - -(defun |itemsBoundingRect| (object &rest arguments) - (%qinvoke-method object nil "itemsBoundingRect" arguments)) - -(defun |itemsExpandable| (object &rest arguments) - (%qinvoke-method object nil "itemsExpandable" arguments)) - -(defun |items| (object &rest arguments) - (%qinvoke-method object nil "items" arguments)) - -(defun |item| (object &rest arguments) - (%qinvoke-method object nil "item" arguments)) - -(defun |javaScriptWindowObjectCleared| (object &rest arguments) - (%qinvoke-method object nil "javaScriptWindowObjectCleared" arguments)) - -(defun |joinMulticastGroup| (object &rest arguments) - (%qinvoke-method object nil "joinMulticastGroup" arguments)) - -(defun |joinPreviousEditBlock| (object &rest arguments) - (%qinvoke-method object nil "joinPreviousEditBlock" arguments)) - -(defun |joinStyle| (object &rest arguments) - (%qinvoke-method object nil "joinStyle" arguments)) - -(defun |jumpToFrame| (object &rest arguments) - (%qinvoke-method object nil "jumpToFrame" arguments)) - -(defun |jumpToNextFrame| (object &rest arguments) - (%qinvoke-method object nil "jumpToNextFrame" arguments)) - -(defun |keepPositionOnInsert| (object &rest arguments) - (%qinvoke-method object nil "keepPositionOnInsert" arguments)) - -(defun |kernelType.QSysInfo| (&rest arguments) - (%qinvoke-method "QSysInfo" nil "kernelType" arguments)) - -(defun |kernelVersion.QSysInfo| (&rest arguments) - (%qinvoke-method "QSysInfo" nil "kernelVersion" arguments)) diff --git a/src/lisp/all-wrappers-9.lisp b/src/lisp/all-wrappers-9.lisp index fa0e555..98b3bdf 100644 --- a/src/lisp/all-wrappers-9.lisp +++ b/src/lisp/all-wrappers-9.lisp @@ -1,8 +1,50 @@ (in-package :eql) +(defun |itemsBoundingRect| (object &rest arguments) + (%qinvoke-method object nil "itemsBoundingRect" arguments)) + +(defun |itemsExpandable| (object &rest arguments) + (%qinvoke-method object nil "itemsExpandable" arguments)) + +(defun |items| (object &rest arguments) + (%qinvoke-method object nil "items" arguments)) + +(defun |item| (object &rest arguments) + (%qinvoke-method object nil "item" arguments)) + +(defun |javaScriptWindowObjectCleared| (object &rest arguments) + (%qinvoke-method object nil "javaScriptWindowObjectCleared" arguments)) + +(defun |joinMulticastGroup| (object &rest arguments) + (%qinvoke-method object nil "joinMulticastGroup" arguments)) + +(defun |joinPreviousEditBlock| (object &rest arguments) + (%qinvoke-method object nil "joinPreviousEditBlock" arguments)) + +(defun |joinStyle| (object &rest arguments) + (%qinvoke-method object nil "joinStyle" arguments)) + +(defun |jumpToFrame| (object &rest arguments) + (%qinvoke-method object nil "jumpToFrame" arguments)) + +(defun |jumpToNextFrame| (object &rest arguments) + (%qinvoke-method object nil "jumpToNextFrame" arguments)) + +(defun |keepPositionOnInsert| (object &rest arguments) + (%qinvoke-method object nil "keepPositionOnInsert" arguments)) + +(defun |kernelType.QSysInfo| (&rest arguments) + (%qinvoke-method "QSysInfo" nil "kernelType" arguments)) + +(defun |kernelVersion.QSysInfo| (&rest arguments) + (%qinvoke-method "QSysInfo" nil "kernelVersion" arguments)) + (defun |kerning| (object &rest arguments) (%qinvoke-method object nil "kerning" arguments)) +(defun |key.QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "key" arguments)) + (defun |keyBindings.QKeySequence| (&rest arguments) (%qinvoke-method "QKeySequence" nil "keyBindings" arguments)) @@ -789,6 +831,9 @@ (defun |map| (object &rest arguments) (%qinvoke-method object nil "map" arguments)) +(defun |margins| (object &rest arguments) + (%qinvoke-method object nil "margins" arguments)) + (defun |margin| (object &rest arguments) (%qinvoke-method object nil "margin" arguments)) @@ -894,6 +939,9 @@ (defun |maximumLevelOfDetail| (object &rest arguments) (%qinvoke-method object nil "maximumLevelOfDetail" arguments)) +(defun |maximumMargins| (object &rest arguments) + (%qinvoke-method object nil "maximumMargins" arguments)) + (defun |maximumMipLevels| (object &rest arguments) (%qinvoke-method object nil "maximumMipLevels" arguments)) @@ -1110,6 +1158,9 @@ (defun |minimumLevelOfDetail| (object &rest arguments) (%qinvoke-method object nil "minimumLevelOfDetail" arguments)) +(defun |minimumMargins| (object &rest arguments) + (%qinvoke-method object nil "minimumMargins" arguments)) + (defun |minimumPhysicalPageSize| (object &rest arguments) (%qinvoke-method object nil "minimumPhysicalPageSize" arguments)) @@ -1293,6 +1344,9 @@ (defun |myComputer| (object &rest arguments) (%qinvoke-method object nil "myComputer" arguments)) +(defun |name.QPageSize| (&rest arguments) + (%qinvoke-method "QPageSize" nil "name" arguments)) + (defun |nameFilterDisables| (object &rest arguments) (%qinvoke-method object nil "nameFilterDisables" arguments)) @@ -1770,6 +1824,15 @@ (defun |paintFlipped| (object &rest arguments) (%qinvoke-method object nil "paintFlipped" arguments)) +(defun |paintRectPixels| (object &rest arguments) + (%qinvoke-method object nil "paintRectPixels" arguments)) + +(defun |paintRectPoints| (object &rest arguments) + (%qinvoke-method object nil "paintRectPoints" arguments)) + +(defun |paintRect| (object &rest arguments) + (%qinvoke-method object nil "paintRect" arguments)) + (defun |paintRequested| (object &rest arguments) (%qinvoke-method object nil "paintRequested" arguments)) @@ -2520,6 +2583,12 @@ (defun |rectForIndex| (object &rest arguments) (%qinvoke-method object nil "rectForIndex" arguments)) +(defun |rectPixels| (object &rest arguments) + (%qinvoke-method object nil "rectPixels" arguments)) + +(defun |rectPoints| (object &rest arguments) + (%qinvoke-method object nil "rectPoints" arguments)) + (defun |rects| (object &rest arguments) (%qinvoke-method object nil "rects" arguments)) @@ -3530,72 +3599,3 @@ (defun |sectionAt| (object &rest arguments) (%qinvoke-method object nil "sectionAt" arguments)) - -(defun |sectionClicked| (object &rest arguments) - (%qinvoke-method object nil "sectionClicked" arguments)) - -(defun |sectionCountChanged| (object &rest arguments) - (%qinvoke-method object nil "sectionCountChanged" arguments)) - -(defun |sectionCount| (object &rest arguments) - (%qinvoke-method object nil "sectionCount" arguments)) - -(defun |sectionDoubleClicked| (object &rest arguments) - (%qinvoke-method object nil "sectionDoubleClicked" arguments)) - -(defun |sectionEntered| (object &rest arguments) - (%qinvoke-method object nil "sectionEntered" arguments)) - -(defun |sectionHandleDoubleClicked| (object &rest arguments) - (%qinvoke-method object nil "sectionHandleDoubleClicked" arguments)) - -(defun |sectionMoved| (object &rest arguments) - (%qinvoke-method object nil "sectionMoved" arguments)) - -(defun |sectionPosition| (object &rest arguments) - (%qinvoke-method object nil "sectionPosition" arguments)) - -(defun |sectionPressed| (object &rest arguments) - (%qinvoke-method object nil "sectionPressed" arguments)) - -(defun |sectionResizeMode| (object &rest arguments) - (%qinvoke-method object nil "sectionResizeMode" arguments)) - -(defun |sectionResized| (object &rest arguments) - (%qinvoke-method object nil "sectionResized" arguments)) - -(defun |sectionSizeHint| (object &rest arguments) - (%qinvoke-method object nil "sectionSizeHint" arguments)) - -(defun |sectionSize| (object &rest arguments) - (%qinvoke-method object nil "sectionSize" arguments)) - -(defun |sectionText| (object &rest arguments) - (%qinvoke-method object nil "sectionText" arguments)) - -(defun |sectionViewportPosition| (object &rest arguments) - (%qinvoke-method object nil "sectionViewportPosition" arguments)) - -(defun |sectionsAboutToBeRemoved| (object &rest arguments) - (%qinvoke-method object nil "sectionsAboutToBeRemoved" arguments)) - -(defun |sectionsClickable| (object &rest arguments) - (%qinvoke-method object nil "sectionsClickable" arguments)) - -(defun |sectionsHidden| (object &rest arguments) - (%qinvoke-method object nil "sectionsHidden" arguments)) - -(defun |sectionsInserted| (object &rest arguments) - (%qinvoke-method object nil "sectionsInserted" arguments)) - -(defun |sectionsMovable| (object &rest arguments) - (%qinvoke-method object nil "sectionsMovable" arguments)) - -(defun |sectionsMoved| (object &rest arguments) - (%qinvoke-method object nil "sectionsMoved" arguments)) - -(defun |securityOrigin| (object &rest arguments) - (%qinvoke-method object nil "securityOrigin" arguments)) - -(defun |seekableChanged| (object &rest arguments) - (%qinvoke-method object nil "seekableChanged" arguments)) diff --git a/src/lisp/enum-lists/parsed-enums.lisp b/src/lisp/enum-lists/parsed-enums.lisp index a18a24a..b10b4f9 100644 --- a/src/lisp/enum-lists/parsed-enums.lisp +++ b/src/lisp/enum-lists/parsed-enums.lisp @@ -3099,6 +3099,150 @@ ("|QOpenGLTexture.MirroredRepeat|" . #x8370) ("|QOpenGLTexture.ClampToEdge|" . #x812F) ("|QOpenGLTexture.ClampToBorder|" . #x812D) +("|QPageLayout.StandardMode|" . 0) +("|QPageLayout.FullPageMode|" . 1) +("|QPageLayout.Portrait|" . 0) +("|QPageLayout.Landscape|" . 1) +("|QPageLayout.Millimeter|" . 0) +("|QPageLayout.Point|" . 1) +("|QPageLayout.Inch|" . 2) +("|QPageLayout.Pica|" . 3) +("|QPageLayout.Didot|" . 4) +("|QPageLayout.Cicero|" . 5) +("|QPageSize.A0|" . 5) +("|QPageSize.A1|" . 6) +("|QPageSize.A2|" . 7) +("|QPageSize.A3|" . 8) +("|QPageSize.A4|" . 0) +("|QPageSize.A5|" . 9) +("|QPageSize.A6|" . 10) +("|QPageSize.A7|" . 11) +("|QPageSize.A8|" . 12) +("|QPageSize.A9|" . 13) +("|QPageSize.B0|" . 14) +("|QPageSize.B1|" . 15) +("|QPageSize.B2|" . 17) +("|QPageSize.B3|" . 18) +("|QPageSize.B4|" . 19) +("|QPageSize.B5|" . 1) +("|QPageSize.B6|" . 20) +("|QPageSize.B7|" . 21) +("|QPageSize.B8|" . 22) +("|QPageSize.B9|" . 23) +("|QPageSize.B10|" . 16) +("|QPageSize.C5E|" . 24) +("|QPageSize.Comm10E|" . 25) +("|QPageSize.DLE|" . 26) +("|QPageSize.Executive|" . 4) +("|QPageSize.Folio|" . 27) +("|QPageSize.Ledger|" . 28) +("|QPageSize.Legal|" . 3) +("|QPageSize.Letter|" . 2) +("|QPageSize.Tabloid|" . 29) +("|QPageSize.Custom|" . 30) +("|QPageSize.A10|" . 31) +("|QPageSize.A3Extra|" . 32) +("|QPageSize.A4Extra|" . 33) +("|QPageSize.A4Plus|" . 34) +("|QPageSize.A4Small|" . 35) +("|QPageSize.A5Extra|" . 36) +("|QPageSize.B5Extra|" . 37) +("|QPageSize.JisB0|" . 38) +("|QPageSize.JisB1|" . 39) +("|QPageSize.JisB2|" . 40) +("|QPageSize.JisB3|" . 41) +("|QPageSize.JisB4|" . 42) +("|QPageSize.JisB5|" . 43) +("|QPageSize.JisB6|" . 44) +("|QPageSize.JisB7|" . 45) +("|QPageSize.JisB8|" . 46) +("|QPageSize.JisB9|" . 47) +("|QPageSize.JisB10|" . 48) +("|QPageSize.AnsiA|" . 2) +("|QPageSize.AnsiB|" . 28) +("|QPageSize.AnsiC|" . 49) +("|QPageSize.AnsiD|" . 50) +("|QPageSize.AnsiE|" . 51) +("|QPageSize.LegalExtra|" . 52) +("|QPageSize.LetterExtra|" . 53) +("|QPageSize.LetterPlus|" . 54) +("|QPageSize.LetterSmall|" . 55) +("|QPageSize.TabloidExtra|" . 56) +("|QPageSize.ArchA|" . 57) +("|QPageSize.ArchB|" . 58) +("|QPageSize.ArchC|" . 59) +("|QPageSize.ArchD|" . 60) +("|QPageSize.ArchE|" . 61) +("|QPageSize.Imperial7x9|" . 62) +("|QPageSize.Imperial8x10|" . 63) +("|QPageSize.Imperial9x11|" . 64) +("|QPageSize.Imperial9x12|" . 65) +("|QPageSize.Imperial10x11|" . 66) +("|QPageSize.Imperial10x13|" . 67) +("|QPageSize.Imperial10x14|" . 68) +("|QPageSize.Imperial12x11|" . 69) +("|QPageSize.Imperial15x11|" . 70) +("|QPageSize.ExecutiveStandard|" . 71) +("|QPageSize.Note|" . 72) +("|QPageSize.Quarto|" . 73) +("|QPageSize.Statement|" . 74) +("|QPageSize.SuperA|" . 75) +("|QPageSize.SuperB|" . 76) +("|QPageSize.Postcard|" . 77) +("|QPageSize.DoublePostcard|" . 78) +("|QPageSize.Prc16K|" . 79) +("|QPageSize.Prc32K|" . 80) +("|QPageSize.Prc32KBig|" . 81) +("|QPageSize.FanFoldUS|" . 82) +("|QPageSize.FanFoldGerman|" . 83) +("|QPageSize.FanFoldGermanLegal|" . 84) +("|QPageSize.EnvelopeB4|" . 85) +("|QPageSize.EnvelopeB5|" . 86) +("|QPageSize.EnvelopeB6|" . 87) +("|QPageSize.EnvelopeC0|" . 88) +("|QPageSize.EnvelopeC1|" . 89) +("|QPageSize.EnvelopeC2|" . 90) +("|QPageSize.EnvelopeC3|" . 91) +("|QPageSize.EnvelopeC4|" . 92) +("|QPageSize.EnvelopeC5|" . 24) +("|QPageSize.EnvelopeC6|" . 93) +("|QPageSize.EnvelopeC65|" . 94) +("|QPageSize.EnvelopeC7|" . 95) +("|QPageSize.EnvelopeDL|" . 26) +("|QPageSize.Envelope9|" . 96) +("|QPageSize.Envelope10|" . 25) +("|QPageSize.Envelope11|" . 97) +("|QPageSize.Envelope12|" . 98) +("|QPageSize.Envelope14|" . 99) +("|QPageSize.EnvelopeMonarch|" . 100) +("|QPageSize.EnvelopePersonal|" . 101) +("|QPageSize.EnvelopeChou3|" . 102) +("|QPageSize.EnvelopeChou4|" . 103) +("|QPageSize.EnvelopeInvite|" . 104) +("|QPageSize.EnvelopeItalian|" . 105) +("|QPageSize.EnvelopeKaku2|" . 106) +("|QPageSize.EnvelopeKaku3|" . 107) +("|QPageSize.EnvelopePrc1|" . 108) +("|QPageSize.EnvelopePrc2|" . 109) +("|QPageSize.EnvelopePrc3|" . 110) +("|QPageSize.EnvelopePrc4|" . 111) +("|QPageSize.EnvelopePrc5|" . 112) +("|QPageSize.EnvelopePrc6|" . 113) +("|QPageSize.EnvelopePrc7|" . 114) +("|QPageSize.EnvelopePrc8|" . 115) +("|QPageSize.EnvelopePrc9|" . 116) +("|QPageSize.EnvelopePrc10|" . 117) +("|QPageSize.EnvelopeYou4|" . 118) +("|QPageSize.LastPageSize|" . 118) +("|QPageSize.FuzzyMatch|" . 0) +("|QPageSize.FuzzyOrientationMatch|" . 1) +("|QPageSize.ExactMatch|" . 2) +("|QPageSize.Millimeter|" . 0) +("|QPageSize.Point|" . 1) +("|QPageSize.Inch|" . 2) +("|QPageSize.Pica|" . 3) +("|QPageSize.Didot|" . 4) +("|QPageSize.Cicero|" . 5) ("|QPagedPaintDevice.A0|" . 5) ("|QPagedPaintDevice.A1|" . 6) ("|QPagedPaintDevice.A2|" . 7) diff --git a/src/lisp/enums3.lisp b/src/lisp/enums3.lisp index f214732..56a3b3a 100644 --- a/src/lisp/enums3.lisp +++ b/src/lisp/enums3.lisp @@ -136,6 +136,150 @@ (defenum |QOpenGLWindow.NoPartialUpdate| 0) (defenum |QOpenGLWindow.PartialUpdateBlend| 2) (defenum |QOpenGLWindow.PartialUpdateBlit| 1) +(defenum |QPageLayout.Cicero| 5) +(defenum |QPageLayout.Didot| 4) +(defenum |QPageLayout.FullPageMode| 1) +(defenum |QPageLayout.Inch| 2) +(defenum |QPageLayout.Landscape| 1) +(defenum |QPageLayout.Millimeter| 0) +(defenum |QPageLayout.Pica| 3) +(defenum |QPageLayout.Point| 1) +(defenum |QPageLayout.Portrait| 0) +(defenum |QPageLayout.StandardMode| 0) +(defenum |QPageSize.A0| 5) +(defenum |QPageSize.A10| 31) +(defenum |QPageSize.A1| 6) +(defenum |QPageSize.A2| 7) +(defenum |QPageSize.A3Extra| 32) +(defenum |QPageSize.A3| 8) +(defenum |QPageSize.A4Extra| 33) +(defenum |QPageSize.A4Plus| 34) +(defenum |QPageSize.A4Small| 35) +(defenum |QPageSize.A4| 0) +(defenum |QPageSize.A5Extra| 36) +(defenum |QPageSize.A5| 9) +(defenum |QPageSize.A6| 10) +(defenum |QPageSize.A7| 11) +(defenum |QPageSize.A8| 12) +(defenum |QPageSize.A9| 13) +(defenum |QPageSize.AnsiA| 2) +(defenum |QPageSize.AnsiB| 28) +(defenum |QPageSize.AnsiC| 49) +(defenum |QPageSize.AnsiD| 50) +(defenum |QPageSize.AnsiE| 51) +(defenum |QPageSize.ArchA| 57) +(defenum |QPageSize.ArchB| 58) +(defenum |QPageSize.ArchC| 59) +(defenum |QPageSize.ArchD| 60) +(defenum |QPageSize.ArchE| 61) +(defenum |QPageSize.B0| 14) +(defenum |QPageSize.B10| 16) +(defenum |QPageSize.B1| 15) +(defenum |QPageSize.B2| 17) +(defenum |QPageSize.B3| 18) +(defenum |QPageSize.B4| 19) +(defenum |QPageSize.B5Extra| 37) +(defenum |QPageSize.B5| 1) +(defenum |QPageSize.B6| 20) +(defenum |QPageSize.B7| 21) +(defenum |QPageSize.B8| 22) +(defenum |QPageSize.B9| 23) +(defenum |QPageSize.C5E| 24) +(defenum |QPageSize.Cicero| 5) +(defenum |QPageSize.Comm10E| 25) +(defenum |QPageSize.Custom| 30) +(defenum |QPageSize.DLE| 26) +(defenum |QPageSize.Didot| 4) +(defenum |QPageSize.DoublePostcard| 78) +(defenum |QPageSize.Envelope10| 25) +(defenum |QPageSize.Envelope11| 97) +(defenum |QPageSize.Envelope12| 98) +(defenum |QPageSize.Envelope14| 99) +(defenum |QPageSize.Envelope9| 96) +(defenum |QPageSize.EnvelopeB4| 85) +(defenum |QPageSize.EnvelopeB5| 86) +(defenum |QPageSize.EnvelopeB6| 87) +(defenum |QPageSize.EnvelopeC0| 88) +(defenum |QPageSize.EnvelopeC1| 89) +(defenum |QPageSize.EnvelopeC2| 90) +(defenum |QPageSize.EnvelopeC3| 91) +(defenum |QPageSize.EnvelopeC4| 92) +(defenum |QPageSize.EnvelopeC5| 24) +(defenum |QPageSize.EnvelopeC65| 94) +(defenum |QPageSize.EnvelopeC6| 93) +(defenum |QPageSize.EnvelopeC7| 95) +(defenum |QPageSize.EnvelopeChou3| 102) +(defenum |QPageSize.EnvelopeChou4| 103) +(defenum |QPageSize.EnvelopeDL| 26) +(defenum |QPageSize.EnvelopeInvite| 104) +(defenum |QPageSize.EnvelopeItalian| 105) +(defenum |QPageSize.EnvelopeKaku2| 106) +(defenum |QPageSize.EnvelopeKaku3| 107) +(defenum |QPageSize.EnvelopeMonarch| 100) +(defenum |QPageSize.EnvelopePersonal| 101) +(defenum |QPageSize.EnvelopePrc10| 117) +(defenum |QPageSize.EnvelopePrc1| 108) +(defenum |QPageSize.EnvelopePrc2| 109) +(defenum |QPageSize.EnvelopePrc3| 110) +(defenum |QPageSize.EnvelopePrc4| 111) +(defenum |QPageSize.EnvelopePrc5| 112) +(defenum |QPageSize.EnvelopePrc6| 113) +(defenum |QPageSize.EnvelopePrc7| 114) +(defenum |QPageSize.EnvelopePrc8| 115) +(defenum |QPageSize.EnvelopePrc9| 116) +(defenum |QPageSize.EnvelopeYou4| 118) +(defenum |QPageSize.ExactMatch| 2) +(defenum |QPageSize.ExecutiveStandard| 71) +(defenum |QPageSize.Executive| 4) +(defenum |QPageSize.FanFoldGermanLegal| 84) +(defenum |QPageSize.FanFoldGerman| 83) +(defenum |QPageSize.FanFoldUS| 82) +(defenum |QPageSize.Folio| 27) +(defenum |QPageSize.FuzzyMatch| 0) +(defenum |QPageSize.FuzzyOrientationMatch| 1) +(defenum |QPageSize.Imperial10x11| 66) +(defenum |QPageSize.Imperial10x13| 67) +(defenum |QPageSize.Imperial10x14| 68) +(defenum |QPageSize.Imperial12x11| 69) +(defenum |QPageSize.Imperial15x11| 70) +(defenum |QPageSize.Imperial7x9| 62) +(defenum |QPageSize.Imperial8x10| 63) +(defenum |QPageSize.Imperial9x11| 64) +(defenum |QPageSize.Imperial9x12| 65) +(defenum |QPageSize.Inch| 2) +(defenum |QPageSize.JisB0| 38) +(defenum |QPageSize.JisB10| 48) +(defenum |QPageSize.JisB1| 39) +(defenum |QPageSize.JisB2| 40) +(defenum |QPageSize.JisB3| 41) +(defenum |QPageSize.JisB4| 42) +(defenum |QPageSize.JisB5| 43) +(defenum |QPageSize.JisB6| 44) +(defenum |QPageSize.JisB7| 45) +(defenum |QPageSize.JisB8| 46) +(defenum |QPageSize.JisB9| 47) +(defenum |QPageSize.LastPageSize| 118) +(defenum |QPageSize.Ledger| 28) +(defenum |QPageSize.LegalExtra| 52) +(defenum |QPageSize.Legal| 3) +(defenum |QPageSize.LetterExtra| 53) +(defenum |QPageSize.LetterPlus| 54) +(defenum |QPageSize.LetterSmall| 55) +(defenum |QPageSize.Letter| 2) +(defenum |QPageSize.Millimeter| 0) +(defenum |QPageSize.Note| 72) +(defenum |QPageSize.Pica| 3) +(defenum |QPageSize.Point| 1) +(defenum |QPageSize.Postcard| 77) +(defenum |QPageSize.Prc16K| 79) +(defenum |QPageSize.Prc32KBig| 81) +(defenum |QPageSize.Prc32K| 80) +(defenum |QPageSize.Quarto| 73) +(defenum |QPageSize.Statement| 74) +(defenum |QPageSize.SuperA| 75) +(defenum |QPageSize.SuperB| 76) +(defenum |QPageSize.TabloidExtra| 56) +(defenum |QPageSize.Tabloid| 29) (defenum |QPagedPaintDevice.A0| 5) (defenum |QPagedPaintDevice.A10| 31) (defenum |QPagedPaintDevice.A1| 6) @@ -1120,147 +1264,3 @@ (defenum |QStyle.SH_DitherDisabledText| 1) (defenum |QStyle.SH_DockWidget_ButtonsHaveFrame| 94) (defenum |QStyle.SH_DrawMenuBarSeparator| 47) -(defenum |QStyle.SH_EtchDisabledText| 0) -(defenum |QStyle.SH_FocusFrame_AboveWidget| 77) -(defenum |QStyle.SH_FocusFrame_Mask| 53) -(defenum |QStyle.SH_FontDialog_SelectAssociatedText| 13) -(defenum |QStyle.SH_FormLayoutFieldGrowthPolicy| 89) -(defenum |QStyle.SH_FormLayoutFormAlignment| 90) -(defenum |QStyle.SH_FormLayoutLabelAlignment| 91) -(defenum |QStyle.SH_FormLayoutWrapPolicy| 86) -(defenum |QStyle.SH_GroupBox_TextLabelColor| 32) -(defenum |QStyle.SH_GroupBox_TextLabelVerticalAlignment| 31) -(defenum |QStyle.SH_Header_ArrowAlignment| 6) -(defenum |QStyle.SH_ItemView_ActivateItemOnSingleClick| 61) -(defenum |QStyle.SH_ItemView_ArrowKeysNavigateIntoChildren| 80) -(defenum |QStyle.SH_ItemView_ChangeHighlightOnFocus| 22) -(defenum |QStyle.SH_ItemView_DrawDelegateFrame| 92) -(defenum |QStyle.SH_ItemView_EllipsisLocation| 59) -(defenum |QStyle.SH_ItemView_MovementWithoutUpdatingSelection| 75) -(defenum |QStyle.SH_ItemView_PaintAlternatingRowColorsForEmptyArea| 85) -(defenum |QStyle.SH_ItemView_ShowDecorationSelected| 60) -(defenum |QStyle.SH_LineEdit_PasswordCharacter| 35) -(defenum |QStyle.SH_LineEdit_PasswordMaskDelay| 104) -(defenum |QStyle.SH_ListViewExpand_SelectMouseType| 40) -(defenum |QStyle.SH_MainWindow_SpaceBelowMenuBar| 12) -(defenum |QStyle.SH_MenuBar_AltKeyNavigation| 18) -(defenum |QStyle.SH_MenuBar_MouseTracking| 21) -(defenum |QStyle.SH_Menu_AllowActiveAndDisabled| 14) -(defenum |QStyle.SH_Menu_FadeOutOnHide| 83) -(defenum |QStyle.SH_Menu_FillScreenWithScroll| 45) -(defenum |QStyle.SH_Menu_FlashTriggeredItem| 82) -(defenum |QStyle.SH_Menu_KeyboardSearch| 66) -(defenum |QStyle.SH_Menu_Mask| 81) -(defenum |QStyle.SH_Menu_MouseTracking| 20) -(defenum |QStyle.SH_Menu_Scrollable| 30) -(defenum |QStyle.SH_Menu_SelectionWrap| 74) -(defenum |QStyle.SH_Menu_SloppySubMenus| 33) -(defenum |QStyle.SH_Menu_SpaceActivatesItem| 15) -(defenum |QStyle.SH_Menu_SubMenuDontStartSloppyOnLeave| 111) -(defenum |QStyle.SH_Menu_SubMenuPopupDelay| 16) -(defenum |QStyle.SH_Menu_SubMenuResetWhenReenteringParent| 110) -(defenum |QStyle.SH_Menu_SubMenuSloppyCloseTimeout| 109) -(defenum |QStyle.SH_Menu_SubMenuSloppySelectOtherActions| 108) -(defenum |QStyle.SH_Menu_SubMenuUniDirectionFailCount| 107) -(defenum |QStyle.SH_Menu_SubMenuUniDirection| 106) -(defenum |QStyle.SH_Menu_SupportsSections| 98) -(defenum |QStyle.SH_MessageBox_CenterButtons| 73) -(defenum |QStyle.SH_MessageBox_TextInteractionFlags| 70) -(defenum |QStyle.SH_MessageBox_UseBorderForButtonSpacing| 50) -(defenum |QStyle.SH_PrintDialog_RightAlignButtons| 11) -(defenum |QStyle.SH_ProgressDialog_CenterCancelButton| 9) -(defenum |QStyle.SH_ProgressDialog_TextLabelAlignment| 10) -(defenum |QStyle.SH_RequestSoftwareInputPanel| 96) -(defenum |QStyle.SH_RichText_FullWidthSelection| 29) -(defenum |QStyle.SH_RubberBand_Mask| 54) -(defenum |QStyle.SH_ScrollBar_ContextMenu| 62) -(defenum |QStyle.SH_ScrollBar_LeftClickAbsolutePosition| 39) -(defenum |QStyle.SH_ScrollBar_MiddleClickAbsolutePosition| 2) -(defenum |QStyle.SH_ScrollBar_RollBetweenButtons| 63) -(defenum |QStyle.SH_ScrollBar_ScrollWhenPointerLeavesControl| 3) -(defenum |QStyle.SH_ScrollBar_StopMouseOverSlider| 27) -(defenum |QStyle.SH_ScrollBar_Transient| 97) -(defenum |QStyle.SH_ScrollView_FrameOnlyAroundContents| 17) -(defenum |QStyle.SH_Slider_AbsoluteSetButtons| 64) -(defenum |QStyle.SH_Slider_PageSetButtons| 65) -(defenum |QStyle.SH_Slider_SloppyKeyEvents| 8) -(defenum |QStyle.SH_Slider_SnapToValue| 7) -(defenum |QStyle.SH_Slider_StopMouseOverSlider| 27) -(defenum |QStyle.SH_SpellCheckUnderlineStyle| 72) -(defenum |QStyle.SH_SpinBox_AnimateButton| 42) -(defenum |QStyle.SH_SpinBox_ClickAutoRepeatRate| 44) -(defenum |QStyle.SH_SpinBox_ClickAutoRepeatThreshold| 84) -(defenum |QStyle.SH_SpinBox_KeyPressAutoRepeatRate| 43) -(defenum |QStyle.SH_SpinControls_DisableOnBounds| 56) -(defenum |QStyle.SH_Splitter_OpaqueResize| 102) -(defenum |QStyle.SH_TabBar_Alignment| 5) -(defenum |QStyle.SH_TabBar_ChangeCurrentDelay| 105) -(defenum |QStyle.SH_TabBar_CloseButtonPosition| 93) -(defenum |QStyle.SH_TabBar_ElideMode| 67) -(defenum |QStyle.SH_TabBar_PreferNoArrows| 38) -(defenum |QStyle.SH_TabBar_SelectMouseType| 4) -(defenum |QStyle.SH_TabWidget_DefaultTabPosition| 87) -(defenum |QStyle.SH_Table_GridLineColor| 34) -(defenum |QStyle.SH_TextControl_FocusIndicatorTextCharFormat| 78) -(defenum |QStyle.SH_TitleBar_AutoRaise| 51) -(defenum |QStyle.SH_TitleBar_ModifyNotification| 48) -(defenum |QStyle.SH_TitleBar_NoBorder| 26) -(defenum |QStyle.SH_ToolBar_Movable| 88) -(defenum |QStyle.SH_ToolBox_SelectedPageTitleBold| 37) -(defenum |QStyle.SH_ToolButtonStyle| 95) -(defenum |QStyle.SH_ToolButton_PopupDelay| 52) -(defenum |QStyle.SH_ToolTipLabel_Opacity| 46) -(defenum |QStyle.SH_ToolTip_FallAsleepDelay| 100) -(defenum |QStyle.SH_ToolTip_Mask| 76) -(defenum |QStyle.SH_ToolTip_WakeUpDelay| 99) -(defenum |QStyle.SH_UnderlineShortcut| 41) -(defenum |QStyle.SH_Widget_Animate| 101) -(defenum |QStyle.SH_Widget_ShareActivation| 23) -(defenum |QStyle.SH_WindowFrame_Mask| 55) -(defenum |QStyle.SH_WizardStyle| 79) -(defenum |QStyle.SH_Workspace_FillSpaceOnMaximize| 24) -(defenum |QStyle.SP_ArrowBack| 54) -(defenum |QStyle.SP_ArrowDown| 51) -(defenum |QStyle.SP_ArrowForward| 55) -(defenum |QStyle.SP_ArrowLeft| 52) -(defenum |QStyle.SP_ArrowRight| 53) -(defenum |QStyle.SP_ArrowUp| 50) -(defenum |QStyle.SP_BrowserReload| 59) -(defenum |QStyle.SP_BrowserStop| 60) -(defenum |QStyle.SP_CommandLink| 57) -(defenum |QStyle.SP_ComputerIcon| 15) -(defenum |QStyle.SP_CustomBase| -268435456) -(defenum |QStyle.SP_DesktopIcon| 13) -(defenum |QStyle.SP_DialogApplyButton| 45) -(defenum |QStyle.SP_DialogCancelButton| 40) -(defenum |QStyle.SP_DialogCloseButton| 44) -(defenum |QStyle.SP_DialogDiscardButton| 47) -(defenum |QStyle.SP_DialogHelpButton| 41) -(defenum |QStyle.SP_DialogNoButton| 49) -(defenum |QStyle.SP_DialogOkButton| 39) -(defenum |QStyle.SP_DialogOpenButton| 42) -(defenum |QStyle.SP_DialogResetButton| 46) -(defenum |QStyle.SP_DialogSaveButton| 43) -(defenum |QStyle.SP_DialogYesButton| 48) -(defenum |QStyle.SP_DirClosedIcon| 22) -(defenum |QStyle.SP_DirHomeIcon| 56) -(defenum |QStyle.SP_DirIcon| 38) -(defenum |QStyle.SP_DirLinkIcon| 23) -(defenum |QStyle.SP_DirLinkOpenIcon| 24) -(defenum |QStyle.SP_DirOpenIcon| 21) -(defenum |QStyle.SP_DockWidgetCloseButton| 8) -(defenum |QStyle.SP_DriveCDIcon| 18) -(defenum |QStyle.SP_DriveDVDIcon| 19) -(defenum |QStyle.SP_DriveFDIcon| 16) -(defenum |QStyle.SP_DriveHDIcon| 17) -(defenum |QStyle.SP_DriveNetIcon| 20) -(defenum |QStyle.SP_FileDialogBack| 37) -(defenum |QStyle.SP_FileDialogContentsView| 35) -(defenum |QStyle.SP_FileDialogDetailedView| 33) -(defenum |QStyle.SP_FileDialogEnd| 30) -(defenum |QStyle.SP_FileDialogInfoView| 34) -(defenum |QStyle.SP_FileDialogListView| 36) -(defenum |QStyle.SP_FileDialogNewFolder| 32) -(defenum |QStyle.SP_FileDialogStart| 29) -(defenum |QStyle.SP_FileDialogToParent| 31) -(defenum |QStyle.SP_FileIcon| 25) diff --git a/src/lisp/enums4.lisp b/src/lisp/enums4.lisp index 035a6e3..64ed125 100644 --- a/src/lisp/enums4.lisp +++ b/src/lisp/enums4.lisp @@ -14,6 +14,150 @@ (defconstant ,name ,value) (export ',name ,(find-package :eql)))) +(defenum |QStyle.SH_EtchDisabledText| 0) +(defenum |QStyle.SH_FocusFrame_AboveWidget| 77) +(defenum |QStyle.SH_FocusFrame_Mask| 53) +(defenum |QStyle.SH_FontDialog_SelectAssociatedText| 13) +(defenum |QStyle.SH_FormLayoutFieldGrowthPolicy| 89) +(defenum |QStyle.SH_FormLayoutFormAlignment| 90) +(defenum |QStyle.SH_FormLayoutLabelAlignment| 91) +(defenum |QStyle.SH_FormLayoutWrapPolicy| 86) +(defenum |QStyle.SH_GroupBox_TextLabelColor| 32) +(defenum |QStyle.SH_GroupBox_TextLabelVerticalAlignment| 31) +(defenum |QStyle.SH_Header_ArrowAlignment| 6) +(defenum |QStyle.SH_ItemView_ActivateItemOnSingleClick| 61) +(defenum |QStyle.SH_ItemView_ArrowKeysNavigateIntoChildren| 80) +(defenum |QStyle.SH_ItemView_ChangeHighlightOnFocus| 22) +(defenum |QStyle.SH_ItemView_DrawDelegateFrame| 92) +(defenum |QStyle.SH_ItemView_EllipsisLocation| 59) +(defenum |QStyle.SH_ItemView_MovementWithoutUpdatingSelection| 75) +(defenum |QStyle.SH_ItemView_PaintAlternatingRowColorsForEmptyArea| 85) +(defenum |QStyle.SH_ItemView_ShowDecorationSelected| 60) +(defenum |QStyle.SH_LineEdit_PasswordCharacter| 35) +(defenum |QStyle.SH_LineEdit_PasswordMaskDelay| 104) +(defenum |QStyle.SH_ListViewExpand_SelectMouseType| 40) +(defenum |QStyle.SH_MainWindow_SpaceBelowMenuBar| 12) +(defenum |QStyle.SH_MenuBar_AltKeyNavigation| 18) +(defenum |QStyle.SH_MenuBar_MouseTracking| 21) +(defenum |QStyle.SH_Menu_AllowActiveAndDisabled| 14) +(defenum |QStyle.SH_Menu_FadeOutOnHide| 83) +(defenum |QStyle.SH_Menu_FillScreenWithScroll| 45) +(defenum |QStyle.SH_Menu_FlashTriggeredItem| 82) +(defenum |QStyle.SH_Menu_KeyboardSearch| 66) +(defenum |QStyle.SH_Menu_Mask| 81) +(defenum |QStyle.SH_Menu_MouseTracking| 20) +(defenum |QStyle.SH_Menu_Scrollable| 30) +(defenum |QStyle.SH_Menu_SelectionWrap| 74) +(defenum |QStyle.SH_Menu_SloppySubMenus| 33) +(defenum |QStyle.SH_Menu_SpaceActivatesItem| 15) +(defenum |QStyle.SH_Menu_SubMenuDontStartSloppyOnLeave| 111) +(defenum |QStyle.SH_Menu_SubMenuPopupDelay| 16) +(defenum |QStyle.SH_Menu_SubMenuResetWhenReenteringParent| 110) +(defenum |QStyle.SH_Menu_SubMenuSloppyCloseTimeout| 109) +(defenum |QStyle.SH_Menu_SubMenuSloppySelectOtherActions| 108) +(defenum |QStyle.SH_Menu_SubMenuUniDirectionFailCount| 107) +(defenum |QStyle.SH_Menu_SubMenuUniDirection| 106) +(defenum |QStyle.SH_Menu_SupportsSections| 98) +(defenum |QStyle.SH_MessageBox_CenterButtons| 73) +(defenum |QStyle.SH_MessageBox_TextInteractionFlags| 70) +(defenum |QStyle.SH_MessageBox_UseBorderForButtonSpacing| 50) +(defenum |QStyle.SH_PrintDialog_RightAlignButtons| 11) +(defenum |QStyle.SH_ProgressDialog_CenterCancelButton| 9) +(defenum |QStyle.SH_ProgressDialog_TextLabelAlignment| 10) +(defenum |QStyle.SH_RequestSoftwareInputPanel| 96) +(defenum |QStyle.SH_RichText_FullWidthSelection| 29) +(defenum |QStyle.SH_RubberBand_Mask| 54) +(defenum |QStyle.SH_ScrollBar_ContextMenu| 62) +(defenum |QStyle.SH_ScrollBar_LeftClickAbsolutePosition| 39) +(defenum |QStyle.SH_ScrollBar_MiddleClickAbsolutePosition| 2) +(defenum |QStyle.SH_ScrollBar_RollBetweenButtons| 63) +(defenum |QStyle.SH_ScrollBar_ScrollWhenPointerLeavesControl| 3) +(defenum |QStyle.SH_ScrollBar_StopMouseOverSlider| 27) +(defenum |QStyle.SH_ScrollBar_Transient| 97) +(defenum |QStyle.SH_ScrollView_FrameOnlyAroundContents| 17) +(defenum |QStyle.SH_Slider_AbsoluteSetButtons| 64) +(defenum |QStyle.SH_Slider_PageSetButtons| 65) +(defenum |QStyle.SH_Slider_SloppyKeyEvents| 8) +(defenum |QStyle.SH_Slider_SnapToValue| 7) +(defenum |QStyle.SH_Slider_StopMouseOverSlider| 27) +(defenum |QStyle.SH_SpellCheckUnderlineStyle| 72) +(defenum |QStyle.SH_SpinBox_AnimateButton| 42) +(defenum |QStyle.SH_SpinBox_ClickAutoRepeatRate| 44) +(defenum |QStyle.SH_SpinBox_ClickAutoRepeatThreshold| 84) +(defenum |QStyle.SH_SpinBox_KeyPressAutoRepeatRate| 43) +(defenum |QStyle.SH_SpinControls_DisableOnBounds| 56) +(defenum |QStyle.SH_Splitter_OpaqueResize| 102) +(defenum |QStyle.SH_TabBar_Alignment| 5) +(defenum |QStyle.SH_TabBar_ChangeCurrentDelay| 105) +(defenum |QStyle.SH_TabBar_CloseButtonPosition| 93) +(defenum |QStyle.SH_TabBar_ElideMode| 67) +(defenum |QStyle.SH_TabBar_PreferNoArrows| 38) +(defenum |QStyle.SH_TabBar_SelectMouseType| 4) +(defenum |QStyle.SH_TabWidget_DefaultTabPosition| 87) +(defenum |QStyle.SH_Table_GridLineColor| 34) +(defenum |QStyle.SH_TextControl_FocusIndicatorTextCharFormat| 78) +(defenum |QStyle.SH_TitleBar_AutoRaise| 51) +(defenum |QStyle.SH_TitleBar_ModifyNotification| 48) +(defenum |QStyle.SH_TitleBar_NoBorder| 26) +(defenum |QStyle.SH_ToolBar_Movable| 88) +(defenum |QStyle.SH_ToolBox_SelectedPageTitleBold| 37) +(defenum |QStyle.SH_ToolButtonStyle| 95) +(defenum |QStyle.SH_ToolButton_PopupDelay| 52) +(defenum |QStyle.SH_ToolTipLabel_Opacity| 46) +(defenum |QStyle.SH_ToolTip_FallAsleepDelay| 100) +(defenum |QStyle.SH_ToolTip_Mask| 76) +(defenum |QStyle.SH_ToolTip_WakeUpDelay| 99) +(defenum |QStyle.SH_UnderlineShortcut| 41) +(defenum |QStyle.SH_Widget_Animate| 101) +(defenum |QStyle.SH_Widget_ShareActivation| 23) +(defenum |QStyle.SH_WindowFrame_Mask| 55) +(defenum |QStyle.SH_WizardStyle| 79) +(defenum |QStyle.SH_Workspace_FillSpaceOnMaximize| 24) +(defenum |QStyle.SP_ArrowBack| 54) +(defenum |QStyle.SP_ArrowDown| 51) +(defenum |QStyle.SP_ArrowForward| 55) +(defenum |QStyle.SP_ArrowLeft| 52) +(defenum |QStyle.SP_ArrowRight| 53) +(defenum |QStyle.SP_ArrowUp| 50) +(defenum |QStyle.SP_BrowserReload| 59) +(defenum |QStyle.SP_BrowserStop| 60) +(defenum |QStyle.SP_CommandLink| 57) +(defenum |QStyle.SP_ComputerIcon| 15) +(defenum |QStyle.SP_CustomBase| -268435456) +(defenum |QStyle.SP_DesktopIcon| 13) +(defenum |QStyle.SP_DialogApplyButton| 45) +(defenum |QStyle.SP_DialogCancelButton| 40) +(defenum |QStyle.SP_DialogCloseButton| 44) +(defenum |QStyle.SP_DialogDiscardButton| 47) +(defenum |QStyle.SP_DialogHelpButton| 41) +(defenum |QStyle.SP_DialogNoButton| 49) +(defenum |QStyle.SP_DialogOkButton| 39) +(defenum |QStyle.SP_DialogOpenButton| 42) +(defenum |QStyle.SP_DialogResetButton| 46) +(defenum |QStyle.SP_DialogSaveButton| 43) +(defenum |QStyle.SP_DialogYesButton| 48) +(defenum |QStyle.SP_DirClosedIcon| 22) +(defenum |QStyle.SP_DirHomeIcon| 56) +(defenum |QStyle.SP_DirIcon| 38) +(defenum |QStyle.SP_DirLinkIcon| 23) +(defenum |QStyle.SP_DirLinkOpenIcon| 24) +(defenum |QStyle.SP_DirOpenIcon| 21) +(defenum |QStyle.SP_DockWidgetCloseButton| 8) +(defenum |QStyle.SP_DriveCDIcon| 18) +(defenum |QStyle.SP_DriveDVDIcon| 19) +(defenum |QStyle.SP_DriveFDIcon| 16) +(defenum |QStyle.SP_DriveHDIcon| 17) +(defenum |QStyle.SP_DriveNetIcon| 20) +(defenum |QStyle.SP_FileDialogBack| 37) +(defenum |QStyle.SP_FileDialogContentsView| 35) +(defenum |QStyle.SP_FileDialogDetailedView| 33) +(defenum |QStyle.SP_FileDialogEnd| 30) +(defenum |QStyle.SP_FileDialogInfoView| 34) +(defenum |QStyle.SP_FileDialogListView| 36) +(defenum |QStyle.SP_FileDialogNewFolder| 32) +(defenum |QStyle.SP_FileDialogStart| 29) +(defenum |QStyle.SP_FileDialogToParent| 31) +(defenum |QStyle.SP_FileIcon| 25) (defenum |QStyle.SP_FileLinkIcon| 26) (defenum |QStyle.SP_LineEditClearButton| 70) (defenum |QStyle.SP_MediaPause| 63) @@ -1120,147 +1264,3 @@ (defenum |Qt.Key_Dollar| 36) (defenum |Qt.Key_Down| 16777237) (defenum |Qt.Key_D| 68) -(defenum |Qt.Key_ETH| 208) -(defenum |Qt.Key_Eacute| 201) -(defenum |Qt.Key_Ecircumflex| 202) -(defenum |Qt.Key_Ediaeresis| 203) -(defenum |Qt.Key_Egrave| 200) -(defenum |Qt.Key_Eisu_Shift| 16781615) -(defenum |Qt.Key_Eisu_toggle| 16781616) -(defenum |Qt.Key_Eject| 16777401) -(defenum |Qt.Key_End| 16777233) -(defenum |Qt.Key_Enter| 16777221) -(defenum |Qt.Key_Equal| 61) -(defenum |Qt.Key_Escape| 16777216) -(defenum |Qt.Key_Excel| 16777428) -(defenum |Qt.Key_Exclam| 33) -(defenum |Qt.Key_Execute| 16908291) -(defenum |Qt.Key_Exit| 16908298) -(defenum |Qt.Key_Explorer| 16777429) -(defenum |Qt.Key_E| 69) -(defenum |Qt.Key_F10| 16777273) -(defenum |Qt.Key_F11| 16777274) -(defenum |Qt.Key_F12| 16777275) -(defenum |Qt.Key_F13| 16777276) -(defenum |Qt.Key_F14| 16777277) -(defenum |Qt.Key_F15| 16777278) -(defenum |Qt.Key_F16| 16777279) -(defenum |Qt.Key_F17| 16777280) -(defenum |Qt.Key_F18| 16777281) -(defenum |Qt.Key_F19| 16777282) -(defenum |Qt.Key_F1| 16777264) -(defenum |Qt.Key_F20| 16777283) -(defenum |Qt.Key_F21| 16777284) -(defenum |Qt.Key_F22| 16777285) -(defenum |Qt.Key_F23| 16777286) -(defenum |Qt.Key_F24| 16777287) -(defenum |Qt.Key_F25| 16777288) -(defenum |Qt.Key_F26| 16777289) -(defenum |Qt.Key_F27| 16777290) -(defenum |Qt.Key_F28| 16777291) -(defenum |Qt.Key_F29| 16777292) -(defenum |Qt.Key_F2| 16777265) -(defenum |Qt.Key_F30| 16777293) -(defenum |Qt.Key_F31| 16777294) -(defenum |Qt.Key_F32| 16777295) -(defenum |Qt.Key_F33| 16777296) -(defenum |Qt.Key_F34| 16777297) -(defenum |Qt.Key_F35| 16777298) -(defenum |Qt.Key_F3| 16777266) -(defenum |Qt.Key_F4| 16777267) -(defenum |Qt.Key_F5| 16777268) -(defenum |Qt.Key_F6| 16777269) -(defenum |Qt.Key_F7| 16777270) -(defenum |Qt.Key_F8| 16777271) -(defenum |Qt.Key_F9| 16777272) -(defenum |Qt.Key_Favorites| 16777361) -(defenum |Qt.Key_Finance| 16777411) -(defenum |Qt.Key_Find| 16777506) -(defenum |Qt.Key_Flip| 17825798) -(defenum |Qt.Key_Forward| 16777314) -(defenum |Qt.Key_F| 70) -(defenum |Qt.Key_Game| 16777430) -(defenum |Qt.Key_Go| 16777431) -(defenum |Qt.Key_Greater| 62) -(defenum |Qt.Key_Green| 16777493) -(defenum |Qt.Key_Guide| 16777498) -(defenum |Qt.Key_G| 71) -(defenum |Qt.Key_Hangul_Banja| 16781625) -(defenum |Qt.Key_Hangul_End| 16781619) -(defenum |Qt.Key_Hangul_Hanja| 16781620) -(defenum |Qt.Key_Hangul_Jamo| 16781621) -(defenum |Qt.Key_Hangul_Jeonja| 16781624) -(defenum |Qt.Key_Hangul_PostHanja| 16781627) -(defenum |Qt.Key_Hangul_PreHanja| 16781626) -(defenum |Qt.Key_Hangul_Romaja| 16781622) -(defenum |Qt.Key_Hangul_Special| 16781631) -(defenum |Qt.Key_Hangul_Start| 16781618) -(defenum |Qt.Key_Hangul| 16781617) -(defenum |Qt.Key_Hangup| 17825797) -(defenum |Qt.Key_Hankaku| 16781609) -(defenum |Qt.Key_Help| 16777304) -(defenum |Qt.Key_Henkan| 16781603) -(defenum |Qt.Key_Hibernate| 16777480) -(defenum |Qt.Key_Hiragana_Katakana| 16781607) -(defenum |Qt.Key_Hiragana| 16781605) -(defenum |Qt.Key_History| 16777407) -(defenum |Qt.Key_HomePage| 16777360) -(defenum |Qt.Key_Home| 16777232) -(defenum |Qt.Key_HotLinks| 16777409) -(defenum |Qt.Key_Hyper_L| 16777302) -(defenum |Qt.Key_Hyper_R| 16777303) -(defenum |Qt.Key_H| 72) -(defenum |Qt.Key_Iacute| 205) -(defenum |Qt.Key_Icircumflex| 206) -(defenum |Qt.Key_Idiaeresis| 207) -(defenum |Qt.Key_Igrave| 204) -(defenum |Qt.Key_Info| 16777499) -(defenum |Qt.Key_Insert| 16777222) -(defenum |Qt.Key_I| 73) -(defenum |Qt.Key_J| 74) -(defenum |Qt.Key_Kana_Lock| 16781613) -(defenum |Qt.Key_Kana_Shift| 16781614) -(defenum |Qt.Key_Kanji| 16781601) -(defenum |Qt.Key_Katakana| 16781606) -(defenum |Qt.Key_KeyboardBrightnessDown| 16777398) -(defenum |Qt.Key_KeyboardBrightnessUp| 16777397) -(defenum |Qt.Key_KeyboardLightOnOff| 16777396) -(defenum |Qt.Key_K| 75) -(defenum |Qt.Key_LastNumberRedial| 17825801) -(defenum |Qt.Key_Launch0| 16777378) -(defenum |Qt.Key_Launch1| 16777379) -(defenum |Qt.Key_Launch2| 16777380) -(defenum |Qt.Key_Launch3| 16777381) -(defenum |Qt.Key_Launch4| 16777382) -(defenum |Qt.Key_Launch5| 16777383) -(defenum |Qt.Key_Launch6| 16777384) -(defenum |Qt.Key_Launch7| 16777385) -(defenum |Qt.Key_Launch8| 16777386) -(defenum |Qt.Key_Launch9| 16777387) -(defenum |Qt.Key_LaunchA| 16777388) -(defenum |Qt.Key_LaunchB| 16777389) -(defenum |Qt.Key_LaunchC| 16777390) -(defenum |Qt.Key_LaunchD| 16777391) -(defenum |Qt.Key_LaunchE| 16777392) -(defenum |Qt.Key_LaunchF| 16777393) -(defenum |Qt.Key_LaunchG| 16777486) -(defenum |Qt.Key_LaunchH| 16777487) -(defenum |Qt.Key_LaunchMail| 16777376) -(defenum |Qt.Key_LaunchMedia| 16777377) -(defenum |Qt.Key_Left| 16777234) -(defenum |Qt.Key_Less| 60) -(defenum |Qt.Key_LightBulb| 16777405) -(defenum |Qt.Key_LogOff| 16777433) -(defenum |Qt.Key_L| 76) -(defenum |Qt.Key_MailForward| 16777467) -(defenum |Qt.Key_Market| 16777434) -(defenum |Qt.Key_Massyo| 16781612) -(defenum |Qt.Key_MediaLast| 16842751) -(defenum |Qt.Key_MediaNext| 16777347) -(defenum |Qt.Key_MediaPause| 16777349) -(defenum |Qt.Key_MediaPlay| 16777344) -(defenum |Qt.Key_MediaPrevious| 16777346) -(defenum |Qt.Key_MediaRecord| 16777348) -(defenum |Qt.Key_MediaStop| 16777345) -(defenum |Qt.Key_MediaTogglePlayPause| 16777350) -(defenum |Qt.Key_Meeting| 16777435) diff --git a/src/lisp/enums5.lisp b/src/lisp/enums5.lisp index ac16a0f..ec8fe44 100644 --- a/src/lisp/enums5.lisp +++ b/src/lisp/enums5.lisp @@ -14,6 +14,150 @@ (defconstant ,name ,value) (export ',name ,(find-package :eql)))) +(defenum |Qt.Key_ETH| 208) +(defenum |Qt.Key_Eacute| 201) +(defenum |Qt.Key_Ecircumflex| 202) +(defenum |Qt.Key_Ediaeresis| 203) +(defenum |Qt.Key_Egrave| 200) +(defenum |Qt.Key_Eisu_Shift| 16781615) +(defenum |Qt.Key_Eisu_toggle| 16781616) +(defenum |Qt.Key_Eject| 16777401) +(defenum |Qt.Key_End| 16777233) +(defenum |Qt.Key_Enter| 16777221) +(defenum |Qt.Key_Equal| 61) +(defenum |Qt.Key_Escape| 16777216) +(defenum |Qt.Key_Excel| 16777428) +(defenum |Qt.Key_Exclam| 33) +(defenum |Qt.Key_Execute| 16908291) +(defenum |Qt.Key_Exit| 16908298) +(defenum |Qt.Key_Explorer| 16777429) +(defenum |Qt.Key_E| 69) +(defenum |Qt.Key_F10| 16777273) +(defenum |Qt.Key_F11| 16777274) +(defenum |Qt.Key_F12| 16777275) +(defenum |Qt.Key_F13| 16777276) +(defenum |Qt.Key_F14| 16777277) +(defenum |Qt.Key_F15| 16777278) +(defenum |Qt.Key_F16| 16777279) +(defenum |Qt.Key_F17| 16777280) +(defenum |Qt.Key_F18| 16777281) +(defenum |Qt.Key_F19| 16777282) +(defenum |Qt.Key_F1| 16777264) +(defenum |Qt.Key_F20| 16777283) +(defenum |Qt.Key_F21| 16777284) +(defenum |Qt.Key_F22| 16777285) +(defenum |Qt.Key_F23| 16777286) +(defenum |Qt.Key_F24| 16777287) +(defenum |Qt.Key_F25| 16777288) +(defenum |Qt.Key_F26| 16777289) +(defenum |Qt.Key_F27| 16777290) +(defenum |Qt.Key_F28| 16777291) +(defenum |Qt.Key_F29| 16777292) +(defenum |Qt.Key_F2| 16777265) +(defenum |Qt.Key_F30| 16777293) +(defenum |Qt.Key_F31| 16777294) +(defenum |Qt.Key_F32| 16777295) +(defenum |Qt.Key_F33| 16777296) +(defenum |Qt.Key_F34| 16777297) +(defenum |Qt.Key_F35| 16777298) +(defenum |Qt.Key_F3| 16777266) +(defenum |Qt.Key_F4| 16777267) +(defenum |Qt.Key_F5| 16777268) +(defenum |Qt.Key_F6| 16777269) +(defenum |Qt.Key_F7| 16777270) +(defenum |Qt.Key_F8| 16777271) +(defenum |Qt.Key_F9| 16777272) +(defenum |Qt.Key_Favorites| 16777361) +(defenum |Qt.Key_Finance| 16777411) +(defenum |Qt.Key_Find| 16777506) +(defenum |Qt.Key_Flip| 17825798) +(defenum |Qt.Key_Forward| 16777314) +(defenum |Qt.Key_F| 70) +(defenum |Qt.Key_Game| 16777430) +(defenum |Qt.Key_Go| 16777431) +(defenum |Qt.Key_Greater| 62) +(defenum |Qt.Key_Green| 16777493) +(defenum |Qt.Key_Guide| 16777498) +(defenum |Qt.Key_G| 71) +(defenum |Qt.Key_Hangul_Banja| 16781625) +(defenum |Qt.Key_Hangul_End| 16781619) +(defenum |Qt.Key_Hangul_Hanja| 16781620) +(defenum |Qt.Key_Hangul_Jamo| 16781621) +(defenum |Qt.Key_Hangul_Jeonja| 16781624) +(defenum |Qt.Key_Hangul_PostHanja| 16781627) +(defenum |Qt.Key_Hangul_PreHanja| 16781626) +(defenum |Qt.Key_Hangul_Romaja| 16781622) +(defenum |Qt.Key_Hangul_Special| 16781631) +(defenum |Qt.Key_Hangul_Start| 16781618) +(defenum |Qt.Key_Hangul| 16781617) +(defenum |Qt.Key_Hangup| 17825797) +(defenum |Qt.Key_Hankaku| 16781609) +(defenum |Qt.Key_Help| 16777304) +(defenum |Qt.Key_Henkan| 16781603) +(defenum |Qt.Key_Hibernate| 16777480) +(defenum |Qt.Key_Hiragana_Katakana| 16781607) +(defenum |Qt.Key_Hiragana| 16781605) +(defenum |Qt.Key_History| 16777407) +(defenum |Qt.Key_HomePage| 16777360) +(defenum |Qt.Key_Home| 16777232) +(defenum |Qt.Key_HotLinks| 16777409) +(defenum |Qt.Key_Hyper_L| 16777302) +(defenum |Qt.Key_Hyper_R| 16777303) +(defenum |Qt.Key_H| 72) +(defenum |Qt.Key_Iacute| 205) +(defenum |Qt.Key_Icircumflex| 206) +(defenum |Qt.Key_Idiaeresis| 207) +(defenum |Qt.Key_Igrave| 204) +(defenum |Qt.Key_Info| 16777499) +(defenum |Qt.Key_Insert| 16777222) +(defenum |Qt.Key_I| 73) +(defenum |Qt.Key_J| 74) +(defenum |Qt.Key_Kana_Lock| 16781613) +(defenum |Qt.Key_Kana_Shift| 16781614) +(defenum |Qt.Key_Kanji| 16781601) +(defenum |Qt.Key_Katakana| 16781606) +(defenum |Qt.Key_KeyboardBrightnessDown| 16777398) +(defenum |Qt.Key_KeyboardBrightnessUp| 16777397) +(defenum |Qt.Key_KeyboardLightOnOff| 16777396) +(defenum |Qt.Key_K| 75) +(defenum |Qt.Key_LastNumberRedial| 17825801) +(defenum |Qt.Key_Launch0| 16777378) +(defenum |Qt.Key_Launch1| 16777379) +(defenum |Qt.Key_Launch2| 16777380) +(defenum |Qt.Key_Launch3| 16777381) +(defenum |Qt.Key_Launch4| 16777382) +(defenum |Qt.Key_Launch5| 16777383) +(defenum |Qt.Key_Launch6| 16777384) +(defenum |Qt.Key_Launch7| 16777385) +(defenum |Qt.Key_Launch8| 16777386) +(defenum |Qt.Key_Launch9| 16777387) +(defenum |Qt.Key_LaunchA| 16777388) +(defenum |Qt.Key_LaunchB| 16777389) +(defenum |Qt.Key_LaunchC| 16777390) +(defenum |Qt.Key_LaunchD| 16777391) +(defenum |Qt.Key_LaunchE| 16777392) +(defenum |Qt.Key_LaunchF| 16777393) +(defenum |Qt.Key_LaunchG| 16777486) +(defenum |Qt.Key_LaunchH| 16777487) +(defenum |Qt.Key_LaunchMail| 16777376) +(defenum |Qt.Key_LaunchMedia| 16777377) +(defenum |Qt.Key_Left| 16777234) +(defenum |Qt.Key_Less| 60) +(defenum |Qt.Key_LightBulb| 16777405) +(defenum |Qt.Key_LogOff| 16777433) +(defenum |Qt.Key_L| 76) +(defenum |Qt.Key_MailForward| 16777467) +(defenum |Qt.Key_Market| 16777434) +(defenum |Qt.Key_Massyo| 16781612) +(defenum |Qt.Key_MediaLast| 16842751) +(defenum |Qt.Key_MediaNext| 16777347) +(defenum |Qt.Key_MediaPause| 16777349) +(defenum |Qt.Key_MediaPlay| 16777344) +(defenum |Qt.Key_MediaPrevious| 16777346) +(defenum |Qt.Key_MediaRecord| 16777348) +(defenum |Qt.Key_MediaStop| 16777345) +(defenum |Qt.Key_MediaTogglePlayPause| 16777350) +(defenum |Qt.Key_Meeting| 16777435) (defenum |Qt.Key_Memo| 16777404) (defenum |Qt.Key_MenuKB| 16777436) (defenum |Qt.Key_MenuPB| 16777437) diff --git a/src/lisp/merged-enums.lisp b/src/lisp/merged-enums.lisp index dd76a44..986be64 100644 --- a/src/lisp/merged-enums.lisp +++ b/src/lisp/merged-enums.lisp @@ -2620,6 +2620,150 @@ (defenum |QOpenGLWindow.NoPartialUpdate| 0) (defenum |QOpenGLWindow.PartialUpdateBlend| 2) (defenum |QOpenGLWindow.PartialUpdateBlit| 1) +(defenum |QPageLayout.Cicero| 5) +(defenum |QPageLayout.Didot| 4) +(defenum |QPageLayout.FullPageMode| 1) +(defenum |QPageLayout.Inch| 2) +(defenum |QPageLayout.Landscape| 1) +(defenum |QPageLayout.Millimeter| 0) +(defenum |QPageLayout.Pica| 3) +(defenum |QPageLayout.Point| 1) +(defenum |QPageLayout.Portrait| 0) +(defenum |QPageLayout.StandardMode| 0) +(defenum |QPageSize.A0| 5) +(defenum |QPageSize.A10| 31) +(defenum |QPageSize.A1| 6) +(defenum |QPageSize.A2| 7) +(defenum |QPageSize.A3Extra| 32) +(defenum |QPageSize.A3| 8) +(defenum |QPageSize.A4Extra| 33) +(defenum |QPageSize.A4Plus| 34) +(defenum |QPageSize.A4Small| 35) +(defenum |QPageSize.A4| 0) +(defenum |QPageSize.A5Extra| 36) +(defenum |QPageSize.A5| 9) +(defenum |QPageSize.A6| 10) +(defenum |QPageSize.A7| 11) +(defenum |QPageSize.A8| 12) +(defenum |QPageSize.A9| 13) +(defenum |QPageSize.AnsiA| 2) +(defenum |QPageSize.AnsiB| 28) +(defenum |QPageSize.AnsiC| 49) +(defenum |QPageSize.AnsiD| 50) +(defenum |QPageSize.AnsiE| 51) +(defenum |QPageSize.ArchA| 57) +(defenum |QPageSize.ArchB| 58) +(defenum |QPageSize.ArchC| 59) +(defenum |QPageSize.ArchD| 60) +(defenum |QPageSize.ArchE| 61) +(defenum |QPageSize.B0| 14) +(defenum |QPageSize.B10| 16) +(defenum |QPageSize.B1| 15) +(defenum |QPageSize.B2| 17) +(defenum |QPageSize.B3| 18) +(defenum |QPageSize.B4| 19) +(defenum |QPageSize.B5Extra| 37) +(defenum |QPageSize.B5| 1) +(defenum |QPageSize.B6| 20) +(defenum |QPageSize.B7| 21) +(defenum |QPageSize.B8| 22) +(defenum |QPageSize.B9| 23) +(defenum |QPageSize.C5E| 24) +(defenum |QPageSize.Cicero| 5) +(defenum |QPageSize.Comm10E| 25) +(defenum |QPageSize.Custom| 30) +(defenum |QPageSize.DLE| 26) +(defenum |QPageSize.Didot| 4) +(defenum |QPageSize.DoublePostcard| 78) +(defenum |QPageSize.Envelope10| 25) +(defenum |QPageSize.Envelope11| 97) +(defenum |QPageSize.Envelope12| 98) +(defenum |QPageSize.Envelope14| 99) +(defenum |QPageSize.Envelope9| 96) +(defenum |QPageSize.EnvelopeB4| 85) +(defenum |QPageSize.EnvelopeB5| 86) +(defenum |QPageSize.EnvelopeB6| 87) +(defenum |QPageSize.EnvelopeC0| 88) +(defenum |QPageSize.EnvelopeC1| 89) +(defenum |QPageSize.EnvelopeC2| 90) +(defenum |QPageSize.EnvelopeC3| 91) +(defenum |QPageSize.EnvelopeC4| 92) +(defenum |QPageSize.EnvelopeC5| 24) +(defenum |QPageSize.EnvelopeC65| 94) +(defenum |QPageSize.EnvelopeC6| 93) +(defenum |QPageSize.EnvelopeC7| 95) +(defenum |QPageSize.EnvelopeChou3| 102) +(defenum |QPageSize.EnvelopeChou4| 103) +(defenum |QPageSize.EnvelopeDL| 26) +(defenum |QPageSize.EnvelopeInvite| 104) +(defenum |QPageSize.EnvelopeItalian| 105) +(defenum |QPageSize.EnvelopeKaku2| 106) +(defenum |QPageSize.EnvelopeKaku3| 107) +(defenum |QPageSize.EnvelopeMonarch| 100) +(defenum |QPageSize.EnvelopePersonal| 101) +(defenum |QPageSize.EnvelopePrc10| 117) +(defenum |QPageSize.EnvelopePrc1| 108) +(defenum |QPageSize.EnvelopePrc2| 109) +(defenum |QPageSize.EnvelopePrc3| 110) +(defenum |QPageSize.EnvelopePrc4| 111) +(defenum |QPageSize.EnvelopePrc5| 112) +(defenum |QPageSize.EnvelopePrc6| 113) +(defenum |QPageSize.EnvelopePrc7| 114) +(defenum |QPageSize.EnvelopePrc8| 115) +(defenum |QPageSize.EnvelopePrc9| 116) +(defenum |QPageSize.EnvelopeYou4| 118) +(defenum |QPageSize.ExactMatch| 2) +(defenum |QPageSize.ExecutiveStandard| 71) +(defenum |QPageSize.Executive| 4) +(defenum |QPageSize.FanFoldGermanLegal| 84) +(defenum |QPageSize.FanFoldGerman| 83) +(defenum |QPageSize.FanFoldUS| 82) +(defenum |QPageSize.Folio| 27) +(defenum |QPageSize.FuzzyMatch| 0) +(defenum |QPageSize.FuzzyOrientationMatch| 1) +(defenum |QPageSize.Imperial10x11| 66) +(defenum |QPageSize.Imperial10x13| 67) +(defenum |QPageSize.Imperial10x14| 68) +(defenum |QPageSize.Imperial12x11| 69) +(defenum |QPageSize.Imperial15x11| 70) +(defenum |QPageSize.Imperial7x9| 62) +(defenum |QPageSize.Imperial8x10| 63) +(defenum |QPageSize.Imperial9x11| 64) +(defenum |QPageSize.Imperial9x12| 65) +(defenum |QPageSize.Inch| 2) +(defenum |QPageSize.JisB0| 38) +(defenum |QPageSize.JisB10| 48) +(defenum |QPageSize.JisB1| 39) +(defenum |QPageSize.JisB2| 40) +(defenum |QPageSize.JisB3| 41) +(defenum |QPageSize.JisB4| 42) +(defenum |QPageSize.JisB5| 43) +(defenum |QPageSize.JisB6| 44) +(defenum |QPageSize.JisB7| 45) +(defenum |QPageSize.JisB8| 46) +(defenum |QPageSize.JisB9| 47) +(defenum |QPageSize.LastPageSize| 118) +(defenum |QPageSize.Ledger| 28) +(defenum |QPageSize.LegalExtra| 52) +(defenum |QPageSize.Legal| 3) +(defenum |QPageSize.LetterExtra| 53) +(defenum |QPageSize.LetterPlus| 54) +(defenum |QPageSize.LetterSmall| 55) +(defenum |QPageSize.Letter| 2) +(defenum |QPageSize.Millimeter| 0) +(defenum |QPageSize.Note| 72) +(defenum |QPageSize.Pica| 3) +(defenum |QPageSize.Point| 1) +(defenum |QPageSize.Postcard| 77) +(defenum |QPageSize.Prc16K| 79) +(defenum |QPageSize.Prc32KBig| 81) +(defenum |QPageSize.Prc32K| 80) +(defenum |QPageSize.Quarto| 73) +(defenum |QPageSize.Statement| 74) +(defenum |QPageSize.SuperA| 75) +(defenum |QPageSize.SuperB| 76) +(defenum |QPageSize.TabloidExtra| 56) +(defenum |QPageSize.Tabloid| 29) (defenum |QPagedPaintDevice.A0| 5) (defenum |QPagedPaintDevice.A10| 31) (defenum |QPagedPaintDevice.A1| 6)