Run Emacs and do:
Meta-X slime-connect (please note:
@@ -46,11 +45,12 @@ use slime-connect) and hit Return 2 times
Another case where you need to use qload is when you use Qt classes which use threads internally (see e.g. examples/X-extras/move-blocks.lisp).
Help
-For help see the qapropos and qgui functions.
+For help see the qapropos, qproperties and qgui functions.
To kill the swank process (Slime), use function qquit / qq (since quitting Emacs will not kill it).
Notes
-All EQL functions are wrapped in qrun* (see eql/slime/thread-safe.lisp), so it's safe to call them either directly from the REPL or using 'eval region' (or from any other ECL thread).
+Please note that you need to manually delete the file eql5/slime/thread-safe.fas* after every upgrade of either ECL or EQL (it will then be compiled automatically next time you use Slime).
+All EQL functions are wrapped in qrun* (see eql5/slime/thread-safe.lisp), so it's safe to call them either directly from the REPL or using 'eval region' (or from any other ECL thread).
If the Slime REPL hangs, you can simply try to connect again (losing the old connection): no need to restart Lisp.
This Slime mode is both convenient and simple to use, but conses a little more for every EQL function call.
If you absolutely want direct EQL function calls, please see the less convenient Slime REPL Hook mode.
diff --git a/doc/auto-doc.htm b/doc/auto-doc.htm
index 5ed3525..6dca84e 100644
--- a/doc/auto-doc.htm
+++ b/doc/auto-doc.htm
@@ -384,7 +384,7 @@
QREQUIRE
(module &optional quiet)
-
Loads an EQL module, corresponding to a Qt module.
Returns the module name if both loading and initializing have been successful.
If the quiet argument is not NIL, no error message will be shown on failure.
Currently available modules: :network :sql
+Loads an EQL module, corresponding to a Qt module.
Returns the module name if both loading and initializing have been successful.
If the quiet argument is not NIL, no error message will be shown on failure.
Currently available modules: :help :multimedia :network :sql :svg :webkit
(qrequire :network)
diff --git a/helper/generate.lisp b/helper/generate.lisp
index 011d360..202f307 100644
--- a/helper/generate.lisp
+++ b/helper/generate.lisp
@@ -255,27 +255,33 @@
(string= "void" (first arg)))
(defun arg-to-c (arg &optional enum-class return)
- (if (find* (first arg) '("WId"))
- (first arg)
- (let* ((type (add-namespace (first arg) enum-class))
- (enum-as-int (and return
- (find #\: type)
- (not (find #\< type)))))
- (unless (and enum-as-int
- (find* type +special-typedefs-and-classes+))
- (concatenate 'string
- (if (and (const-p arg)
- (or (not return)
- (not (string= "int" (first arg)))))
- "const "
- "")
- (if enum-as-int "int" type)
- (cond ((and (not return)
- (reference-p arg))
- "&")
- ((pointer-p arg)
- "*")
- (t "")))))))
+ (let ((argc (if (find* (first arg) '("WId"))
+ (first arg)
+ (let* ((type (add-namespace (first arg) enum-class))
+ (enum-as-int (and return
+ (find #\: type)
+ (not (find #\< type)))))
+ (unless (and enum-as-int
+ (find* type +special-typedefs-and-classes+))
+ (concatenate 'string
+ (if (and (const-p arg)
+ (or (not return)
+ (not (string= "int" (first arg)))))
+ "const "
+ "")
+ (if enum-as-int "int" type)
+ (cond ((and (not return)
+ (reference-p arg))
+ "&")
+ ((pointer-p arg)
+ "*")
+ (t ""))))))))
+ (when (and return
+ (search "QList" argc)
+ (search "::" argc))
+ )
+ ;; TODO
+ argc))
(defun arg-to-c-null-value (arg)
(let ((type (arg-type arg)))
@@ -424,6 +430,7 @@
(format nil "#include "
(case module
(:webkit "WebKitWidgets")
+ (:multimedia "MultimediaWidgets")
(t (string-capitalize (string module))))))
(defmacro change-file-stream (module file &optional type)
@@ -781,16 +788,23 @@
~%#include \"../dyn_object.h\"~
~%#include \"../eql.h\"~
~%~
+ ~%int LObjects::T_QAudioDeviceInfo = -1;~
+ ~%int LObjects::T_QList_QAudioDeviceInfo = -1;~
+ ~%int LObjects::T_QAudioEncoderSettings = -1;~
+ ~%int LObjects::T_QAudioFormat = -1;~
+ ~%int LObjects::T_QCameraInfo = -1;~
+ ~%int LObjects::T_QList_QCameraInfo = -1;~
+ ~%int LObjects::T_QCameraViewfinderSettings = -1;~
+ ~%int LObjects::T_QList_QCameraViewfinderSettings = -1;~
~%int LObjects::T_QHostAddress = -1;~
~%int LObjects::T_QHostInfo = -1;~
+ ~%int LObjects::T_QImageEncoderSettings = -1;~
+ ~%int LObjects::T_QMediaContent = -1;~
+ ~%int LObjects::T_QList_QMediaContent = -1;~
~%int LObjects::T_QNetworkCacheMetaData = -1;~
~%int LObjects::T_QNetworkInterface = -1;~
~%int LObjects::T_QNetworkProxy = -1;~
~%int LObjects::T_QNetworkRequest = -1;~
- ~%int LObjects::T_QSslCertificate = -1;~
- ~%int LObjects::T_QSslCipher = -1;~
- ~%int LObjects::T_QSslConfiguration = -1;~
- ~%int LObjects::T_QSslKey = -1;~
~%int LObjects::T_QSqlDatabase = -1;~
~%int LObjects::T_QSqlError = -1;~
~%int LObjects::T_QSqlField = -1;~
@@ -798,6 +812,12 @@
~%int LObjects::T_QSqlQuery = -1;~
~%int LObjects::T_QSqlRecord = -1;~
~%int LObjects::T_QSqlRelation = -1;~
+ ~%int LObjects::T_QSslCertificate = -1;~
+ ~%int LObjects::T_QSslCipher = -1;~
+ ~%int LObjects::T_QSslConfiguration = -1;~
+ ~%int LObjects::T_QSslKey = -1;~
+ ~%int LObjects::T_QVideoEncoderSettings = -1;~
+ ~%int LObjects::T_QVideoSurfaceFormat = -1;~
~%int LObjects::T_QWebElement = -1;~
~%int LObjects::T_QWebElementCollection = -1;~
~%int LObjects::T_QWebHitTestResult = -1;~
@@ -830,7 +850,7 @@
(format s "~%DeleteNObject LObjects::deleteNObject_~(~A~) = 0;" module))
(dolist (module *modules*)
(format s "~%Override LObjects::override_~(~A~) = 0;" module))
- (dolist (module (list :network :sql :webkit))
+ (dolist (module (list :multimedia :network :sql :webkit))
(format s "~%ToMetaArg LObjects::toMetaArg_~(~A~) = 0;~
~%To_lisp_arg LObjects::to_lisp_arg_~(~A~) = 0;"
module module))
@@ -1168,6 +1188,8 @@
"QVector"
"QVector"
"QVector"
+ "QVector"
+ "QVector"
"QVector"
"QWidgetList")))
(with-open-file (s "missing-types.txt" :direction :output :if-exists :supersede)
diff --git a/helper/missing-types.txt b/helper/missing-types.txt
index 04fcc77..1b01331 100644
--- a/helper/missing-types.txt
+++ b/helper/missing-types.txt
@@ -4,10 +4,12 @@ QAccessibleTableInterface
QAccessibleTextInterface
QAccessibleValueInterface
QBackingStore
+QCameraFocusZoneList
QExposeEvent
QFunctionPointer
QGlyphRun
QHttpMultiPart
+QImageEncoderSettings
QImageReader
QInputMethod
QItemSelection
@@ -17,11 +19,16 @@ QJsonObject
QJsonValue
QLatin1String
QList
+QList
QList
+QList
+QList
+QList
QList
QList
QList
QList
+QList
QList
QList
QList
@@ -40,6 +47,8 @@ QList
QList
QList
QMarginsF
+QMediaContent
+QMediaControl
QMultiMap
QNetworkConfiguration
QOpenGLContextGroup
@@ -49,6 +58,7 @@ QPageSize
QPixelFormat
QPlatformNativeInterface
QPlatformScreen
+QRadioData
QRegularExpressionMatch
QRegularExpressionMatchIterator
QStaticText
@@ -64,9 +74,8 @@ QVariantHash
QVector
QVector
QVector
-QVector
-QVector
QWindowList
+qint32
quint16
quint64
quint8
diff --git a/helper/modules.lisp b/helper/modules.lisp
index 3586ba9..e0c622d 100644
--- a/helper/modules.lisp
+++ b/helper/modules.lisp
@@ -1 +1 @@
-(defparameter *modules* (list :help :network :sql :svg :webkit))
+(defparameter *modules* (list :help :multimedia :network :sql :svg :webkit))
diff --git a/helper/multiple-inheritance.txt b/helper/multiple-inheritance.txt
index e77bd14..7ab0093 100644
--- a/helper/multiple-inheritance.txt
+++ b/helper/multiple-inheritance.txt
@@ -1,6 +1,9 @@
+QCameraImageCapture: QObject and QMediaBindableInterface
//QGraphicsObject: QObject and QGraphicsItem
QGraphicsWidget: QGraphicsObject and QGraphicsLayoutItem
//QLayout: QObject and QLayoutItem
+QMediaPlaylist: QObject and QMediaBindableInterface
+QMediaRecorder: QObject and QMediaBindableInterface
QPaintDeviceWindow: QWindow and QPaintDevice
QWidget: QObject and QPaintDevice
QWindow: QObject and QSurface
diff --git a/helper/my-class-lists/gui/n-names.lisp b/helper/my-class-lists/gui/n-names.lisp
index 5f3bc72..ca1196b 100644
--- a/helper/my-class-lists/gui/n-names.lisp
+++ b/helper/my-class-lists/gui/n-names.lisp
@@ -127,6 +127,7 @@
"QStyleOptionGraphicsItem"
"//QSurface"
"QSystemSemaphore"
+ "//QSysInfo"
"QTabletEvent"
"QTableWidgetItem"
"QTableWidgetSelectionRange"
diff --git a/helper/my-class-lists/multimedia/n-names.lisp b/helper/my-class-lists/multimedia/n-names.lisp
new file mode 100644
index 0000000..fdd0fea
--- /dev/null
+++ b/helper/my-class-lists/multimedia/n-names.lisp
@@ -0,0 +1,12 @@
+;;; To avoid creation of instances, prepend "//" to the object name
+;;; "//QPaintDevice"
+
+(defparameter *multimedia-n-names*
+ (list "QAudioDeviceInfo"
+ "QAudioEncoderSettings"
+ "QAudioFormat"
+ "QCameraInfo"
+ "QCameraViewfinderSettings"
+ "QVideoEncoderSettings"
+ "QVideoFrame"
+ "QVideoSurfaceFormat"))
diff --git a/helper/my-class-lists/multimedia/q-names.lisp b/helper/my-class-lists/multimedia/q-names.lisp
new file mode 100644
index 0000000..4e38b9a
--- /dev/null
+++ b/helper/my-class-lists/multimedia/q-names.lisp
@@ -0,0 +1,23 @@
+;;; To avoid creation of instances, prepend "//" to the object name
+;;; "//QClipboard"
+
+(defparameter *multimedia-q-names*
+ (list "//QAbstractVideoSurface"
+ "QAudioOutput"
+ "QAudioRecorder"
+ "QCamera"
+ "//QCameraExposure"
+ "//QCameraFocus"
+ "QCameraImageCapture"
+ "//QCameraImageProcessing"
+ "QCameraViewfinder"
+ "QGraphicsVideoItem"
+ "QMediaObject"
+ "QMediaPlayer"
+ "QMediaPlaylist"
+ "QMediaRecorder"
+ "//QMediaService"
+ "QRadioTuner"
+ "QVideoWidget"
+ "QVideoWidget"
+ "QVideoWidgetControl"))
diff --git a/helper/no-static-meta-object.lisp b/helper/no-static-meta-object.lisp
index f986dae..4632578 100644
--- a/helper/no-static-meta-object.lisp
+++ b/helper/no-static-meta-object.lisp
@@ -4,12 +4,17 @@
"QAccessibleEvent"
"QAccessibleInterface"
"QAccessibleObject"
- "QAccessibleWidget"
+ "QAccessibleWidget"
+ "QAudioDeviceInfo"
+ "QAudioEncoderSettings"
+ "QAudioFormat"
"QAuthenticator"
"QBasicTimer"
"QBitArray"
"QBitmap"
"QBrush"
+ "QCameraInfo"
+ "QCameraViewfinderSettings"
"QColor"
"QCryptographicHash"
"QCursor"
@@ -111,6 +116,7 @@
"QSurface"
"QSvgGenerator"
"QSystemSemaphore"
+ "QSysInfo"
"QTableWidgetItem"
"QTableWidgetSelectionRange"
"QTextBlock"
@@ -140,6 +146,9 @@
"QVector2D"
"QVector3D"
"QVector4D"
+ "QVideoEncoderSettings"
+ "QVideoFrame"
+ "QVideoSurfaceFormat"
"QWebDatabase"
"QWebElement"
"QWebElementCollection"
diff --git a/helper/parse-enums.lisp b/helper/parse-enums.lisp
index f4347ea..a4b6ac4 100644
--- a/helper/parse-enums.lisp
+++ b/helper/parse-enums.lisp
@@ -22,6 +22,7 @@
"QStyle::SO_"))
(defparameter *enum-begin* (format nil "Constant~CValue" #\Tab))
+(defparameter *namespaces* (list "QAudio" "QGL"))
(defun parse (class out)
(let ((path (doc-file class)))
@@ -30,7 +31,7 @@
(with-open-file (in path :direction :input :external-format :latin-1)
(x:while-it (read-line in nil nil)
(unless (dolist (skip *skip*)
- (when (search skip x:it)
+ (when (x:starts-with skip x:it)
(return t)))
(if in-enum
(progn
@@ -55,7 +56,7 @@
(defun start ()
(with-open-file (s "../src/lisp/enum-lists/parsed-enums.lisp" :direction :output :if-exists :supersede)
(write-char #\( s)
- (dolist (names (list *q-names* *n-names*))
+ (dolist (names (list *q-names* *n-names* *namespaces*))
(parse-classes (mapcar (lambda (name)
(string-trim "= " (if-it (position #\( name)
(subseq name 0 it)
diff --git a/helper/parse.lisp b/helper/parse.lisp
index f348dcd..cddbcf2 100644
--- a/helper/parse.lisp
+++ b/helper/parse.lisp
@@ -115,6 +115,7 @@
"QSet<"
"QSymbianEvent"
"QTextObjectInterface"
+ "QVariantMap"
"QVector2D *"
"QVector3D *"
"QVector4D *"
@@ -223,6 +224,8 @@
(unless (dolist (skip *skip*)
(when (search skip x:it)
(return t)))
+ (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)")))
diff --git a/helper/parsed/n-methods.lisp b/helper/parsed/n-methods.lisp
index 6cdb8c0..f2ace0c 100644
--- a/helper/parsed/n-methods.lisp
+++ b/helper/parsed/n-methods.lisp
@@ -77,6 +77,64 @@
"new QActionEvent ( int , QAction * , QAction * = 0 )"
"QAction * action () const"
"QAction * before () const")
+ (("QAudioDeviceInfo" . NIL)
+ "new QAudioDeviceInfo ()"
+ "new QAudioDeviceInfo ( const QAudioDeviceInfo & )"
+ "QString deviceName () const"
+ "bool isFormatSupported ( const QAudioFormat & ) const"
+ "bool isNull () const"
+ "QAudioFormat nearestFormat ( const QAudioFormat & ) const"
+ "QAudioFormat preferredFormat () const"
+ "QList supportedByteOrders () const"
+ "QList supportedChannelCounts () const"
+ "QStringList supportedCodecs () const"
+ "QList supportedSampleRates () const"
+ "QList supportedSampleSizes () const"
+ "QList supportedSampleTypes () const"
+ "static QList availableDevices ( QAudio::Mode )"
+ "static QAudioDeviceInfo defaultInputDevice ()"
+ "static QAudioDeviceInfo defaultOutputDevice ()")
+ (("QAudioEncoderSettings" . NIL)
+ "new QAudioEncoderSettings ()"
+ "new QAudioEncoderSettings ( const QAudioEncoderSettings & )"
+ "int bitRate () const"
+ "int channelCount () const"
+ "QString codec () const"
+ "QMultimedia::EncodingMode encodingMode () const"
+ "QVariant encodingOption ( const QString & ) const"
+ "bool isNull () const"
+ "QMultimedia::EncodingQuality quality () const"
+ "int sampleRate () const"
+ "void setBitRate ( int )"
+ "void setChannelCount ( int )"
+ "void setCodec ( const QString & )"
+ "void setEncodingMode ( QMultimedia::EncodingMode )"
+ "void setEncodingOption ( const QString & , const QVariant & )"
+ "void setQuality ( QMultimedia::EncodingQuality )"
+ "void setSampleRate ( int )")
+ (("QAudioFormat" . NIL)
+ "new QAudioFormat ()"
+ "new QAudioFormat ( const QAudioFormat & )"
+ "QAudioFormat::Endian byteOrder () const"
+ "qint32 bytesForDuration ( qint64 ) const"
+ "qint32 bytesForFrames ( qint32 ) const"
+ "int bytesPerFrame () const"
+ "int channelCount () const"
+ "QString codec () const"
+ "qint64 durationForBytes ( qint32 ) const"
+ "qint64 durationForFrames ( qint32 ) const"
+ "qint32 framesForBytes ( qint32 ) const"
+ "qint32 framesForDuration ( qint64 ) const"
+ "bool isValid () const"
+ "int sampleRate () const"
+ "int sampleSize () const"
+ "QAudioFormat::SampleType sampleType () const"
+ "void setByteOrder ( QAudioFormat::Endian )"
+ "void setChannelCount ( int )"
+ "void setCodec ( const QString & )"
+ "void setSampleRate ( int )"
+ "void setSampleSize ( int )"
+ "void setSampleType ( QAudioFormat::SampleType )")
(("QAuthenticator" . NIL)
"new QAuthenticator ()"
"new QAuthenticator ( const QAuthenticator & )"
@@ -154,6 +212,34 @@
"QPixmap texture () const"
"QImage textureImage () const"
"QTransform transform () const")
+ (("QCameraInfo" . NIL)
+ "new QCameraInfo ( const QByteArray & = QByteArray() )"
+ "new QCameraInfo ( const QCamera & )"
+ "new QCameraInfo ( const QCameraInfo & )"
+ "QString description () const"
+ "QString deviceName () const"
+ "bool isNull () const"
+ "int orientation () const"
+ "QCamera::Position position () const"
+ "static QList availableCameras ( QCamera::Position = QCamera::UnspecifiedPosition )"
+ "static QCameraInfo defaultCamera ()")
+ (("QCameraViewfinderSettings" . NIL)
+ "new QCameraViewfinderSettings ()"
+ "new QCameraViewfinderSettings ( const QCameraViewfinderSettings & )"
+ "bool isNull () const"
+ "qreal maximumFrameRate () const"
+ "qreal minimumFrameRate () const"
+ "QSize pixelAspectRatio () const"
+ "QVideoFrame::PixelFormat pixelFormat () const"
+ "QSize resolution () const"
+ "void setMaximumFrameRate ( qreal )"
+ "void setMinimumFrameRate ( qreal )"
+ "void setPixelAspectRatio ( const QSize & )"
+ "void setPixelAspectRatio ( int , int )"
+ "void setPixelFormat ( QVideoFrame::PixelFormat )"
+ "void setResolution ( const QSize & )"
+ "void setResolution ( int , int )"
+ "void swap ( QCameraViewfinderSettings & )")
(("QChildEvent" . "QEvent")
"new QChildEvent ( Type , QObject * )"
"bool added () const"
@@ -3167,6 +3253,17 @@
"QString title () const"
"QRect viewBox () const"
"QRectF viewBoxF () const")
+ (("QSysInfo" . NIL)
+ "static QString buildAbi ()"
+ "static QString buildCpuArchitecture ()"
+ "static QString currentCpuArchitecture ()"
+ "static QString kernelType ()"
+ "static QString kernelVersion ()"
+ "static MacVersion macVersion ()"
+ "static QString prettyProductName ()"
+ "static QString productType ()"
+ "static QString productVersion ()"
+ "static WinVersion windowsVersion ()")
(("QSystemSemaphore" . NIL)
"new QSystemSemaphore ( const QString & , int = 0 , AccessMode = Open )"
"bool acquire ()"
@@ -4187,6 +4284,82 @@
"float y () const"
"float z () const"
"static float dotProduct ( const QVector4D & , const QVector4D & )")
+ (("QVideoEncoderSettings" . NIL)
+ "new QVideoEncoderSettings ()"
+ "new QVideoEncoderSettings ( const QVideoEncoderSettings & )"
+ "int bitRate () const"
+ "QString codec () const"
+ "QMultimedia::EncodingMode encodingMode () const"
+ "QVariant encodingOption ( const QString & ) const"
+ "qreal frameRate () const"
+ "bool isNull () const"
+ "QMultimedia::EncodingQuality quality () const"
+ "QSize resolution () const"
+ "void setBitRate ( int )"
+ "void setCodec ( const QString & )"
+ "void setEncodingMode ( QMultimedia::EncodingMode )"
+ "void setEncodingOption ( const QString & , const QVariant & )"
+ "void setFrameRate ( qreal )"
+ "void setQuality ( QMultimedia::EncodingQuality )"
+ "void setResolution ( const QSize & )"
+ "void setResolution ( int , int )")
+ (("QVideoFrame" . NIL)
+ "new QVideoFrame ()"
+ "new QVideoFrame ( QAbstractVideoBuffer * , const QSize & , PixelFormat )"
+ "new QVideoFrame ( int , const QSize & , int , PixelFormat )"
+ "new QVideoFrame ( const QImage & )"
+ "new QVideoFrame ( const QVideoFrame & )"
+ "int bytesPerLine () const"
+ "int bytesPerLine ( int ) const"
+ "qint64 endTime () const"
+ "FieldType fieldType () const"
+ "QVariant handle () const"
+ "int height () const"
+ "bool isMapped () const"
+ "bool isReadable () const"
+ "bool isValid () const"
+ "bool isWritable () const"
+ "bool map ( QAbstractVideoBuffer::MapMode )"
+ "QAbstractVideoBuffer::MapMode mapMode () const"
+ "int mappedBytes () const"
+ "QVariant metaData ( const QString & ) const"
+ "PixelFormat pixelFormat () const"
+ "int planeCount () const"
+ "void setEndTime ( qint64 )"
+ "void setFieldType ( FieldType )"
+ "void setMetaData ( const QString & , const QVariant & )"
+ "void setStartTime ( qint64 )"
+ "QSize size () const"
+ "qint64 startTime () const"
+ "void unmap ()"
+ "int width () const"
+ "static QImage::Format imageFormatFromPixelFormat ( PixelFormat )"
+ "static PixelFormat pixelFormatFromImageFormat ( QImage::Format )")
+ (("QVideoSurfaceFormat" . NIL)
+ "new QVideoSurfaceFormat ()"
+ "new QVideoSurfaceFormat ( const QVideoSurfaceFormat & )"
+ "int frameHeight () const"
+ "qreal frameRate () const"
+ "QSize frameSize () const"
+ "int frameWidth () const"
+ "bool isValid () const"
+ "QSize pixelAspectRatio () const"
+ "QVideoFrame::PixelFormat pixelFormat () const"
+ "QVariant property ( const char * ) const"
+ "QList propertyNames () const"
+ "Direction scanLineDirection () const"
+ "void setFrameRate ( qreal )"
+ "void setFrameSize ( const QSize & )"
+ "void setFrameSize ( int , int )"
+ "void setPixelAspectRatio ( const QSize & )"
+ "void setPixelAspectRatio ( int , int )"
+ "void setProperty ( const char * , const QVariant & )"
+ "void setScanLineDirection ( Direction )"
+ "void setViewport ( const QRect & )"
+ "void setYCbCrColorSpace ( YCbCrColorSpace )"
+ "QSize sizeHint () const"
+ "QRect viewport () const"
+ "YCbCrColorSpace yCbCrColorSpace () const")
(("QWebDatabase" . NIL)
"new QWebDatabase ( const QWebDatabase & )"
"QString displayName () const"
diff --git a/helper/parsed/n-override.lisp b/helper/parsed/n-override.lisp
index 8768954..a53e6c8 100644
--- a/helper/parsed/n-override.lisp
+++ b/helper/parsed/n-override.lisp
@@ -44,11 +44,16 @@
"virtual QString text ( QAccessible::Text ) const"
"virtual QWindow * window () const")
(("QActionEvent" . "QEvent"))
+ (("QAudioDeviceInfo" . NIL))
+ (("QAudioEncoderSettings" . NIL))
+ (("QAudioFormat" . NIL))
(("QAuthenticator" . NIL))
(("QBasicTimer" . NIL))
(("QBitArray" . NIL))
(("QBitmap" . "QPixmap"))
(("QBrush" . NIL))
+ (("QCameraInfo" . NIL))
+ (("QCameraViewfinderSettings" . NIL))
(("QChildEvent" . "QEvent"))
(("QCloseEvent" . "QEvent"))
(("QColor" . NIL))
@@ -374,6 +379,7 @@
"virtual SurfaceType surfaceType () const = 0")
(("QSvgGenerator" . "QPaintDevice")
"virtual int metric ( QPaintDevice::PaintDeviceMetric ) const")
+ (("QSysInfo" . NIL))
(("QSystemSemaphore" . NIL))
(("QTableWidgetItem" . NIL)
"virtual QTableWidgetItem * clone () const"
@@ -429,6 +435,9 @@
(("QVector2D" . NIL))
(("QVector3D" . NIL))
(("QVector4D" . NIL))
+ (("QVideoEncoderSettings" . NIL))
+ (("QVideoFrame" . NIL))
+ (("QVideoSurfaceFormat" . NIL))
(("QWebDatabase" . NIL))
(("QWebElement" . NIL))
(("QWebElementCollection" . NIL))
diff --git a/helper/parsed/q-methods.lisp b/helper/parsed/q-methods.lisp
index c1745db..57d9b9a 100644
--- a/helper/parsed/q-methods.lisp
+++ b/helper/parsed/q-methods.lisp
@@ -385,6 +385,18 @@
"QAbstractState * targetState () const"
"QList targetStates () const"
"TransitionType transitionType () const")
+ (("QAbstractVideoSurface" . "QObject")
+ "Error error () const"
+ "bool isActive () const"
+ "virtual bool isFormatSupported ( const QVideoSurfaceFormat & ) const"
+ "QSize nativeResolution () const"
+ "virtual QVideoSurfaceFormat nearestFormat ( const QVideoSurfaceFormat & ) const"
+ "virtual bool present ( const QVideoFrame & ) = 0"
+ "virtual bool start ( const QVideoSurfaceFormat & )"
+ "virtual void stop ()"
+ "QVideoSurfaceFormat surfaceFormat () const"
+ "protected void setError ( Error )"
+ "protected void setNativeResolution ( const QSize & )")
(("QAction" . "QObject")
"new QAction ( QObject * )"
"new QAction ( const QString & , QObject * )"
@@ -506,6 +518,34 @@
"static QWidget * widgetAt ( const QPoint & )"
"static QWidget * widgetAt ( int , int )"
"static QIcon windowIcon ()")
+ (("QAudioOutput" . "QObject")
+ "new QAudioOutput ( const QAudioFormat & = QAudioFormat() , QObject * = 0 )"
+ "new QAudioOutput ( const QAudioDeviceInfo & , const QAudioFormat & = QAudioFormat() , QObject * = 0 )"
+ "int bufferSize () const"
+ "int bytesFree () const"
+ "QString category () const"
+ "qint64 elapsedUSecs () const"
+ "QAudio::Error error () const"
+ "QAudioFormat format () const"
+ "int notifyInterval () const"
+ "int periodSize () const"
+ "qint64 processedUSecs () const"
+ "void reset ()"
+ "void resume ()"
+ "void setBufferSize ( int )"
+ "void setCategory ( const QString & )"
+ "void setNotifyInterval ( int )"
+ "void setVolume ( qreal )"
+ "QAudio::State state () const"
+ "void stop ()"
+ "void suspend ()"
+ "qreal volume () const")
+ (("QAudioRecorder" . "QMediaRecorder")
+ "new QAudioRecorder ( QObject * = 0 )"
+ "QString audioInput () const"
+ "QString audioInputDescription ( const QString & ) const"
+ "QStringList audioInputs () const"
+ "QString defaultAudioInput () const")
(("QBoxLayout" . "QLayout")
"new QBoxLayout ( Direction , QWidget * = 0 )"
"void addLayout ( QLayout * , int = 0 )"
@@ -600,6 +640,112 @@
"protected void updateCells ()"
"virtual QSize minimumSizeHint () const"
"virtual QSize sizeHint () const")
+ (("QCamera" . "QMediaObject")
+ "new QCamera ( QObject * = 0 )"
+ "new QCamera ( const QByteArray & , QObject * = 0 )"
+ "new QCamera ( const QCameraInfo & , QObject * = 0 )"
+ "new QCamera ( QCamera::Position , QObject * = 0 )"
+ "CaptureModes captureMode () const"
+ "Error error () const"
+ "QString errorString () const"
+ "QCameraExposure * exposure () const"
+ "QCameraFocus * focus () const"
+ "QCameraImageProcessing * imageProcessing () const"
+ "bool isCaptureModeSupported ( CaptureModes ) const"
+ "QCamera::LockStatus lockStatus () const"
+ "QCamera::LockStatus lockStatus ( QCamera::LockType ) const"
+ "QCamera::LockTypes requestedLocks () const"
+ "void setViewfinder ( QVideoWidget * )"
+ "void setViewfinder ( QGraphicsVideoItem * )"
+ "void setViewfinder ( QAbstractVideoSurface * )"
+ "void setViewfinderSettings ( const QCameraViewfinderSettings & )"
+ "State state () const"
+ "Status status () const"
+ "QCamera::LockTypes supportedLocks () const"
+ "QList supportedViewfinderFrameRateRanges ( const QCameraViewfinderSettings & = QCameraViewfinderSettings() ) const"
+ "QList supportedViewfinderPixelFormats ( const QCameraViewfinderSettings & = QCameraViewfinderSettings() ) const"
+ "QList supportedViewfinderResolutions ( const QCameraViewfinderSettings & = QCameraViewfinderSettings() ) const"
+ "QList supportedViewfinderSettings ( const QCameraViewfinderSettings & = QCameraViewfinderSettings() ) const"
+ "QCameraViewfinderSettings viewfinderSettings () const"
+ "virtual QMultimedia::AvailabilityStatus availability () const")
+ (("QCameraExposure" . "QObject")
+ "qreal aperture () const"
+ "qreal exposureCompensation () const"
+ "ExposureMode exposureMode () const"
+ "FlashModes flashMode () const"
+ "bool isAvailable () const"
+ "bool isExposureModeSupported ( ExposureMode ) const"
+ "bool isFlashModeSupported ( FlashModes ) const"
+ "bool isFlashReady () const"
+ "bool isMeteringModeSupported ( MeteringMode ) const"
+ "int isoSensitivity () const"
+ "MeteringMode meteringMode () const"
+ "qreal requestedAperture () const"
+ "int requestedIsoSensitivity () const"
+ "qreal requestedShutterSpeed () const"
+ "void setSpotMeteringPoint ( const QPointF & )"
+ "qreal shutterSpeed () const"
+ "QPointF spotMeteringPoint () const"
+ "QList supportedApertures ( bool * = 0 ) const"
+ "QList supportedIsoSensitivities ( bool * = 0 ) const"
+ "QList supportedShutterSpeeds ( bool * = 0 ) const")
+ (("QCameraFocus" . "QObject")
+ "QPointF customFocusPoint () const"
+ "qreal digitalZoom () const"
+ "FocusModes focusMode () const"
+ "FocusPointMode focusPointMode () const"
+ "QCameraFocusZoneList focusZones () const"
+ "bool isAvailable () const"
+ "bool isFocusModeSupported ( FocusModes ) const"
+ "bool isFocusPointModeSupported ( FocusPointMode ) const"
+ "qreal maximumDigitalZoom () const"
+ "qreal maximumOpticalZoom () const"
+ "qreal opticalZoom () const"
+ "void setCustomFocusPoint ( const QPointF & )"
+ "void setFocusMode ( FocusModes )"
+ "void setFocusPointMode ( FocusPointMode )"
+ "void zoomTo ( qreal , qreal )")
+ (("QCameraImageCapture" . "QObject")
+ "new QCameraImageCapture ( QMediaObject * , QObject * = 0 )"
+ "QMultimedia::AvailabilityStatus availability () const"
+ "QVideoFrame::PixelFormat bufferFormat () const"
+ "CaptureDestinations captureDestination () const"
+ "QImageEncoderSettings encodingSettings () const"
+ "Error error () const"
+ "QString errorString () const"
+ "QString imageCodecDescription ( const QString & ) const"
+ "bool isAvailable () const"
+ "bool isCaptureDestinationSupported ( CaptureDestinations ) const"
+ "bool isReadyForCapture () const"
+ "void setBufferFormat ( const QVideoFrame::PixelFormat )"
+ "void setCaptureDestination ( CaptureDestinations )"
+ "void setEncodingSettings ( const QImageEncoderSettings & )"
+ "QList supportedBufferFormats () const"
+ "QStringList supportedImageCodecs () const"
+ "QList supportedResolutions ( const QImageEncoderSettings & = QImageEncoderSettings() , bool * = 0 ) const"
+ "virtual QMediaObject * mediaObject () const")
+ (("QCameraImageProcessing" . "QObject")
+ "ColorFilter colorFilter () const"
+ "qreal contrast () const"
+ "qreal denoisingLevel () const"
+ "bool isAvailable () const"
+ "bool isColorFilterSupported ( ColorFilter ) const"
+ "bool isWhiteBalanceModeSupported ( WhiteBalanceMode ) const"
+ "qreal manualWhiteBalance () const"
+ "qreal saturation () const"
+ "void setColorFilter ( ColorFilter )"
+ "void setContrast ( qreal )"
+ "void setDenoisingLevel ( qreal )"
+ "void setManualWhiteBalance ( qreal )"
+ "void setSaturation ( qreal )"
+ "void setSharpeningLevel ( qreal )"
+ "void setWhiteBalanceMode ( WhiteBalanceMode )"
+ "qreal sharpeningLevel () const"
+ "WhiteBalanceMode whiteBalanceMode () const")
+ (("QCameraViewfinder" . "QVideoWidget")
+ "new QCameraViewfinder ( QWidget * = 0 )"
+ "QMediaObject * mediaObject () const"
+ "protected bool setMediaObject ( QMediaObject * )")
(("QCheckBox" . "QAbstractButton")
"new QCheckBox ( QWidget * = 0 )"
"new QCheckBox ( const QString & , QWidget * = 0 )"
@@ -1522,6 +1668,18 @@
"virtual QPainterPath shape () const"
"virtual int type () const")
(("QGraphicsTransform" . "QObject"))
+ (("QGraphicsVideoItem" . "QGraphicsObject")
+ "new QGraphicsVideoItem ( QGraphicsItem * = 0 )"
+ "Qt::AspectRatioMode aspectRatioMode () const"
+ "QMediaObject * mediaObject () const"
+ "QSizeF nativeSize () const"
+ "QPointF offset () const"
+ "void setAspectRatioMode ( Qt::AspectRatioMode )"
+ "void setOffset ( const QPointF & )"
+ "void setSize ( const QSizeF & )"
+ "QSizeF size () const"
+ "virtual QRectF boundingRect () const"
+ "virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )")
(("QGraphicsView" . "QAbstractScrollArea")
"new QGraphicsView ( QWidget * = 0 )"
"new QGraphicsView ( QGraphicsScene * , QWidget * = 0 )"
@@ -2432,6 +2590,111 @@
"QWidget * widget () const"
"virtual QSize minimumSizeHint () const"
"virtual QSize sizeHint () const")
+ (("QMediaObject" . "QObject")
+ "virtual QMultimedia::AvailabilityStatus availability () const"
+ "QStringList availableMetaData () const"
+ "virtual bool bind ( QObject * )"
+ "virtual bool isAvailable () const"
+ "bool isMetaDataAvailable () const"
+ "QVariant metaData ( const QString & ) const"
+ "int notifyInterval () const"
+ "virtual QMediaService * service () const"
+ "void setNotifyInterval ( int )"
+ "virtual void unbind ( QObject * )"
+ "protected void addPropertyWatch ( const QByteArray & )"
+ "protected void removePropertyWatch ( const QByteArray & )")
+ (("QMediaPlayer" . "QMediaObject")
+ "new QMediaPlayer ( QObject * = 0 , Flags = 0 )"
+ "QAudio::Role audioRole () const"
+ "int bufferStatus () const"
+ "QMediaContent currentMedia () const"
+ "QNetworkConfiguration currentNetworkConfiguration () const"
+ "qint64 duration () const"
+ "Error error () const"
+ "QString errorString () const"
+ "bool isAudioAvailable () const"
+ "bool isMuted () const"
+ "bool isSeekable () const"
+ "bool isVideoAvailable () const"
+ "QMediaContent media () const"
+ "MediaStatus mediaStatus () const"
+ "qreal playbackRate () const"
+ "QMediaPlaylist * playlist () const"
+ "qint64 position () const"
+ "void setAudioRole ( QAudio::Role )"
+ "void setVideoOutput ( QVideoWidget * )"
+ "void setVideoOutput ( QGraphicsVideoItem * )"
+ "void setVideoOutput ( QAbstractVideoSurface * )"
+ "State state () const"
+ "QList supportedAudioRoles () const"
+ "int volume () const"
+ "virtual QMultimedia::AvailabilityStatus availability () const"
+ "static QMultimedia::SupportEstimate hasSupport ( const QString & , const QStringList & = QStringList() , Flags = 0 )")
+ (("QMediaPlaylist" . "QObject")
+ "new QMediaPlaylist ( QObject * = 0 )"
+ "bool addMedia ( const QMediaContent & )"
+ "bool addMedia ( const QList & )"
+ "bool clear ()"
+ "int currentIndex () const"
+ "QMediaContent currentMedia () const"
+ "Error error () const"
+ "QString errorString () const"
+ "bool insertMedia ( int , const QMediaContent & )"
+ "bool insertMedia ( int , const QList & )"
+ "bool isEmpty () const"
+ "bool isReadOnly () const"
+ "void load ( const QNetworkRequest & , const char * = 0 )"
+ "void load ( const QUrl & , const char * = 0 )"
+ "QMediaContent media ( int ) const"
+ "int mediaCount () const"
+ "bool moveMedia ( int , int )"
+ "int nextIndex ( int = 1 ) const"
+ "PlaybackMode playbackMode () const"
+ "int previousIndex ( int = 1 ) const"
+ "bool removeMedia ( int )"
+ "bool removeMedia ( int , int )"
+ "bool save ( const QUrl & , const char * = 0 )"
+ "void setPlaybackMode ( PlaybackMode )"
+ "virtual QMediaObject * mediaObject () const")
+ (("QMediaRecorder" . "QObject")
+ "new QMediaRecorder ( QMediaObject * , QObject * = 0 )"
+ "QUrl actualLocation () const"
+ "QString audioCodecDescription ( const QString & ) const"
+ "QAudioEncoderSettings audioSettings () const"
+ "QMultimedia::AvailabilityStatus availability () const"
+ "QStringList availableMetaData () const"
+ "QString containerDescription ( const QString & ) const"
+ "QString containerFormat () const"
+ "qint64 duration () const"
+ "Error error () const"
+ "QString errorString () const"
+ "bool isAvailable () const"
+ "bool isMetaDataAvailable () const"
+ "bool isMetaDataWritable () const"
+ "bool isMuted () const"
+ "QVariant metaData ( const QString & ) const"
+ "QUrl outputLocation () const"
+ "void setAudioSettings ( const QAudioEncoderSettings & )"
+ "void setContainerFormat ( const QString & )"
+ "void setEncodingSettings ( const QAudioEncoderSettings & , const QVideoEncoderSettings & = QVideoEncoderSettings() , const QString & = QString() )"
+ "void setMetaData ( const QString & , const QVariant & )"
+ "bool setOutputLocation ( const QUrl & )"
+ "void setVideoSettings ( const QVideoEncoderSettings & )"
+ "State state () const"
+ "Status status () const"
+ "QStringList supportedAudioCodecs () const"
+ "QList supportedAudioSampleRates ( const QAudioEncoderSettings & = QAudioEncoderSettings() , bool * = 0 ) const"
+ "QStringList supportedContainers () const"
+ "QList supportedFrameRates ( const QVideoEncoderSettings & = QVideoEncoderSettings() , bool * = 0 ) const"
+ "QList supportedResolutions ( const QVideoEncoderSettings & = QVideoEncoderSettings() , bool * = 0 ) const"
+ "QStringList supportedVideoCodecs () const"
+ "QString videoCodecDescription ( const QString & ) const"
+ "QVideoEncoderSettings videoSettings () const"
+ "qreal volume () const"
+ "virtual QMediaObject * mediaObject () const")
+ (("QMediaService" . "QObject")
+ "virtual void releaseControl ( QMediaControl * ) = 0"
+ "virtual QMediaControl * requestControl ( const char * ) = 0")
(("QMenu" . "QWidget")
"new QMenu ( QWidget * = 0 )"
"new QMenu ( const QString & , QWidget * = 0 )"
@@ -3136,6 +3399,25 @@
"protected void initStyleOption ( QStyleOptionButton * ) const"
"virtual QSize minimumSizeHint () const"
"virtual QSize sizeHint () const")
+ (("QRadioTuner" . "QMediaObject")
+ "new QRadioTuner ( QObject * = 0 )"
+ "Band band () const"
+ "Error error () const"
+ "QString errorString () const"
+ "int frequency () const"
+ "int frequencyStep ( Band ) const"
+ "bool isAntennaConnected () const"
+ "bool isBandSupported ( Band ) const"
+ "bool isMuted () const"
+ "bool isSearching () const"
+ "bool isStereo () const"
+ "QRadioData * radioData () const"
+ "void setStereoMode ( QRadioTuner::StereoMode )"
+ "int signalStrength () const"
+ "State state () const"
+ "StereoMode stereoMode () const"
+ "int volume () const"
+ "virtual QMultimedia::AvailabilityStatus availability () const")
(("QRegExpValidator" . "QValidator")
"new QRegExpValidator ( QObject * = 0 )"
"new QRegExpValidator ( const QRegExp & , QObject * = 0 )"
@@ -4457,6 +4739,30 @@
"void setStartValue ( const QVariant & )"
"QVariant startValue () const"
"virtual int duration () const")
+ (("QVideoWidget" . "QWidget")
+ "new QVideoWidget ( QWidget * = 0 )"
+ "Qt::AspectRatioMode aspectRatioMode () const"
+ "int brightness () const"
+ "int contrast () const"
+ "int hue () const"
+ "bool isFullScreen () const"
+ "QMediaObject * mediaObject () const"
+ "int saturation () const"
+ "virtual QSize sizeHint () const")
+ (("QVideoWidgetControl" . NIL)
+ "virtual Qt::AspectRatioMode aspectRatioMode () const = 0"
+ "virtual int brightness () const = 0"
+ "virtual int contrast () const = 0"
+ "virtual int hue () const = 0"
+ "virtual bool isFullScreen () const = 0"
+ "virtual int saturation () const = 0"
+ "virtual void setAspectRatioMode ( Qt::AspectRatioMode ) = 0"
+ "virtual void setBrightness ( int ) = 0"
+ "virtual void setContrast ( int ) = 0"
+ "virtual void setFullScreen ( bool ) = 0"
+ "virtual void setHue ( int ) = 0"
+ "virtual void setSaturation ( int ) = 0"
+ "virtual QWidget * videoWidget () = 0")
(("QWebFrame" . "QObject")
"void addToJavaScriptWindowObject ( const QString & , QObject * , ValueOwnership = QtOwnership )"
"QUrl baseUrl () const"
diff --git a/helper/parsed/q-override.lisp b/helper/parsed/q-override.lisp
index 59da033..4ab66ba 100644
--- a/helper/parsed/q-override.lisp
+++ b/helper/parsed/q-override.lisp
@@ -235,6 +235,12 @@
"virtual bool eventTest ( QEvent * ) = 0"
"virtual void onTransition ( QEvent * ) = 0"
"virtual bool event ( QEvent * )")
+ (("QAbstractVideoSurface" . "QObject")
+ "virtual bool isFormatSupported ( const QVideoSurfaceFormat & ) const"
+ "virtual QVideoSurfaceFormat nearestFormat ( const QVideoSurfaceFormat & ) const"
+ "virtual bool present ( const QVideoFrame & ) = 0"
+ "virtual bool start ( const QVideoSurfaceFormat & )"
+ "virtual void stop ()")
(("QAction" . "QObject")
"virtual bool event ( QEvent * )")
(("QActionGroup" . "QObject"))
@@ -243,6 +249,8 @@
(("QApplication" . "QGuiApplication")
"virtual bool notify ( QObject * , QEvent * )"
"virtual bool event ( QEvent * )")
+ (("QAudioOutput" . "QObject"))
+ (("QAudioRecorder" . "QMediaRecorder"))
(("QBoxLayout" . "QLayout")
"virtual void addItem ( QLayoutItem * )"
"virtual int count () const"
@@ -277,6 +285,15 @@
"virtual void keyPressEvent ( QKeyEvent * )"
"virtual void mousePressEvent ( QMouseEvent * )"
"virtual void resizeEvent ( QResizeEvent * )")
+ (("QCamera" . "QMediaObject")
+ "virtual QMultimedia::AvailabilityStatus availability () const")
+ (("QCameraExposure" . "QObject"))
+ (("QCameraFocus" . "QObject"))
+ (("QCameraImageCapture" . "QObject")
+ "virtual QMediaObject * mediaObject () const"
+ "virtual bool setMediaObject ( QMediaObject * )")
+ (("QCameraImageProcessing" . "QObject"))
+ (("QCameraViewfinder" . "QVideoWidget"))
(("QCheckBox" . "QAbstractButton")
"virtual QSize minimumSizeHint () const"
"virtual QSize sizeHint () const"
@@ -631,6 +648,9 @@
"virtual void mouseReleaseEvent ( QGraphicsSceneMouseEvent * )"
"virtual bool sceneEvent ( QEvent * )")
(("QGraphicsTransform" . "QObject"))
+ (("QGraphicsVideoItem" . "QGraphicsObject")
+ "virtual QRectF boundingRect () const"
+ "virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )")
(("QGraphicsView" . "QAbstractScrollArea")
"virtual void drawBackground ( QPainter * , const QRectF & )"
"virtual void drawForeground ( QPainter * , const QRectF & )"
@@ -969,6 +989,21 @@
"virtual void resizeEvent ( QResizeEvent * )"
"virtual void showEvent ( QShowEvent * )"
"virtual void timerEvent ( QTimerEvent * )")
+ (("QMediaObject" . "QObject")
+ "virtual QMultimedia::AvailabilityStatus availability () const"
+ "virtual bool bind ( QObject * )"
+ "virtual bool isAvailable () const"
+ "virtual QMediaService * service () const"
+ "virtual void unbind ( QObject * )")
+ (("QMediaPlayer" . "QMediaObject")
+ "virtual QMultimedia::AvailabilityStatus availability () const")
+ (("QMediaPlaylist" . "QObject")
+ "virtual QMediaObject * mediaObject () const")
+ (("QMediaRecorder" . "QObject")
+ "virtual QMediaObject * mediaObject () const")
+ (("QMediaService" . "QObject")
+ "virtual void releaseControl ( QMediaControl * ) = 0"
+ "virtual QMediaControl * requestControl ( const char * ) = 0")
(("QMenu" . "QWidget")
"virtual QSize sizeHint () const"
"virtual void actionEvent ( QActionEvent * )"
@@ -1172,6 +1207,8 @@
"virtual bool hitButton ( const QPoint & ) const"
"virtual void mouseMoveEvent ( QMouseEvent * )"
"virtual void paintEvent ( QPaintEvent * )")
+ (("QRadioTuner" . "QMediaObject")
+ "virtual QMultimedia::AvailabilityStatus availability () const")
(("QRegExpValidator" . "QValidator")
"virtual QValidator::State validate ( QString & , int & ) const")
(("QRubberBand" . "QWidget")
@@ -1678,6 +1715,28 @@
"virtual bool event ( QEvent * )"
"virtual void updateCurrentTime ( int )"
"virtual void updateState ( QAbstractAnimation::State , QAbstractAnimation::State )")
+ (("QVideoWidget" . "QWidget")
+ "virtual QSize sizeHint () const"
+ "virtual bool event ( QEvent * )"
+ "virtual void hideEvent ( QHideEvent * )"
+ "virtual void moveEvent ( QMoveEvent * )"
+ "virtual void paintEvent ( QPaintEvent * )"
+ "virtual void resizeEvent ( QResizeEvent * )"
+ "virtual void showEvent ( QShowEvent * )")
+ (("QVideoWidgetControl" . NIL)
+ "virtual Qt::AspectRatioMode aspectRatioMode () const = 0"
+ "virtual int brightness () const = 0"
+ "virtual int contrast () const = 0"
+ "virtual int hue () const = 0"
+ "virtual bool isFullScreen () const = 0"
+ "virtual int saturation () const = 0"
+ "virtual void setAspectRatioMode ( Qt::AspectRatioMode ) = 0"
+ "virtual void setBrightness ( int ) = 0"
+ "virtual void setContrast ( int ) = 0"
+ "virtual void setFullScreen ( bool ) = 0"
+ "virtual void setHue ( int ) = 0"
+ "virtual void setSaturation ( int ) = 0"
+ "virtual QWidget * videoWidget () = 0")
(("QWebFrame" . "QObject")
"virtual bool event ( QEvent * )")
(("QWebHistoryInterface" . "QObject")
diff --git a/src/ecl_fun.cpp b/src/ecl_fun.cpp
index 147f385..b44d196 100644
--- a/src/ecl_fun.cpp
+++ b/src/ecl_fun.cpp
@@ -87,6 +87,7 @@ META_TYPE (T_QVector_QRgb, QVector)
META_TYPE (T_QVector_QTextFormat, QVector)
META_TYPE (T_QVector_QTextLength, QVector)
META_TYPE (T_QVector_float, QVector)
+META_TYPE (T_QVector_int, QVector)
META_TYPE (T_QVector_qreal, QVector)
META_TYPE (T_WId, WId)
@@ -811,6 +812,7 @@ TO_QT_VECTOR_VAL (QTextFormat)
TO_QT_VECTOR_VAL (QTextLength)
TO_QT_VECTOR_VAL2 (QRgb, UInt)
TO_QT_VECTOR_VAL2 (float, Float)
+TO_QT_VECTOR_VAL2 (int, Int)
TO_QT_VECTOR_VAL2 (qreal, Real)
QVariant toQVariant(cl_object l_obj, const char* s_type, int type) {
@@ -1020,6 +1022,7 @@ TO_CL_VECTOR_VAL (QTextFormat, qtextformat)
TO_CL_VECTOR_VAL (QTextLength, qtextlength)
TO_CL_VECTOR_VAL2 (QRgb, qrgb, ecl_make_unsigned_integer)
TO_CL_VECTOR_VAL2 (float, float, ecl_make_singlefloat)
+TO_CL_VECTOR_VAL2 (int, int, ecl_make_integer)
TO_CL_VECTOR_VAL2 (qreal, qreal, ecl_make_doublefloat)
static cl_object from_qvariant_value(const QVariant& var) {
@@ -1207,6 +1210,7 @@ static MetaArg toMetaArg(const QByteArray& sType, cl_object l_arg) {
else if(T_QVector_QTextFormat == n) p = new QVector(toQTextFormatVector(l_arg));
else if(T_QVector_QTextLength == n) p = new QVector(toQTextLengthVector(l_arg));
else if(T_QVector_float == n) p = new QVector(tofloatVector(l_arg));
+ else if(T_QVector_int == n) p = new QVector(tointVector(l_arg));
else if(T_QVector_qreal == n) p = new QVector(toqrealVector(l_arg));
else if(T_WId == n) p = new ulong(toUInt(l_arg));
else if(T_GLint == n) p = new GLint(toInt(l_arg));
@@ -1214,21 +1218,20 @@ static MetaArg toMetaArg(const QByteArray& sType, cl_object l_arg) {
else if(T_GLenum == n) p = new GLenum(toUInt(l_arg));
else if(T_GLfloat == n) p = new GLfloat(toFloat(l_arg));
// module types
- else if((n >= LObjects::T_QHostAddress) &&
- (n <= LObjects::T_QSslKey)) {
- if(LObjects::toMetaArg_network) {
- p = LObjects::toMetaArg_network(n, l_arg); }}
- else if((n >= LObjects::T_QSqlDatabase) &&
- (n <= LObjects::T_QSqlRelation)) {
- if(LObjects::toMetaArg_sql) {
- p = LObjects::toMetaArg_sql(n, l_arg); }}
- else if((n >= LObjects::T_QWebElement) &&
- (n <= LObjects::T_QWebHitTestResult)) {
- if(LObjects::toMetaArg_webkit) {
- p = LObjects::toMetaArg_webkit(n, l_arg); }}
- else if(!sType.endsWith('>') && sType.contains(':')) { // enum
- int* i = new int(toInt(l_arg));
- p = i; }}
+ else {
+ bool found = false;
+ if(LObjects::toMetaArg_multimedia) {
+ p = LObjects::toMetaArg_multimedia(n, l_arg, &found); }
+ if(!found && LObjects::toMetaArg_network) {
+ p = LObjects::toMetaArg_network(n, l_arg, &found); }
+ if(!found && LObjects::toMetaArg_sql) {
+ p = LObjects::toMetaArg_sql(n, l_arg, &found); }
+ if(!found && LObjects::toMetaArg_webkit) {
+ p = LObjects::toMetaArg_webkit(n, l_arg, &found); }
+ if(!found) {
+ if(!sType.endsWith('>') && sType.contains(':')) { // enum
+ int* i = new int(toInt(l_arg));
+ p = i; }}}}
return MetaArg(sType, p); }
cl_object to_lisp_arg(const MetaArg& arg) {
@@ -1359,6 +1362,7 @@ cl_object to_lisp_arg(const MetaArg& arg) {
else if(T_QVector_QTextFormat == n) l_ret = from_qtextformatvector(*(QVector*)p);
else if(T_QVector_QTextLength == n) l_ret = from_qtextlengthvector(*(QVector*)p);
else if(T_QVector_float == n) l_ret = from_floatvector(*(QVector*)p);
+ else if(T_QVector_int == n) l_ret = from_intvector(*(QVector*)p);
else if(T_QVector_qreal == n) l_ret = from_qrealvector(*(QVector*)p);
else if(T_WId == n) l_ret = ecl_make_unsigned_integer(*(ulong*)p);
else if(T_GLint == n) l_ret = ecl_make_integer(*(GLint*)p);
@@ -1366,21 +1370,20 @@ cl_object to_lisp_arg(const MetaArg& arg) {
else if(T_GLenum == n) l_ret = ecl_make_unsigned_integer(*(GLenum*)p);
else if(T_GLfloat == n) l_ret = ecl_make_singlefloat(*(GLfloat*)p);
// module types
- else if((n >= LObjects::T_QHostAddress) &&
- (n <= LObjects::T_QSslKey)) {
- if(LObjects::to_lisp_arg_network) {
- l_ret = LObjects::to_lisp_arg_network(n, p); }}
- else if((n >= LObjects::T_QSqlDatabase) &&
- (n <= LObjects::T_QSqlRelation)) {
- if(LObjects::to_lisp_arg_sql) {
- l_ret = LObjects::to_lisp_arg_sql(n, p); }}
- else if((n >= LObjects::T_QWebElement) &&
- (n <= LObjects::T_QWebHitTestResult)) {
- if(LObjects::toMetaArg_webkit) {
- l_ret = LObjects::to_lisp_arg_webkit(n, p); }}
- else if(!sType.endsWith('>') && sType.contains(':')) { // enum
- int* i = (int*)p;
- l_ret = ecl_make_integer(*i); }}}
+ else {
+ bool found = false;
+ if(LObjects::to_lisp_arg_multimedia) {
+ l_ret = LObjects::to_lisp_arg_multimedia(n, p, &found); }
+ if(!found && LObjects::to_lisp_arg_network) {
+ l_ret = LObjects::to_lisp_arg_network(n, p, &found); }
+ if(!found && LObjects::to_lisp_arg_sql) {
+ l_ret = LObjects::to_lisp_arg_sql(n, p, &found); }
+ if(!found && LObjects::toMetaArg_webkit) {
+ l_ret = LObjects::to_lisp_arg_webkit(n, p, &found); }
+ if(!found) {
+ if(sType.endsWith('>') && sType.contains(':')) { // enum
+ int* i = (int*)p;
+ l_ret = ecl_make_integer(*i); }}}}}
return l_ret; }
static void clearMetaArg(const MetaArg& arg, bool is_ret = false) {
@@ -2258,7 +2261,7 @@ cl_object qclear_event_filters() {
cl_object qrequire2(cl_object l_name, cl_object l_quiet) { /// qrequire
/// args: (module &optional quiet)
- /// Loads an EQL module, corresponding to a Qt module.
Returns the module name if both loading and initializing have been successful.
If the quiet argument is not NIL, no error message will be shown on failure.
Currently available modules: :network :sql
+ /// Loads an EQL module, corresponding to a Qt module.
Returns the module name if both loading and initializing have been successful.
If the quiet argument is not NIL, no error message will be shown on failure.
Currently available modules: :help :multimedia :network :sql :svg :webkit
/// (qrequire :network)
ecl_process_env()->nvalues = 1;
QString name = symbolName(l_name);
@@ -2292,7 +2295,14 @@ cl_object qrequire2(cl_object l_name, cl_object l_quiet) { /// qrequire
ToMetaArg metaArg = (ToMetaArg)lib.resolve("toMetaArg");
To_lisp_arg lispArg = (To_lisp_arg)lib.resolve("to_lisp_arg");
if(metaArg && lispArg) {
- if("network" == name) {
+ if("multimedia" == name) {
+ LObjects::staticMetaObject_multimedia = meta;
+ LObjects::deleteNObject_multimedia = del;
+ LObjects::override_multimedia = over;
+ LObjects::toMetaArg_multimedia = metaArg;
+ LObjects::to_lisp_arg_multimedia = lispArg;
+ return l_name; }
+ else if("network" == name) {
LObjects::staticMetaObject_network = meta;
LObjects::deleteNObject_network = del;
LObjects::override_network = over;
diff --git a/src/eql.cpp b/src/eql.cpp
index eea1c6d..3ddc1dc 100644
--- a/src/eql.cpp
+++ b/src/eql.cpp
@@ -7,7 +7,7 @@
#include
#include
-const char EQL::version[] = "16.11.4"; // Nov 2016
+const char EQL::version[] = "16.12.1"; // Dec 2016
extern "C" void ini_EQL(cl_object);
diff --git a/src/gen/_lobjects.cpp b/src/gen/_lobjects.cpp
index 70d561c..23a854b 100644
--- a/src/gen/_lobjects.cpp
+++ b/src/gen/_lobjects.cpp
@@ -8,16 +8,23 @@
#include "../dyn_object.h"
#include "../eql.h"
+int LObjects::T_QAudioDeviceInfo = -1;
+int LObjects::T_QList_QAudioDeviceInfo = -1;
+int LObjects::T_QAudioEncoderSettings = -1;
+int LObjects::T_QAudioFormat = -1;
+int LObjects::T_QCameraInfo = -1;
+int LObjects::T_QList_QCameraInfo = -1;
+int LObjects::T_QCameraViewfinderSettings = -1;
+int LObjects::T_QList_QCameraViewfinderSettings = -1;
int LObjects::T_QHostAddress = -1;
int LObjects::T_QHostInfo = -1;
+int LObjects::T_QImageEncoderSettings = -1;
+int LObjects::T_QMediaContent = -1;
+int LObjects::T_QList_QMediaContent = -1;
int LObjects::T_QNetworkCacheMetaData = -1;
int LObjects::T_QNetworkInterface = -1;
int LObjects::T_QNetworkProxy = -1;
int LObjects::T_QNetworkRequest = -1;
-int LObjects::T_QSslCertificate = -1;
-int LObjects::T_QSslCipher = -1;
-int LObjects::T_QSslConfiguration = -1;
-int LObjects::T_QSslKey = -1;
int LObjects::T_QSqlDatabase = -1;
int LObjects::T_QSqlError = -1;
int LObjects::T_QSqlField = -1;
@@ -25,6 +32,12 @@ int LObjects::T_QSqlIndex = -1;
int LObjects::T_QSqlQuery = -1;
int LObjects::T_QSqlRecord = -1;
int LObjects::T_QSqlRelation = -1;
+int LObjects::T_QSslCertificate = -1;
+int LObjects::T_QSslCipher = -1;
+int LObjects::T_QSslConfiguration = -1;
+int LObjects::T_QSslKey = -1;
+int LObjects::T_QVideoEncoderSettings = -1;
+int LObjects::T_QVideoSurfaceFormat = -1;
int LObjects::T_QWebElement = -1;
int LObjects::T_QWebElementCollection = -1;
int LObjects::T_QWebHitTestResult = -1;
@@ -46,20 +59,25 @@ QHash LObjects::override_function_ids;
QHash LObjects::override_lisp_functions;
StaticMetaObject LObjects::staticMetaObject_help = 0;
+StaticMetaObject LObjects::staticMetaObject_multimedia = 0;
StaticMetaObject LObjects::staticMetaObject_network = 0;
StaticMetaObject LObjects::staticMetaObject_sql = 0;
StaticMetaObject LObjects::staticMetaObject_svg = 0;
StaticMetaObject LObjects::staticMetaObject_webkit = 0;
DeleteNObject LObjects::deleteNObject_help = 0;
+DeleteNObject LObjects::deleteNObject_multimedia = 0;
DeleteNObject LObjects::deleteNObject_network = 0;
DeleteNObject LObjects::deleteNObject_sql = 0;
DeleteNObject LObjects::deleteNObject_svg = 0;
DeleteNObject LObjects::deleteNObject_webkit = 0;
Override LObjects::override_help = 0;
+Override LObjects::override_multimedia = 0;
Override LObjects::override_network = 0;
Override LObjects::override_sql = 0;
Override LObjects::override_svg = 0;
Override LObjects::override_webkit = 0;
+ToMetaArg LObjects::toMetaArg_multimedia = 0;
+To_lisp_arg LObjects::to_lisp_arg_multimedia = 0;
ToMetaArg LObjects::toMetaArg_network = 0;
To_lisp_arg LObjects::to_lisp_arg_network = 0;
ToMetaArg LObjects::toMetaArg_sql = 0;
@@ -85,106 +103,106 @@ NumList LAction::overrideIds = NumList();
NumList LActionGroup::overrideIds = NumList();
NumList LAnimationGroup::overrideIds = NumList();
NumList LApplication::overrideIds = NumList() << 160;
-NumList LBoxLayout::overrideIds = NumList() << 161 << 162 << 163 << 21 << 22 << 164 << 165 << 166 << 167 << 168 << 169 << 25 << 170;
+NumList LBoxLayout::overrideIds = NumList() << 162 << 163 << 164 << 21 << 22 << 165 << 166 << 167 << 168 << 169 << 170 << 25 << 171;
NumList LBuffer::overrideIds = NumList() << 126 << 129 << 130 << 137 << 138 << 140 << 141 << 134 << 136;
NumList LButtonGroup::overrideIds = NumList();
-NumList LCalendarWidget::overrideIds = NumList() << 176 << 24 << 25 << 5 << 15 << 18 << 40;
+NumList LCalendarWidget::overrideIds = NumList() << 177 << 24 << 25 << 5 << 15 << 18 << 40;
NumList LCheckBox::overrideIds = NumList() << 24 << 25 << 9 << 10 << 17 << 11 << 20;
-NumList LColorDialog::overrideIds = NumList() << 108 << 12 << 177;
-NumList LColumnView::overrideIds = NumList() << 178 << 84 << 86 << 179 << 87 << 180 << 88 << 25 << 91 << 181 << 93 << 94 << 95 << 40 << 182 << 106 << 98 << 100 << 102;
-NumList LComboBox::overrideIds = NumList() << 183 << 184 << 23 << 24 << 25 << 12 << 28 << 13 << 14 << 35 << 36 << 15 << 16 << 18 << 19 << 20 << 40 << 41 << 43;
+NumList LColorDialog::overrideIds = NumList() << 108 << 12 << 184;
+NumList LColumnView::overrideIds = NumList() << 185 << 84 << 86 << 186 << 87 << 187 << 88 << 25 << 91 << 188 << 93 << 94 << 95 << 40 << 189 << 106 << 98 << 100 << 102;
+NumList LComboBox::overrideIds = NumList() << 190 << 191 << 23 << 24 << 25 << 12 << 28 << 13 << 14 << 35 << 36 << 15 << 16 << 18 << 19 << 20 << 40 << 41 << 43;
NumList LCommandLinkButton::overrideIds = NumList() << 22 << 24 << 20 << 25;
-NumList LCommonStyle::overrideIds = NumList() << 185 << 186 << 187 << 188 << 189 << 190 << 191 << 192 << 193 << 194 << 195 << 196 << 197 << 198 << 199 << 200 << 201;
-NumList LCompleter::overrideIds = NumList() << 208 << 209 << 5;
+NumList LCommonStyle::overrideIds = NumList() << 192 << 193 << 194 << 195 << 196 << 197 << 198 << 199 << 200 << 201 << 202 << 203 << 204 << 205 << 206 << 207 << 208;
+NumList LCompleter::overrideIds = NumList() << 215 << 216 << 5;
NumList LCoreApplication::overrideIds = NumList() << 160;
NumList LDataWidgetMapper::overrideIds = NumList();
NumList LDateEdit::overrideIds = NumList();
-NumList LDateTimeEdit::overrideIds = NumList() << 210 << 211 << 212 << 25 << 143 << 142 << 13 << 34 << 15 << 18 << 20 << 145 << 144 << 43;
+NumList LDateTimeEdit::overrideIds = NumList() << 217 << 218 << 219 << 25 << 143 << 142 << 13 << 34 << 15 << 18 << 20 << 145 << 144 << 43;
NumList LDesktopWidget::overrideIds = NumList() << 40;
NumList LDial::overrideIds = NumList() << 24 << 25 << 17 << 18 << 19 << 20 << 40 << 116;
NumList LDialog::overrideIds = NumList() << 24 << 108 << 25 << 27 << 28 << 5 << 15 << 40 << 41;
NumList LDialogButtonBox::overrideIds = NumList() << 12;
NumList LDirModel::overrideIds = NumList() << 58 << 59 << 60 << 62 << 63 << 64 << 65 << 69 << 70 << 73 << 76 << 77 << 80 << 83;
NumList LDockWidget::overrideIds = NumList() << 12 << 27 << 20;
-NumList LDoubleSpinBox::overrideIds = NumList() << 213 << 214 << 142 << 144;
-NumList LDoubleValidator::overrideIds = NumList() << 215 << 144;
+NumList LDoubleSpinBox::overrideIds = NumList() << 220 << 221 << 142 << 144;
+NumList LDoubleValidator::overrideIds = NumList() << 222 << 144;
NumList LDrag::overrideIds = NumList();
-NumList LErrorMessage::overrideIds = NumList() << 12 << 177;
+NumList LErrorMessage::overrideIds = NumList() << 12 << 184;
NumList LEventLoop::overrideIds = NumList();
NumList LEventTransition::overrideIds = NumList() << 158 << 159;
-NumList LFile::overrideIds = NumList() << 216 << 137 << 217 << 218 << 219 << 141;
-NumList LFileDialog::overrideIds = NumList() << 108 << 220 << 12 << 177;
+NumList LFile::overrideIds = NumList() << 223 << 137 << 224 << 225 << 226 << 141;
+NumList LFileDialog::overrideIds = NumList() << 108 << 227 << 12 << 184;
NumList LFileSystemModel::overrideIds = NumList() << 57 << 58 << 59 << 60 << 61 << 62 << 63 << 64 << 65 << 69 << 70 << 73 << 76 << 77 << 80 << 83 << 8;
NumList LFileSystemWatcher::overrideIds = NumList();
NumList LFinalState::overrideIds = NumList() << 146 << 147;
NumList LFocusFrame::overrideIds = NumList() << 5 << 20;
NumList LFontComboBox::overrideIds = NumList() << 25;
-NumList LFontDialog::overrideIds = NumList() << 108 << 12 << 177;
-NumList LFormLayout::overrideIds = NumList() << 161 << 162 << 163 << 21 << 22 << 164 << 165 << 168 << 169 << 25 << 170;
+NumList LFontDialog::overrideIds = NumList() << 108 << 12 << 184;
+NumList LFormLayout::overrideIds = NumList() << 162 << 163 << 164 << 21 << 22 << 165 << 166 << 169 << 170 << 25 << 171;
NumList LFrame::overrideIds = NumList() << 25 << 12 << 20;
NumList LGesture::overrideIds = NumList();
NumList LGraphicsAnchor::overrideIds = NumList();
-NumList LGraphicsBlurEffect::overrideIds = NumList() << 221 << 222;
-NumList LGraphicsColorizeEffect::overrideIds = NumList() << 222;
-NumList LGraphicsDropShadowEffect::overrideIds = NumList() << 221 << 222;
-NumList LGraphicsEffect::overrideIds = NumList() << 221 << 222 << 223;
-NumList LGraphicsOpacityEffect::overrideIds = NumList() << 222;
-NumList LGraphicsProxyWidget::overrideIds = NumList() << 224 << 225 << 226 << 227 << 228 << 229 << 230 << 231 << 5 << 13 << 34 << 14 << 232 << 35 << 233 << 234 << 235 << 36 << 23 << 236 << 15 << 16 << 237 << 238 << 239 << 240 << 241 << 41 << 242 << 243 << 244;
+NumList LGraphicsBlurEffect::overrideIds = NumList() << 228 << 229;
+NumList LGraphicsColorizeEffect::overrideIds = NumList() << 229;
+NumList LGraphicsDropShadowEffect::overrideIds = NumList() << 228 << 229;
+NumList LGraphicsEffect::overrideIds = NumList() << 228 << 229 << 230;
+NumList LGraphicsOpacityEffect::overrideIds = NumList() << 229;
+NumList LGraphicsProxyWidget::overrideIds = NumList() << 231 << 232 << 233 << 234 << 235 << 236 << 237 << 238 << 5 << 13 << 34 << 14 << 239 << 35 << 240 << 241 << 242 << 36 << 23 << 243 << 15 << 16 << 244 << 245 << 246 << 247 << 248 << 41 << 249 << 250 << 251;
NumList LGraphicsRotation::overrideIds = NumList();
NumList LGraphicsScale::overrideIds = NumList();
-NumList LGraphicsScene::overrideIds = NumList() << 23 << 227 << 228 << 229 << 230 << 257 << 258 << 231 << 13 << 14 << 259 << 36 << 15 << 16 << 237 << 238 << 239 << 240 << 244 << 5;
-NumList LGraphicsTextItem::overrideIds = NumList() << 253 << 260 << 261 << 262 << 224 << 254 << 226 << 227 << 228 << 229 << 230 << 231 << 13 << 14 << 233 << 234 << 235 << 36 << 23 << 15 << 16 << 237 << 238 << 239 << 240 << 255;
-NumList LGraphicsView::overrideIds = NumList() << 257 << 258 << 23 << 25 << 28 << 29 << 30 << 31 << 32 << 13 << 34 << 14 << 36 << 15 << 16 << 38 << 17 << 18 << 19 << 20 << 40 << 106 << 41 << 103 << 43;
-NumList LGraphicsWidget::overrideIds = NumList() << 245 << 12 << 27 << 34 << 246 << 232 << 35 << 247 << 248 << 249 << 241 << 41 << 250 << 243 << 251 << 252 << 253 << 224 << 225 << 254 << 226 << 13 << 14 << 234 << 235 << 236 << 255 << 242 << 256;
-NumList LGridLayout::overrideIds = NumList() << 162 << 163 << 21 << 22 << 164 << 165 << 166 << 167 << 168 << 169 << 25 << 170 << 161;
+NumList LGraphicsScene::overrideIds = NumList() << 23 << 234 << 235 << 236 << 237 << 264 << 265 << 238 << 13 << 14 << 266 << 36 << 15 << 16 << 244 << 245 << 246 << 247 << 251 << 5;
+NumList LGraphicsTextItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233 << 234 << 235 << 236 << 237 << 238 << 13 << 14 << 240 << 241 << 242 << 36 << 23 << 15 << 16 << 244 << 245 << 246 << 247 << 262;
+NumList LGraphicsView::overrideIds = NumList() << 264 << 265 << 23 << 25 << 28 << 29 << 30 << 31 << 32 << 13 << 34 << 14 << 36 << 15 << 16 << 38 << 17 << 18 << 19 << 20 << 40 << 106 << 41 << 103 << 43;
+NumList LGraphicsWidget::overrideIds = NumList() << 252 << 12 << 27 << 34 << 253 << 239 << 35 << 254 << 255 << 256 << 248 << 41 << 257 << 250 << 258 << 259 << 260 << 231 << 232 << 261 << 233 << 13 << 14 << 241 << 242 << 243 << 262 << 249 << 263;
+NumList LGridLayout::overrideIds = NumList() << 163 << 164 << 21 << 22 << 165 << 166 << 167 << 168 << 169 << 170 << 25 << 171 << 162;
NumList LGroupBox::overrideIds = NumList() << 24 << 12 << 6 << 13 << 17 << 18 << 19 << 20 << 40;
NumList LGuiApplication::overrideIds = NumList() << 160;
NumList LHBoxLayout::overrideIds = NumList();
-NumList LHeaderView::overrideIds = NumList() << 263 << 264 << 139 << 87 << 108 << 25 << 181 << 93 << 38 << 17 << 18 << 19 << 20 << 98 << 100 << 103;
+NumList LHeaderView::overrideIds = NumList() << 270 << 271 << 139 << 87 << 108 << 25 << 188 << 93 << 38 << 17 << 18 << 19 << 20 << 98 << 100 << 103;
NumList LHistoryState::overrideIds = NumList() << 146 << 147;
NumList LIODevice::overrideIds = NumList() << 126 << 127 << 128 << 129 << 130 << 131 << 137 << 138 << 139 << 140 << 141 << 132 << 133 << 134 << 135 << 136;
-NumList LInputDialog::overrideIds = NumList() << 177 << 24 << 108 << 25;
-NumList LIntValidator::overrideIds = NumList() << 271 << 142 << 144;
-NumList LItemDelegate::overrideIds = NumList() << 272 << 273 << 274 << 275 << 46 << 50 << 51 << 52 << 53 << 54 << 48 << 5;
+NumList LInputDialog::overrideIds = NumList() << 184 << 24 << 108 << 25;
+NumList LIntValidator::overrideIds = NumList() << 278 << 142 << 144;
+NumList LItemDelegate::overrideIds = NumList() << 279 << 280 << 281 << 282 << 46 << 50 << 51 << 52 << 53 << 54 << 48 << 5;
NumList LItemSelectionModel::overrideIds = NumList();
NumList LKeyEventTransition::overrideIds = NumList() << 158 << 159;
NumList LLCDNumber::overrideIds = NumList() << 25 << 20;
NumList LLabel::overrideIds = NumList() << 22 << 24 << 25 << 12 << 28 << 13 << 34 << 14 << 15 << 17 << 18 << 19 << 20;
NumList LLibrary::overrideIds = NumList();
NumList LLineEdit::overrideIds = NumList() << 23 << 24 << 25 << 12 << 28 << 29 << 30 << 31 << 32 << 13 << 14 << 36 << 15 << 38 << 17 << 18 << 19 << 20;
-NumList LListView::overrideIds = NumList() << 84 << 86 << 91 << 181 << 267 << 30 << 31 << 32 << 93 << 94 << 17 << 19 << 95 << 20 << 40 << 268 << 182 << 96 << 269 << 98 << 99 << 8 << 270 << 100 << 101 << 104 << 102;
-NumList LListWidget::overrideIds = NumList() << 276 << 277 << 70 << 83 << 32;
-NumList LMainWindow::overrideIds = NumList() << 281 << 28;
+NumList LListView::overrideIds = NumList() << 84 << 86 << 91 << 188 << 274 << 30 << 31 << 32 << 93 << 94 << 17 << 19 << 95 << 20 << 40 << 275 << 189 << 96 << 276 << 98 << 99 << 8 << 277 << 100 << 101 << 104 << 102;
+NumList LListWidget::overrideIds = NumList() << 283 << 284 << 70 << 83 << 32;
+NumList LMainWindow::overrideIds = NumList() << 288 << 28;
NumList LMdiArea::overrideIds = NumList() << 24 << 25 << 6 << 5 << 20 << 40 << 106 << 41 << 8 << 103;
NumList LMdiSubWindow::overrideIds = NumList() << 24 << 25 << 12 << 6 << 27 << 28 << 5 << 13 << 14 << 35 << 15 << 37 << 38 << 17 << 18 << 19 << 39 << 20 << 40 << 41 << 8;
NumList LMenu::overrideIds = NumList() << 25 << 26 << 12 << 33 << 34 << 35 << 15 << 37 << 17 << 18 << 19 << 20 << 8 << 43;
NumList LMenuBar::overrideIds = NumList() << 22 << 24 << 25 << 26 << 12 << 5 << 13 << 14 << 15 << 37 << 17 << 18 << 19 << 20 << 40 << 8;
NumList LMessageBox::overrideIds = NumList() << 108 << 12 << 27 << 15 << 40 << 41;
-NumList LMimeData::overrideIds = NumList() << 282 << 283 << 284;
+NumList LMimeData::overrideIds = NumList() << 289 << 290 << 291;
NumList LMouseEventTransition::overrideIds = NumList() << 158 << 159;
NumList LMovie::overrideIds = NumList();
NumList LObject::overrideIds = NumList() << 5 << 6 << 7 << 8;
NumList LOpenGLContext::overrideIds = NumList();
NumList LOpenGLShader::overrideIds = NumList();
-NumList LOpenGLShaderProgram::overrideIds = NumList() << 296;
-NumList LOpenGLWidget::overrideIds = NumList() << 297 << 298 << 299 << 20 << 40;
-NumList LOpenGLWindow::overrideIds = NumList() << 297 << 298 << 300 << 301 << 299 << 20 << 40;
-NumList LPageSetupDialog::overrideIds = NumList() << 177 << 107 << 108;
+NumList LOpenGLShaderProgram::overrideIds = NumList() << 303;
+NumList LOpenGLWidget::overrideIds = NumList() << 304 << 305 << 306 << 20 << 40;
+NumList LOpenGLWindow::overrideIds = NumList() << 304 << 305 << 307 << 308 << 306 << 20 << 40;
+NumList LPageSetupDialog::overrideIds = NumList() << 184 << 107 << 108;
NumList LPaintDeviceWindow::overrideIds = NumList() << 20;
NumList LPanGesture::overrideIds = NumList();
NumList LParallelAnimationGroup::overrideIds = NumList() << 1 << 2 << 3 << 4;
NumList LPauseAnimation::overrideIds = NumList() << 1 << 2;
NumList LPinchGesture::overrideIds = NumList();
NumList LPlainTextDocumentLayout::overrideIds = NumList() << 148 << 149 << 150 << 151 << 152 << 153 << 154;
-NumList LPlainTextEdit::overrideIds = NumList() << 307 << 308 << 309 << 310 << 23 << 12 << 28 << 29 << 30 << 31 << 32 << 13 << 34 << 14 << 36 << 15 << 16 << 38 << 17 << 18 << 19 << 20 << 40 << 106 << 41 << 43;
+NumList LPlainTextEdit::overrideIds = NumList() << 314 << 315 << 316 << 317 << 23 << 12 << 28 << 29 << 30 << 31 << 32 << 13 << 34 << 14 << 36 << 15 << 16 << 38 << 17 << 18 << 19 << 20 << 40 << 106 << 41 << 43;
NumList LPluginLoader::overrideIds = NumList();
-NumList LPrintDialog::overrideIds = NumList() << 177 << 107 << 108;
-NumList LPrintPreviewDialog::overrideIds = NumList() << 177 << 108;
+NumList LPrintDialog::overrideIds = NumList() << 184 << 107 << 108;
+NumList LPrintPreviewDialog::overrideIds = NumList() << 184 << 108;
NumList LPrintPreviewWidget::overrideIds = NumList() << 108;
-NumList LProcess::overrideIds = NumList() << 311 << 126 << 127 << 128 << 129 << 130 << 131 << 137 << 132 << 133 << 134 << 136;
-NumList LProgressBar::overrideIds = NumList() << 312 << 24 << 25 << 20;
+NumList LProcess::overrideIds = NumList() << 318 << 126 << 127 << 128 << 129 << 130 << 131 << 137 << 132 << 133 << 134 << 136;
+NumList LProgressBar::overrideIds = NumList() << 319 << 24 << 25 << 20;
NumList LProgressDialog::overrideIds = NumList() << 25 << 12 << 27 << 40 << 41;
-NumList LPropertyAnimation::overrideIds = NumList() << 313 << 4;
+NumList LPropertyAnimation::overrideIds = NumList() << 320 << 4;
NumList LPushButton::overrideIds = NumList() << 24 << 25 << 13 << 14 << 10 << 15 << 20;
NumList LRadioButton::overrideIds = NumList() << 24 << 25 << 10 << 17 << 20;
NumList LRegExpValidator::overrideIds = NumList() << 144;
@@ -197,60 +215,60 @@ NumList LShortcut::overrideIds = NumList();
NumList LSignalTransition::overrideIds = NumList() << 158 << 159;
NumList LSizeGrip::overrideIds = NumList() << 108 << 25 << 5 << 35 << 17 << 18 << 19 << 39 << 20 << 41;
NumList LSlider::overrideIds = NumList() << 24 << 25 << 17 << 18 << 19 << 20;
-NumList LSortFilterProxyModel::overrideIds = NumList() << 315 << 316 << 317 << 55 << 57 << 58 << 59 << 60 << 61 << 62 << 63 << 64 << 65 << 66 << 67 << 109 << 110 << 111 << 112 << 68 << 69 << 70 << 73 << 74 << 75 << 76 << 77 << 78 << 113 << 79 << 80 << 81 << 83;
-NumList LSpinBox::overrideIds = NumList() << 318 << 214 << 142 << 144;
-NumList LSplashScreen::overrideIds = NumList() << 319 << 18;
+NumList LSortFilterProxyModel::overrideIds = NumList() << 322 << 323 << 324 << 55 << 57 << 58 << 59 << 60 << 61 << 62 << 63 << 64 << 65 << 66 << 67 << 109 << 110 << 111 << 112 << 68 << 69 << 70 << 73 << 74 << 75 << 76 << 77 << 78 << 113 << 79 << 80 << 81 << 83;
+NumList LSpinBox::overrideIds = NumList() << 325 << 221 << 142 << 144;
+NumList LSplashScreen::overrideIds = NumList() << 326 << 18;
NumList LSplitter::overrideIds = NumList() << 24 << 25 << 12 << 6 << 40;
NumList LSplitterHandle::overrideIds = NumList() << 25 << 17 << 18 << 19 << 20 << 40;
-NumList LStackedLayout::overrideIds = NumList() << 161 << 162 << 21 << 22 << 165 << 168 << 169 << 25 << 170;
+NumList LStackedLayout::overrideIds = NumList() << 162 << 163 << 21 << 22 << 166 << 169 << 170 << 25 << 171;
NumList LStackedWidget::overrideIds = NumList();
NumList LStandardItemModel::overrideIds = NumList() << 58 << 59 << 60 << 62 << 63 << 64 << 65 << 66 << 67 << 69 << 70 << 73 << 74 << 75 << 76 << 77 << 78 << 79 << 80 << 83;
NumList LState::overrideIds = NumList() << 146 << 147;
NumList LStateMachine::overrideIds = NumList() << 5 << 146 << 147;
NumList LStatusBar::overrideIds = NumList() << 20 << 40 << 41;
NumList LStringListModel::overrideIds = NumList() << 59 << 62 << 67 << 75 << 76 << 77 << 79 << 80 << 83;
-NumList LStyledItemDelegate::overrideIds = NumList() << 357 << 358 << 46 << 50 << 51 << 52 << 53 << 54 << 48 << 5;
+NumList LStyledItemDelegate::overrideIds = NumList() << 364 << 365 << 46 << 50 << 51 << 52 << 53 << 54 << 48 << 5;
NumList LSwipeGesture::overrideIds = NumList();
-NumList LSyntaxHighlighter::overrideIds = NumList() << 359;
+NumList LSyntaxHighlighter::overrideIds = NumList() << 366;
NumList LSystemTrayIcon::overrideIds = NumList();
-NumList LTabBar::overrideIds = NumList() << 360 << 361 << 362 << 363 << 364 << 24 << 25 << 12 << 35 << 15 << 17 << 18 << 19 << 20 << 40 << 41 << 8 << 43;
-NumList LTabWidget::overrideIds = NumList() << 361 << 363 << 21 << 22 << 24 << 25 << 12 << 15 << 20 << 40 << 41;
-NumList LTableView::overrideIds = NumList() << 84 << 87 << 180 << 88 << 181 << 93 << 94 << 95 << 20 << 96 << 269 << 98 << 89 << 90 << 8 << 270 << 100 << 101 << 104;
-NumList LTableWidget::overrideIds = NumList() << 365 << 366 << 70 << 83 << 32;
+NumList LTabBar::overrideIds = NumList() << 367 << 368 << 369 << 370 << 371 << 24 << 25 << 12 << 35 << 15 << 17 << 18 << 19 << 20 << 40 << 41 << 8 << 43;
+NumList LTabWidget::overrideIds = NumList() << 368 << 370 << 21 << 22 << 24 << 25 << 12 << 15 << 20 << 40 << 41;
+NumList LTableView::overrideIds = NumList() << 84 << 87 << 187 << 88 << 188 << 93 << 94 << 95 << 20 << 96 << 276 << 98 << 89 << 90 << 8 << 277 << 100 << 101 << 104;
+NumList LTableWidget::overrideIds = NumList() << 372 << 373 << 70 << 83 << 32;
NumList LTapAndHoldGesture::overrideIds = NumList();
NumList LTapGesture::overrideIds = NumList();
-NumList LTextBlockGroup::overrideIds = NumList() << 367 << 368 << 369;
-NumList LTextBrowser::overrideIds = NumList() << 307 << 34 << 14 << 15 << 17 << 18 << 19 << 20;
-NumList LTextDocument::overrideIds = NumList() << 212 << 370 << 307;
-NumList LTextEdit::overrideIds = NumList() << 307 << 308 << 309 << 310 << 23 << 12 << 28 << 29 << 30 << 31 << 32 << 13 << 34 << 14 << 36 << 15 << 16 << 38 << 17 << 18 << 19 << 20 << 40 << 106 << 41 << 43;
+NumList LTextBlockGroup::overrideIds = NumList() << 374 << 375 << 376;
+NumList LTextBrowser::overrideIds = NumList() << 314 << 34 << 14 << 15 << 17 << 18 << 19 << 20;
+NumList LTextDocument::overrideIds = NumList() << 219 << 377 << 314;
+NumList LTextEdit::overrideIds = NumList() << 314 << 315 << 316 << 317 << 23 << 12 << 28 << 29 << 30 << 31 << 32 << 13 << 34 << 14 << 36 << 15 << 16 << 38 << 17 << 18 << 19 << 20 << 40 << 106 << 41 << 43;
NumList LTextFrame::overrideIds = NumList();
NumList LTextList::overrideIds = NumList();
NumList LTextObject::overrideIds = NumList();
NumList LTextTable::overrideIds = NumList();
NumList LTimeEdit::overrideIds = NumList();
-NumList LTimeLine::overrideIds = NumList() << 371 << 8;
+NumList LTimeLine::overrideIds = NumList() << 378 << 8;
NumList LTimer::overrideIds = NumList() << 8;
NumList LToolBar::overrideIds = NumList() << 26 << 12 << 20;
-NumList LToolBox::overrideIds = NumList() << 372 << 373 << 12 << 41;
+NumList LToolBox::overrideIds = NumList() << 379 << 380 << 12 << 41;
NumList LToolButton::overrideIds = NumList() << 24 << 25 << 26 << 12 << 33 << 10 << 37 << 18 << 19 << 11 << 20 << 8;
-NumList LTranslator::overrideIds = NumList() << 174 << 374;
-NumList LTreeView::overrideIds = NumList() << 265 << 266 << 267 << 84 << 85 << 139 << 86 << 179 << 87 << 180 << 88 << 91 << 181 << 31 << 93 << 94 << 15 << 38 << 17 << 18 << 19 << 95 << 20 << 268 << 182 << 106 << 96 << 269 << 98 << 89 << 8 << 270 << 100 << 103 << 104 << 102;
-NumList LTreeWidget::overrideIds = NumList() << 375 << 376 << 70 << 83 << 88 << 32;
+NumList LTranslator::overrideIds = NumList() << 175 << 381;
+NumList LTreeView::overrideIds = NumList() << 272 << 273 << 274 << 84 << 85 << 139 << 86 << 186 << 87 << 187 << 88 << 91 << 188 << 31 << 93 << 94 << 15 << 38 << 17 << 18 << 19 << 95 << 20 << 275 << 189 << 106 << 96 << 276 << 98 << 89 << 8 << 277 << 100 << 103 << 104 << 102;
+NumList LTreeWidget::overrideIds = NumList() << 382 << 383 << 70 << 83 << 88 << 32;
NumList LUndoGroup::overrideIds = NumList();
NumList LUndoStack::overrideIds = NumList();
NumList LUndoView::overrideIds = NumList();
NumList LVBoxLayout::overrideIds = NumList();
NumList LValidator::overrideIds = NumList() << 142 << 144;
-NumList LVariantAnimation::overrideIds = NumList() << 314 << 313 << 1 << 2 << 4;
+NumList LVariantAnimation::overrideIds = NumList() << 321 << 320 << 1 << 2 << 4;
NumList LWidget::overrideIds = NumList() << 21 << 22 << 23 << 24 << 25 << 26 << 12 << 27 << 28 << 29 << 30 << 31 << 32 << 33 << 13 << 34 << 14 << 35 << 36 << 15 << 16 << 37 << 38 << 17 << 18 << 19 << 39 << 20 << 40 << 41 << 42 << 43 << 44 << 45;
-NumList LWidgetAction::overrideIds = NumList() << 396 << 397 << 5;
-NumList LWindow::overrideIds = NumList() << 302 << 303 << 13 << 14 << 35 << 15 << 16 << 38 << 17 << 18 << 19 << 39 << 40 << 41 << 42 << 304 << 43 << 305 << 141 << 306;
-NumList LWizard::overrideIds = NumList() << 398 << 399 << 400 << 401 << 108 << 25 << 177 << 20 << 40;
-NumList LWizardPage::overrideIds = NumList() << 402 << 403 << 404 << 398 << 405;
-NumList LAbstractGraphicsShapeItem::overrideIds = NumList() << 261 << 262;
+NumList LWidgetAction::overrideIds = NumList() << 416 << 417 << 5;
+NumList LWindow::overrideIds = NumList() << 309 << 310 << 13 << 14 << 35 << 15 << 16 << 38 << 17 << 18 << 19 << 39 << 40 << 41 << 42 << 311 << 43 << 312 << 141 << 313;
+NumList LWizard::overrideIds = NumList() << 418 << 419 << 420 << 421 << 108 << 25 << 184 << 20 << 40;
+NumList LWizardPage::overrideIds = NumList() << 422 << 423 << 424 << 418 << 425;
+NumList LAbstractGraphicsShapeItem::overrideIds = NumList() << 268 << 269;
NumList LAccessible::overrideIds = NumList();
-NumList LAccessibleEvent::overrideIds = NumList() << 410;
-NumList LAccessibleWidget::overrideIds = NumList() << 411 << 412 << 413 << 414 << 415 << 416 << 417 << 418 << 419 << 420 << 421 << 422 << 423 << 424 << 425;
+NumList LAccessibleEvent::overrideIds = NumList() << 430;
+NumList LAccessibleWidget::overrideIds = NumList() << 431 << 432 << 433 << 434 << 435 << 436 << 437 << 438 << 439 << 440 << 441 << 442 << 443 << 444 << 445;
NumList LActionEvent::overrideIds = NumList();
NumList LBasicTimer::overrideIds = NumList();
NumList LBitArray::overrideIds = NumList();
@@ -274,7 +292,7 @@ NumList LDropEvent::overrideIds = NumList();
NumList LDynamicPropertyChangeEvent::overrideIds = NumList();
NumList LEasingCurve::overrideIds = NumList();
NumList LEvent::overrideIds = NumList();
-NumList LFileIconProvider::overrideIds = NumList() << 429 << 430 << 431;
+NumList LFileIconProvider::overrideIds = NumList() << 449 << 450 << 451;
NumList LFileInfo::overrideIds = NumList();
NumList LFileOpenEvent::overrideIds = NumList();
NumList LFocusEvent::overrideIds = NumList();
@@ -284,19 +302,19 @@ NumList LFontInfo::overrideIds = NumList();
NumList LFontMetrics::overrideIds = NumList();
NumList LGestureEvent::overrideIds = NumList();
NumList LGradient::overrideIds = NumList();
-NumList LGraphicsAnchorLayout::overrideIds = NumList() << 162 << 164 << 165 << 432 << 225 << 242;
-NumList LGraphicsEllipseItem::overrideIds = NumList() << 253 << 260 << 261 << 262 << 224 << 254 << 226;
-NumList LGraphicsGridLayout::overrideIds = NumList() << 162 << 164 << 165 << 432 << 225 << 242;
-NumList LGraphicsItem::overrideIds = NumList() << 406 << 253 << 407 << 408 << 260 << 261 << 262 << 224 << 254 << 226 << 227 << 228 << 229 << 230 << 231 << 13 << 14 << 233 << 234 << 235 << 36 << 23 << 236 << 15 << 16 << 237 << 238 << 239 << 240 << 255 << 409 << 244;
-NumList LGraphicsItemGroup::overrideIds = NumList() << 253 << 261 << 262 << 224 << 226;
-NumList LGraphicsLayout::overrideIds = NumList() << 162 << 164 << 165 << 432 << 433 << 256;
-NumList LGraphicsLayoutItem::overrideIds = NumList() << 225 << 256 << 242;
-NumList LGraphicsLineItem::overrideIds = NumList() << 253 << 260 << 261 << 262 << 224 << 254 << 226;
-NumList LGraphicsLinearLayout::overrideIds = NumList() << 162 << 164 << 165 << 432 << 225 << 242;
-NumList LGraphicsPathItem::overrideIds = NumList() << 253 << 260 << 261 << 262 << 224 << 254 << 226;
-NumList LGraphicsPixmapItem::overrideIds = NumList() << 253 << 260 << 261 << 262 << 224 << 254 << 226;
-NumList LGraphicsPolygonItem::overrideIds = NumList() << 253 << 260 << 261 << 262 << 224 << 254 << 226;
-NumList LGraphicsRectItem::overrideIds = NumList() << 253 << 260 << 261 << 262 << 224 << 254 << 226;
+NumList LGraphicsAnchorLayout::overrideIds = NumList() << 163 << 165 << 166 << 452 << 232 << 249;
+NumList LGraphicsEllipseItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233;
+NumList LGraphicsGridLayout::overrideIds = NumList() << 163 << 165 << 166 << 452 << 232 << 249;
+NumList LGraphicsItem::overrideIds = NumList() << 426 << 260 << 427 << 428 << 267 << 268 << 269 << 231 << 261 << 233 << 234 << 235 << 236 << 237 << 238 << 13 << 14 << 240 << 241 << 242 << 36 << 23 << 243 << 15 << 16 << 244 << 245 << 246 << 247 << 262 << 429 << 251;
+NumList LGraphicsItemGroup::overrideIds = NumList() << 260 << 268 << 269 << 231 << 233;
+NumList LGraphicsLayout::overrideIds = NumList() << 163 << 165 << 166 << 452 << 453 << 263;
+NumList LGraphicsLayoutItem::overrideIds = NumList() << 232 << 263 << 249;
+NumList LGraphicsLineItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233;
+NumList LGraphicsLinearLayout::overrideIds = NumList() << 163 << 165 << 166 << 452 << 232 << 249;
+NumList LGraphicsPathItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233;
+NumList LGraphicsPixmapItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233;
+NumList LGraphicsPolygonItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233;
+NumList LGraphicsRectItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233;
NumList LGraphicsSceneContextMenuEvent::overrideIds = NumList();
NumList LGraphicsSceneDragDropEvent::overrideIds = NumList();
NumList LGraphicsSceneEvent::overrideIds = NumList();
@@ -306,7 +324,7 @@ NumList LGraphicsSceneMouseEvent::overrideIds = NumList();
NumList LGraphicsSceneMoveEvent::overrideIds = NumList();
NumList LGraphicsSceneResizeEvent::overrideIds = NumList();
NumList LGraphicsSceneWheelEvent::overrideIds = NumList();
-NumList LGraphicsSimpleTextItem::overrideIds = NumList() << 253 << 260 << 261 << 262 << 224 << 254 << 226;
+NumList LGraphicsSimpleTextItem::overrideIds = NumList() << 260 << 267 << 268 << 269 << 231 << 261 << 233;
NumList LHelpEvent::overrideIds = NumList();
NumList LHideEvent::overrideIds = NumList();
NumList LHoverEvent::overrideIds = NumList();
@@ -315,14 +333,14 @@ NumList LIconDragEvent::overrideIds = NumList();
NumList LImage::overrideIds = NumList();
NumList LInputEvent::overrideIds = NumList();
NumList LInputMethodEvent::overrideIds = NumList();
-NumList LItemEditorFactory::overrideIds = NumList() << 434 << 435;
+NumList LItemEditorFactory::overrideIds = NumList() << 454 << 455;
NumList LItemSelectionRange::overrideIds = NumList();
NumList LKeyEvent::overrideIds = NumList();
NumList LKeySequence::overrideIds = NumList();
-NumList LLayoutItem::overrideIds = NumList() << 172 << 163 << 173 << 21 << 22 << 164 << 174 << 175 << 166 << 167 << 168 << 169 << 25 << 436 << 437;
+NumList LLayoutItem::overrideIds = NumList() << 173 << 164 << 174 << 21 << 22 << 165 << 175 << 176 << 167 << 168 << 169 << 170 << 25 << 456 << 457;
NumList LLibraryInfo::overrideIds = NumList();
NumList LLinearGradient::overrideIds = NumList();
-NumList LListWidgetItem::overrideIds = NumList() << 438 << 439 << 440;
+NumList LListWidgetItem::overrideIds = NumList() << 458 << 459 << 460;
NumList LLocale::overrideIds = NumList();
NumList LMargins::overrideIds = NumList();
NumList LMatrix::overrideIds = NumList();
@@ -331,7 +349,7 @@ NumList LMetaObject::overrideIds = NumList();
NumList LModelIndex::overrideIds = NumList();
NumList LMouseEvent::overrideIds = NumList();
NumList LMoveEvent::overrideIds = NumList();
-NumList LOpenGLPaintDevice::overrideIds = NumList() << 442 << 443;
+NumList LOpenGLPaintDevice::overrideIds = NumList() << 462 << 463;
NumList LOpenGLTexture::overrideIds = NumList();
NumList LPaintEvent::overrideIds = NumList();
NumList LPainter::overrideIds = NumList();
@@ -340,10 +358,10 @@ NumList LPainterPathStroker::overrideIds = NumList();
NumList LPalette::overrideIds = NumList();
NumList LPen::overrideIds = NumList();
NumList LPersistentModelIndex::overrideIds = NumList();
-NumList LPicture::overrideIds = NumList() << 444;
+NumList LPicture::overrideIds = NumList() << 464;
NumList LPixmap::overrideIds = NumList();
NumList LPixmapCache::overrideIds = NumList();
-NumList LPrinter::overrideIds = NumList() << 445;
+NumList LPrinter::overrideIds = NumList() << 465;
NumList LPrinterInfo::overrideIds = NumList();
NumList LProcessEnvironment::overrideIds = NumList();
NumList LQuaternion::overrideIds = NumList();
@@ -354,18 +372,18 @@ NumList LRegExp::overrideIds = NumList();
NumList LRegion::overrideIds = NumList();
NumList LRegularExpression::overrideIds = NumList();
NumList LResizeEvent::overrideIds = NumList();
-NumList LRunnable::overrideIds = NumList() << 448;
+NumList LRunnable::overrideIds = NumList() << 468;
NumList LSemaphore::overrideIds = NumList();
NumList LShortcutEvent::overrideIds = NumList();
NumList LShowEvent::overrideIds = NumList();
NumList LSizePolicy::overrideIds = NumList();
-NumList LSpacerItem::overrideIds = NumList() << 163 << 173 << 174 << 166 << 168 << 169 << 25 << 436;
-NumList LStandardItem::overrideIds = NumList() << 438 << 439 << 468 << 226;
+NumList LSpacerItem::overrideIds = NumList() << 164 << 174 << 175 << 167 << 169 << 170 << 25 << 456;
+NumList LStandardItem::overrideIds = NumList() << 458 << 459 << 488 << 233;
NumList LStatusTipEvent::overrideIds = NumList();
NumList LStyleOption::overrideIds = NumList();
NumList LStyleOptionGraphicsItem::overrideIds = NumList();
NumList LSystemSemaphore::overrideIds = NumList();
-NumList LTableWidgetItem::overrideIds = NumList() << 438 << 439 << 440;
+NumList LTableWidgetItem::overrideIds = NumList() << 458 << 459 << 460;
NumList LTableWidgetSelectionRange::overrideIds = NumList();
NumList LTabletEvent::overrideIds = NumList();
NumList LTextBlock::overrideIds = NumList();
@@ -373,7 +391,7 @@ NumList LTextBlockFormat::overrideIds = NumList();
NumList LTextBlockUserData::overrideIds = NumList();
NumList LTextBoundaryFinder::overrideIds = NumList();
NumList LTextCharFormat::overrideIds = NumList();
-NumList LTextCodec::overrideIds = NumList() << 469 << 470 << 471 << 472 << 473;
+NumList LTextCodec::overrideIds = NumList() << 489 << 490 << 491 << 492 << 493;
NumList LTextCursor::overrideIds = NumList();
NumList LTextDecoder::overrideIds = NumList();
NumList LTextDocumentFragment::overrideIds = NumList();
@@ -397,8 +415,8 @@ NumList LTimerEvent::overrideIds = NumList();
NumList LToolTip::overrideIds = NumList();
NumList LTouchEvent::overrideIds = NumList();
NumList LTransform::overrideIds = NumList();
-NumList LTreeWidgetItem::overrideIds = NumList() << 438 << 474 << 475;
-NumList LUndoCommand::overrideIds = NumList() << 476 << 477 << 478 << 479;
+NumList LTreeWidgetItem::overrideIds = NumList() << 458 << 494 << 495;
+NumList LUndoCommand::overrideIds = NumList() << 496 << 497 << 498 << 499;
NumList LUrl::overrideIds = NumList();
NumList LVariant::overrideIds = NumList();
NumList LVector2D::overrideIds = NumList();
@@ -407,7 +425,7 @@ NumList LVector4D::overrideIds = NumList();
NumList LWhatsThis::overrideIds = NumList();
NumList LWhatsThisClickedEvent::overrideIds = NumList();
NumList LWheelEvent::overrideIds = NumList();
-NumList LWidgetItem::overrideIds = NumList() << 172 << 163 << 173 << 21 << 22 << 174 << 166 << 168 << 169 << 25 << 437;
+NumList LWidgetItem::overrideIds = NumList() << 173 << 164 << 174 << 21 << 22 << 175 << 167 << 169 << 170 << 25 << 457;
NumList LWindowStateChangeEvent::overrideIds = NumList();
NumList LWriteLocker::overrideIds = NumList();
@@ -417,8 +435,8 @@ void LObjects::ini(EQL* e) {
ok = true;
eql = e;
dynObject = new DynObject;
- Q = new QObject* [223]; for(int i = 0; i < 223; ++i) { Q[i] = 0; }
- N = new QObject* [205]; for(int i = 0; i < 205; ++i) { N[i] = 0; }
+ Q = new QObject* [241]; for(int i = 0; i < 241; ++i) { Q[i] = 0; }
+ N = new QObject* [214]; for(int i = 0; i < 214; ++i) { N[i] = 0; }
Q[0] = new Q1;
Q[1] = new Q2;
Q[2] = new Q3;
@@ -434,23 +452,14 @@ void LObjects::ini(EQL* e) {
Q[14] = new Q15;
Q[15] = new Q16;
Q[16] = new Q17;
- Q[17] = new Q18;
Q[18] = new Q19;
Q[19] = new Q20;
Q[20] = new Q21;
Q[21] = new Q22;
- Q[22] = new Q23;
- Q[23] = new Q24;
Q[24] = new Q25;
Q[25] = new Q26;
Q[26] = new Q27;
Q[27] = new Q28;
- Q[28] = new Q29;
- Q[29] = new Q30;
- Q[30] = new Q31;
- Q[31] = new Q32;
- Q[32] = new Q33;
- Q[33] = new Q34;
Q[34] = new Q35;
Q[35] = new Q36;
Q[36] = new Q37;
@@ -489,29 +498,30 @@ void LObjects::ini(EQL* e) {
Q[69] = new Q70;
Q[70] = new Q71;
Q[71] = new Q72;
+ Q[72] = new Q73;
Q[73] = new Q74;
Q[74] = new Q75;
Q[75] = new Q76;
+ Q[76] = new Q77;
Q[77] = new Q78;
Q[78] = new Q79;
Q[79] = new Q80;
Q[80] = new Q81;
- Q[81] = new Q82;
Q[82] = new Q83;
+ Q[83] = new Q84;
+ Q[85] = new Q86;
+ Q[87] = new Q88;
+ Q[88] = new Q89;
+ Q[89] = new Q90;
+ Q[90] = new Q91;
Q[91] = new Q92;
Q[92] = new Q93;
- Q[93] = new Q94;
- Q[94] = new Q95;
- Q[95] = new Q96;
- Q[96] = new Q97;
- Q[97] = new Q98;
- Q[98] = new Q99;
- Q[99] = new Q100;
- Q[100] = new Q101;
Q[101] = new Q102;
Q[102] = new Q103;
Q[103] = new Q104;
Q[104] = new Q105;
+ Q[105] = new Q106;
+ Q[106] = new Q107;
Q[107] = new Q108;
Q[108] = new Q109;
Q[109] = new Q110;
@@ -520,22 +530,15 @@ void LObjects::ini(EQL* e) {
Q[112] = new Q113;
Q[113] = new Q114;
Q[114] = new Q115;
- Q[115] = new Q116;
- Q[120] = new Q121;
- Q[121] = new Q122;
- Q[122] = new Q123;
- Q[123] = new Q124;
- Q[124] = new Q125;
+ Q[117] = new Q118;
+ Q[118] = new Q119;
+ Q[119] = new Q120;
Q[125] = new Q126;
Q[126] = new Q127;
Q[127] = new Q128;
Q[128] = new Q129;
Q[129] = new Q130;
Q[130] = new Q131;
- Q[131] = new Q132;
- Q[132] = new Q133;
- Q[133] = new Q134;
- Q[134] = new Q135;
Q[135] = new Q136;
Q[136] = new Q137;
Q[137] = new Q138;
@@ -560,8 +563,12 @@ void LObjects::ini(EQL* e) {
Q[156] = new Q157;
Q[157] = new Q158;
Q[158] = new Q159;
- Q[159] = new Q160;
Q[160] = new Q161;
+ Q[161] = new Q162;
+ Q[162] = new Q163;
+ Q[163] = new Q164;
+ Q[164] = new Q165;
+ Q[165] = new Q166;
Q[166] = new Q167;
Q[167] = new Q168;
Q[168] = new Q169;
@@ -571,20 +578,17 @@ void LObjects::ini(EQL* e) {
Q[172] = new Q173;
Q[173] = new Q174;
Q[174] = new Q175;
- Q[177] = new Q178;
- Q[178] = new Q179;
- Q[179] = new Q180;
- Q[180] = new Q181;
- Q[181] = new Q182;
+ Q[175] = new Q176;
+ Q[176] = new Q177;
Q[182] = new Q183;
Q[183] = new Q184;
Q[184] = new Q185;
Q[185] = new Q186;
+ Q[186] = new Q187;
+ Q[187] = new Q188;
Q[188] = new Q189;
Q[189] = new Q190;
Q[190] = new Q191;
- Q[191] = new Q192;
- Q[192] = new Q193;
Q[193] = new Q194;
Q[194] = new Q195;
Q[195] = new Q196;
@@ -594,20 +598,34 @@ void LObjects::ini(EQL* e) {
Q[199] = new Q200;
Q[200] = new Q201;
Q[201] = new Q202;
- Q[202] = new Q203;
- Q[203] = new Q204;
Q[204] = new Q205;
+ Q[205] = new Q206;
Q[206] = new Q207;
Q[207] = new Q208;
Q[208] = new Q209;
Q[209] = new Q210;
Q[210] = new Q211;
Q[211] = new Q212;
+ Q[212] = new Q213;
+ Q[213] = new Q214;
+ Q[214] = new Q215;
+ Q[215] = new Q216;
+ Q[216] = new Q217;
+ Q[217] = new Q218;
Q[218] = new Q219;
Q[219] = new Q220;
Q[220] = new Q221;
- Q[221] = new Q222;
Q[222] = new Q223;
+ Q[223] = new Q224;
+ Q[224] = new Q225;
+ Q[225] = new Q226;
+ Q[226] = new Q227;
+ Q[227] = new Q228;
+ Q[236] = new Q237;
+ Q[237] = new Q238;
+ Q[238] = new Q239;
+ Q[239] = new Q240;
+ Q[240] = new Q241;
N[0] = new N1;
N[1] = new N2;
N[2] = new N3;
@@ -615,15 +633,10 @@ void LObjects::ini(EQL* e) {
N[4] = new N5;
N[5] = new N6;
N[6] = new N7;
- N[8] = new N9;
- N[9] = new N10;
- N[10] = new N11;
N[11] = new N12;
N[12] = new N13;
N[13] = new N14;
N[14] = new N15;
- N[15] = new N16;
- N[16] = new N17;
N[17] = new N18;
N[18] = new N19;
N[19] = new N20;
@@ -671,13 +684,13 @@ void LObjects::ini(EQL* e) {
N[61] = new N62;
N[62] = new N63;
N[63] = new N64;
+ N[64] = new N65;
N[65] = new N66;
+ N[66] = new N67;
N[67] = new N68;
+ N[68] = new N69;
N[70] = new N71;
- N[71] = new N72;
N[72] = new N73;
- N[73] = new N74;
- N[74] = new N75;
N[75] = new N76;
N[76] = new N77;
N[77] = new N78;
@@ -695,11 +708,11 @@ void LObjects::ini(EQL* e) {
N[89] = new N90;
N[90] = new N91;
N[91] = new N92;
- N[100] = new N101;
- N[101] = new N102;
- N[102] = new N103;
- N[103] = new N104;
- N[104] = new N105;
+ N[92] = new N93;
+ N[93] = new N94;
+ N[94] = new N95;
+ N[95] = new N96;
+ N[96] = new N97;
N[105] = new N106;
N[106] = new N107;
N[107] = new N108;
@@ -726,17 +739,17 @@ void LObjects::ini(EQL* e) {
N[128] = new N129;
N[129] = new N130;
N[130] = new N131;
- N[144] = new N145;
- N[145] = new N146;
- N[146] = new N147;
- N[147] = new N148;
- N[148] = new N149;
+ N[131] = new N132;
+ N[132] = new N133;
+ N[133] = new N134;
+ N[134] = new N135;
+ N[135] = new N136;
N[149] = new N150;
+ N[150] = new N151;
N[151] = new N152;
N[152] = new N153;
N[153] = new N154;
N[154] = new N155;
- N[155] = new N156;
N[156] = new N157;
N[157] = new N158;
N[158] = new N159;
@@ -772,12 +785,18 @@ void LObjects::ini(EQL* e) {
N[188] = new N189;
N[189] = new N190;
N[190] = new N191;
- N[199] = new N200;
- N[200] = new N201;
- N[201] = new N202;
- N[202] = new N203;
- N[203] = new N204;
- N[204] = new N205;
+ N[191] = new N192;
+ N[192] = new N193;
+ N[193] = new N194;
+ N[194] = new N195;
+ N[195] = new N196;
+ N[196] = new N197;
+ N[208] = new N209;
+ N[209] = new N210;
+ N[210] = new N211;
+ N[211] = new N212;
+ N[212] = new N213;
+ N[213] = new N214;
q_names["QAbstractAnimation"] = 1;
q_names["QAbstractButton"] = 2;
q_names["QAbstractItemDelegate"] = 3;
@@ -795,212 +814,230 @@ void LObjects::ini(EQL* e) {
q_names["QAbstractTableModel"] = 15;
q_names["QAbstractTextDocumentLayout"] = 16;
q_names["QAbstractTransition"] = 17;
- q_names["QAction"] = 18;
- q_names["QActionGroup"] = 19;
- q_names["QAnimationGroup"] = 20;
- q_names["QApplication"] = 21;
- q_names["QBoxLayout"] = 22;
- q_names["QBuffer"] = 23;
- q_names["QButtonGroup"] = 24;
- q_names["QCalendarWidget"] = 25;
- q_names["QCheckBox"] = 26;
- q_names["QClipboard"] = 27;
- q_names["QColorDialog"] = 28;
- q_names["QColumnView"] = 29;
- q_names["QComboBox"] = 30;
- q_names["QCommandLinkButton"] = 31;
- q_names["QCommonStyle"] = 32;
- q_names["QCompleter"] = 33;
- q_names["QCoreApplication"] = 34;
- q_names["QDataWidgetMapper"] = 35;
- q_names["QDateEdit"] = 36;
- q_names["QDateTimeEdit"] = 37;
- q_names["QDesktopWidget"] = 38;
- q_names["QDial"] = 39;
- q_names["QDialog"] = 40;
- q_names["QDialogButtonBox"] = 41;
- q_names["QDirModel"] = 42;
- q_names["QDockWidget"] = 43;
- q_names["QDoubleSpinBox"] = 44;
- q_names["QDoubleValidator"] = 45;
- q_names["QDrag"] = 46;
- q_names["QErrorMessage"] = 47;
- q_names["QEventLoop"] = 48;
- q_names["QEventTransition"] = 49;
- q_names["QFile"] = 50;
- q_names["QFileDevice"] = 51;
- q_names["QFileDialog"] = 52;
- q_names["QFileSystemModel"] = 53;
- q_names["QFileSystemWatcher"] = 54;
- q_names["QFinalState"] = 55;
- q_names["QFocusFrame"] = 56;
- q_names["QFontComboBox"] = 57;
- q_names["QFontDialog"] = 58;
- q_names["QFormLayout"] = 59;
- q_names["QFrame"] = 60;
- q_names["QGesture"] = 61;
- q_names["QGraphicsAnchor"] = 62;
- q_names["QGraphicsBlurEffect"] = 63;
- q_names["QGraphicsColorizeEffect"] = 64;
- q_names["QGraphicsDropShadowEffect"] = 65;
- q_names["QGraphicsEffect"] = 66;
- q_names["QGraphicsObject"] = 67;
- q_names["QGraphicsOpacityEffect"] = 68;
- q_names["QGraphicsProxyWidget"] = 69;
- q_names["QGraphicsRotation"] = 70;
- q_names["QGraphicsScale"] = 71;
- q_names["QGraphicsScene"] = 72;
- q_names["QGraphicsSvgItem"] = 73;
- q_names["QGraphicsTextItem"] = 74;
- q_names["QGraphicsTransform"] = 75;
- q_names["QGraphicsView"] = 76;
- q_names["QGraphicsWebView"] = 77;
- q_names["QGraphicsWidget"] = 78;
- q_names["QGridLayout"] = 79;
- q_names["QGroupBox"] = 80;
- q_names["QGuiApplication"] = 81;
- q_names["QHBoxLayout"] = 82;
- q_names["QHeaderView"] = 83;
- q_names["QHelpContentModel"] = 84;
- q_names["QHelpContentWidget"] = 85;
- q_names["QHelpEngineCore"] = 86;
- q_names["QHelpIndexModel"] = 87;
- q_names["QHelpIndexWidget"] = 88;
- q_names["QHelpSearchEngine"] = 89;
- q_names["QHelpSearchQueryWidget"] = 90;
- q_names["QHelpSearchResultWidget"] = 91;
- q_names["QHistoryState"] = 92;
- q_names["QIODevice"] = 93;
- q_names["QInputDialog"] = 94;
- q_names["QIntValidator"] = 95;
- q_names["QItemDelegate"] = 96;
- q_names["QItemSelectionModel"] = 97;
- q_names["QKeyEventTransition"] = 98;
- q_names["QLCDNumber"] = 99;
- q_names["QLabel"] = 100;
- q_names["QLayout"] = 101;
- q_names["QLibrary"] = 102;
- q_names["QLineEdit"] = 103;
- q_names["QListView"] = 104;
- q_names["QListWidget"] = 105;
- q_names["QLocalServer"] = 106;
- q_names["QLocalSocket"] = 107;
- q_names["QMainWindow"] = 108;
- q_names["QMdiArea"] = 109;
- q_names["QMdiSubWindow"] = 110;
- q_names["QMenu"] = 111;
- q_names["QMenuBar"] = 112;
- q_names["QMessageBox"] = 113;
- q_names["QMimeData"] = 114;
- q_names["QMouseEventTransition"] = 115;
- q_names["QMovie"] = 116;
- q_names["QNetworkAccessManager"] = 117;
- q_names["QNetworkCookieJar"] = 118;
- q_names["QNetworkDiskCache"] = 119;
- q_names["QNetworkReply"] = 120;
- q_names["QObject"] = 121;
- q_names["QOpenGLContext"] = 122;
- q_names["QOpenGLShader"] = 123;
- q_names["QOpenGLShaderProgram"] = 124;
- q_names["QOpenGLWidget"] = 125;
- q_names["QOpenGLWindow"] = 126;
- q_names["QPageSetupDialog"] = 127;
- q_names["QPaintDeviceWindow"] = 128;
- q_names["QPanGesture"] = 129;
- q_names["QParallelAnimationGroup"] = 130;
- q_names["QPauseAnimation"] = 131;
- q_names["QPinchGesture"] = 132;
- q_names["QPlainTextDocumentLayout"] = 133;
- q_names["QPlainTextEdit"] = 134;
- q_names["QPluginLoader"] = 135;
- q_names["QPrintDialog"] = 136;
- q_names["QPrintPreviewDialog"] = 137;
- q_names["QPrintPreviewWidget"] = 138;
- q_names["QProcess"] = 139;
- q_names["QProgressBar"] = 140;
- q_names["QProgressDialog"] = 141;
- q_names["QPropertyAnimation"] = 142;
- q_names["QPushButton"] = 143;
- q_names["QRadioButton"] = 144;
- q_names["QRegExpValidator"] = 145;
- q_names["QRubberBand"] = 146;
- q_names["QScreen"] = 147;
- q_names["QScrollArea"] = 148;
- q_names["QScrollBar"] = 149;
- q_names["QSequentialAnimationGroup"] = 150;
- q_names["QSessionManager"] = 151;
- q_names["QSettings"] = 152;
- q_names["QShortcut"] = 153;
- q_names["QSignalTransition"] = 154;
- q_names["QSizeGrip"] = 155;
- q_names["QSlider"] = 156;
- q_names["QSortFilterProxyModel"] = 157;
- q_names["QSpinBox"] = 158;
- q_names["QSplashScreen"] = 159;
- q_names["QSplitter"] = 160;
- q_names["QSplitterHandle"] = 161;
- q_names["QSqlDriver"] = 162;
- q_names["QSqlQueryModel"] = 163;
- q_names["QSqlRelationalDelegate"] = 164;
- q_names["QSqlRelationalTableModel"] = 165;
- q_names["QSqlTableModel"] = 166;
- q_names["QStackedLayout"] = 167;
- q_names["QStackedWidget"] = 168;
- q_names["QStandardItemModel"] = 169;
- q_names["QState"] = 170;
- q_names["QStateMachine"] = 171;
- q_names["QStatusBar"] = 172;
- q_names["QStringListModel"] = 173;
- q_names["QStyle"] = 174;
- q_names["QStyledItemDelegate"] = 175;
- q_names["QSvgRenderer"] = 176;
- q_names["QSvgWidget"] = 177;
- q_names["QSwipeGesture"] = 178;
- q_names["QSyntaxHighlighter"] = 179;
- q_names["QSystemTrayIcon"] = 180;
- q_names["QTabBar"] = 181;
- q_names["QTabWidget"] = 182;
- q_names["QTableView"] = 183;
- q_names["QTableWidget"] = 184;
- q_names["QTapAndHoldGesture"] = 185;
- q_names["QTapGesture"] = 186;
- q_names["QTcpServer"] = 187;
- q_names["QTcpSocket"] = 188;
- q_names["QTextBlockGroup"] = 189;
- q_names["QTextBrowser"] = 190;
- q_names["QTextDocument"] = 191;
- q_names["QTextEdit"] = 192;
- q_names["QTextFrame"] = 193;
- q_names["QTextList"] = 194;
- q_names["QTextObject"] = 195;
- q_names["QTextTable"] = 196;
- q_names["QTimeEdit"] = 197;
- q_names["QTimeLine"] = 198;
- q_names["QTimer"] = 199;
- q_names["QToolBar"] = 200;
- q_names["QToolBox"] = 201;
- q_names["QToolButton"] = 202;
- q_names["QTranslator"] = 203;
- q_names["QTreeView"] = 204;
- q_names["QTreeWidget"] = 205;
- q_names["QUdpSocket"] = 206;
- q_names["QUndoGroup"] = 207;
- q_names["QUndoStack"] = 208;
- q_names["QUndoView"] = 209;
- q_names["QVBoxLayout"] = 210;
- q_names["QValidator"] = 211;
- q_names["QVariantAnimation"] = 212;
- q_names["QWebFrame"] = 213;
- q_names["QWebHistoryInterface"] = 214;
- q_names["QWebInspector"] = 215;
- q_names["QWebPage"] = 216;
- q_names["QWebPluginFactory"] = 217;
- q_names["QWebView"] = 218;
- q_names["QWidget"] = 219;
- q_names["QWidgetAction"] = 220;
- q_names["QWindow"] = 221;
- q_names["QWizard"] = 222;
- q_names["QWizardPage"] = 223;
+ q_names["QAbstractVideoSurface"] = 18;
+ q_names["QAction"] = 19;
+ q_names["QActionGroup"] = 20;
+ q_names["QAnimationGroup"] = 21;
+ q_names["QApplication"] = 22;
+ q_names["QAudioOutput"] = 23;
+ q_names["QAudioRecorder"] = 24;
+ q_names["QBoxLayout"] = 25;
+ q_names["QBuffer"] = 26;
+ q_names["QButtonGroup"] = 27;
+ q_names["QCalendarWidget"] = 28;
+ q_names["QCamera"] = 29;
+ q_names["QCameraExposure"] = 30;
+ q_names["QCameraFocus"] = 31;
+ q_names["QCameraImageCapture"] = 32;
+ q_names["QCameraImageProcessing"] = 33;
+ q_names["QCameraViewfinder"] = 34;
+ q_names["QCheckBox"] = 35;
+ q_names["QClipboard"] = 36;
+ q_names["QColorDialog"] = 37;
+ q_names["QColumnView"] = 38;
+ q_names["QComboBox"] = 39;
+ q_names["QCommandLinkButton"] = 40;
+ q_names["QCommonStyle"] = 41;
+ q_names["QCompleter"] = 42;
+ q_names["QCoreApplication"] = 43;
+ q_names["QDataWidgetMapper"] = 44;
+ q_names["QDateEdit"] = 45;
+ q_names["QDateTimeEdit"] = 46;
+ q_names["QDesktopWidget"] = 47;
+ q_names["QDial"] = 48;
+ q_names["QDialog"] = 49;
+ q_names["QDialogButtonBox"] = 50;
+ q_names["QDirModel"] = 51;
+ q_names["QDockWidget"] = 52;
+ q_names["QDoubleSpinBox"] = 53;
+ q_names["QDoubleValidator"] = 54;
+ q_names["QDrag"] = 55;
+ q_names["QErrorMessage"] = 56;
+ q_names["QEventLoop"] = 57;
+ q_names["QEventTransition"] = 58;
+ q_names["QFile"] = 59;
+ q_names["QFileDevice"] = 60;
+ q_names["QFileDialog"] = 61;
+ q_names["QFileSystemModel"] = 62;
+ q_names["QFileSystemWatcher"] = 63;
+ q_names["QFinalState"] = 64;
+ q_names["QFocusFrame"] = 65;
+ q_names["QFontComboBox"] = 66;
+ q_names["QFontDialog"] = 67;
+ q_names["QFormLayout"] = 68;
+ q_names["QFrame"] = 69;
+ q_names["QGesture"] = 70;
+ q_names["QGraphicsAnchor"] = 71;
+ q_names["QGraphicsBlurEffect"] = 72;
+ q_names["QGraphicsColorizeEffect"] = 73;
+ q_names["QGraphicsDropShadowEffect"] = 74;
+ q_names["QGraphicsEffect"] = 75;
+ q_names["QGraphicsObject"] = 76;
+ q_names["QGraphicsOpacityEffect"] = 77;
+ q_names["QGraphicsProxyWidget"] = 78;
+ q_names["QGraphicsRotation"] = 79;
+ q_names["QGraphicsScale"] = 80;
+ q_names["QGraphicsScene"] = 81;
+ q_names["QGraphicsSvgItem"] = 82;
+ q_names["QGraphicsTextItem"] = 83;
+ q_names["QGraphicsTransform"] = 84;
+ q_names["QGraphicsVideoItem"] = 85;
+ q_names["QGraphicsView"] = 86;
+ q_names["QGraphicsWebView"] = 87;
+ q_names["QGraphicsWidget"] = 88;
+ q_names["QGridLayout"] = 89;
+ q_names["QGroupBox"] = 90;
+ q_names["QGuiApplication"] = 91;
+ q_names["QHBoxLayout"] = 92;
+ q_names["QHeaderView"] = 93;
+ q_names["QHelpContentModel"] = 94;
+ q_names["QHelpContentWidget"] = 95;
+ q_names["QHelpEngineCore"] = 96;
+ q_names["QHelpIndexModel"] = 97;
+ q_names["QHelpIndexWidget"] = 98;
+ q_names["QHelpSearchEngine"] = 99;
+ q_names["QHelpSearchQueryWidget"] = 100;
+ q_names["QHelpSearchResultWidget"] = 101;
+ q_names["QHistoryState"] = 102;
+ q_names["QIODevice"] = 103;
+ q_names["QInputDialog"] = 104;
+ q_names["QIntValidator"] = 105;
+ q_names["QItemDelegate"] = 106;
+ q_names["QItemSelectionModel"] = 107;
+ q_names["QKeyEventTransition"] = 108;
+ q_names["QLCDNumber"] = 109;
+ q_names["QLabel"] = 110;
+ q_names["QLayout"] = 111;
+ q_names["QLibrary"] = 112;
+ q_names["QLineEdit"] = 113;
+ q_names["QListView"] = 114;
+ q_names["QListWidget"] = 115;
+ q_names["QLocalServer"] = 116;
+ q_names["QLocalSocket"] = 117;
+ q_names["QMainWindow"] = 118;
+ q_names["QMdiArea"] = 119;
+ q_names["QMdiSubWindow"] = 120;
+ q_names["QMediaObject"] = 121;
+ q_names["QMediaPlayer"] = 122;
+ q_names["QMediaPlaylist"] = 123;
+ q_names["QMediaRecorder"] = 124;
+ q_names["QMediaService"] = 125;
+ q_names["QMenu"] = 126;
+ q_names["QMenuBar"] = 127;
+ q_names["QMessageBox"] = 128;
+ q_names["QMimeData"] = 129;
+ q_names["QMouseEventTransition"] = 130;
+ q_names["QMovie"] = 131;
+ q_names["QNetworkAccessManager"] = 132;
+ q_names["QNetworkCookieJar"] = 133;
+ q_names["QNetworkDiskCache"] = 134;
+ q_names["QNetworkReply"] = 135;
+ q_names["QObject"] = 136;
+ q_names["QOpenGLContext"] = 137;
+ q_names["QOpenGLShader"] = 138;
+ q_names["QOpenGLShaderProgram"] = 139;
+ q_names["QOpenGLWidget"] = 140;
+ q_names["QOpenGLWindow"] = 141;
+ q_names["QPageSetupDialog"] = 142;
+ q_names["QPaintDeviceWindow"] = 143;
+ q_names["QPanGesture"] = 144;
+ q_names["QParallelAnimationGroup"] = 145;
+ q_names["QPauseAnimation"] = 146;
+ q_names["QPinchGesture"] = 147;
+ q_names["QPlainTextDocumentLayout"] = 148;
+ q_names["QPlainTextEdit"] = 149;
+ q_names["QPluginLoader"] = 150;
+ q_names["QPrintDialog"] = 151;
+ q_names["QPrintPreviewDialog"] = 152;
+ q_names["QPrintPreviewWidget"] = 153;
+ q_names["QProcess"] = 154;
+ q_names["QProgressBar"] = 155;
+ q_names["QProgressDialog"] = 156;
+ q_names["QPropertyAnimation"] = 157;
+ q_names["QPushButton"] = 158;
+ q_names["QRadioButton"] = 159;
+ q_names["QRadioTuner"] = 160;
+ q_names["QRegExpValidator"] = 161;
+ q_names["QRubberBand"] = 162;
+ q_names["QScreen"] = 163;
+ q_names["QScrollArea"] = 164;
+ q_names["QScrollBar"] = 165;
+ q_names["QSequentialAnimationGroup"] = 166;
+ q_names["QSessionManager"] = 167;
+ q_names["QSettings"] = 168;
+ q_names["QShortcut"] = 169;
+ q_names["QSignalTransition"] = 170;
+ q_names["QSizeGrip"] = 171;
+ q_names["QSlider"] = 172;
+ q_names["QSortFilterProxyModel"] = 173;
+ q_names["QSpinBox"] = 174;
+ q_names["QSplashScreen"] = 175;
+ q_names["QSplitter"] = 176;
+ q_names["QSplitterHandle"] = 177;
+ q_names["QSqlDriver"] = 178;
+ q_names["QSqlQueryModel"] = 179;
+ q_names["QSqlRelationalDelegate"] = 180;
+ q_names["QSqlRelationalTableModel"] = 181;
+ q_names["QSqlTableModel"] = 182;
+ q_names["QStackedLayout"] = 183;
+ q_names["QStackedWidget"] = 184;
+ q_names["QStandardItemModel"] = 185;
+ q_names["QState"] = 186;
+ q_names["QStateMachine"] = 187;
+ q_names["QStatusBar"] = 188;
+ q_names["QStringListModel"] = 189;
+ q_names["QStyle"] = 190;
+ q_names["QStyledItemDelegate"] = 191;
+ q_names["QSvgRenderer"] = 192;
+ q_names["QSvgWidget"] = 193;
+ q_names["QSwipeGesture"] = 194;
+ q_names["QSyntaxHighlighter"] = 195;
+ q_names["QSystemTrayIcon"] = 196;
+ q_names["QTabBar"] = 197;
+ q_names["QTabWidget"] = 198;
+ q_names["QTableView"] = 199;
+ q_names["QTableWidget"] = 200;
+ q_names["QTapAndHoldGesture"] = 201;
+ q_names["QTapGesture"] = 202;
+ q_names["QTcpServer"] = 203;
+ q_names["QTcpSocket"] = 204;
+ q_names["QTextBlockGroup"] = 205;
+ q_names["QTextBrowser"] = 206;
+ q_names["QTextDocument"] = 207;
+ q_names["QTextEdit"] = 208;
+ q_names["QTextFrame"] = 209;
+ q_names["QTextList"] = 210;
+ q_names["QTextObject"] = 211;
+ q_names["QTextTable"] = 212;
+ q_names["QTimeEdit"] = 213;
+ q_names["QTimeLine"] = 214;
+ q_names["QTimer"] = 215;
+ q_names["QToolBar"] = 216;
+ q_names["QToolBox"] = 217;
+ q_names["QToolButton"] = 218;
+ q_names["QTranslator"] = 219;
+ q_names["QTreeView"] = 220;
+ q_names["QTreeWidget"] = 221;
+ q_names["QUdpSocket"] = 222;
+ q_names["QUndoGroup"] = 223;
+ q_names["QUndoStack"] = 224;
+ q_names["QUndoView"] = 225;
+ q_names["QVBoxLayout"] = 226;
+ q_names["QValidator"] = 227;
+ q_names["QVariantAnimation"] = 228;
+ q_names["QVideoWidget"] = 229;
+ q_names["QVideoWidgetControl"] = 230;
+ q_names["QWebFrame"] = 231;
+ q_names["QWebHistoryInterface"] = 232;
+ q_names["QWebInspector"] = 233;
+ q_names["QWebPage"] = 234;
+ q_names["QWebPluginFactory"] = 235;
+ q_names["QWebView"] = 236;
+ q_names["QWidget"] = 237;
+ q_names["QWidgetAction"] = 238;
+ q_names["QWindow"] = 239;
+ q_names["QWizard"] = 240;
+ q_names["QWizardPage"] = 241;
n_names["QAbstractGraphicsShapeItem"] = 1;
n_names["QAccessible"] = 2;
n_names["QAccessibleEvent"] = 3;
@@ -1008,204 +1045,213 @@ void LObjects::ini(EQL* e) {
n_names["QAccessibleObject"] = 5;
n_names["QAccessibleWidget"] = 6;
n_names["QActionEvent"] = 7;
- n_names["QAuthenticator"] = 8;
- n_names["QBasicTimer"] = 9;
- n_names["QBitArray"] = 10;
- n_names["QBitmap"] = 11;
- n_names["QBrush"] = 12;
- n_names["QChildEvent"] = 13;
- n_names["QCloseEvent"] = 14;
- n_names["QColor"] = 15;
- n_names["QConicalGradient"] = 16;
- n_names["QContextMenuEvent"] = 17;
- n_names["QCryptographicHash"] = 18;
- n_names["QCursor"] = 19;
- n_names["QDate"] = 20;
- n_names["QDateTime"] = 21;
- n_names["QDesktopServices"] = 22;
- n_names["QDir"] = 23;
- n_names["QDirIterator"] = 24;
- n_names["QDragEnterEvent"] = 25;
- n_names["QDragLeaveEvent"] = 26;
- n_names["QDragMoveEvent"] = 27;
- n_names["QDropEvent"] = 28;
- n_names["QDynamicPropertyChangeEvent"] = 29;
- n_names["QEasingCurve"] = 30;
- n_names["QEvent"] = 31;
- n_names["QFileIconProvider"] = 32;
- n_names["QFileInfo"] = 33;
- n_names["QFileOpenEvent"] = 34;
- n_names["QFocusEvent"] = 35;
- n_names["QFont"] = 36;
- n_names["QFontDatabase"] = 37;
- n_names["QFontInfo"] = 38;
- n_names["QFontMetrics"] = 39;
- n_names["QGestureEvent"] = 40;
- n_names["QGradient"] = 41;
- n_names["QGraphicsAnchorLayout"] = 42;
- n_names["QGraphicsEllipseItem"] = 43;
- n_names["QGraphicsGridLayout"] = 44;
- n_names["QGraphicsItem"] = 45;
- n_names["QGraphicsItemGroup"] = 46;
- n_names["QGraphicsLayout"] = 47;
- n_names["QGraphicsLayoutItem"] = 48;
- n_names["QGraphicsLineItem"] = 49;
- n_names["QGraphicsLinearLayout"] = 50;
- n_names["QGraphicsPathItem"] = 51;
- n_names["QGraphicsPixmapItem"] = 52;
- n_names["QGraphicsPolygonItem"] = 53;
- n_names["QGraphicsRectItem"] = 54;
- n_names["QGraphicsSceneContextMenuEvent"] = 55;
- n_names["QGraphicsSceneDragDropEvent"] = 56;
- n_names["QGraphicsSceneEvent"] = 57;
- n_names["QGraphicsSceneHelpEvent"] = 58;
- n_names["QGraphicsSceneHoverEvent"] = 59;
- n_names["QGraphicsSceneMouseEvent"] = 60;
- n_names["QGraphicsSceneMoveEvent"] = 61;
- n_names["QGraphicsSceneResizeEvent"] = 62;
- n_names["QGraphicsSceneWheelEvent"] = 63;
- n_names["QGraphicsSimpleTextItem"] = 64;
- n_names["QHelpContentItem"] = 65;
- n_names["QHelpEvent"] = 66;
- n_names["QHelpSearchQuery"] = 67;
- n_names["QHideEvent"] = 68;
- n_names["QHostAddress"] = 69;
- n_names["QHostInfo"] = 70;
- n_names["QHoverEvent"] = 71;
- n_names["QIcon"] = 72;
- n_names["QIconDragEvent"] = 73;
- n_names["QImage"] = 74;
- n_names["QInputEvent"] = 75;
- n_names["QInputMethodEvent"] = 76;
- n_names["QItemEditorFactory"] = 77;
- n_names["QItemSelectionRange"] = 78;
- n_names["QKeyEvent"] = 79;
- n_names["QKeySequence"] = 80;
- n_names["QLayoutItem"] = 81;
- n_names["QLibraryInfo"] = 82;
- n_names["QLinearGradient"] = 83;
- n_names["QListWidgetItem"] = 84;
- n_names["QLocale"] = 85;
- n_names["QMargins"] = 86;
- n_names["QMatrix"] = 87;
- n_names["QMatrix4x4"] = 88;
- n_names["QMetaObject"] = 89;
- n_names["QModelIndex"] = 90;
- n_names["QMouseEvent"] = 91;
- n_names["QMoveEvent"] = 92;
- n_names["QNetworkAddressEntry"] = 93;
- n_names["QNetworkCacheMetaData"] = 94;
- n_names["QNetworkCookie"] = 95;
- n_names["QNetworkInterface"] = 96;
- n_names["QNetworkProxy"] = 97;
- n_names["QNetworkProxyFactory"] = 98;
- n_names["QNetworkProxyQuery"] = 99;
- n_names["QNetworkRequest"] = 100;
- n_names["QOpenGLPaintDevice"] = 101;
- n_names["QOpenGLTexture"] = 102;
- n_names["QPagedPaintDevice"] = 103;
- n_names["QPaintDevice"] = 104;
- n_names["QPaintEvent"] = 105;
- n_names["QPainter"] = 106;
- n_names["QPainterPath"] = 107;
- n_names["QPainterPathStroker"] = 108;
- n_names["QPalette"] = 109;
- n_names["QPen"] = 110;
- n_names["QPersistentModelIndex"] = 111;
- n_names["QPicture"] = 112;
- n_names["QPixmap"] = 113;
- n_names["QPixmapCache"] = 114;
- n_names["QPrinter"] = 115;
- n_names["QPrinterInfo"] = 116;
- n_names["QProcessEnvironment"] = 117;
- n_names["QQuaternion"] = 118;
- n_names["QRadialGradient"] = 119;
- n_names["QReadLocker"] = 120;
- n_names["QReadWriteLock"] = 121;
- n_names["QRegExp"] = 122;
- n_names["QRegion"] = 123;
- n_names["QRegularExpression"] = 124;
- n_names["QResizeEvent"] = 125;
- n_names["QRunnable"] = 126;
- n_names["QSemaphore"] = 127;
- n_names["QShortcutEvent"] = 128;
- n_names["QShowEvent"] = 129;
- n_names["QSizePolicy"] = 130;
- n_names["QSpacerItem"] = 131;
- n_names["QSqlDatabase"] = 132;
- n_names["QSqlError"] = 133;
- n_names["QSqlField"] = 134;
- n_names["QSqlIndex"] = 135;
- n_names["QSqlQuery"] = 136;
- n_names["QSqlRecord"] = 137;
- n_names["QSqlRelation"] = 138;
- n_names["QSqlResult"] = 139;
- n_names["QSslCertificate"] = 140;
- n_names["QSslCipher"] = 141;
- n_names["QSslConfiguration"] = 142;
- n_names["QSslError"] = 143;
- n_names["QSslKey"] = 144;
- n_names["QStandardItem"] = 145;
- n_names["QStandardPaths"] = 146;
- n_names["QStatusTipEvent"] = 147;
- n_names["QStyleOption"] = 148;
- n_names["QStyleOptionGraphicsItem"] = 149;
- n_names["QSurface"] = 150;
- n_names["QSvgGenerator"] = 151;
- n_names["QSystemSemaphore"] = 152;
- n_names["QTableWidgetItem"] = 153;
- n_names["QTableWidgetSelectionRange"] = 154;
- n_names["QTabletEvent"] = 155;
- n_names["QTextBlock"] = 156;
- n_names["QTextBlockFormat"] = 157;
- n_names["QTextBlockUserData"] = 158;
- n_names["QTextBoundaryFinder"] = 159;
- n_names["QTextCharFormat"] = 160;
- n_names["QTextCodec"] = 161;
- n_names["QTextCursor"] = 162;
- n_names["QTextDecoder"] = 163;
- n_names["QTextDocumentFragment"] = 164;
- n_names["QTextDocumentWriter"] = 165;
- n_names["QTextEncoder"] = 166;
- n_names["QTextFormat"] = 167;
- n_names["QTextFragment"] = 168;
- n_names["QTextFrameFormat"] = 169;
- n_names["QTextImageFormat"] = 170;
- n_names["QTextLayout"] = 171;
- n_names["QTextLength"] = 172;
- n_names["QTextLine"] = 173;
- n_names["QTextListFormat"] = 174;
- n_names["QTextOption"] = 175;
- n_names["QTextTableCell"] = 176;
- n_names["QTextTableCellFormat"] = 177;
- n_names["QTextTableFormat"] = 178;
- n_names["QTime"] = 179;
- n_names["QTimeZone"] = 180;
- n_names["QTimerEvent"] = 181;
- n_names["QToolTip"] = 182;
- n_names["QTouchEvent"] = 183;
- n_names["QTransform"] = 184;
- n_names["QTreeWidgetItem"] = 185;
- n_names["QUndoCommand"] = 186;
- n_names["QUrl"] = 187;
- n_names["QVariant"] = 188;
- n_names["QVector2D"] = 189;
- n_names["QVector3D"] = 190;
- n_names["QVector4D"] = 191;
- n_names["QWebDatabase"] = 192;
- n_names["QWebElement"] = 193;
- n_names["QWebElementCollection"] = 194;
- n_names["QWebHistory"] = 195;
- n_names["QWebHistoryItem"] = 196;
- n_names["QWebHitTestResult"] = 197;
- n_names["QWebSecurityOrigin"] = 198;
- n_names["QWebSettings"] = 199;
- n_names["QWhatsThis"] = 200;
- n_names["QWhatsThisClickedEvent"] = 201;
- n_names["QWheelEvent"] = 202;
- n_names["QWidgetItem"] = 203;
- n_names["QWindowStateChangeEvent"] = 204;
- n_names["QWriteLocker"] = 205;
+ n_names["QAudioDeviceInfo"] = 8;
+ n_names["QAudioEncoderSettings"] = 9;
+ n_names["QAudioFormat"] = 10;
+ n_names["QAuthenticator"] = 11;
+ n_names["QBasicTimer"] = 12;
+ n_names["QBitArray"] = 13;
+ n_names["QBitmap"] = 14;
+ n_names["QBrush"] = 15;
+ n_names["QCameraInfo"] = 16;
+ n_names["QCameraViewfinderSettings"] = 17;
+ n_names["QChildEvent"] = 18;
+ n_names["QCloseEvent"] = 19;
+ n_names["QColor"] = 20;
+ n_names["QConicalGradient"] = 21;
+ n_names["QContextMenuEvent"] = 22;
+ n_names["QCryptographicHash"] = 23;
+ n_names["QCursor"] = 24;
+ n_names["QDate"] = 25;
+ n_names["QDateTime"] = 26;
+ n_names["QDesktopServices"] = 27;
+ n_names["QDir"] = 28;
+ n_names["QDirIterator"] = 29;
+ n_names["QDragEnterEvent"] = 30;
+ n_names["QDragLeaveEvent"] = 31;
+ n_names["QDragMoveEvent"] = 32;
+ n_names["QDropEvent"] = 33;
+ n_names["QDynamicPropertyChangeEvent"] = 34;
+ n_names["QEasingCurve"] = 35;
+ n_names["QEvent"] = 36;
+ n_names["QFileIconProvider"] = 37;
+ n_names["QFileInfo"] = 38;
+ n_names["QFileOpenEvent"] = 39;
+ n_names["QFocusEvent"] = 40;
+ n_names["QFont"] = 41;
+ n_names["QFontDatabase"] = 42;
+ n_names["QFontInfo"] = 43;
+ n_names["QFontMetrics"] = 44;
+ n_names["QGestureEvent"] = 45;
+ n_names["QGradient"] = 46;
+ n_names["QGraphicsAnchorLayout"] = 47;
+ n_names["QGraphicsEllipseItem"] = 48;
+ n_names["QGraphicsGridLayout"] = 49;
+ n_names["QGraphicsItem"] = 50;
+ n_names["QGraphicsItemGroup"] = 51;
+ n_names["QGraphicsLayout"] = 52;
+ n_names["QGraphicsLayoutItem"] = 53;
+ n_names["QGraphicsLineItem"] = 54;
+ n_names["QGraphicsLinearLayout"] = 55;
+ n_names["QGraphicsPathItem"] = 56;
+ n_names["QGraphicsPixmapItem"] = 57;
+ n_names["QGraphicsPolygonItem"] = 58;
+ n_names["QGraphicsRectItem"] = 59;
+ n_names["QGraphicsSceneContextMenuEvent"] = 60;
+ n_names["QGraphicsSceneDragDropEvent"] = 61;
+ n_names["QGraphicsSceneEvent"] = 62;
+ n_names["QGraphicsSceneHelpEvent"] = 63;
+ n_names["QGraphicsSceneHoverEvent"] = 64;
+ n_names["QGraphicsSceneMouseEvent"] = 65;
+ n_names["QGraphicsSceneMoveEvent"] = 66;
+ n_names["QGraphicsSceneResizeEvent"] = 67;
+ n_names["QGraphicsSceneWheelEvent"] = 68;
+ n_names["QGraphicsSimpleTextItem"] = 69;
+ n_names["QHelpContentItem"] = 70;
+ n_names["QHelpEvent"] = 71;
+ n_names["QHelpSearchQuery"] = 72;
+ n_names["QHideEvent"] = 73;
+ n_names["QHostAddress"] = 74;
+ n_names["QHostInfo"] = 75;
+ n_names["QHoverEvent"] = 76;
+ n_names["QIcon"] = 77;
+ n_names["QIconDragEvent"] = 78;
+ n_names["QImage"] = 79;
+ n_names["QInputEvent"] = 80;
+ n_names["QInputMethodEvent"] = 81;
+ n_names["QItemEditorFactory"] = 82;
+ n_names["QItemSelectionRange"] = 83;
+ n_names["QKeyEvent"] = 84;
+ n_names["QKeySequence"] = 85;
+ n_names["QLayoutItem"] = 86;
+ n_names["QLibraryInfo"] = 87;
+ n_names["QLinearGradient"] = 88;
+ n_names["QListWidgetItem"] = 89;
+ n_names["QLocale"] = 90;
+ n_names["QMargins"] = 91;
+ n_names["QMatrix"] = 92;
+ n_names["QMatrix4x4"] = 93;
+ n_names["QMetaObject"] = 94;
+ n_names["QModelIndex"] = 95;
+ n_names["QMouseEvent"] = 96;
+ n_names["QMoveEvent"] = 97;
+ n_names["QNetworkAddressEntry"] = 98;
+ n_names["QNetworkCacheMetaData"] = 99;
+ n_names["QNetworkCookie"] = 100;
+ n_names["QNetworkInterface"] = 101;
+ n_names["QNetworkProxy"] = 102;
+ n_names["QNetworkProxyFactory"] = 103;
+ n_names["QNetworkProxyQuery"] = 104;
+ n_names["QNetworkRequest"] = 105;
+ n_names["QOpenGLPaintDevice"] = 106;
+ n_names["QOpenGLTexture"] = 107;
+ n_names["QPagedPaintDevice"] = 108;
+ n_names["QPaintDevice"] = 109;
+ n_names["QPaintEvent"] = 110;
+ n_names["QPainter"] = 111;
+ n_names["QPainterPath"] = 112;
+ n_names["QPainterPathStroker"] = 113;
+ n_names["QPalette"] = 114;
+ n_names["QPen"] = 115;
+ n_names["QPersistentModelIndex"] = 116;
+ n_names["QPicture"] = 117;
+ n_names["QPixmap"] = 118;
+ n_names["QPixmapCache"] = 119;
+ n_names["QPrinter"] = 120;
+ n_names["QPrinterInfo"] = 121;
+ n_names["QProcessEnvironment"] = 122;
+ n_names["QQuaternion"] = 123;
+ n_names["QRadialGradient"] = 124;
+ n_names["QReadLocker"] = 125;
+ n_names["QReadWriteLock"] = 126;
+ n_names["QRegExp"] = 127;
+ n_names["QRegion"] = 128;
+ n_names["QRegularExpression"] = 129;
+ n_names["QResizeEvent"] = 130;
+ n_names["QRunnable"] = 131;
+ n_names["QSemaphore"] = 132;
+ n_names["QShortcutEvent"] = 133;
+ n_names["QShowEvent"] = 134;
+ n_names["QSizePolicy"] = 135;
+ n_names["QSpacerItem"] = 136;
+ n_names["QSqlDatabase"] = 137;
+ n_names["QSqlError"] = 138;
+ n_names["QSqlField"] = 139;
+ n_names["QSqlIndex"] = 140;
+ n_names["QSqlQuery"] = 141;
+ n_names["QSqlRecord"] = 142;
+ n_names["QSqlRelation"] = 143;
+ n_names["QSqlResult"] = 144;
+ n_names["QSslCertificate"] = 145;
+ n_names["QSslCipher"] = 146;
+ n_names["QSslConfiguration"] = 147;
+ n_names["QSslError"] = 148;
+ n_names["QSslKey"] = 149;
+ n_names["QStandardItem"] = 150;
+ n_names["QStandardPaths"] = 151;
+ n_names["QStatusTipEvent"] = 152;
+ n_names["QStyleOption"] = 153;
+ n_names["QStyleOptionGraphicsItem"] = 154;
+ n_names["QSurface"] = 155;
+ n_names["QSvgGenerator"] = 156;
+ n_names["QSysInfo"] = 157;
+ n_names["QSystemSemaphore"] = 158;
+ n_names["QTableWidgetItem"] = 159;
+ n_names["QTableWidgetSelectionRange"] = 160;
+ n_names["QTabletEvent"] = 161;
+ n_names["QTextBlock"] = 162;
+ n_names["QTextBlockFormat"] = 163;
+ n_names["QTextBlockUserData"] = 164;
+ n_names["QTextBoundaryFinder"] = 165;
+ n_names["QTextCharFormat"] = 166;
+ n_names["QTextCodec"] = 167;
+ n_names["QTextCursor"] = 168;
+ n_names["QTextDecoder"] = 169;
+ n_names["QTextDocumentFragment"] = 170;
+ n_names["QTextDocumentWriter"] = 171;
+ n_names["QTextEncoder"] = 172;
+ n_names["QTextFormat"] = 173;
+ n_names["QTextFragment"] = 174;
+ n_names["QTextFrameFormat"] = 175;
+ n_names["QTextImageFormat"] = 176;
+ n_names["QTextLayout"] = 177;
+ n_names["QTextLength"] = 178;
+ n_names["QTextLine"] = 179;
+ n_names["QTextListFormat"] = 180;
+ n_names["QTextOption"] = 181;
+ n_names["QTextTableCell"] = 182;
+ n_names["QTextTableCellFormat"] = 183;
+ n_names["QTextTableFormat"] = 184;
+ n_names["QTime"] = 185;
+ n_names["QTimeZone"] = 186;
+ n_names["QTimerEvent"] = 187;
+ n_names["QToolTip"] = 188;
+ n_names["QTouchEvent"] = 189;
+ n_names["QTransform"] = 190;
+ n_names["QTreeWidgetItem"] = 191;
+ n_names["QUndoCommand"] = 192;
+ n_names["QUrl"] = 193;
+ n_names["QVariant"] = 194;
+ n_names["QVector2D"] = 195;
+ n_names["QVector3D"] = 196;
+ n_names["QVector4D"] = 197;
+ n_names["QVideoEncoderSettings"] = 198;
+ n_names["QVideoFrame"] = 199;
+ n_names["QVideoSurfaceFormat"] = 200;
+ n_names["QWebDatabase"] = 201;
+ n_names["QWebElement"] = 202;
+ n_names["QWebElementCollection"] = 203;
+ n_names["QWebHistory"] = 204;
+ n_names["QWebHistoryItem"] = 205;
+ n_names["QWebHitTestResult"] = 206;
+ n_names["QWebSecurityOrigin"] = 207;
+ n_names["QWebSettings"] = 208;
+ n_names["QWhatsThis"] = 209;
+ n_names["QWhatsThisClickedEvent"] = 210;
+ n_names["QWheelEvent"] = 211;
+ n_names["QWidgetItem"] = 212;
+ n_names["QWindowStateChangeEvent"] = 213;
+ n_names["QWriteLocker"] = 214;
override_function_ids["duration()"] = 1;
override_function_ids["updateCurrentTime(int)"] = 2;
override_function_ids["updateDirection(QAbstractAnimation::Direction)"] = 3;
@@ -1366,326 +1412,346 @@ void LObjects::ini(EQL* e) {
override_function_ids["eventTest(QEvent*)"] = 158;
override_function_ids["onTransition(QEvent*)"] = 159;
override_function_ids["notify(QObject*,QEvent*)"] = 160;
- override_function_ids["addItem(QLayoutItem*)"] = 161;
- override_function_ids["count()"] = 162;
- override_function_ids["expandingDirections()"] = 163;
- override_function_ids["invalidate()"] = 164;
- override_function_ids["itemAt(int)"] = 165;
- override_function_ids["maximumSize()"] = 166;
- override_function_ids["minimumHeightForWidth(int)"] = 167;
- override_function_ids["minimumSize()"] = 168;
- override_function_ids["setGeometry(QRect)"] = 169;
- override_function_ids["takeAt(int)"] = 170;
- override_function_ids["indexOf(QWidget*)"] = 171;
- override_function_ids["controlTypes()"] = 172;
- override_function_ids["geometry()"] = 173;
- override_function_ids["isEmpty()"] = 174;
- override_function_ids["layout()"] = 175;
- override_function_ids["paintCell(QPainter*,QRect,QDate)"] = 176;
- override_function_ids["done(int)"] = 177;
- override_function_ids["createColumn(QModelIndex)"] = 178;
- override_function_ids["selectAll()"] = 179;
- override_function_ids["setRootIndex(QModelIndex)"] = 180;
- override_function_ids["currentChanged(QModelIndex,QModelIndex)"] = 181;
- override_function_ids["rowsInserted(QModelIndex,int,int)"] = 182;
- override_function_ids["hidePopup()"] = 183;
- override_function_ids["showPopup()"] = 184;
- override_function_ids["drawComplexControl(ComplexControl,QStyleOptionComplex*,QPainter*,QWidget*)"] = 185;
- override_function_ids["drawControl(ControlElement,QStyleOption*,QPainter*,QWidget*)"] = 186;
- override_function_ids["drawPrimitive(PrimitiveElement,QStyleOption*,QPainter*,QWidget*)"] = 187;
- override_function_ids["generatedIconPixmap(QIcon::Mode,QPixmap,QStyleOption*)"] = 188;
- override_function_ids["hitTestComplexControl(ComplexControl,QStyleOptionComplex*,QPoint,QWidget*)"] = 189;
- override_function_ids["layoutSpacing(QSizePolicy::ControlType,QSizePolicy::ControlType,Qt::Orientation,QStyleOption*,QWidget*)"] = 190;
- override_function_ids["pixelMetric(PixelMetric,QStyleOption*,QWidget*)"] = 191;
- override_function_ids["polish(QPalette)"] = 192;
- override_function_ids["polish(QApplication*)"] = 193;
- override_function_ids["polish(QWidget*)"] = 194;
- override_function_ids["sizeFromContents(ContentsType,QStyleOption*,QSize,QWidget*)"] = 195;
- override_function_ids["standardPixmap(StandardPixmap,QStyleOption*,QWidget*)"] = 196;
- override_function_ids["styleHint(StyleHint,QStyleOption*,QWidget*,QStyleHintReturn*)"] = 197;
- override_function_ids["subControlRect(ComplexControl,QStyleOptionComplex*,SubControl,QWidget*)"] = 198;
- override_function_ids["subElementRect(SubElement,QStyleOption*,QWidget*)"] = 199;
- override_function_ids["unpolish(QWidget*)"] = 200;
- override_function_ids["unpolish(QApplication*)"] = 201;
- override_function_ids["drawItemPixmap(QPainter*,QRect,int,QPixmap)"] = 202;
- override_function_ids["drawItemText(QPainter*,QRect,int,QPalette,bool,QString,QPalette::ColorRole)"] = 203;
- override_function_ids["itemPixmapRect(QRect,int,QPixmap)"] = 204;
- override_function_ids["itemTextRect(QFontMetrics,QRect,int,bool,QString)"] = 205;
- override_function_ids["standardIcon(StandardPixmap,QStyleOption*,QWidget*)"] = 206;
- override_function_ids["standardPalette()"] = 207;
- override_function_ids["pathFromIndex(QModelIndex)"] = 208;
- override_function_ids["splitPath(QString)"] = 209;
- override_function_ids["dateTimeFromText(QString)"] = 210;
- override_function_ids["textFromDateTime(QDateTime)"] = 211;
- override_function_ids["clear()"] = 212;
- override_function_ids["textFromValue(double)"] = 213;
- override_function_ids["valueFromText(QString)"] = 214;
- override_function_ids["setRange(double,double,int)"] = 215;
- override_function_ids["fileName()"] = 216;
- override_function_ids["permissions()"] = 217;
- override_function_ids["resize(qint64)"] = 218;
- override_function_ids["setPermissions(Permissions)"] = 219;
- override_function_ids["accept()"] = 220;
- override_function_ids["boundingRectFor(QRectF)"] = 221;
- override_function_ids["draw(QPainter*)"] = 222;
- override_function_ids["sourceChanged(ChangeFlags)"] = 223;
- override_function_ids["paint(QPainter*,QStyleOptionGraphicsItem*,QWidget*)"] = 224;
- override_function_ids["setGeometry(QRectF)"] = 225;
- override_function_ids["type()"] = 226;
- override_function_ids["contextMenuEvent(QGraphicsSceneContextMenuEvent*)"] = 227;
- override_function_ids["dragEnterEvent(QGraphicsSceneDragDropEvent*)"] = 228;
- override_function_ids["dragLeaveEvent(QGraphicsSceneDragDropEvent*)"] = 229;
- override_function_ids["dragMoveEvent(QGraphicsSceneDragDropEvent*)"] = 230;
- override_function_ids["dropEvent(QGraphicsSceneDragDropEvent*)"] = 231;
- override_function_ids["grabMouseEvent(QEvent*)"] = 232;
- override_function_ids["hoverEnterEvent(QGraphicsSceneHoverEvent*)"] = 233;
- override_function_ids["hoverLeaveEvent(QGraphicsSceneHoverEvent*)"] = 234;
- override_function_ids["hoverMoveEvent(QGraphicsSceneHoverEvent*)"] = 235;
- override_function_ids["itemChange(GraphicsItemChange,QVariant)"] = 236;
- override_function_ids["mouseDoubleClickEvent(QGraphicsSceneMouseEvent*)"] = 237;
- override_function_ids["mouseMoveEvent(QGraphicsSceneMouseEvent*)"] = 238;
- override_function_ids["mousePressEvent(QGraphicsSceneMouseEvent*)"] = 239;
- override_function_ids["mouseReleaseEvent(QGraphicsSceneMouseEvent*)"] = 240;
- override_function_ids["resizeEvent(QGraphicsSceneResizeEvent*)"] = 241;
- override_function_ids["sizeHint(Qt::SizeHint,QSizeF)"] = 242;
- override_function_ids["ungrabMouseEvent(QEvent*)"] = 243;
- override_function_ids["wheelEvent(QGraphicsSceneWheelEvent*)"] = 244;
- override_function_ids["paintWindowFrame(QPainter*,QStyleOptionGraphicsItem*,QWidget*)"] = 245;
- override_function_ids["grabKeyboardEvent(QEvent*)"] = 246;
- override_function_ids["initStyleOption(QStyleOption*)"] = 247;
- override_function_ids["moveEvent(QGraphicsSceneMoveEvent*)"] = 248;
- override_function_ids["polishEvent()"] = 249;
- override_function_ids["ungrabKeyboardEvent(QEvent*)"] = 250;
- override_function_ids["windowFrameEvent(QEvent*)"] = 251;
- override_function_ids["windowFrameSectionAt(QPointF)"] = 252;
- override_function_ids["boundingRect()"] = 253;
- override_function_ids["shape()"] = 254;
- override_function_ids["sceneEvent(QEvent*)"] = 255;
- override_function_ids["updateGeometry()"] = 256;
- override_function_ids["drawBackground(QPainter*,QRectF)"] = 257;
- override_function_ids["drawForeground(QPainter*,QRectF)"] = 258;
- override_function_ids["helpEvent(QGraphicsSceneHelpEvent*)"] = 259;
- override_function_ids["contains(QPointF)"] = 260;
- override_function_ids["isObscuredBy(QGraphicsItem*)"] = 261;
- override_function_ids["opaqueArea()"] = 262;
- override_function_ids["paintSection(QPainter*,QRect,int)"] = 263;
- override_function_ids["sectionSizeFromContents(int)"] = 264;
- override_function_ids["drawBranches(QPainter*,QRect,QModelIndex)"] = 265;
- override_function_ids["drawRow(QPainter*,QStyleOptionViewItem,QModelIndex)"] = 266;
- override_function_ids["dataChanged(QModelIndex,QModelIndex,QVector)"] = 267;
- override_function_ids["rowsAboutToBeRemoved(QModelIndex,int,int)"] = 268;
- override_function_ids["selectionChanged(QItemSelection,QItemSelection)"] = 269;
- override_function_ids["updateGeometries()"] = 270;
- override_function_ids["setRange(int,int)"] = 271;
- override_function_ids["drawCheck(QPainter*,QStyleOptionViewItem,QRect,Qt::CheckState)"] = 272;
- override_function_ids["drawDecoration(QPainter*,QStyleOptionViewItem,QRect,QPixmap)"] = 273;
- override_function_ids["drawDisplay(QPainter*,QStyleOptionViewItem,QRect,QString)"] = 274;
- override_function_ids["drawFocus(QPainter*,QStyleOptionViewItem,QRect)"] = 275;
- override_function_ids["dropMimeData(int,QMimeData*,Qt::DropAction)"] = 276;
- override_function_ids["mimeData(QList)"] = 277;
- override_function_ids["hasPendingConnections()"] = 278;
- override_function_ids["nextPendingConnection()"] = 279;
- override_function_ids["incomingConnection(quintptr)"] = 280;
- override_function_ids["createPopupMenu()"] = 281;
- override_function_ids["formats()"] = 282;
- override_function_ids["hasFormat(QString)"] = 283;
- override_function_ids["retrieveData(QString,QVariant::Type)"] = 284;
- override_function_ids["cookiesForUrl(QUrl)"] = 285;
- override_function_ids["deleteCookie(QNetworkCookie)"] = 286;
- override_function_ids["insertCookie(QNetworkCookie)"] = 287;
- override_function_ids["setCookiesFromUrl(QList,QUrl)"] = 288;
- override_function_ids["updateCookie(QNetworkCookie)"] = 289;
- override_function_ids["validateCookie(QNetworkCookie,QUrl)"] = 290;
- override_function_ids["expire()"] = 291;
- override_function_ids["cacheSize()"] = 292;
- override_function_ids["metaData(QUrl)"] = 293;
- override_function_ids["remove(QUrl)"] = 294;
- override_function_ids["updateMetaData(QNetworkCacheMetaData)"] = 295;
- override_function_ids["link()"] = 296;
- override_function_ids["initializeGL()"] = 297;
- override_function_ids["paintGL()"] = 298;
- override_function_ids["resizeGL(int,int)"] = 299;
- override_function_ids["paintOverGL()"] = 300;
- override_function_ids["paintUnderGL()"] = 301;
- override_function_ids["focusObject()"] = 302;
- override_function_ids["exposeEvent(QExposeEvent*)"] = 303;
- override_function_ids["touchEvent(QTouchEvent*)"] = 304;
- override_function_ids["format()"] = 305;
- override_function_ids["surfaceType()"] = 306;
- override_function_ids["loadResource(int,QUrl)"] = 307;
- override_function_ids["canInsertFromMimeData(QMimeData*)"] = 308;
- override_function_ids["createMimeDataFromSelection()"] = 309;
- override_function_ids["insertFromMimeData(QMimeData*)"] = 310;
- override_function_ids["setupChildProcess()"] = 311;
- override_function_ids["text()"] = 312;
- override_function_ids["updateCurrentValue(QVariant)"] = 313;
- override_function_ids["interpolated(QVariant,QVariant,qreal)"] = 314;
- override_function_ids["filterAcceptsColumn(int,QModelIndex)"] = 315;
- override_function_ids["filterAcceptsRow(int,QModelIndex)"] = 316;
- override_function_ids["lessThan(QModelIndex,QModelIndex)"] = 317;
- override_function_ids["textFromValue(int)"] = 318;
- override_function_ids["drawContents(QPainter*)"] = 319;
- override_function_ids["beginTransaction()"] = 320;
- override_function_ids["commitTransaction()"] = 321;
- override_function_ids["createResult()"] = 322;
- override_function_ids["escapeIdentifier(QString,IdentifierType)"] = 323;
- override_function_ids["formatValue(QSqlField,bool)"] = 324;
- override_function_ids["handle()"] = 325;
- override_function_ids["hasFeature(DriverFeature)"] = 326;
- override_function_ids["isIdentifierEscaped(QString,IdentifierType)"] = 327;
- override_function_ids["isOpen()"] = 328;
- override_function_ids["open(QString,QString,QString,QString,int,QString)"] = 329;
- override_function_ids["primaryIndex(QString)"] = 330;
- override_function_ids["record(QString)"] = 331;
- override_function_ids["rollbackTransaction()"] = 332;
- override_function_ids["sqlStatement(StatementType,QString,QSqlRecord,bool)"] = 333;
- override_function_ids["stripDelimiters(QString,IdentifierType)"] = 334;
- override_function_ids["subscribeToNotification(QString)"] = 335;
- override_function_ids["subscribedToNotifications()"] = 336;
- override_function_ids["tables(QSql::TableType)"] = 337;
- override_function_ids["unsubscribeFromNotification(QString)"] = 338;
- override_function_ids["setLastError(QSqlError)"] = 339;
- override_function_ids["setOpen(bool)"] = 340;
- override_function_ids["setOpenError(bool)"] = 341;
- override_function_ids["indexInQuery(QModelIndex)"] = 342;
- override_function_ids["queryChange()"] = 343;
- override_function_ids["relationModel(int)"] = 344;
- override_function_ids["setRelation(int,QSqlRelation)"] = 345;
- override_function_ids["select()"] = 346;
- override_function_ids["setTable(QString)"] = 347;
- override_function_ids["insertRowIntoTable(QSqlRecord)"] = 348;
- override_function_ids["orderByClause()"] = 349;
- override_function_ids["selectStatement()"] = 350;
- override_function_ids["updateRowInTable(int,QSqlRecord)"] = 351;
- override_function_ids["revertRow(int)"] = 352;
- override_function_ids["setEditStrategy(EditStrategy)"] = 353;
- override_function_ids["setFilter(QString)"] = 354;
- override_function_ids["setSort(int,Qt::SortOrder)"] = 355;
- override_function_ids["deleteRowFromTable(int)"] = 356;
- override_function_ids["displayText(QVariant,QLocale)"] = 357;
- override_function_ids["initStyleOption(QStyleOptionViewItem*,QModelIndex)"] = 358;
- override_function_ids["highlightBlock(QString)"] = 359;
- override_function_ids["minimumTabSizeHint(int)"] = 360;
- override_function_ids["tabInserted(int)"] = 361;
- override_function_ids["tabLayoutChange()"] = 362;
- override_function_ids["tabRemoved(int)"] = 363;
- override_function_ids["tabSizeHint(int)"] = 364;
- override_function_ids["dropMimeData(int,int,QMimeData*,Qt::DropAction)"] = 365;
- override_function_ids["mimeData(QList)"] = 366;
- override_function_ids["blockFormatChanged(QTextBlock)"] = 367;
- override_function_ids["blockInserted(QTextBlock)"] = 368;
- override_function_ids["blockRemoved(QTextBlock)"] = 369;
- override_function_ids["createObject(QTextFormat)"] = 370;
- override_function_ids["valueForTime(int)"] = 371;
- override_function_ids["itemInserted(int)"] = 372;
- override_function_ids["itemRemoved(int)"] = 373;
- override_function_ids["translate(const char*,const char*,const char*,int)"] = 374;
- override_function_ids["dropMimeData(QTreeWidgetItem*,int,QMimeData*,Qt::DropAction)"] = 375;
- override_function_ids["mimeData(QList)"] = 376;
- override_function_ids["addHistoryEntry(QString)"] = 377;
- override_function_ids["historyContains(QString)"] = 378;
- override_function_ids["extension(Extension,ExtensionOption*,ExtensionReturn*)"] = 379;
- override_function_ids["shouldInterruptJavaScript()"] = 380;
- override_function_ids["supportsExtension(Extension)"] = 381;
- override_function_ids["triggerAction(WebAction,bool)"] = 382;
- override_function_ids["acceptNavigationRequest(QWebFrame*,QNetworkRequest,NavigationType)"] = 383;
- override_function_ids["chooseFile(QWebFrame*,QString)"] = 384;
- override_function_ids["createPlugin(QString,QUrl,QStringList,QStringList)"] = 385;
- override_function_ids["createWindow(WebWindowType)"] = 386;
- override_function_ids["javaScriptAlert(QWebFrame*,QString)"] = 387;
- override_function_ids["javaScriptConfirm(QWebFrame*,QString)"] = 388;
- override_function_ids["javaScriptConsoleMessage(QString,int,QString)"] = 389;
- override_function_ids["javaScriptPrompt(QWebFrame*,QString,QString,QString*)"] = 390;
- override_function_ids["userAgentForUrl(QUrl)"] = 391;
- override_function_ids["create(QString,QUrl,QStringList,QStringList)"] = 392;
- override_function_ids["plugins()"] = 393;
- override_function_ids["refreshPlugins()"] = 394;
- override_function_ids["createWindow(QWebPage::WebWindowType)"] = 395;
- override_function_ids["createWidget(QWidget*)"] = 396;
- override_function_ids["deleteWidget(QWidget*)"] = 397;
- override_function_ids["nextId()"] = 398;
- override_function_ids["validateCurrentPage()"] = 399;
- override_function_ids["cleanupPage(int)"] = 400;
- override_function_ids["initializePage(int)"] = 401;
- override_function_ids["cleanupPage()"] = 402;
- override_function_ids["initializePage()"] = 403;
- override_function_ids["isComplete()"] = 404;
- override_function_ids["validatePage()"] = 405;
- override_function_ids["advance(int)"] = 406;
- override_function_ids["collidesWithItem(QGraphicsItem*,Qt::ItemSelectionMode)"] = 407;
- override_function_ids["collidesWithPath(QPainterPath,Qt::ItemSelectionMode)"] = 408;
- override_function_ids["sceneEventFilter(QGraphicsItem*,QEvent*)"] = 409;
- override_function_ids["accessibleInterface()"] = 410;
- override_function_ids["actionNames()"] = 411;
- override_function_ids["backgroundColor()"] = 412;
- override_function_ids["child(int)"] = 413;
- override_function_ids["childCount()"] = 414;
- override_function_ids["doAction(QString)"] = 415;
- override_function_ids["focusChild()"] = 416;
- override_function_ids["foregroundColor()"] = 417;
- override_function_ids["indexOfChild(QAccessibleInterface*)"] = 418;
- override_function_ids["isValid()"] = 419;
- override_function_ids["keyBindingsForAction(QString)"] = 420;
- override_function_ids["parent()"] = 421;
- override_function_ids["rect()"] = 422;
- override_function_ids["role()"] = 423;
- override_function_ids["text(QAccessible::Text)"] = 424;
- override_function_ids["window()"] = 425;
- override_function_ids["childAt(int,int)"] = 426;
- override_function_ids["object()"] = 427;
- override_function_ids["setText(QAccessible::Text,QString)"] = 428;
- override_function_ids["icon(IconType)"] = 429;
- override_function_ids["icon(QFileInfo)"] = 430;
- override_function_ids["type(QFileInfo)"] = 431;
- override_function_ids["removeAt(int)"] = 432;
- override_function_ids["widgetEvent(QEvent*)"] = 433;
- override_function_ids["createEditor(int,QWidget*)"] = 434;
- override_function_ids["valuePropertyName(int)"] = 435;
- override_function_ids["spacerItem()"] = 436;
- override_function_ids["widget()"] = 437;
- override_function_ids["clone()"] = 438;
- override_function_ids["data(int)"] = 439;
- override_function_ids["setData(int,QVariant)"] = 440;
- override_function_ids["queryProxy(QNetworkProxyQuery)"] = 441;
- override_function_ids["ensureActiveTarget()"] = 442;
- override_function_ids["metric(QPaintDevice::PaintDeviceMetric)"] = 443;
- override_function_ids["setData(const char*,uint)"] = 444;
- override_function_ids["newPage()"] = 445;
- override_function_ids["setPageSize(PageSize)"] = 446;
- override_function_ids["setPageSizeMM(QSizeF)"] = 447;
- override_function_ids["run()"] = 448;
- override_function_ids["bindValue(int,QVariant,QSql::ParamType)"] = 449;
- override_function_ids["bindValue(QString,QVariant,QSql::ParamType)"] = 450;
- override_function_ids["fetch(int)"] = 451;
- override_function_ids["fetchFirst()"] = 452;
- override_function_ids["fetchLast()"] = 453;
- override_function_ids["fetchNext()"] = 454;
- override_function_ids["fetchPrevious()"] = 455;
- override_function_ids["isNull(int)"] = 456;
- override_function_ids["lastInsertId()"] = 457;
- override_function_ids["numRowsAffected()"] = 458;
- override_function_ids["prepare(QString)"] = 459;
- override_function_ids["record()"] = 460;
- override_function_ids["reset(QString)"] = 461;
- override_function_ids["savePrepare(QString)"] = 462;
- override_function_ids["setActive(bool)"] = 463;
- override_function_ids["setAt(int)"] = 464;
- override_function_ids["setForwardOnly(bool)"] = 465;
- override_function_ids["setQuery(QString)"] = 466;
- override_function_ids["setSelect(bool)"] = 467;
- override_function_ids["setData(QVariant,int)"] = 468;
- override_function_ids["aliases()"] = 469;
- override_function_ids["mibEnum()"] = 470;
- override_function_ids["name()"] = 471;
- override_function_ids["convertFromUnicode(QChar*,int,ConverterState*)"] = 472;
- override_function_ids["convertToUnicode(const char*,int,ConverterState*)"] = 473;
- override_function_ids["data(int,int)"] = 474;
- override_function_ids["setData(int,int,QVariant)"] = 475;
- override_function_ids["id()"] = 476;
- override_function_ids["mergeWith(QUndoCommand*)"] = 477;
- override_function_ids["redo()"] = 478;
- override_function_ids["undo()"] = 479;
- override_arg_types = new const char** [479];
+ override_function_ids["mediaObject()"] = 161;
+ override_function_ids["addItem(QLayoutItem*)"] = 162;
+ override_function_ids["count()"] = 163;
+ override_function_ids["expandingDirections()"] = 164;
+ override_function_ids["invalidate()"] = 165;
+ override_function_ids["itemAt(int)"] = 166;
+ override_function_ids["maximumSize()"] = 167;
+ override_function_ids["minimumHeightForWidth(int)"] = 168;
+ override_function_ids["minimumSize()"] = 169;
+ override_function_ids["setGeometry(QRect)"] = 170;
+ override_function_ids["takeAt(int)"] = 171;
+ override_function_ids["indexOf(QWidget*)"] = 172;
+ override_function_ids["controlTypes()"] = 173;
+ override_function_ids["geometry()"] = 174;
+ override_function_ids["isEmpty()"] = 175;
+ override_function_ids["layout()"] = 176;
+ override_function_ids["paintCell(QPainter*,QRect,QDate)"] = 177;
+ override_function_ids["availability()"] = 178;
+ override_function_ids["bind(QObject*)"] = 179;
+ override_function_ids["isAvailable()"] = 180;
+ override_function_ids["service()"] = 181;
+ override_function_ids["unbind(QObject*)"] = 182;
+ override_function_ids["setMediaObject(QMediaObject*)"] = 183;
+ override_function_ids["done(int)"] = 184;
+ override_function_ids["createColumn(QModelIndex)"] = 185;
+ override_function_ids["selectAll()"] = 186;
+ override_function_ids["setRootIndex(QModelIndex)"] = 187;
+ override_function_ids["currentChanged(QModelIndex,QModelIndex)"] = 188;
+ override_function_ids["rowsInserted(QModelIndex,int,int)"] = 189;
+ override_function_ids["hidePopup()"] = 190;
+ override_function_ids["showPopup()"] = 191;
+ override_function_ids["drawComplexControl(ComplexControl,QStyleOptionComplex*,QPainter*,QWidget*)"] = 192;
+ override_function_ids["drawControl(ControlElement,QStyleOption*,QPainter*,QWidget*)"] = 193;
+ override_function_ids["drawPrimitive(PrimitiveElement,QStyleOption*,QPainter*,QWidget*)"] = 194;
+ override_function_ids["generatedIconPixmap(QIcon::Mode,QPixmap,QStyleOption*)"] = 195;
+ override_function_ids["hitTestComplexControl(ComplexControl,QStyleOptionComplex*,QPoint,QWidget*)"] = 196;
+ override_function_ids["layoutSpacing(QSizePolicy::ControlType,QSizePolicy::ControlType,Qt::Orientation,QStyleOption*,QWidget*)"] = 197;
+ override_function_ids["pixelMetric(PixelMetric,QStyleOption*,QWidget*)"] = 198;
+ override_function_ids["polish(QPalette)"] = 199;
+ override_function_ids["polish(QApplication*)"] = 200;
+ override_function_ids["polish(QWidget*)"] = 201;
+ override_function_ids["sizeFromContents(ContentsType,QStyleOption*,QSize,QWidget*)"] = 202;
+ override_function_ids["standardPixmap(StandardPixmap,QStyleOption*,QWidget*)"] = 203;
+ override_function_ids["styleHint(StyleHint,QStyleOption*,QWidget*,QStyleHintReturn*)"] = 204;
+ override_function_ids["subControlRect(ComplexControl,QStyleOptionComplex*,SubControl,QWidget*)"] = 205;
+ override_function_ids["subElementRect(SubElement,QStyleOption*,QWidget*)"] = 206;
+ override_function_ids["unpolish(QWidget*)"] = 207;
+ override_function_ids["unpolish(QApplication*)"] = 208;
+ override_function_ids["drawItemPixmap(QPainter*,QRect,int,QPixmap)"] = 209;
+ override_function_ids["drawItemText(QPainter*,QRect,int,QPalette,bool,QString,QPalette::ColorRole)"] = 210;
+ override_function_ids["itemPixmapRect(QRect,int,QPixmap)"] = 211;
+ override_function_ids["itemTextRect(QFontMetrics,QRect,int,bool,QString)"] = 212;
+ override_function_ids["standardIcon(StandardPixmap,QStyleOption*,QWidget*)"] = 213;
+ override_function_ids["standardPalette()"] = 214;
+ override_function_ids["pathFromIndex(QModelIndex)"] = 215;
+ override_function_ids["splitPath(QString)"] = 216;
+ override_function_ids["dateTimeFromText(QString)"] = 217;
+ override_function_ids["textFromDateTime(QDateTime)"] = 218;
+ override_function_ids["clear()"] = 219;
+ override_function_ids["textFromValue(double)"] = 220;
+ override_function_ids["valueFromText(QString)"] = 221;
+ override_function_ids["setRange(double,double,int)"] = 222;
+ override_function_ids["fileName()"] = 223;
+ override_function_ids["permissions()"] = 224;
+ override_function_ids["resize(qint64)"] = 225;
+ override_function_ids["setPermissions(Permissions)"] = 226;
+ override_function_ids["accept()"] = 227;
+ override_function_ids["boundingRectFor(QRectF)"] = 228;
+ override_function_ids["draw(QPainter*)"] = 229;
+ override_function_ids["sourceChanged(ChangeFlags)"] = 230;
+ override_function_ids["paint(QPainter*,QStyleOptionGraphicsItem*,QWidget*)"] = 231;
+ override_function_ids["setGeometry(QRectF)"] = 232;
+ override_function_ids["type()"] = 233;
+ override_function_ids["contextMenuEvent(QGraphicsSceneContextMenuEvent*)"] = 234;
+ override_function_ids["dragEnterEvent(QGraphicsSceneDragDropEvent*)"] = 235;
+ override_function_ids["dragLeaveEvent(QGraphicsSceneDragDropEvent*)"] = 236;
+ override_function_ids["dragMoveEvent(QGraphicsSceneDragDropEvent*)"] = 237;
+ override_function_ids["dropEvent(QGraphicsSceneDragDropEvent*)"] = 238;
+ override_function_ids["grabMouseEvent(QEvent*)"] = 239;
+ override_function_ids["hoverEnterEvent(QGraphicsSceneHoverEvent*)"] = 240;
+ override_function_ids["hoverLeaveEvent(QGraphicsSceneHoverEvent*)"] = 241;
+ override_function_ids["hoverMoveEvent(QGraphicsSceneHoverEvent*)"] = 242;
+ override_function_ids["itemChange(GraphicsItemChange,QVariant)"] = 243;
+ override_function_ids["mouseDoubleClickEvent(QGraphicsSceneMouseEvent*)"] = 244;
+ override_function_ids["mouseMoveEvent(QGraphicsSceneMouseEvent*)"] = 245;
+ override_function_ids["mousePressEvent(QGraphicsSceneMouseEvent*)"] = 246;
+ override_function_ids["mouseReleaseEvent(QGraphicsSceneMouseEvent*)"] = 247;
+ override_function_ids["resizeEvent(QGraphicsSceneResizeEvent*)"] = 248;
+ override_function_ids["sizeHint(Qt::SizeHint,QSizeF)"] = 249;
+ override_function_ids["ungrabMouseEvent(QEvent*)"] = 250;
+ override_function_ids["wheelEvent(QGraphicsSceneWheelEvent*)"] = 251;
+ override_function_ids["paintWindowFrame(QPainter*,QStyleOptionGraphicsItem*,QWidget*)"] = 252;
+ override_function_ids["grabKeyboardEvent(QEvent*)"] = 253;
+ override_function_ids["initStyleOption(QStyleOption*)"] = 254;
+ override_function_ids["moveEvent(QGraphicsSceneMoveEvent*)"] = 255;
+ override_function_ids["polishEvent()"] = 256;
+ override_function_ids["ungrabKeyboardEvent(QEvent*)"] = 257;
+ override_function_ids["windowFrameEvent(QEvent*)"] = 258;
+ override_function_ids["windowFrameSectionAt(QPointF)"] = 259;
+ override_function_ids["boundingRect()"] = 260;
+ override_function_ids["shape()"] = 261;
+ override_function_ids["sceneEvent(QEvent*)"] = 262;
+ override_function_ids["updateGeometry()"] = 263;
+ override_function_ids["drawBackground(QPainter*,QRectF)"] = 264;
+ override_function_ids["drawForeground(QPainter*,QRectF)"] = 265;
+ override_function_ids["helpEvent(QGraphicsSceneHelpEvent*)"] = 266;
+ override_function_ids["contains(QPointF)"] = 267;
+ override_function_ids["isObscuredBy(QGraphicsItem*)"] = 268;
+ override_function_ids["opaqueArea()"] = 269;
+ override_function_ids["paintSection(QPainter*,QRect,int)"] = 270;
+ override_function_ids["sectionSizeFromContents(int)"] = 271;
+ override_function_ids["drawBranches(QPainter*,QRect,QModelIndex)"] = 272;
+ override_function_ids["drawRow(QPainter*,QStyleOptionViewItem,QModelIndex)"] = 273;
+ override_function_ids["dataChanged(QModelIndex,QModelIndex,QVector)"] = 274;
+ override_function_ids["rowsAboutToBeRemoved(QModelIndex,int,int)"] = 275;
+ override_function_ids["selectionChanged(QItemSelection,QItemSelection)"] = 276;
+ override_function_ids["updateGeometries()"] = 277;
+ override_function_ids["setRange(int,int)"] = 278;
+ override_function_ids["drawCheck(QPainter*,QStyleOptionViewItem,QRect,Qt::CheckState)"] = 279;
+ override_function_ids["drawDecoration(QPainter*,QStyleOptionViewItem,QRect,QPixmap)"] = 280;
+ override_function_ids["drawDisplay(QPainter*,QStyleOptionViewItem,QRect,QString)"] = 281;
+ override_function_ids["drawFocus(QPainter*,QStyleOptionViewItem,QRect)"] = 282;
+ override_function_ids["dropMimeData(int,QMimeData*,Qt::DropAction)"] = 283;
+ override_function_ids["mimeData(QList)"] = 284;
+ override_function_ids["hasPendingConnections()"] = 285;
+ override_function_ids["nextPendingConnection()"] = 286;
+ override_function_ids["incomingConnection(quintptr)"] = 287;
+ override_function_ids["createPopupMenu()"] = 288;
+ override_function_ids["formats()"] = 289;
+ override_function_ids["hasFormat(QString)"] = 290;
+ override_function_ids["retrieveData(QString,QVariant::Type)"] = 291;
+ override_function_ids["cookiesForUrl(QUrl)"] = 292;
+ override_function_ids["deleteCookie(QNetworkCookie)"] = 293;
+ override_function_ids["insertCookie(QNetworkCookie)"] = 294;
+ override_function_ids["setCookiesFromUrl(QList,QUrl)"] = 295;
+ override_function_ids["updateCookie(QNetworkCookie)"] = 296;
+ override_function_ids["validateCookie(QNetworkCookie,QUrl)"] = 297;
+ override_function_ids["expire()"] = 298;
+ override_function_ids["cacheSize()"] = 299;
+ override_function_ids["metaData(QUrl)"] = 300;
+ override_function_ids["remove(QUrl)"] = 301;
+ override_function_ids["updateMetaData(QNetworkCacheMetaData)"] = 302;
+ override_function_ids["link()"] = 303;
+ override_function_ids["initializeGL()"] = 304;
+ override_function_ids["paintGL()"] = 305;
+ override_function_ids["resizeGL(int,int)"] = 306;
+ override_function_ids["paintOverGL()"] = 307;
+ override_function_ids["paintUnderGL()"] = 308;
+ override_function_ids["focusObject()"] = 309;
+ override_function_ids["exposeEvent(QExposeEvent*)"] = 310;
+ override_function_ids["touchEvent(QTouchEvent*)"] = 311;
+ override_function_ids["format()"] = 312;
+ override_function_ids["surfaceType()"] = 313;
+ override_function_ids["loadResource(int,QUrl)"] = 314;
+ override_function_ids["canInsertFromMimeData(QMimeData*)"] = 315;
+ override_function_ids["createMimeDataFromSelection()"] = 316;
+ override_function_ids["insertFromMimeData(QMimeData*)"] = 317;
+ override_function_ids["setupChildProcess()"] = 318;
+ override_function_ids["text()"] = 319;
+ override_function_ids["updateCurrentValue(QVariant)"] = 320;
+ override_function_ids["interpolated(QVariant,QVariant,qreal)"] = 321;
+ override_function_ids["filterAcceptsColumn(int,QModelIndex)"] = 322;
+ override_function_ids["filterAcceptsRow(int,QModelIndex)"] = 323;
+ override_function_ids["lessThan(QModelIndex,QModelIndex)"] = 324;
+ override_function_ids["textFromValue(int)"] = 325;
+ override_function_ids["drawContents(QPainter*)"] = 326;
+ override_function_ids["beginTransaction()"] = 327;
+ override_function_ids["commitTransaction()"] = 328;
+ override_function_ids["createResult()"] = 329;
+ override_function_ids["escapeIdentifier(QString,IdentifierType)"] = 330;
+ override_function_ids["formatValue(QSqlField,bool)"] = 331;
+ override_function_ids["handle()"] = 332;
+ override_function_ids["hasFeature(DriverFeature)"] = 333;
+ override_function_ids["isIdentifierEscaped(QString,IdentifierType)"] = 334;
+ override_function_ids["isOpen()"] = 335;
+ override_function_ids["open(QString,QString,QString,QString,int,QString)"] = 336;
+ override_function_ids["primaryIndex(QString)"] = 337;
+ override_function_ids["record(QString)"] = 338;
+ override_function_ids["rollbackTransaction()"] = 339;
+ override_function_ids["sqlStatement(StatementType,QString,QSqlRecord,bool)"] = 340;
+ override_function_ids["stripDelimiters(QString,IdentifierType)"] = 341;
+ override_function_ids["subscribeToNotification(QString)"] = 342;
+ override_function_ids["subscribedToNotifications()"] = 343;
+ override_function_ids["tables(QSql::TableType)"] = 344;
+ override_function_ids["unsubscribeFromNotification(QString)"] = 345;
+ override_function_ids["setLastError(QSqlError)"] = 346;
+ override_function_ids["setOpen(bool)"] = 347;
+ override_function_ids["setOpenError(bool)"] = 348;
+ override_function_ids["indexInQuery(QModelIndex)"] = 349;
+ override_function_ids["queryChange()"] = 350;
+ override_function_ids["relationModel(int)"] = 351;
+ override_function_ids["setRelation(int,QSqlRelation)"] = 352;
+ override_function_ids["select()"] = 353;
+ override_function_ids["setTable(QString)"] = 354;
+ override_function_ids["insertRowIntoTable(QSqlRecord)"] = 355;
+ override_function_ids["orderByClause()"] = 356;
+ override_function_ids["selectStatement()"] = 357;
+ override_function_ids["updateRowInTable(int,QSqlRecord)"] = 358;
+ override_function_ids["revertRow(int)"] = 359;
+ override_function_ids["setEditStrategy(EditStrategy)"] = 360;
+ override_function_ids["setFilter(QString)"] = 361;
+ override_function_ids["setSort(int,Qt::SortOrder)"] = 362;
+ override_function_ids["deleteRowFromTable(int)"] = 363;
+ override_function_ids["displayText(QVariant,QLocale)"] = 364;
+ override_function_ids["initStyleOption(QStyleOptionViewItem*,QModelIndex)"] = 365;
+ override_function_ids["highlightBlock(QString)"] = 366;
+ override_function_ids["minimumTabSizeHint(int)"] = 367;
+ override_function_ids["tabInserted(int)"] = 368;
+ override_function_ids["tabLayoutChange()"] = 369;
+ override_function_ids["tabRemoved(int)"] = 370;
+ override_function_ids["tabSizeHint(int)"] = 371;
+ override_function_ids["dropMimeData(int,int,QMimeData*,Qt::DropAction)"] = 372;
+ override_function_ids["mimeData(QList)"] = 373;
+ override_function_ids["blockFormatChanged(QTextBlock)"] = 374;
+ override_function_ids["blockInserted(QTextBlock)"] = 375;
+ override_function_ids["blockRemoved(QTextBlock)"] = 376;
+ override_function_ids["createObject(QTextFormat)"] = 377;
+ override_function_ids["valueForTime(int)"] = 378;
+ override_function_ids["itemInserted(int)"] = 379;
+ override_function_ids["itemRemoved(int)"] = 380;
+ override_function_ids["translate(const char*,const char*,const char*,int)"] = 381;
+ override_function_ids["dropMimeData(QTreeWidgetItem*,int,QMimeData*,Qt::DropAction)"] = 382;
+ override_function_ids["mimeData(QList)"] = 383;
+ override_function_ids["aspectRatioMode()"] = 384;
+ override_function_ids["brightness()"] = 385;
+ override_function_ids["contrast()"] = 386;
+ override_function_ids["hue()"] = 387;
+ override_function_ids["isFullScreen()"] = 388;
+ override_function_ids["saturation()"] = 389;
+ override_function_ids["setAspectRatioMode(Qt::AspectRatioMode)"] = 390;
+ override_function_ids["setBrightness(int)"] = 391;
+ override_function_ids["setContrast(int)"] = 392;
+ override_function_ids["setFullScreen(bool)"] = 393;
+ override_function_ids["setHue(int)"] = 394;
+ override_function_ids["setSaturation(int)"] = 395;
+ override_function_ids["videoWidget()"] = 396;
+ override_function_ids["addHistoryEntry(QString)"] = 397;
+ override_function_ids["historyContains(QString)"] = 398;
+ override_function_ids["extension(Extension,ExtensionOption*,ExtensionReturn*)"] = 399;
+ override_function_ids["shouldInterruptJavaScript()"] = 400;
+ override_function_ids["supportsExtension(Extension)"] = 401;
+ override_function_ids["triggerAction(WebAction,bool)"] = 402;
+ override_function_ids["acceptNavigationRequest(QWebFrame*,QNetworkRequest,NavigationType)"] = 403;
+ override_function_ids["chooseFile(QWebFrame*,QString)"] = 404;
+ override_function_ids["createPlugin(QString,QUrl,QStringList,QStringList)"] = 405;
+ override_function_ids["createWindow(WebWindowType)"] = 406;
+ override_function_ids["javaScriptAlert(QWebFrame*,QString)"] = 407;
+ override_function_ids["javaScriptConfirm(QWebFrame*,QString)"] = 408;
+ override_function_ids["javaScriptConsoleMessage(QString,int,QString)"] = 409;
+ override_function_ids["javaScriptPrompt(QWebFrame*,QString,QString,QString*)"] = 410;
+ override_function_ids["userAgentForUrl(QUrl)"] = 411;
+ override_function_ids["create(QString,QUrl,QStringList,QStringList)"] = 412;
+ override_function_ids["plugins()"] = 413;
+ override_function_ids["refreshPlugins()"] = 414;
+ override_function_ids["createWindow(QWebPage::WebWindowType)"] = 415;
+ override_function_ids["createWidget(QWidget*)"] = 416;
+ override_function_ids["deleteWidget(QWidget*)"] = 417;
+ override_function_ids["nextId()"] = 418;
+ override_function_ids["validateCurrentPage()"] = 419;
+ override_function_ids["cleanupPage(int)"] = 420;
+ override_function_ids["initializePage(int)"] = 421;
+ override_function_ids["cleanupPage()"] = 422;
+ override_function_ids["initializePage()"] = 423;
+ override_function_ids["isComplete()"] = 424;
+ override_function_ids["validatePage()"] = 425;
+ override_function_ids["advance(int)"] = 426;
+ override_function_ids["collidesWithItem(QGraphicsItem*,Qt::ItemSelectionMode)"] = 427;
+ override_function_ids["collidesWithPath(QPainterPath,Qt::ItemSelectionMode)"] = 428;
+ override_function_ids["sceneEventFilter(QGraphicsItem*,QEvent*)"] = 429;
+ override_function_ids["accessibleInterface()"] = 430;
+ override_function_ids["actionNames()"] = 431;
+ override_function_ids["backgroundColor()"] = 432;
+ override_function_ids["child(int)"] = 433;
+ override_function_ids["childCount()"] = 434;
+ override_function_ids["doAction(QString)"] = 435;
+ override_function_ids["focusChild()"] = 436;
+ override_function_ids["foregroundColor()"] = 437;
+ override_function_ids["indexOfChild(QAccessibleInterface*)"] = 438;
+ override_function_ids["isValid()"] = 439;
+ override_function_ids["keyBindingsForAction(QString)"] = 440;
+ override_function_ids["parent()"] = 441;
+ override_function_ids["rect()"] = 442;
+ override_function_ids["role()"] = 443;
+ override_function_ids["text(QAccessible::Text)"] = 444;
+ override_function_ids["window()"] = 445;
+ override_function_ids["childAt(int,int)"] = 446;
+ override_function_ids["object()"] = 447;
+ override_function_ids["setText(QAccessible::Text,QString)"] = 448;
+ override_function_ids["icon(IconType)"] = 449;
+ override_function_ids["icon(QFileInfo)"] = 450;
+ override_function_ids["type(QFileInfo)"] = 451;
+ override_function_ids["removeAt(int)"] = 452;
+ override_function_ids["widgetEvent(QEvent*)"] = 453;
+ override_function_ids["createEditor(int,QWidget*)"] = 454;
+ override_function_ids["valuePropertyName(int)"] = 455;
+ override_function_ids["spacerItem()"] = 456;
+ override_function_ids["widget()"] = 457;
+ override_function_ids["clone()"] = 458;
+ override_function_ids["data(int)"] = 459;
+ override_function_ids["setData(int,QVariant)"] = 460;
+ override_function_ids["queryProxy(QNetworkProxyQuery)"] = 461;
+ override_function_ids["ensureActiveTarget()"] = 462;
+ override_function_ids["metric(QPaintDevice::PaintDeviceMetric)"] = 463;
+ override_function_ids["setData(const char*,uint)"] = 464;
+ override_function_ids["newPage()"] = 465;
+ override_function_ids["setPageSize(PageSize)"] = 466;
+ override_function_ids["setPageSizeMM(QSizeF)"] = 467;
+ override_function_ids["run()"] = 468;
+ override_function_ids["bindValue(int,QVariant,QSql::ParamType)"] = 469;
+ override_function_ids["bindValue(QString,QVariant,QSql::ParamType)"] = 470;
+ override_function_ids["fetch(int)"] = 471;
+ override_function_ids["fetchFirst()"] = 472;
+ override_function_ids["fetchLast()"] = 473;
+ override_function_ids["fetchNext()"] = 474;
+ override_function_ids["fetchPrevious()"] = 475;
+ override_function_ids["isNull(int)"] = 476;
+ override_function_ids["lastInsertId()"] = 477;
+ override_function_ids["numRowsAffected()"] = 478;
+ override_function_ids["prepare(QString)"] = 479;
+ override_function_ids["record()"] = 480;
+ override_function_ids["reset(QString)"] = 481;
+ override_function_ids["savePrepare(QString)"] = 482;
+ override_function_ids["setActive(bool)"] = 483;
+ override_function_ids["setAt(int)"] = 484;
+ override_function_ids["setForwardOnly(bool)"] = 485;
+ override_function_ids["setQuery(QString)"] = 486;
+ override_function_ids["setSelect(bool)"] = 487;
+ override_function_ids["setData(QVariant,int)"] = 488;
+ override_function_ids["aliases()"] = 489;
+ override_function_ids["mibEnum()"] = 490;
+ override_function_ids["name()"] = 491;
+ override_function_ids["convertFromUnicode(QChar*,int,ConverterState*)"] = 492;
+ override_function_ids["convertToUnicode(const char*,int,ConverterState*)"] = 493;
+ override_function_ids["data(int,int)"] = 494;
+ override_function_ids["setData(int,int,QVariant)"] = 495;
+ override_function_ids["id()"] = 496;
+ override_function_ids["mergeWith(QUndoCommand*)"] = 497;
+ override_function_ids["redo()"] = 498;
+ override_function_ids["undo()"] = 499;
+ override_arg_types = new const char** [499];
{ static const char* s[] = { "int", 0 }; override_arg_types[0] = s; }
{ static const char* s[] = { 0, "int", 0 }; override_arg_types[1] = s; }
{ static const char* s[] = { 0, "QAbstractAnimation::Direction", 0 }; override_arg_types[2] = s; }
@@ -1846,339 +1912,359 @@ void LObjects::ini(EQL* e) {
{ static const char* s[] = { "bool", "QEvent*", 0 }; override_arg_types[157] = s; }
{ static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[158] = s; }
{ static const char* s[] = { "bool", "QObject*", "QEvent*", 0 }; override_arg_types[159] = s; }
- { static const char* s[] = { 0, "QLayoutItem*", 0 }; override_arg_types[160] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[161] = s; }
- { static const char* s[] = { "Qt::Orientations", 0 }; override_arg_types[162] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[163] = s; }
- { static const char* s[] = { "QLayoutItem*", "int", 0 }; override_arg_types[164] = s; }
- { static const char* s[] = { "QSize", 0 }; override_arg_types[165] = s; }
- { static const char* s[] = { "int", "int", 0 }; override_arg_types[166] = s; }
- { static const char* s[] = { "QSize", 0 }; override_arg_types[167] = s; }
- { static const char* s[] = { 0, "QRect", 0 }; override_arg_types[168] = s; }
- { static const char* s[] = { "QLayoutItem*", "int", 0 }; override_arg_types[169] = s; }
- { static const char* s[] = { "int", "QWidget*", 0 }; override_arg_types[170] = s; }
- { static const char* s[] = { "QSizePolicy::ControlTypes", 0 }; override_arg_types[171] = s; }
- { static const char* s[] = { "QRect", 0 }; override_arg_types[172] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[173] = s; }
- { static const char* s[] = { "QLayout*", 0 }; override_arg_types[174] = s; }
- { static const char* s[] = { 0, "QPainter*", "QRect", "QDate", 0 }; override_arg_types[175] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[176] = s; }
- { static const char* s[] = { "QAbstractItemView*", "QModelIndex", 0 }; override_arg_types[177] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[178] = s; }
- { static const char* s[] = { 0, "QModelIndex", 0 }; override_arg_types[179] = s; }
- { static const char* s[] = { 0, "QModelIndex", "QModelIndex", 0 }; override_arg_types[180] = s; }
- { static const char* s[] = { 0, "QModelIndex", "int", "int", 0 }; override_arg_types[181] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[182] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[183] = s; }
- { static const char* s[] = { 0, "ComplexControl", "QStyleOptionComplex*", "QPainter*", "QWidget*", 0 }; override_arg_types[184] = s; }
- { static const char* s[] = { 0, "ControlElement", "QStyleOption*", "QPainter*", "QWidget*", 0 }; override_arg_types[185] = s; }
- { static const char* s[] = { 0, "PrimitiveElement", "QStyleOption*", "QPainter*", "QWidget*", 0 }; override_arg_types[186] = s; }
- { static const char* s[] = { "QPixmap", "QIcon::Mode", "QPixmap", "QStyleOption*", 0 }; override_arg_types[187] = s; }
- { static const char* s[] = { "SubControl", "ComplexControl", "QStyleOptionComplex*", "QPoint", "QWidget*", 0 }; override_arg_types[188] = s; }
- { static const char* s[] = { "int", "QSizePolicy::ControlType", "QSizePolicy::ControlType", "Qt::Orientation", "QStyleOption*", "QWidget*", 0 }; override_arg_types[189] = s; }
- { static const char* s[] = { "int", "PixelMetric", "QStyleOption*", "QWidget*", 0 }; override_arg_types[190] = s; }
- { static const char* s[] = { 0, "QPalette", 0 }; override_arg_types[191] = s; }
- { static const char* s[] = { 0, "QApplication*", 0 }; override_arg_types[192] = s; }
- { static const char* s[] = { 0, "QWidget*", 0 }; override_arg_types[193] = s; }
- { static const char* s[] = { "QSize", "ContentsType", "QStyleOption*", "QSize", "QWidget*", 0 }; override_arg_types[194] = s; }
- { static const char* s[] = { "QPixmap", "StandardPixmap", "QStyleOption*", "QWidget*", 0 }; override_arg_types[195] = s; }
- { static const char* s[] = { "int", "StyleHint", "QStyleOption*", "QWidget*", "QStyleHintReturn*", 0 }; override_arg_types[196] = s; }
- { static const char* s[] = { "QRect", "ComplexControl", "QStyleOptionComplex*", "SubControl", "QWidget*", 0 }; override_arg_types[197] = s; }
- { static const char* s[] = { "QRect", "SubElement", "QStyleOption*", "QWidget*", 0 }; override_arg_types[198] = s; }
- { static const char* s[] = { 0, "QWidget*", 0 }; override_arg_types[199] = s; }
- { static const char* s[] = { 0, "QApplication*", 0 }; override_arg_types[200] = s; }
- { static const char* s[] = { 0, "QPainter*", "QRect", "int", "QPixmap", 0 }; override_arg_types[201] = s; }
- { static const char* s[] = { 0, "QPainter*", "QRect", "int", "QPalette", "bool", "QString", "QPalette::ColorRole", 0 }; override_arg_types[202] = s; }
- { static const char* s[] = { "QRect", "QRect", "int", "QPixmap", 0 }; override_arg_types[203] = s; }
- { static const char* s[] = { "QRect", "QFontMetrics", "QRect", "int", "bool", "QString", 0 }; override_arg_types[204] = s; }
- { static const char* s[] = { "QIcon", "StandardPixmap", "QStyleOption*", "QWidget*", 0 }; override_arg_types[205] = s; }
- { static const char* s[] = { "QPalette", 0 }; override_arg_types[206] = s; }
- { static const char* s[] = { "QString", "QModelIndex", 0 }; override_arg_types[207] = s; }
- { static const char* s[] = { "QStringList", "QString", 0 }; override_arg_types[208] = s; }
- { static const char* s[] = { "QDateTime", "QString", 0 }; override_arg_types[209] = s; }
- { static const char* s[] = { "QString", "QDateTime", 0 }; override_arg_types[210] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[211] = s; }
- { static const char* s[] = { "QString", "double", 0 }; override_arg_types[212] = s; }
- { static const char* s[] = { "double", "QString", 0 }; override_arg_types[213] = s; }
- { static const char* s[] = { 0, "double", "double", "int", 0 }; override_arg_types[214] = s; }
- { static const char* s[] = { "QString", 0 }; override_arg_types[215] = s; }
- { static const char* s[] = { "Permissions", 0 }; override_arg_types[216] = s; }
- { static const char* s[] = { "bool", "qint64", 0 }; override_arg_types[217] = s; }
- { static const char* s[] = { "bool", "Permissions", 0 }; override_arg_types[218] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[219] = s; }
- { static const char* s[] = { "QRectF", "QRectF", 0 }; override_arg_types[220] = s; }
- { static const char* s[] = { 0, "QPainter*", 0 }; override_arg_types[221] = s; }
- { static const char* s[] = { 0, "ChangeFlags", 0 }; override_arg_types[222] = s; }
- { static const char* s[] = { 0, "QPainter*", "QStyleOptionGraphicsItem*", "QWidget*", 0 }; override_arg_types[223] = s; }
- { static const char* s[] = { 0, "QRectF", 0 }; override_arg_types[224] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[225] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneContextMenuEvent*", 0 }; override_arg_types[226] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneDragDropEvent*", 0 }; override_arg_types[227] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneDragDropEvent*", 0 }; override_arg_types[228] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneDragDropEvent*", 0 }; override_arg_types[229] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneDragDropEvent*", 0 }; override_arg_types[230] = s; }
- { static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[231] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneHoverEvent*", 0 }; override_arg_types[232] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneHoverEvent*", 0 }; override_arg_types[233] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneHoverEvent*", 0 }; override_arg_types[234] = s; }
- { static const char* s[] = { "QVariant", "GraphicsItemChange", "QVariant", 0 }; override_arg_types[235] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneMouseEvent*", 0 }; override_arg_types[236] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneMouseEvent*", 0 }; override_arg_types[237] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneMouseEvent*", 0 }; override_arg_types[238] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneMouseEvent*", 0 }; override_arg_types[239] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneResizeEvent*", 0 }; override_arg_types[240] = s; }
- { static const char* s[] = { "QSizeF", "Qt::SizeHint", "QSizeF", 0 }; override_arg_types[241] = s; }
- { static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[242] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneWheelEvent*", 0 }; override_arg_types[243] = s; }
- { static const char* s[] = { 0, "QPainter*", "QStyleOptionGraphicsItem*", "QWidget*", 0 }; override_arg_types[244] = s; }
- { static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[245] = s; }
- { static const char* s[] = { 0, "QStyleOption*", 0 }; override_arg_types[246] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneMoveEvent*", 0 }; override_arg_types[247] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[248] = s; }
+ { static const char* s[] = { "QMediaObject*", 0 }; override_arg_types[160] = s; }
+ { static const char* s[] = { 0, "QLayoutItem*", 0 }; override_arg_types[161] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[162] = s; }
+ { static const char* s[] = { "Qt::Orientations", 0 }; override_arg_types[163] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[164] = s; }
+ { static const char* s[] = { "QLayoutItem*", "int", 0 }; override_arg_types[165] = s; }
+ { static const char* s[] = { "QSize", 0 }; override_arg_types[166] = s; }
+ { static const char* s[] = { "int", "int", 0 }; override_arg_types[167] = s; }
+ { static const char* s[] = { "QSize", 0 }; override_arg_types[168] = s; }
+ { static const char* s[] = { 0, "QRect", 0 }; override_arg_types[169] = s; }
+ { static const char* s[] = { "QLayoutItem*", "int", 0 }; override_arg_types[170] = s; }
+ { static const char* s[] = { "int", "QWidget*", 0 }; override_arg_types[171] = s; }
+ { static const char* s[] = { "QSizePolicy::ControlTypes", 0 }; override_arg_types[172] = s; }
+ { static const char* s[] = { "QRect", 0 }; override_arg_types[173] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[174] = s; }
+ { static const char* s[] = { "QLayout*", 0 }; override_arg_types[175] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QRect", "QDate", 0 }; override_arg_types[176] = s; }
+ { static const char* s[] = { "QMultimedia::AvailabilityStatus", 0 }; override_arg_types[177] = s; }
+ { static const char* s[] = { "bool", "QObject*", 0 }; override_arg_types[178] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[179] = s; }
+ { static const char* s[] = { "QMediaService*", 0 }; override_arg_types[180] = s; }
+ { static const char* s[] = { 0, "QObject*", 0 }; override_arg_types[181] = s; }
+ { static const char* s[] = { "bool", "QMediaObject*", 0 }; override_arg_types[182] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[183] = s; }
+ { static const char* s[] = { "QAbstractItemView*", "QModelIndex", 0 }; override_arg_types[184] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[185] = s; }
+ { static const char* s[] = { 0, "QModelIndex", 0 }; override_arg_types[186] = s; }
+ { static const char* s[] = { 0, "QModelIndex", "QModelIndex", 0 }; override_arg_types[187] = s; }
+ { static const char* s[] = { 0, "QModelIndex", "int", "int", 0 }; override_arg_types[188] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[189] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[190] = s; }
+ { static const char* s[] = { 0, "ComplexControl", "QStyleOptionComplex*", "QPainter*", "QWidget*", 0 }; override_arg_types[191] = s; }
+ { static const char* s[] = { 0, "ControlElement", "QStyleOption*", "QPainter*", "QWidget*", 0 }; override_arg_types[192] = s; }
+ { static const char* s[] = { 0, "PrimitiveElement", "QStyleOption*", "QPainter*", "QWidget*", 0 }; override_arg_types[193] = s; }
+ { static const char* s[] = { "QPixmap", "QIcon::Mode", "QPixmap", "QStyleOption*", 0 }; override_arg_types[194] = s; }
+ { static const char* s[] = { "SubControl", "ComplexControl", "QStyleOptionComplex*", "QPoint", "QWidget*", 0 }; override_arg_types[195] = s; }
+ { static const char* s[] = { "int", "QSizePolicy::ControlType", "QSizePolicy::ControlType", "Qt::Orientation", "QStyleOption*", "QWidget*", 0 }; override_arg_types[196] = s; }
+ { static const char* s[] = { "int", "PixelMetric", "QStyleOption*", "QWidget*", 0 }; override_arg_types[197] = s; }
+ { static const char* s[] = { 0, "QPalette", 0 }; override_arg_types[198] = s; }
+ { static const char* s[] = { 0, "QApplication*", 0 }; override_arg_types[199] = s; }
+ { static const char* s[] = { 0, "QWidget*", 0 }; override_arg_types[200] = s; }
+ { static const char* s[] = { "QSize", "ContentsType", "QStyleOption*", "QSize", "QWidget*", 0 }; override_arg_types[201] = s; }
+ { static const char* s[] = { "QPixmap", "StandardPixmap", "QStyleOption*", "QWidget*", 0 }; override_arg_types[202] = s; }
+ { static const char* s[] = { "int", "StyleHint", "QStyleOption*", "QWidget*", "QStyleHintReturn*", 0 }; override_arg_types[203] = s; }
+ { static const char* s[] = { "QRect", "ComplexControl", "QStyleOptionComplex*", "SubControl", "QWidget*", 0 }; override_arg_types[204] = s; }
+ { static const char* s[] = { "QRect", "SubElement", "QStyleOption*", "QWidget*", 0 }; override_arg_types[205] = s; }
+ { static const char* s[] = { 0, "QWidget*", 0 }; override_arg_types[206] = s; }
+ { static const char* s[] = { 0, "QApplication*", 0 }; override_arg_types[207] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QRect", "int", "QPixmap", 0 }; override_arg_types[208] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QRect", "int", "QPalette", "bool", "QString", "QPalette::ColorRole", 0 }; override_arg_types[209] = s; }
+ { static const char* s[] = { "QRect", "QRect", "int", "QPixmap", 0 }; override_arg_types[210] = s; }
+ { static const char* s[] = { "QRect", "QFontMetrics", "QRect", "int", "bool", "QString", 0 }; override_arg_types[211] = s; }
+ { static const char* s[] = { "QIcon", "StandardPixmap", "QStyleOption*", "QWidget*", 0 }; override_arg_types[212] = s; }
+ { static const char* s[] = { "QPalette", 0 }; override_arg_types[213] = s; }
+ { static const char* s[] = { "QString", "QModelIndex", 0 }; override_arg_types[214] = s; }
+ { static const char* s[] = { "QStringList", "QString", 0 }; override_arg_types[215] = s; }
+ { static const char* s[] = { "QDateTime", "QString", 0 }; override_arg_types[216] = s; }
+ { static const char* s[] = { "QString", "QDateTime", 0 }; override_arg_types[217] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[218] = s; }
+ { static const char* s[] = { "QString", "double", 0 }; override_arg_types[219] = s; }
+ { static const char* s[] = { "double", "QString", 0 }; override_arg_types[220] = s; }
+ { static const char* s[] = { 0, "double", "double", "int", 0 }; override_arg_types[221] = s; }
+ { static const char* s[] = { "QString", 0 }; override_arg_types[222] = s; }
+ { static const char* s[] = { "Permissions", 0 }; override_arg_types[223] = s; }
+ { static const char* s[] = { "bool", "qint64", 0 }; override_arg_types[224] = s; }
+ { static const char* s[] = { "bool", "Permissions", 0 }; override_arg_types[225] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[226] = s; }
+ { static const char* s[] = { "QRectF", "QRectF", 0 }; override_arg_types[227] = s; }
+ { static const char* s[] = { 0, "QPainter*", 0 }; override_arg_types[228] = s; }
+ { static const char* s[] = { 0, "ChangeFlags", 0 }; override_arg_types[229] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QStyleOptionGraphicsItem*", "QWidget*", 0 }; override_arg_types[230] = s; }
+ { static const char* s[] = { 0, "QRectF", 0 }; override_arg_types[231] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[232] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneContextMenuEvent*", 0 }; override_arg_types[233] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneDragDropEvent*", 0 }; override_arg_types[234] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneDragDropEvent*", 0 }; override_arg_types[235] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneDragDropEvent*", 0 }; override_arg_types[236] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneDragDropEvent*", 0 }; override_arg_types[237] = s; }
+ { static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[238] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneHoverEvent*", 0 }; override_arg_types[239] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneHoverEvent*", 0 }; override_arg_types[240] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneHoverEvent*", 0 }; override_arg_types[241] = s; }
+ { static const char* s[] = { "QVariant", "GraphicsItemChange", "QVariant", 0 }; override_arg_types[242] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneMouseEvent*", 0 }; override_arg_types[243] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneMouseEvent*", 0 }; override_arg_types[244] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneMouseEvent*", 0 }; override_arg_types[245] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneMouseEvent*", 0 }; override_arg_types[246] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneResizeEvent*", 0 }; override_arg_types[247] = s; }
+ { static const char* s[] = { "QSizeF", "Qt::SizeHint", "QSizeF", 0 }; override_arg_types[248] = s; }
{ static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[249] = s; }
- { static const char* s[] = { "bool", "QEvent*", 0 }; override_arg_types[250] = s; }
- { static const char* s[] = { "Qt::WindowFrameSection", "QPointF", 0 }; override_arg_types[251] = s; }
- { static const char* s[] = { "QRectF", 0 }; override_arg_types[252] = s; }
- { static const char* s[] = { "QPainterPath", 0 }; override_arg_types[253] = s; }
- { static const char* s[] = { "bool", "QEvent*", 0 }; override_arg_types[254] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneWheelEvent*", 0 }; override_arg_types[250] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QStyleOptionGraphicsItem*", "QWidget*", 0 }; override_arg_types[251] = s; }
+ { static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[252] = s; }
+ { static const char* s[] = { 0, "QStyleOption*", 0 }; override_arg_types[253] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneMoveEvent*", 0 }; override_arg_types[254] = s; }
{ static const char* s[] = { 0, 0 }; override_arg_types[255] = s; }
- { static const char* s[] = { 0, "QPainter*", "QRectF", 0 }; override_arg_types[256] = s; }
- { static const char* s[] = { 0, "QPainter*", "QRectF", 0 }; override_arg_types[257] = s; }
- { static const char* s[] = { 0, "QGraphicsSceneHelpEvent*", 0 }; override_arg_types[258] = s; }
- { static const char* s[] = { "bool", "QPointF", 0 }; override_arg_types[259] = s; }
- { static const char* s[] = { "bool", "QGraphicsItem*", 0 }; override_arg_types[260] = s; }
- { static const char* s[] = { "QPainterPath", 0 }; override_arg_types[261] = s; }
- { static const char* s[] = { 0, "QPainter*", "QRect", "int", 0 }; override_arg_types[262] = s; }
- { static const char* s[] = { "QSize", "int", 0 }; override_arg_types[263] = s; }
- { static const char* s[] = { 0, "QPainter*", "QRect", "QModelIndex", 0 }; override_arg_types[264] = s; }
- { static const char* s[] = { 0, "QPainter*", "QStyleOptionViewItem", "QModelIndex", 0 }; override_arg_types[265] = s; }
- { static const char* s[] = { 0, "QModelIndex", "QModelIndex", "QVector", 0 }; override_arg_types[266] = s; }
- { static const char* s[] = { 0, "QModelIndex", "int", "int", 0 }; override_arg_types[267] = s; }
- { static const char* s[] = { 0, "QItemSelection", "QItemSelection", 0 }; override_arg_types[268] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[269] = s; }
- { static const char* s[] = { 0, "int", "int", 0 }; override_arg_types[270] = s; }
- { static const char* s[] = { 0, "QPainter*", "QStyleOptionViewItem", "QRect", "Qt::CheckState", 0 }; override_arg_types[271] = s; }
- { static const char* s[] = { 0, "QPainter*", "QStyleOptionViewItem", "QRect", "QPixmap", 0 }; override_arg_types[272] = s; }
- { static const char* s[] = { 0, "QPainter*", "QStyleOptionViewItem", "QRect", "QString", 0 }; override_arg_types[273] = s; }
- { static const char* s[] = { 0, "QPainter*", "QStyleOptionViewItem", "QRect", 0 }; override_arg_types[274] = s; }
- { static const char* s[] = { "bool", "int", "QMimeData*", "Qt::DropAction", 0 }; override_arg_types[275] = s; }
- { static const char* s[] = { "QMimeData*", "QList", 0 }; override_arg_types[276] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[277] = s; }
- { static const char* s[] = { "QLocalSocket*", 0 }; override_arg_types[278] = s; }
- { static const char* s[] = { 0, "quintptr", 0 }; override_arg_types[279] = s; }
- { static const char* s[] = { "QMenu*", 0 }; override_arg_types[280] = s; }
- { static const char* s[] = { "QStringList", 0 }; override_arg_types[281] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[282] = s; }
- { static const char* s[] = { "QVariant", "QString", "QVariant::Type", 0 }; override_arg_types[283] = s; }
- { static const char* s[] = { "QList", "QUrl", 0 }; override_arg_types[284] = s; }
- { static const char* s[] = { "bool", "QNetworkCookie", 0 }; override_arg_types[285] = s; }
- { static const char* s[] = { "bool", "QNetworkCookie", 0 }; override_arg_types[286] = s; }
- { static const char* s[] = { "bool", "QList", "QUrl", 0 }; override_arg_types[287] = s; }
- { static const char* s[] = { "bool", "QNetworkCookie", 0 }; override_arg_types[288] = s; }
- { static const char* s[] = { "bool", "QNetworkCookie", "QUrl", 0 }; override_arg_types[289] = s; }
- { static const char* s[] = { "qlonglong", 0 }; override_arg_types[290] = s; }
- { static const char* s[] = { "qlonglong", 0 }; override_arg_types[291] = s; }
- { static const char* s[] = { "QNetworkCacheMetaData", "QUrl", 0 }; override_arg_types[292] = s; }
- { static const char* s[] = { "bool", "QUrl", 0 }; override_arg_types[293] = s; }
- { static const char* s[] = { 0, "QNetworkCacheMetaData", 0 }; override_arg_types[294] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[295] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[296] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[297] = s; }
- { static const char* s[] = { 0, "int", "int", 0 }; override_arg_types[298] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[299] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[300] = s; }
- { static const char* s[] = { "QObject*", 0 }; override_arg_types[301] = s; }
- { static const char* s[] = { 0, "QExposeEvent*", 0 }; override_arg_types[302] = s; }
- { static const char* s[] = { 0, "QTouchEvent*", 0 }; override_arg_types[303] = s; }
- { static const char* s[] = { "QSurfaceFormat", 0 }; override_arg_types[304] = s; }
- { static const char* s[] = { "SurfaceType", 0 }; override_arg_types[305] = s; }
- { static const char* s[] = { "QVariant", "int", "QUrl", 0 }; override_arg_types[306] = s; }
- { static const char* s[] = { "bool", "QMimeData*", 0 }; override_arg_types[307] = s; }
- { static const char* s[] = { "QMimeData*", 0 }; override_arg_types[308] = s; }
- { static const char* s[] = { 0, "QMimeData*", 0 }; override_arg_types[309] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[310] = s; }
- { static const char* s[] = { "QString", 0 }; override_arg_types[311] = s; }
- { static const char* s[] = { 0, "QVariant", 0 }; override_arg_types[312] = s; }
- { static const char* s[] = { "QVariant", "QVariant", "QVariant", "qreal", 0 }; override_arg_types[313] = s; }
- { static const char* s[] = { "bool", "int", "QModelIndex", 0 }; override_arg_types[314] = s; }
- { static const char* s[] = { "bool", "int", "QModelIndex", 0 }; override_arg_types[315] = s; }
- { static const char* s[] = { "bool", "QModelIndex", "QModelIndex", 0 }; override_arg_types[316] = s; }
- { static const char* s[] = { "QString", "int", 0 }; override_arg_types[317] = s; }
- { static const char* s[] = { 0, "QPainter*", 0 }; override_arg_types[318] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[319] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[320] = s; }
- { static const char* s[] = { "QSqlResult*", 0 }; override_arg_types[321] = s; }
- { static const char* s[] = { "QString", "QString", "IdentifierType", 0 }; override_arg_types[322] = s; }
- { static const char* s[] = { "QString", "QSqlField", "bool", 0 }; override_arg_types[323] = s; }
- { static const char* s[] = { "QVariant", 0 }; override_arg_types[324] = s; }
- { static const char* s[] = { "bool", "DriverFeature", 0 }; override_arg_types[325] = s; }
- { static const char* s[] = { "bool", "QString", "IdentifierType", 0 }; override_arg_types[326] = s; }
+ { static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[256] = s; }
+ { static const char* s[] = { "bool", "QEvent*", 0 }; override_arg_types[257] = s; }
+ { static const char* s[] = { "Qt::WindowFrameSection", "QPointF", 0 }; override_arg_types[258] = s; }
+ { static const char* s[] = { "QRectF", 0 }; override_arg_types[259] = s; }
+ { static const char* s[] = { "QPainterPath", 0 }; override_arg_types[260] = s; }
+ { static const char* s[] = { "bool", "QEvent*", 0 }; override_arg_types[261] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[262] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QRectF", 0 }; override_arg_types[263] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QRectF", 0 }; override_arg_types[264] = s; }
+ { static const char* s[] = { 0, "QGraphicsSceneHelpEvent*", 0 }; override_arg_types[265] = s; }
+ { static const char* s[] = { "bool", "QPointF", 0 }; override_arg_types[266] = s; }
+ { static const char* s[] = { "bool", "QGraphicsItem*", 0 }; override_arg_types[267] = s; }
+ { static const char* s[] = { "QPainterPath", 0 }; override_arg_types[268] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QRect", "int", 0 }; override_arg_types[269] = s; }
+ { static const char* s[] = { "QSize", "int", 0 }; override_arg_types[270] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QRect", "QModelIndex", 0 }; override_arg_types[271] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QStyleOptionViewItem", "QModelIndex", 0 }; override_arg_types[272] = s; }
+ { static const char* s[] = { 0, "QModelIndex", "QModelIndex", "QVector", 0 }; override_arg_types[273] = s; }
+ { static const char* s[] = { 0, "QModelIndex", "int", "int", 0 }; override_arg_types[274] = s; }
+ { static const char* s[] = { 0, "QItemSelection", "QItemSelection", 0 }; override_arg_types[275] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[276] = s; }
+ { static const char* s[] = { 0, "int", "int", 0 }; override_arg_types[277] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QStyleOptionViewItem", "QRect", "Qt::CheckState", 0 }; override_arg_types[278] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QStyleOptionViewItem", "QRect", "QPixmap", 0 }; override_arg_types[279] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QStyleOptionViewItem", "QRect", "QString", 0 }; override_arg_types[280] = s; }
+ { static const char* s[] = { 0, "QPainter*", "QStyleOptionViewItem", "QRect", 0 }; override_arg_types[281] = s; }
+ { static const char* s[] = { "bool", "int", "QMimeData*", "Qt::DropAction", 0 }; override_arg_types[282] = s; }
+ { static const char* s[] = { "QMimeData*", "QList", 0 }; override_arg_types[283] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[284] = s; }
+ { static const char* s[] = { "QLocalSocket*", 0 }; override_arg_types[285] = s; }
+ { static const char* s[] = { 0, "quintptr", 0 }; override_arg_types[286] = s; }
+ { static const char* s[] = { "QMenu*", 0 }; override_arg_types[287] = s; }
+ { static const char* s[] = { "QStringList", 0 }; override_arg_types[288] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[289] = s; }
+ { static const char* s[] = { "QVariant", "QString", "QVariant::Type", 0 }; override_arg_types[290] = s; }
+ { static const char* s[] = { "QList", "QUrl", 0 }; override_arg_types[291] = s; }
+ { static const char* s[] = { "bool", "QNetworkCookie", 0 }; override_arg_types[292] = s; }
+ { static const char* s[] = { "bool", "QNetworkCookie", 0 }; override_arg_types[293] = s; }
+ { static const char* s[] = { "bool", "QList", "QUrl", 0 }; override_arg_types[294] = s; }
+ { static const char* s[] = { "bool", "QNetworkCookie", 0 }; override_arg_types[295] = s; }
+ { static const char* s[] = { "bool", "QNetworkCookie", "QUrl", 0 }; override_arg_types[296] = s; }
+ { static const char* s[] = { "qlonglong", 0 }; override_arg_types[297] = s; }
+ { static const char* s[] = { "qlonglong", 0 }; override_arg_types[298] = s; }
+ { static const char* s[] = { "QNetworkCacheMetaData", "QUrl", 0 }; override_arg_types[299] = s; }
+ { static const char* s[] = { "bool", "QUrl", 0 }; override_arg_types[300] = s; }
+ { static const char* s[] = { 0, "QNetworkCacheMetaData", 0 }; override_arg_types[301] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[302] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[303] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[304] = s; }
+ { static const char* s[] = { 0, "int", "int", 0 }; override_arg_types[305] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[306] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[307] = s; }
+ { static const char* s[] = { "QObject*", 0 }; override_arg_types[308] = s; }
+ { static const char* s[] = { 0, "QExposeEvent*", 0 }; override_arg_types[309] = s; }
+ { static const char* s[] = { 0, "QTouchEvent*", 0 }; override_arg_types[310] = s; }
+ { static const char* s[] = { "QSurfaceFormat", 0 }; override_arg_types[311] = s; }
+ { static const char* s[] = { "SurfaceType", 0 }; override_arg_types[312] = s; }
+ { static const char* s[] = { "QVariant", "int", "QUrl", 0 }; override_arg_types[313] = s; }
+ { static const char* s[] = { "bool", "QMimeData*", 0 }; override_arg_types[314] = s; }
+ { static const char* s[] = { "QMimeData*", 0 }; override_arg_types[315] = s; }
+ { static const char* s[] = { 0, "QMimeData*", 0 }; override_arg_types[316] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[317] = s; }
+ { static const char* s[] = { "QString", 0 }; override_arg_types[318] = s; }
+ { static const char* s[] = { 0, "QVariant", 0 }; override_arg_types[319] = s; }
+ { static const char* s[] = { "QVariant", "QVariant", "QVariant", "qreal", 0 }; override_arg_types[320] = s; }
+ { static const char* s[] = { "bool", "int", "QModelIndex", 0 }; override_arg_types[321] = s; }
+ { static const char* s[] = { "bool", "int", "QModelIndex", 0 }; override_arg_types[322] = s; }
+ { static const char* s[] = { "bool", "QModelIndex", "QModelIndex", 0 }; override_arg_types[323] = s; }
+ { static const char* s[] = { "QString", "int", 0 }; override_arg_types[324] = s; }
+ { static const char* s[] = { 0, "QPainter*", 0 }; override_arg_types[325] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[326] = s; }
{ static const char* s[] = { "bool", 0 }; override_arg_types[327] = s; }
- { static const char* s[] = { "bool", "QString", "QString", "QString", "QString", "int", "QString", 0 }; override_arg_types[328] = s; }
- { static const char* s[] = { "QSqlIndex", "QString", 0 }; override_arg_types[329] = s; }
- { static const char* s[] = { "QSqlRecord", "QString", 0 }; override_arg_types[330] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[331] = s; }
- { static const char* s[] = { "QString", "StatementType", "QString", "QSqlRecord", "bool", 0 }; override_arg_types[332] = s; }
- { static const char* s[] = { "QString", "QString", "IdentifierType", 0 }; override_arg_types[333] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[334] = s; }
- { static const char* s[] = { "QStringList", 0 }; override_arg_types[335] = s; }
- { static const char* s[] = { "QStringList", "QSql::TableType", 0 }; override_arg_types[336] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[337] = s; }
- { static const char* s[] = { 0, "QSqlError", 0 }; override_arg_types[338] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[339] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[340] = s; }
- { static const char* s[] = { "QModelIndex", "QModelIndex", 0 }; override_arg_types[341] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[342] = s; }
- { static const char* s[] = { "QSqlTableModel*", "int", 0 }; override_arg_types[343] = s; }
- { static const char* s[] = { 0, "int", "QSqlRelation", 0 }; override_arg_types[344] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[345] = s; }
- { static const char* s[] = { 0, "QString", 0 }; override_arg_types[346] = s; }
- { static const char* s[] = { "bool", "QSqlRecord", 0 }; override_arg_types[347] = s; }
- { static const char* s[] = { "QString", 0 }; override_arg_types[348] = s; }
- { static const char* s[] = { "QString", 0 }; override_arg_types[349] = s; }
- { static const char* s[] = { "bool", "int", "QSqlRecord", 0 }; override_arg_types[350] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[351] = s; }
- { static const char* s[] = { 0, "EditStrategy", 0 }; override_arg_types[352] = s; }
+ { static const char* s[] = { "QSqlResult*", 0 }; override_arg_types[328] = s; }
+ { static const char* s[] = { "QString", "QString", "IdentifierType", 0 }; override_arg_types[329] = s; }
+ { static const char* s[] = { "QString", "QSqlField", "bool", 0 }; override_arg_types[330] = s; }
+ { static const char* s[] = { "QVariant", 0 }; override_arg_types[331] = s; }
+ { static const char* s[] = { "bool", "DriverFeature", 0 }; override_arg_types[332] = s; }
+ { static const char* s[] = { "bool", "QString", "IdentifierType", 0 }; override_arg_types[333] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[334] = s; }
+ { static const char* s[] = { "bool", "QString", "QString", "QString", "QString", "int", "QString", 0 }; override_arg_types[335] = s; }
+ { static const char* s[] = { "QSqlIndex", "QString", 0 }; override_arg_types[336] = s; }
+ { static const char* s[] = { "QSqlRecord", "QString", 0 }; override_arg_types[337] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[338] = s; }
+ { static const char* s[] = { "QString", "StatementType", "QString", "QSqlRecord", "bool", 0 }; override_arg_types[339] = s; }
+ { static const char* s[] = { "QString", "QString", "IdentifierType", 0 }; override_arg_types[340] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[341] = s; }
+ { static const char* s[] = { "QStringList", 0 }; override_arg_types[342] = s; }
+ { static const char* s[] = { "QStringList", "QSql::TableType", 0 }; override_arg_types[343] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[344] = s; }
+ { static const char* s[] = { 0, "QSqlError", 0 }; override_arg_types[345] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[346] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[347] = s; }
+ { static const char* s[] = { "QModelIndex", "QModelIndex", 0 }; override_arg_types[348] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[349] = s; }
+ { static const char* s[] = { "QSqlTableModel*", "int", 0 }; override_arg_types[350] = s; }
+ { static const char* s[] = { 0, "int", "QSqlRelation", 0 }; override_arg_types[351] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[352] = s; }
{ static const char* s[] = { 0, "QString", 0 }; override_arg_types[353] = s; }
- { static const char* s[] = { 0, "int", "Qt::SortOrder", 0 }; override_arg_types[354] = s; }
- { static const char* s[] = { "bool", "int", 0 }; override_arg_types[355] = s; }
- { static const char* s[] = { "QString", "QVariant", "QLocale", 0 }; override_arg_types[356] = s; }
- { static const char* s[] = { 0, "QStyleOptionViewItem*", "QModelIndex", 0 }; override_arg_types[357] = s; }
- { static const char* s[] = { 0, "QString", 0 }; override_arg_types[358] = s; }
- { static const char* s[] = { "QSize", "int", 0 }; override_arg_types[359] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[360] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[361] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[362] = s; }
- { static const char* s[] = { "QSize", "int", 0 }; override_arg_types[363] = s; }
- { static const char* s[] = { "bool", "int", "int", "QMimeData*", "Qt::DropAction", 0 }; override_arg_types[364] = s; }
- { static const char* s[] = { "QMimeData*", "QList", 0 }; override_arg_types[365] = s; }
- { static const char* s[] = { 0, "QTextBlock", 0 }; override_arg_types[366] = s; }
- { static const char* s[] = { 0, "QTextBlock", 0 }; override_arg_types[367] = s; }
- { static const char* s[] = { 0, "QTextBlock", 0 }; override_arg_types[368] = s; }
- { static const char* s[] = { "QTextObject*", "QTextFormat", 0 }; override_arg_types[369] = s; }
- { static const char* s[] = { "qreal", "int", 0 }; override_arg_types[370] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[371] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[372] = s; }
- { static const char* s[] = { "QString", "const char*", "const char*", "const char*", "int", 0 }; override_arg_types[373] = s; }
- { static const char* s[] = { "bool", "QTreeWidgetItem*", "int", "QMimeData*", "Qt::DropAction", 0 }; override_arg_types[374] = s; }
- { static const char* s[] = { "QMimeData*", "QList", 0 }; override_arg_types[375] = s; }
- { static const char* s[] = { 0, "QString", 0 }; override_arg_types[376] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[377] = s; }
- { static const char* s[] = { "bool", "Extension", "ExtensionOption*", "ExtensionReturn*", 0 }; override_arg_types[378] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[379] = s; }
- { static const char* s[] = { "bool", "Extension", 0 }; override_arg_types[380] = s; }
- { static const char* s[] = { 0, "WebAction", "bool", 0 }; override_arg_types[381] = s; }
- { static const char* s[] = { "bool", "QWebFrame*", "QNetworkRequest", "NavigationType", 0 }; override_arg_types[382] = s; }
- { static const char* s[] = { "QString", "QWebFrame*", "QString", 0 }; override_arg_types[383] = s; }
- { static const char* s[] = { "QObject*", "QString", "QUrl", "QStringList", "QStringList", 0 }; override_arg_types[384] = s; }
- { static const char* s[] = { "QWebPage*", "WebWindowType", 0 }; override_arg_types[385] = s; }
- { static const char* s[] = { 0, "QWebFrame*", "QString", 0 }; override_arg_types[386] = s; }
- { static const char* s[] = { "bool", "QWebFrame*", "QString", 0 }; override_arg_types[387] = s; }
- { static const char* s[] = { 0, "QString", "int", "QString", 0 }; override_arg_types[388] = s; }
- { static const char* s[] = { "bool", "QWebFrame*", "QString", "QString", "QString*", 0 }; override_arg_types[389] = s; }
- { static const char* s[] = { "QString", "QUrl", 0 }; override_arg_types[390] = s; }
- { static const char* s[] = { "QObject*", "QString", "QUrl", "QStringList", "QStringList", 0 }; override_arg_types[391] = s; }
- { static const char* s[] = { "QList", 0 }; override_arg_types[392] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[393] = s; }
- { static const char* s[] = { "QWebView*", "QWebPage::WebWindowType", 0 }; override_arg_types[394] = s; }
- { static const char* s[] = { "QWidget*", "QWidget*", 0 }; override_arg_types[395] = s; }
- { static const char* s[] = { 0, "QWidget*", 0 }; override_arg_types[396] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[397] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[398] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[399] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[400] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[401] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[402] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[403] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[404] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[405] = s; }
- { static const char* s[] = { "bool", "QGraphicsItem*", "Qt::ItemSelectionMode", 0 }; override_arg_types[406] = s; }
- { static const char* s[] = { "bool", "QPainterPath", "Qt::ItemSelectionMode", 0 }; override_arg_types[407] = s; }
- { static const char* s[] = { "bool", "QGraphicsItem*", "QEvent*", 0 }; override_arg_types[408] = s; }
- { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[409] = s; }
- { static const char* s[] = { "QStringList", 0 }; override_arg_types[410] = s; }
- { static const char* s[] = { "QColor", 0 }; override_arg_types[411] = s; }
- { static const char* s[] = { "QAccessibleInterface*", "int", 0 }; override_arg_types[412] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[413] = s; }
- { static const char* s[] = { 0, "QString", 0 }; override_arg_types[414] = s; }
- { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[415] = s; }
- { static const char* s[] = { "QColor", 0 }; override_arg_types[416] = s; }
- { static const char* s[] = { "int", "QAccessibleInterface*", 0 }; override_arg_types[417] = s; }
+ { static const char* s[] = { "bool", "QSqlRecord", 0 }; override_arg_types[354] = s; }
+ { static const char* s[] = { "QString", 0 }; override_arg_types[355] = s; }
+ { static const char* s[] = { "QString", 0 }; override_arg_types[356] = s; }
+ { static const char* s[] = { "bool", "int", "QSqlRecord", 0 }; override_arg_types[357] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[358] = s; }
+ { static const char* s[] = { 0, "EditStrategy", 0 }; override_arg_types[359] = s; }
+ { static const char* s[] = { 0, "QString", 0 }; override_arg_types[360] = s; }
+ { static const char* s[] = { 0, "int", "Qt::SortOrder", 0 }; override_arg_types[361] = s; }
+ { static const char* s[] = { "bool", "int", 0 }; override_arg_types[362] = s; }
+ { static const char* s[] = { "QString", "QVariant", "QLocale", 0 }; override_arg_types[363] = s; }
+ { static const char* s[] = { 0, "QStyleOptionViewItem*", "QModelIndex", 0 }; override_arg_types[364] = s; }
+ { static const char* s[] = { 0, "QString", 0 }; override_arg_types[365] = s; }
+ { static const char* s[] = { "QSize", "int", 0 }; override_arg_types[366] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[367] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[368] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[369] = s; }
+ { static const char* s[] = { "QSize", "int", 0 }; override_arg_types[370] = s; }
+ { static const char* s[] = { "bool", "int", "int", "QMimeData*", "Qt::DropAction", 0 }; override_arg_types[371] = s; }
+ { static const char* s[] = { "QMimeData*", "QList", 0 }; override_arg_types[372] = s; }
+ { static const char* s[] = { 0, "QTextBlock", 0 }; override_arg_types[373] = s; }
+ { static const char* s[] = { 0, "QTextBlock", 0 }; override_arg_types[374] = s; }
+ { static const char* s[] = { 0, "QTextBlock", 0 }; override_arg_types[375] = s; }
+ { static const char* s[] = { "QTextObject*", "QTextFormat", 0 }; override_arg_types[376] = s; }
+ { static const char* s[] = { "qreal", "int", 0 }; override_arg_types[377] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[378] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[379] = s; }
+ { static const char* s[] = { "QString", "const char*", "const char*", "const char*", "int", 0 }; override_arg_types[380] = s; }
+ { static const char* s[] = { "bool", "QTreeWidgetItem*", "int", "QMimeData*", "Qt::DropAction", 0 }; override_arg_types[381] = s; }
+ { static const char* s[] = { "QMimeData*", "QList", 0 }; override_arg_types[382] = s; }
+ { static const char* s[] = { "Qt::AspectRatioMode", 0 }; override_arg_types[383] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[384] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[385] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[386] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[387] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[388] = s; }
+ { static const char* s[] = { 0, "Qt::AspectRatioMode", 0 }; override_arg_types[389] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[390] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[391] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[392] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[393] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[394] = s; }
+ { static const char* s[] = { "QWidget*", 0 }; override_arg_types[395] = s; }
+ { static const char* s[] = { 0, "QString", 0 }; override_arg_types[396] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[397] = s; }
+ { static const char* s[] = { "bool", "Extension", "ExtensionOption*", "ExtensionReturn*", 0 }; override_arg_types[398] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[399] = s; }
+ { static const char* s[] = { "bool", "Extension", 0 }; override_arg_types[400] = s; }
+ { static const char* s[] = { 0, "WebAction", "bool", 0 }; override_arg_types[401] = s; }
+ { static const char* s[] = { "bool", "QWebFrame*", "QNetworkRequest", "NavigationType", 0 }; override_arg_types[402] = s; }
+ { static const char* s[] = { "QString", "QWebFrame*", "QString", 0 }; override_arg_types[403] = s; }
+ { static const char* s[] = { "QObject*", "QString", "QUrl", "QStringList", "QStringList", 0 }; override_arg_types[404] = s; }
+ { static const char* s[] = { "QWebPage*", "WebWindowType", 0 }; override_arg_types[405] = s; }
+ { static const char* s[] = { 0, "QWebFrame*", "QString", 0 }; override_arg_types[406] = s; }
+ { static const char* s[] = { "bool", "QWebFrame*", "QString", 0 }; override_arg_types[407] = s; }
+ { static const char* s[] = { 0, "QString", "int", "QString", 0 }; override_arg_types[408] = s; }
+ { static const char* s[] = { "bool", "QWebFrame*", "QString", "QString", "QString*", 0 }; override_arg_types[409] = s; }
+ { static const char* s[] = { "QString", "QUrl", 0 }; override_arg_types[410] = s; }
+ { static const char* s[] = { "QObject*", "QString", "QUrl", "QStringList", "QStringList", 0 }; override_arg_types[411] = s; }
+ { static const char* s[] = { "QList", 0 }; override_arg_types[412] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[413] = s; }
+ { static const char* s[] = { "QWebView*", "QWebPage::WebWindowType", 0 }; override_arg_types[414] = s; }
+ { static const char* s[] = { "QWidget*", "QWidget*", 0 }; override_arg_types[415] = s; }
+ { static const char* s[] = { 0, "QWidget*", 0 }; override_arg_types[416] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[417] = s; }
{ static const char* s[] = { "bool", 0 }; override_arg_types[418] = s; }
- { static const char* s[] = { "QStringList", "QString", 0 }; override_arg_types[419] = s; }
- { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[420] = s; }
- { static const char* s[] = { "QRect", 0 }; override_arg_types[421] = s; }
- { static const char* s[] = { "QAccessible::Role", 0 }; override_arg_types[422] = s; }
- { static const char* s[] = { "QString", "QAccessible::Text", 0 }; override_arg_types[423] = s; }
- { static const char* s[] = { "QWindow*", 0 }; override_arg_types[424] = s; }
- { static const char* s[] = { "QAccessibleInterface*", "int", "int", 0 }; override_arg_types[425] = s; }
- { static const char* s[] = { "QObject*", 0 }; override_arg_types[426] = s; }
- { static const char* s[] = { 0, "QAccessible::Text", "QString", 0 }; override_arg_types[427] = s; }
- { static const char* s[] = { "QIcon", "IconType", 0 }; override_arg_types[428] = s; }
- { static const char* s[] = { "QIcon", "QFileInfo", 0 }; override_arg_types[429] = s; }
- { static const char* s[] = { "QString", "QFileInfo", 0 }; override_arg_types[430] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[431] = s; }
- { static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[432] = s; }
- { static const char* s[] = { "QWidget*", "int", "QWidget*", 0 }; override_arg_types[433] = s; }
- { static const char* s[] = { "QByteArray", "int", 0 }; override_arg_types[434] = s; }
- { static const char* s[] = { "QSpacerItem*", 0 }; override_arg_types[435] = s; }
- { static const char* s[] = { "QWidget*", 0 }; override_arg_types[436] = s; }
- { static const char* s[] = { "QListWidgetItem*", 0 }; override_arg_types[437] = s; }
- { static const char* s[] = { "QVariant", "int", 0 }; override_arg_types[438] = s; }
- { static const char* s[] = { 0, "int", "QVariant", 0 }; override_arg_types[439] = s; }
- { static const char* s[] = { "QList", "QNetworkProxyQuery", 0 }; override_arg_types[440] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[441] = s; }
- { static const char* s[] = { "int", "QPaintDevice::PaintDeviceMetric", 0 }; override_arg_types[442] = s; }
- { static const char* s[] = { 0, "const char*", "uint", 0 }; override_arg_types[443] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[444] = s; }
- { static const char* s[] = { 0, "PageSize", 0 }; override_arg_types[445] = s; }
- { static const char* s[] = { 0, "QSizeF", 0 }; override_arg_types[446] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[447] = s; }
- { static const char* s[] = { 0, "int", "QVariant", "QSql::ParamType", 0 }; override_arg_types[448] = s; }
- { static const char* s[] = { 0, "QString", "QVariant", "QSql::ParamType", 0 }; override_arg_types[449] = s; }
- { static const char* s[] = { "bool", "int", 0 }; override_arg_types[450] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[451] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[452] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[453] = s; }
- { static const char* s[] = { "bool", 0 }; override_arg_types[454] = s; }
- { static const char* s[] = { "bool", "int", 0 }; override_arg_types[455] = s; }
- { static const char* s[] = { "QVariant", 0 }; override_arg_types[456] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[457] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[458] = s; }
- { static const char* s[] = { "QSqlRecord", 0 }; override_arg_types[459] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[460] = s; }
- { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[461] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[462] = s; }
- { static const char* s[] = { 0, "int", 0 }; override_arg_types[463] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[464] = s; }
- { static const char* s[] = { 0, "QString", 0 }; override_arg_types[465] = s; }
- { static const char* s[] = { 0, "bool", 0 }; override_arg_types[466] = s; }
- { static const char* s[] = { 0, "QVariant", "int", 0 }; override_arg_types[467] = s; }
- { static const char* s[] = { "QList", 0 }; override_arg_types[468] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[469] = s; }
- { static const char* s[] = { "QByteArray", 0 }; override_arg_types[470] = s; }
- { static const char* s[] = { "QByteArray", "QChar*", "int", "ConverterState*", 0 }; override_arg_types[471] = s; }
- { static const char* s[] = { "QString", "const char*", "int", "ConverterState*", 0 }; override_arg_types[472] = s; }
- { static const char* s[] = { "QVariant", "int", "int", 0 }; override_arg_types[473] = s; }
- { static const char* s[] = { 0, "int", "int", "QVariant", 0 }; override_arg_types[474] = s; }
- { static const char* s[] = { "int", 0 }; override_arg_types[475] = s; }
- { static const char* s[] = { "bool", "QUndoCommand*", 0 }; override_arg_types[476] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[477] = s; }
- { static const char* s[] = { 0, 0 }; override_arg_types[478] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[419] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[420] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[421] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[422] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[423] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[424] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[425] = s; }
+ { static const char* s[] = { "bool", "QGraphicsItem*", "Qt::ItemSelectionMode", 0 }; override_arg_types[426] = s; }
+ { static const char* s[] = { "bool", "QPainterPath", "Qt::ItemSelectionMode", 0 }; override_arg_types[427] = s; }
+ { static const char* s[] = { "bool", "QGraphicsItem*", "QEvent*", 0 }; override_arg_types[428] = s; }
+ { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[429] = s; }
+ { static const char* s[] = { "QStringList", 0 }; override_arg_types[430] = s; }
+ { static const char* s[] = { "QColor", 0 }; override_arg_types[431] = s; }
+ { static const char* s[] = { "QAccessibleInterface*", "int", 0 }; override_arg_types[432] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[433] = s; }
+ { static const char* s[] = { 0, "QString", 0 }; override_arg_types[434] = s; }
+ { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[435] = s; }
+ { static const char* s[] = { "QColor", 0 }; override_arg_types[436] = s; }
+ { static const char* s[] = { "int", "QAccessibleInterface*", 0 }; override_arg_types[437] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[438] = s; }
+ { static const char* s[] = { "QStringList", "QString", 0 }; override_arg_types[439] = s; }
+ { static const char* s[] = { "QAccessibleInterface*", 0 }; override_arg_types[440] = s; }
+ { static const char* s[] = { "QRect", 0 }; override_arg_types[441] = s; }
+ { static const char* s[] = { "QAccessible::Role", 0 }; override_arg_types[442] = s; }
+ { static const char* s[] = { "QString", "QAccessible::Text", 0 }; override_arg_types[443] = s; }
+ { static const char* s[] = { "QWindow*", 0 }; override_arg_types[444] = s; }
+ { static const char* s[] = { "QAccessibleInterface*", "int", "int", 0 }; override_arg_types[445] = s; }
+ { static const char* s[] = { "QObject*", 0 }; override_arg_types[446] = s; }
+ { static const char* s[] = { 0, "QAccessible::Text", "QString", 0 }; override_arg_types[447] = s; }
+ { static const char* s[] = { "QIcon", "IconType", 0 }; override_arg_types[448] = s; }
+ { static const char* s[] = { "QIcon", "QFileInfo", 0 }; override_arg_types[449] = s; }
+ { static const char* s[] = { "QString", "QFileInfo", 0 }; override_arg_types[450] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[451] = s; }
+ { static const char* s[] = { 0, "QEvent*", 0 }; override_arg_types[452] = s; }
+ { static const char* s[] = { "QWidget*", "int", "QWidget*", 0 }; override_arg_types[453] = s; }
+ { static const char* s[] = { "QByteArray", "int", 0 }; override_arg_types[454] = s; }
+ { static const char* s[] = { "QSpacerItem*", 0 }; override_arg_types[455] = s; }
+ { static const char* s[] = { "QWidget*", 0 }; override_arg_types[456] = s; }
+ { static const char* s[] = { "QListWidgetItem*", 0 }; override_arg_types[457] = s; }
+ { static const char* s[] = { "QVariant", "int", 0 }; override_arg_types[458] = s; }
+ { static const char* s[] = { 0, "int", "QVariant", 0 }; override_arg_types[459] = s; }
+ { static const char* s[] = { "QList", "QNetworkProxyQuery", 0 }; override_arg_types[460] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[461] = s; }
+ { static const char* s[] = { "int", "QPaintDevice::PaintDeviceMetric", 0 }; override_arg_types[462] = s; }
+ { static const char* s[] = { 0, "const char*", "uint", 0 }; override_arg_types[463] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[464] = s; }
+ { static const char* s[] = { 0, "PageSize", 0 }; override_arg_types[465] = s; }
+ { static const char* s[] = { 0, "QSizeF", 0 }; override_arg_types[466] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[467] = s; }
+ { static const char* s[] = { 0, "int", "QVariant", "QSql::ParamType", 0 }; override_arg_types[468] = s; }
+ { static const char* s[] = { 0, "QString", "QVariant", "QSql::ParamType", 0 }; override_arg_types[469] = s; }
+ { static const char* s[] = { "bool", "int", 0 }; override_arg_types[470] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[471] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[472] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[473] = s; }
+ { static const char* s[] = { "bool", 0 }; override_arg_types[474] = s; }
+ { static const char* s[] = { "bool", "int", 0 }; override_arg_types[475] = s; }
+ { static const char* s[] = { "QVariant", 0 }; override_arg_types[476] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[477] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[478] = s; }
+ { static const char* s[] = { "QSqlRecord", 0 }; override_arg_types[479] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[480] = s; }
+ { static const char* s[] = { "bool", "QString", 0 }; override_arg_types[481] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[482] = s; }
+ { static const char* s[] = { 0, "int", 0 }; override_arg_types[483] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[484] = s; }
+ { static const char* s[] = { 0, "QString", 0 }; override_arg_types[485] = s; }
+ { static const char* s[] = { 0, "bool", 0 }; override_arg_types[486] = s; }
+ { static const char* s[] = { 0, "QVariant", "int", 0 }; override_arg_types[487] = s; }
+ { static const char* s[] = { "QList", 0 }; override_arg_types[488] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[489] = s; }
+ { static const char* s[] = { "QByteArray", 0 }; override_arg_types[490] = s; }
+ { static const char* s[] = { "QByteArray", "QChar*", "int", "ConverterState*", 0 }; override_arg_types[491] = s; }
+ { static const char* s[] = { "QString", "const char*", "int", "ConverterState*", 0 }; override_arg_types[492] = s; }
+ { static const char* s[] = { "QVariant", "int", "int", 0 }; override_arg_types[493] = s; }
+ { static const char* s[] = { 0, "int", "int", "QVariant", 0 }; override_arg_types[494] = s; }
+ { static const char* s[] = { "int", 0 }; override_arg_types[495] = s; }
+ { static const char* s[] = { "bool", "QUndoCommand*", 0 }; override_arg_types[496] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[497] = s; }
+ { static const char* s[] = { 0, 0 }; override_arg_types[498] = s; }
qNames = q_names.keys();
nNames = n_names.keys(); }}
void LObjects::cleanUp() {
delete EQL::eventLoop;
delete[] override_arg_types;
- for(int i = 204; i + 1; --i) { delete N[i]; }
- for(int i = 222; i + 1; --i) { delete Q[i]; }
+ for(int i = 213; i + 1; --i) { delete N[i]; }
+ for(int i = 240; i + 1; --i) { delete Q[i]; }
delete[] N;
delete[] Q;
delete dynObject; }
quint64 LObjects::override_id(uint unique, int id) {
- return (479 * (quint64)unique + id); }
+ return (499 * (quint64)unique + id); }
void* LObjects::overrideFun(quint64 id) {
return override_lisp_functions.value(id, 0); }
@@ -2193,66 +2279,66 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) {
n = -LObjects::n_names.value(name, 0); }}
const QMetaObject* m = 0;
switch(n) {
- case -204: m = &QWindowStateChangeEvent::staticMetaObject; break;
- case -202: m = &QWheelEvent::staticMetaObject; break;
- case -201: m = &QWhatsThisClickedEvent::staticMetaObject; break;
- case -183: m = &QTouchEvent::staticMetaObject; break;
- case -181: m = &QTimerEvent::staticMetaObject; break;
- case -178: m = &QTextTableFormat::staticMetaObject; break;
- case -177: m = &QTextTableCellFormat::staticMetaObject; break;
- case -174: m = &QTextListFormat::staticMetaObject; break;
- case -170: m = &QTextImageFormat::staticMetaObject; break;
- case -169: m = &QTextFrameFormat::staticMetaObject; break;
- case -167: m = &QTextFormat::staticMetaObject; break;
- case -160: m = &QTextCharFormat::staticMetaObject; break;
- case -157: m = &QTextBlockFormat::staticMetaObject; break;
- case -155: m = &QTabletEvent::staticMetaObject; break;
- case -147: m = &QStatusTipEvent::staticMetaObject; break;
- case -130: m = &QSizePolicy::staticMetaObject; break;
- case -129: m = &QShowEvent::staticMetaObject; break;
- case -128: m = &QShortcutEvent::staticMetaObject; break;
- case -125: m = &QResizeEvent::staticMetaObject; break;
- case -119: m = &QRadialGradient::staticMetaObject; break;
- case -109: m = &QPalette::staticMetaObject; break;
- case -106: m = &QPainter::staticMetaObject; break;
- case -105: m = &QPaintEvent::staticMetaObject; break;
- case -92: m = &QMoveEvent::staticMetaObject; break;
- case -91: m = &QMouseEvent::staticMetaObject; break;
- case -85: m = &QLocale::staticMetaObject; break;
- case -83: m = &QLinearGradient::staticMetaObject; break;
- case -79: m = &QKeyEvent::staticMetaObject; break;
- case -76: m = &QInputMethodEvent::staticMetaObject; break;
- case -75: m = &QInputEvent::staticMetaObject; break;
- case -73: m = &QIconDragEvent::staticMetaObject; break;
- case -71: m = &QHoverEvent::staticMetaObject; break;
- case -68: m = &QHideEvent::staticMetaObject; break;
- case -66: m = &QHelpEvent::staticMetaObject; break;
- case -63: m = &QGraphicsSceneWheelEvent::staticMetaObject; break;
- case -62: m = &QGraphicsSceneResizeEvent::staticMetaObject; break;
- case -61: m = &QGraphicsSceneMoveEvent::staticMetaObject; break;
- case -60: m = &QGraphicsSceneMouseEvent::staticMetaObject; break;
- case -59: m = &QGraphicsSceneHoverEvent::staticMetaObject; break;
- case -58: m = &QGraphicsSceneHelpEvent::staticMetaObject; break;
- case -57: m = &QGraphicsSceneEvent::staticMetaObject; break;
- case -56: m = &QGraphicsSceneDragDropEvent::staticMetaObject; break;
- case -55: m = &QGraphicsSceneContextMenuEvent::staticMetaObject; break;
- case -41: m = &QGradient::staticMetaObject; break;
- case -40: m = &QGestureEvent::staticMetaObject; break;
- case -37: m = &QFontDatabase::staticMetaObject; break;
- case -36: m = &QFont::staticMetaObject; break;
- case -35: m = &QFocusEvent::staticMetaObject; break;
- case -34: m = &QFileOpenEvent::staticMetaObject; break;
- case -31: m = &QEvent::staticMetaObject; break;
- case -30: m = &QEasingCurve::staticMetaObject; break;
- case -29: m = &QDynamicPropertyChangeEvent::staticMetaObject; break;
- case -28: m = &QDropEvent::staticMetaObject; break;
- case -27: m = &QDragMoveEvent::staticMetaObject; break;
- case -26: m = &QDragLeaveEvent::staticMetaObject; break;
- case -25: m = &QDragEnterEvent::staticMetaObject; break;
- case -17: m = &QContextMenuEvent::staticMetaObject; break;
- case -16: m = &QConicalGradient::staticMetaObject; break;
- case -14: m = &QCloseEvent::staticMetaObject; break;
- case -13: m = &QChildEvent::staticMetaObject; break;
+ case -213: m = &QWindowStateChangeEvent::staticMetaObject; break;
+ case -211: m = &QWheelEvent::staticMetaObject; break;
+ case -210: m = &QWhatsThisClickedEvent::staticMetaObject; break;
+ case -189: m = &QTouchEvent::staticMetaObject; break;
+ case -187: m = &QTimerEvent::staticMetaObject; break;
+ case -184: m = &QTextTableFormat::staticMetaObject; break;
+ case -183: m = &QTextTableCellFormat::staticMetaObject; break;
+ case -180: m = &QTextListFormat::staticMetaObject; break;
+ case -176: m = &QTextImageFormat::staticMetaObject; break;
+ case -175: m = &QTextFrameFormat::staticMetaObject; break;
+ case -173: m = &QTextFormat::staticMetaObject; break;
+ case -166: m = &QTextCharFormat::staticMetaObject; break;
+ case -163: m = &QTextBlockFormat::staticMetaObject; break;
+ case -161: m = &QTabletEvent::staticMetaObject; break;
+ case -152: m = &QStatusTipEvent::staticMetaObject; break;
+ case -135: m = &QSizePolicy::staticMetaObject; break;
+ case -134: m = &QShowEvent::staticMetaObject; break;
+ case -133: m = &QShortcutEvent::staticMetaObject; break;
+ case -130: m = &QResizeEvent::staticMetaObject; break;
+ case -124: m = &QRadialGradient::staticMetaObject; break;
+ case -114: m = &QPalette::staticMetaObject; break;
+ case -111: m = &QPainter::staticMetaObject; break;
+ case -110: m = &QPaintEvent::staticMetaObject; break;
+ case -97: m = &QMoveEvent::staticMetaObject; break;
+ case -96: m = &QMouseEvent::staticMetaObject; break;
+ case -90: m = &QLocale::staticMetaObject; break;
+ case -88: m = &QLinearGradient::staticMetaObject; break;
+ case -84: m = &QKeyEvent::staticMetaObject; break;
+ case -81: m = &QInputMethodEvent::staticMetaObject; break;
+ case -80: m = &QInputEvent::staticMetaObject; break;
+ case -78: m = &QIconDragEvent::staticMetaObject; break;
+ case -76: m = &QHoverEvent::staticMetaObject; break;
+ case -73: m = &QHideEvent::staticMetaObject; break;
+ case -71: m = &QHelpEvent::staticMetaObject; break;
+ case -68: m = &QGraphicsSceneWheelEvent::staticMetaObject; break;
+ case -67: m = &QGraphicsSceneResizeEvent::staticMetaObject; break;
+ case -66: m = &QGraphicsSceneMoveEvent::staticMetaObject; break;
+ case -65: m = &QGraphicsSceneMouseEvent::staticMetaObject; break;
+ case -64: m = &QGraphicsSceneHoverEvent::staticMetaObject; break;
+ case -63: m = &QGraphicsSceneHelpEvent::staticMetaObject; break;
+ case -62: m = &QGraphicsSceneEvent::staticMetaObject; break;
+ case -61: m = &QGraphicsSceneDragDropEvent::staticMetaObject; break;
+ case -60: m = &QGraphicsSceneContextMenuEvent::staticMetaObject; break;
+ case -46: m = &QGradient::staticMetaObject; break;
+ case -45: m = &QGestureEvent::staticMetaObject; break;
+ case -42: m = &QFontDatabase::staticMetaObject; break;
+ case -41: m = &QFont::staticMetaObject; break;
+ case -40: m = &QFocusEvent::staticMetaObject; break;
+ case -39: m = &QFileOpenEvent::staticMetaObject; break;
+ case -36: m = &QEvent::staticMetaObject; break;
+ case -35: m = &QEasingCurve::staticMetaObject; break;
+ case -34: m = &QDynamicPropertyChangeEvent::staticMetaObject; break;
+ case -33: m = &QDropEvent::staticMetaObject; break;
+ case -32: m = &QDragMoveEvent::staticMetaObject; break;
+ case -31: m = &QDragLeaveEvent::staticMetaObject; break;
+ case -30: m = &QDragEnterEvent::staticMetaObject; break;
+ case -22: m = &QContextMenuEvent::staticMetaObject; break;
+ case -21: m = &QConicalGradient::staticMetaObject; break;
+ case -19: m = &QCloseEvent::staticMetaObject; break;
+ case -18: m = &QChildEvent::staticMetaObject; break;
case -7: m = &QActionEvent::staticMetaObject; break;
case 1: m = &QAbstractAnimation::staticMetaObject; break;
case 2: m = &QAbstractButton::staticMetaObject; break;
@@ -2269,226 +2355,247 @@ const QMetaObject* LObjects::staticMetaObject(const QByteArray& name, int n) {
case 15: m = &QAbstractTableModel::staticMetaObject; break;
case 16: m = &QAbstractTextDocumentLayout::staticMetaObject; break;
case 17: m = &QAbstractTransition::staticMetaObject; break;
- case 18: m = &QAction::staticMetaObject; break;
- case 19: m = &QActionGroup::staticMetaObject; break;
- case 20: m = &QAnimationGroup::staticMetaObject; break;
- case 21: m = &QApplication::staticMetaObject; break;
- case 22: m = &QBoxLayout::staticMetaObject; break;
- case 23: m = &QBuffer::staticMetaObject; break;
- case 24: m = &QButtonGroup::staticMetaObject; break;
- case 25: m = &QCalendarWidget::staticMetaObject; break;
- case 26: m = &QCheckBox::staticMetaObject; break;
- case 27: m = &QClipboard::staticMetaObject; break;
- case 28: m = &QColorDialog::staticMetaObject; break;
- case 29: m = &QColumnView::staticMetaObject; break;
- case 30: m = &QComboBox::staticMetaObject; break;
- case 31: m = &QCommandLinkButton::staticMetaObject; break;
- case 32: m = &QCommonStyle::staticMetaObject; break;
- case 33: m = &QCompleter::staticMetaObject; break;
- case 34: m = &QCoreApplication::staticMetaObject; break;
- case 35: m = &QDataWidgetMapper::staticMetaObject; break;
- case 36: m = &QDateEdit::staticMetaObject; break;
- case 37: m = &QDateTimeEdit::staticMetaObject; break;
- case 38: m = &QDesktopWidget::staticMetaObject; break;
- case 39: m = &QDial::staticMetaObject; break;
- case 40: m = &QDialog::staticMetaObject; break;
- case 41: m = &QDialogButtonBox::staticMetaObject; break;
- case 42: m = &QDirModel::staticMetaObject; break;
- case 43: m = &QDockWidget::staticMetaObject; break;
- case 44: m = &QDoubleSpinBox::staticMetaObject; break;
- case 45: m = &QDoubleValidator::staticMetaObject; break;
- case 46: m = &QDrag::staticMetaObject; break;
- case 47: m = &QErrorMessage::staticMetaObject; break;
- case 48: m = &QEventLoop::staticMetaObject; break;
- case 49: m = &QEventTransition::staticMetaObject; break;
- case 50: m = &QFile::staticMetaObject; break;
- case 51: m = &QFileDevice::staticMetaObject; break;
- case 52: m = &QFileDialog::staticMetaObject; break;
- case 53: m = &QFileSystemModel::staticMetaObject; break;
- case 54: m = &QFileSystemWatcher::staticMetaObject; break;
- case 55: m = &QFinalState::staticMetaObject; break;
- case 56: m = &QFocusFrame::staticMetaObject; break;
- case 57: m = &QFontComboBox::staticMetaObject; break;
- case 58: m = &QFontDialog::staticMetaObject; break;
- case 59: m = &QFormLayout::staticMetaObject; break;
- case 60: m = &QFrame::staticMetaObject; break;
- case 61: m = &QGesture::staticMetaObject; break;
- case 62: m = &QGraphicsAnchor::staticMetaObject; break;
- case 63: m = &QGraphicsBlurEffect::staticMetaObject; break;
- case 64: m = &QGraphicsColorizeEffect::staticMetaObject; break;
- case 65: m = &QGraphicsDropShadowEffect::staticMetaObject; break;
- case 66: m = &QGraphicsEffect::staticMetaObject; break;
- case 67: m = &QGraphicsObject::staticMetaObject; break;
- case 68: m = &QGraphicsOpacityEffect::staticMetaObject; break;
- case 69: m = &QGraphicsProxyWidget::staticMetaObject; break;
- case 70: m = &QGraphicsRotation::staticMetaObject; break;
- case 71: m = &QGraphicsScale::staticMetaObject; break;
- case 72: m = &QGraphicsScene::staticMetaObject; break;
- case 74: m = &QGraphicsTextItem::staticMetaObject; break;
- case 75: m = &QGraphicsTransform::staticMetaObject; break;
- case 76: m = &QGraphicsView::staticMetaObject; break;
- case 78: m = &QGraphicsWidget::staticMetaObject; break;
- case 79: m = &QGridLayout::staticMetaObject; break;
- case 80: m = &QGroupBox::staticMetaObject; break;
- case 81: m = &QGuiApplication::staticMetaObject; break;
- case 82: m = &QHBoxLayout::staticMetaObject; break;
- case 83: m = &QHeaderView::staticMetaObject; break;
- case 92: m = &QHistoryState::staticMetaObject; break;
- case 93: m = &QIODevice::staticMetaObject; break;
- case 94: m = &QInputDialog::staticMetaObject; break;
- case 95: m = &QIntValidator::staticMetaObject; break;
- case 96: m = &QItemDelegate::staticMetaObject; break;
- case 97: m = &QItemSelectionModel::staticMetaObject; break;
- case 98: m = &QKeyEventTransition::staticMetaObject; break;
- case 99: m = &QLCDNumber::staticMetaObject; break;
- case 100: m = &QLabel::staticMetaObject; break;
- case 101: m = &QLayout::staticMetaObject; break;
- case 102: m = &QLibrary::staticMetaObject; break;
- case 103: m = &QLineEdit::staticMetaObject; break;
- case 104: m = &QListView::staticMetaObject; break;
- case 105: m = &QListWidget::staticMetaObject; break;
- case 108: m = &QMainWindow::staticMetaObject; break;
- case 109: m = &QMdiArea::staticMetaObject; break;
- case 110: m = &QMdiSubWindow::staticMetaObject; break;
- case 111: m = &QMenu::staticMetaObject; break;
- case 112: m = &QMenuBar::staticMetaObject; break;
- case 113: m = &QMessageBox::staticMetaObject; break;
- case 114: m = &QMimeData::staticMetaObject; break;
- case 115: m = &QMouseEventTransition::staticMetaObject; break;
- case 116: m = &QMovie::staticMetaObject; break;
- case 121: m = &QObject::staticMetaObject; break;
- case 122: m = &QOpenGLContext::staticMetaObject; break;
- case 123: m = &QOpenGLShader::staticMetaObject; break;
- case 124: m = &QOpenGLShaderProgram::staticMetaObject; break;
- case 125: m = &QOpenGLWidget::staticMetaObject; break;
- case 126: m = &QOpenGLWindow::staticMetaObject; break;
- case 127: m = &QPageSetupDialog::staticMetaObject; break;
- case 128: m = &QPaintDeviceWindow::staticMetaObject; break;
- case 129: m = &QPanGesture::staticMetaObject; break;
- case 130: m = &QParallelAnimationGroup::staticMetaObject; break;
- case 131: m = &QPauseAnimation::staticMetaObject; break;
- case 132: m = &QPinchGesture::staticMetaObject; break;
- case 133: m = &QPlainTextDocumentLayout::staticMetaObject; break;
- case 134: m = &QPlainTextEdit::staticMetaObject; break;
- case 135: m = &QPluginLoader::staticMetaObject; break;
- case 136: m = &QPrintDialog::staticMetaObject; break;
- case 137: m = &QPrintPreviewDialog::staticMetaObject; break;
- case 138: m = &QPrintPreviewWidget::staticMetaObject; break;
- case 139: m = &QProcess::staticMetaObject; break;
- case 140: m = &QProgressBar::staticMetaObject; break;
- case 141: m = &QProgressDialog::staticMetaObject; break;
- case 142: m = &QPropertyAnimation::staticMetaObject; break;
- case 143: m = &QPushButton::staticMetaObject; break;
- case 144: m = &QRadioButton::staticMetaObject; break;
- case 145: m = &QRegExpValidator::staticMetaObject; break;
- case 146: m = &QRubberBand::staticMetaObject; break;
- case 147: m = &QScreen::staticMetaObject; break;
- case 148: m = &QScrollArea::staticMetaObject; break;
- case 149: m = &QScrollBar::staticMetaObject; break;
- case 150: m = &QSequentialAnimationGroup::staticMetaObject; break;
- case 151: m = &QSessionManager::staticMetaObject; break;
- case 152: m = &QSettings::staticMetaObject; break;
- case 153: m = &QShortcut::staticMetaObject; break;
- case 154: m = &QSignalTransition::staticMetaObject; break;
- case 155: m = &QSizeGrip::staticMetaObject; break;
- case 156: m = &QSlider::staticMetaObject; break;
- case 157: m = &QSortFilterProxyModel::staticMetaObject; break;
- case 158: m = &QSpinBox::staticMetaObject; break;
- case 159: m = &QSplashScreen::staticMetaObject; break;
- case 160: m = &QSplitter::staticMetaObject; break;
- case 161: m = &QSplitterHandle::staticMetaObject; break;
- case 167: m = &QStackedLayout::staticMetaObject; break;
- case 168: m = &QStackedWidget::staticMetaObject; break;
- case 169: m = &QStandardItemModel::staticMetaObject; break;
- case 170: m = &QState::staticMetaObject; break;
- case 171: m = &QStateMachine::staticMetaObject; break;
- case 172: m = &QStatusBar::staticMetaObject; break;
- case 173: m = &QStringListModel::staticMetaObject; break;
- case 174: m = &QStyle::staticMetaObject; break;
- case 175: m = &QStyledItemDelegate::staticMetaObject; break;
- case 178: m = &QSwipeGesture::staticMetaObject; break;
- case 179: m = &QSyntaxHighlighter::staticMetaObject; break;
- case 180: m = &QSystemTrayIcon::staticMetaObject; break;
- case 181: m = &QTabBar::staticMetaObject; break;
- case 182: m = &QTabWidget::staticMetaObject; break;
- case 183: m = &QTableView::staticMetaObject; break;
- case 184: m = &QTableWidget::staticMetaObject; break;
- case 185: m = &QTapAndHoldGesture::staticMetaObject; break;
- case 186: m = &QTapGesture::staticMetaObject; break;
- case 189: m = &QTextBlockGroup::staticMetaObject; break;
- case 190: m = &QTextBrowser::staticMetaObject; break;
- case 191: m = &QTextDocument::staticMetaObject; break;
- case 192: m = &QTextEdit::staticMetaObject; break;
- case 193: m = &QTextFrame::staticMetaObject; break;
- case 194: m = &QTextList::staticMetaObject; break;
- case 195: m = &QTextObject::staticMetaObject; break;
- case 196: m = &QTextTable::staticMetaObject; break;
- case 197: m = &QTimeEdit::staticMetaObject; break;
- case 198: m = &QTimeLine::staticMetaObject; break;
- case 199: m = &QTimer::staticMetaObject; break;
- case 200: m = &QToolBar::staticMetaObject; break;
- case 201: m = &QToolBox::staticMetaObject; break;
- case 202: m = &QToolButton::staticMetaObject; break;
- case 203: m = &QTranslator::staticMetaObject; break;
- case 204: m = &QTreeView::staticMetaObject; break;
- case 205: m = &QTreeWidget::staticMetaObject; break;
- case 207: m = &QUndoGroup::staticMetaObject; break;
- case 208: m = &QUndoStack::staticMetaObject; break;
- case 209: m = &QUndoView::staticMetaObject; break;
- case 210: m = &QVBoxLayout::staticMetaObject; break;
- case 211: m = &QValidator::staticMetaObject; break;
- case 212: m = &QVariantAnimation::staticMetaObject; break;
- case 219: m = &QWidget::staticMetaObject; break;
- case 220: m = &QWidgetAction::staticMetaObject; break;
- case 221: m = &QWindow::staticMetaObject; break;
- case 222: m = &QWizard::staticMetaObject; break;
- case 223: m = &QWizardPage::staticMetaObject; break;
- case 84:
- case 85:
- case 86:
- case 87:
- case 88:
- case 89:
- case 90:
- case 91:
+ case 19: m = &QAction::staticMetaObject; break;
+ case 20: m = &QActionGroup::staticMetaObject; break;
+ case 21: m = &QAnimationGroup::staticMetaObject; break;
+ case 22: m = &QApplication::staticMetaObject; break;
+ case 25: m = &QBoxLayout::staticMetaObject; break;
+ case 26: m = &QBuffer::staticMetaObject; break;
+ case 27: m = &QButtonGroup::staticMetaObject; break;
+ case 28: m = &QCalendarWidget::staticMetaObject; break;
+ case 35: m = &QCheckBox::staticMetaObject; break;
+ case 36: m = &QClipboard::staticMetaObject; break;
+ case 37: m = &QColorDialog::staticMetaObject; break;
+ case 38: m = &QColumnView::staticMetaObject; break;
+ case 39: m = &QComboBox::staticMetaObject; break;
+ case 40: m = &QCommandLinkButton::staticMetaObject; break;
+ case 41: m = &QCommonStyle::staticMetaObject; break;
+ case 42: m = &QCompleter::staticMetaObject; break;
+ case 43: m = &QCoreApplication::staticMetaObject; break;
+ case 44: m = &QDataWidgetMapper::staticMetaObject; break;
+ case 45: m = &QDateEdit::staticMetaObject; break;
+ case 46: m = &QDateTimeEdit::staticMetaObject; break;
+ case 47: m = &QDesktopWidget::staticMetaObject; break;
+ case 48: m = &QDial::staticMetaObject; break;
+ case 49: m = &QDialog::staticMetaObject; break;
+ case 50: m = &QDialogButtonBox::staticMetaObject; break;
+ case 51: m = &QDirModel::staticMetaObject; break;
+ case 52: m = &QDockWidget::staticMetaObject; break;
+ case 53: m = &QDoubleSpinBox::staticMetaObject; break;
+ case 54: m = &QDoubleValidator::staticMetaObject; break;
+ case 55: m = &QDrag::staticMetaObject; break;
+ case 56: m = &QErrorMessage::staticMetaObject; break;
+ case 57: m = &QEventLoop::staticMetaObject; break;
+ case 58: m = &QEventTransition::staticMetaObject; break;
+ case 59: m = &QFile::staticMetaObject; break;
+ case 60: m = &QFileDevice::staticMetaObject; break;
+ case 61: m = &QFileDialog::staticMetaObject; break;
+ case 62: m = &QFileSystemModel::staticMetaObject; break;
+ case 63: m = &QFileSystemWatcher::staticMetaObject; break;
+ case 64: m = &QFinalState::staticMetaObject; break;
+ case 65: m = &QFocusFrame::staticMetaObject; break;
+ case 66: m = &QFontComboBox::staticMetaObject; break;
+ case 67: m = &QFontDialog::staticMetaObject; break;
+ case 68: m = &QFormLayout::staticMetaObject; break;
+ case 69: m = &QFrame::staticMetaObject; break;
+ case 70: m = &QGesture::staticMetaObject; break;
+ case 71: m = &QGraphicsAnchor::staticMetaObject; break;
+ case 72: m = &QGraphicsBlurEffect::staticMetaObject; break;
+ case 73: m = &QGraphicsColorizeEffect::staticMetaObject; break;
+ case 74: m = &QGraphicsDropShadowEffect::staticMetaObject; break;
+ case 75: m = &QGraphicsEffect::staticMetaObject; break;
+ case 76: m = &QGraphicsObject::staticMetaObject; break;
+ case 77: m = &QGraphicsOpacityEffect::staticMetaObject; break;
+ case 78: m = &QGraphicsProxyWidget::staticMetaObject; break;
+ case 79: m = &QGraphicsRotation::staticMetaObject; break;
+ case 80: m = &QGraphicsScale::staticMetaObject; break;
+ case 81: m = &QGraphicsScene::staticMetaObject; break;
+ case 83: m = &QGraphicsTextItem::staticMetaObject; break;
+ case 84: m = &QGraphicsTransform::staticMetaObject; break;
+ case 86: m = &QGraphicsView::staticMetaObject; break;
+ case 88: m = &QGraphicsWidget::staticMetaObject; break;
+ case 89: m = &QGridLayout::staticMetaObject; break;
+ case 90: m = &QGroupBox::staticMetaObject; break;
+ case 91: m = &QGuiApplication::staticMetaObject; break;
+ case 92: m = &QHBoxLayout::staticMetaObject; break;
+ case 93: m = &QHeaderView::staticMetaObject; break;
+ case 102: m = &QHistoryState::staticMetaObject; break;
+ case 103: m = &QIODevice::staticMetaObject; break;
+ case 104: m = &QInputDialog::staticMetaObject; break;
+ case 105: m = &QIntValidator::staticMetaObject; break;
+ case 106: m = &QItemDelegate::staticMetaObject; break;
+ case 107: m = &QItemSelectionModel::staticMetaObject; break;
+ case 108: m = &QKeyEventTransition::staticMetaObject; break;
+ case 109: m = &QLCDNumber::staticMetaObject; break;
+ case 110: m = &QLabel::staticMetaObject; break;
+ case 111: m = &QLayout::staticMetaObject; break;
+ case 112: m = &QLibrary::staticMetaObject; break;
+ case 113: m = &QLineEdit::staticMetaObject; break;
+ case 114: m = &QListView::staticMetaObject; break;
+ case 115: m = &QListWidget::staticMetaObject; break;
+ case 118: m = &QMainWindow::staticMetaObject; break;
+ case 119: m = &QMdiArea::staticMetaObject; break;
+ case 120: m = &QMdiSubWindow::staticMetaObject; break;
+ case 126: m = &QMenu::staticMetaObject; break;
+ case 127: m = &QMenuBar::staticMetaObject; break;
+ case 128: m = &QMessageBox::staticMetaObject; break;
+ case 129: m = &QMimeData::staticMetaObject; break;
+ case 130: m = &QMouseEventTransition::staticMetaObject; break;
+ case 131: m = &QMovie::staticMetaObject; break;
+ case 136: m = &QObject::staticMetaObject; break;
+ case 137: m = &QOpenGLContext::staticMetaObject; break;
+ case 138: m = &QOpenGLShader::staticMetaObject; break;
+ case 139: m = &QOpenGLShaderProgram::staticMetaObject; break;
+ case 140: m = &QOpenGLWidget::staticMetaObject; break;
+ case 141: m = &QOpenGLWindow::staticMetaObject; break;
+ case 142: m = &QPageSetupDialog::staticMetaObject; break;
+ case 143: m = &QPaintDeviceWindow::staticMetaObject; break;
+ case 144: m = &QPanGesture::staticMetaObject; break;
+ case 145: m = &QParallelAnimationGroup::staticMetaObject; break;
+ case 146: m = &QPauseAnimation::staticMetaObject; break;
+ case 147: m = &QPinchGesture::staticMetaObject; break;
+ case 148: m = &QPlainTextDocumentLayout::staticMetaObject; break;
+ case 149: m = &QPlainTextEdit::staticMetaObject; break;
+ case 150: m = &QPluginLoader::staticMetaObject; break;
+ case 151: m = &QPrintDialog::staticMetaObject; break;
+ case 152: m = &QPrintPreviewDialog::staticMetaObject; break;
+ case 153: m = &QPrintPreviewWidget::staticMetaObject; break;
+ case 154: m = &QProcess::staticMetaObject; break;
+ case 155: m = &QProgressBar::staticMetaObject; break;
+ case 156: m = &QProgressDialog::staticMetaObject; break;
+ case 157: m = &QPropertyAnimation::staticMetaObject; break;
+ case 158: m = &QPushButton::staticMetaObject; break;
+ case 159: m = &QRadioButton::staticMetaObject; break;
+ case 161: m = &QRegExpValidator::staticMetaObject; break;
+ case 162: m = &QRubberBand::staticMetaObject; break;
+ case 163: m = &QScreen::staticMetaObject; break;
+ case 164: m = &QScrollArea::staticMetaObject; break;
+ case 165: m = &QScrollBar::staticMetaObject; break;
+ case 166: m = &QSequentialAnimationGroup::staticMetaObject; break;
+ case 167: m = &QSessionManager::staticMetaObject; break;
+ case 168: m = &QSettings::staticMetaObject; break;
+ case 169: m = &QShortcut::staticMetaObject; break;
+ case 170: m = &QSignalTransition::staticMetaObject; break;
+ case 171: m = &QSizeGrip::staticMetaObject; break;
+ case 172: m = &QSlider::staticMetaObject; break;
+ case 173: m = &QSortFilterProxyModel::staticMetaObject; break;
+ case 174: m = &QSpinBox::staticMetaObject; break;
+ case 175: m = &QSplashScreen::staticMetaObject; break;
+ case 176: m = &QSplitter::staticMetaObject; break;
+ case 177: m = &QSplitterHandle::staticMetaObject; break;
+ case 183: m = &QStackedLayout::staticMetaObject; break;
+ case 184: m = &QStackedWidget::staticMetaObject; break;
+ case 185: m = &QStandardItemModel::staticMetaObject; break;
+ case 186: m = &QState::staticMetaObject; break;
+ case 187: m = &QStateMachine::staticMetaObject; break;
+ case 188: m = &QStatusBar::staticMetaObject; break;
+ case 189: m = &QStringListModel::staticMetaObject; break;
+ case 190: m = &QStyle::staticMetaObject; break;
+ case 191: m = &QStyledItemDelegate::staticMetaObject; break;
+ case 194: m = &QSwipeGesture::staticMetaObject; break;
+ case 195: m = &QSyntaxHighlighter::staticMetaObject; break;
+ case 196: m = &QSystemTrayIcon::staticMetaObject; break;
+ case 197: m = &QTabBar::staticMetaObject; break;
+ case 198: m = &QTabWidget::staticMetaObject; break;
+ case 199: m = &QTableView::staticMetaObject; break;
+ case 200: m = &QTableWidget::staticMetaObject; break;
+ case 201: m = &QTapAndHoldGesture::staticMetaObject; break;
+ case 202: m = &QTapGesture::staticMetaObject; break;
+ case 205: m = &QTextBlockGroup::staticMetaObject; break;
+ case 206: m = &QTextBrowser::staticMetaObject; break;
+ case 207: m = &QTextDocument::staticMetaObject; break;
+ case 208: m = &QTextEdit::staticMetaObject; break;
+ case 209: m = &QTextFrame::staticMetaObject; break;
+ case 210: m = &QTextList::staticMetaObject; break;
+ case 211: m = &QTextObject::staticMetaObject; break;
+ case 212: m = &QTextTable::staticMetaObject; break;
+ case 213: m = &QTimeEdit::staticMetaObject; break;
+ case 214: m = &QTimeLine::staticMetaObject; break;
+ case 215: m = &QTimer::staticMetaObject; break;
+ case 216: m = &QToolBar::staticMetaObject; break;
+ case 217: m = &QToolBox::staticMetaObject; break;
+ case 218: m = &QToolButton::staticMetaObject; break;
+ case 219: m = &QTranslator::staticMetaObject; break;
+ case 220: m = &QTreeView::staticMetaObject; break;
+ case 221: m = &QTreeWidget::staticMetaObject; break;
+ case 223: m = &QUndoGroup::staticMetaObject; break;
+ case 224: m = &QUndoStack::staticMetaObject; break;
+ case 225: m = &QUndoView::staticMetaObject; break;
+ case 226: m = &QVBoxLayout::staticMetaObject; break;
+ case 227: m = &QValidator::staticMetaObject; break;
+ case 228: m = &QVariantAnimation::staticMetaObject; break;
+ case 237: m = &QWidget::staticMetaObject; break;
+ case 238: m = &QWidgetAction::staticMetaObject; break;
+ case 239: m = &QWindow::staticMetaObject; break;
+ case 240: m = &QWizard::staticMetaObject; break;
+ case 241: m = &QWizardPage::staticMetaObject; break;
+ case 94:
+ case 95:
+ case 96:
+ case 97:
+ case 98:
+ case 99:
+ case 100:
+ case 101:
if(staticMetaObject_help) {
m = staticMetaObject_help(n); }
break;
+ case 18:
+ case 23:
+ case 24:
+ case 29:
+ case 30:
+ case 31:
+ case 32:
+ case 33:
+ case 34:
+ case 85:
+ case 121:
+ case 122:
+ case 123:
+ case 124:
+ case 125:
+ case 160:
+ case 229:
+ case 230:
+ if(staticMetaObject_multimedia) {
+ m = staticMetaObject_multimedia(n); }
+ break;
case 7:
case 12:
- case 106:
- case 107:
+ case 116:
case 117:
- case 118:
- case 119:
- case 120:
- case 187:
- case 188:
- case 206:
+ case 132:
+ case 133:
+ case 134:
+ case 135:
+ case 203:
+ case 204:
+ case 222:
if(staticMetaObject_network) {
m = staticMetaObject_network(n); }
break;
- case 162:
- case 163:
- case 164:
- case 165:
- case 166:
+ case 178:
+ case 179:
+ case 180:
+ case 181:
+ case 182:
if(staticMetaObject_sql) {
m = staticMetaObject_sql(n); }
break;
- case 73:
- case 176:
- case 177:
+ case 82:
+ case 192:
+ case 193:
if(staticMetaObject_svg) {
m = staticMetaObject_svg(n); }
break;
- case 77:
- case 213:
- case 214:
- case 215:
- case 216:
- case 217:
- case 218:
+ case 87:
+ case 231:
+ case 232:
+ case 233:
+ case 234:
+ case 235:
+ case 236:
if(staticMetaObject_webkit) {
m = staticMetaObject_webkit(n); }
break; }
@@ -2501,211 +2608,222 @@ void LObjects::deleteNObject(int n, void* p, int gc) {
case 3: if(gc) delete (QAccessibleEvent*)p; else delete (LAccessibleEvent*)p; break;
case 6: if(gc) /* nothing */; else delete (LAccessibleWidget*)p; break;
case 7: if(gc) delete (QActionEvent*)p; else delete (LActionEvent*)p; break;
- case 9: if(gc) delete (QBasicTimer*)p; else delete (LBasicTimer*)p; break;
- case 10: if(gc) delete (QBitArray*)p; else delete (LBitArray*)p; break;
- case 11: if(gc) delete (QBitmap*)p; else delete (LBitmap*)p; break;
- case 12: if(gc) delete (QBrush*)p; else delete (LBrush*)p; break;
- case 13: if(gc) delete (QChildEvent*)p; else delete (LChildEvent*)p; break;
- case 14: if(gc) delete (QCloseEvent*)p; else delete (LCloseEvent*)p; break;
- case 15: if(gc) delete (QColor*)p; else delete (LColor*)p; break;
- case 16: if(gc) delete (QConicalGradient*)p; else delete (LConicalGradient*)p; break;
- case 17: if(gc) delete (QContextMenuEvent*)p; else delete (LContextMenuEvent*)p; break;
- case 18: if(gc) delete (QCryptographicHash*)p; else delete (LCryptographicHash*)p; break;
- case 19: if(gc) delete (QCursor*)p; else delete (LCursor*)p; break;
- case 20: if(gc) delete (QDate*)p; else delete (LDate*)p; break;
- case 21: if(gc) delete (QDateTime*)p; else delete (LDateTime*)p; break;
- case 23: if(gc) delete (QDir*)p; else delete (LDir*)p; break;
- case 24: if(gc) delete (QDirIterator*)p; else delete (LDirIterator*)p; break;
- case 25: if(gc) delete (QDragEnterEvent*)p; else delete (LDragEnterEvent*)p; break;
- case 26: if(gc) delete (QDragLeaveEvent*)p; else delete (LDragLeaveEvent*)p; break;
- case 27: if(gc) delete (QDragMoveEvent*)p; else delete (LDragMoveEvent*)p; break;
- case 28: if(gc) delete (QDropEvent*)p; else delete (LDropEvent*)p; break;
- case 29: if(gc) delete (QDynamicPropertyChangeEvent*)p; else delete (LDynamicPropertyChangeEvent*)p; break;
- case 30: if(gc) delete (QEasingCurve*)p; else delete (LEasingCurve*)p; break;
- case 31: if(gc) delete (QEvent*)p; else delete (LEvent*)p; break;
- case 32: if(gc) delete (QFileIconProvider*)p; else delete (LFileIconProvider*)p; break;
- case 33: if(gc) delete (QFileInfo*)p; else delete (LFileInfo*)p; break;
- case 34: if(gc) delete (QFileOpenEvent*)p; else delete (LFileOpenEvent*)p; break;
- case 35: if(gc) delete (QFocusEvent*)p; else delete (LFocusEvent*)p; break;
- case 36: if(gc) delete (QFont*)p; else delete (LFont*)p; break;
- case 37: if(gc) delete (QFontDatabase*)p; else delete (LFontDatabase*)p; break;
- case 38: if(gc) delete (QFontInfo*)p; else delete (LFontInfo*)p; break;
- case 39: if(gc) delete (QFontMetrics*)p; else delete (LFontMetrics*)p; break;
- case 40: if(gc) delete (QGestureEvent*)p; else delete (LGestureEvent*)p; break;
- case 41: if(gc) delete (QGradient*)p; else delete (LGradient*)p; break;
- case 42: if(gc) delete (QGraphicsAnchorLayout*)p; else delete (LGraphicsAnchorLayout*)p; break;
- case 43: if(gc) delete (QGraphicsEllipseItem*)p; else delete (LGraphicsEllipseItem*)p; break;
- case 44: if(gc) delete (QGraphicsGridLayout*)p; else delete (LGraphicsGridLayout*)p; break;
- case 45: if(gc) delete (QGraphicsItem*)p; else delete (LGraphicsItem*)p; break;
- case 46: if(gc) delete (QGraphicsItemGroup*)p; else delete (LGraphicsItemGroup*)p; break;
- case 47: if(gc) delete (QGraphicsLayout*)p; else delete (LGraphicsLayout*)p; break;
- case 48: if(gc) delete (QGraphicsLayoutItem*)p; else delete (LGraphicsLayoutItem*)p; break;
- case 49: if(gc) delete (QGraphicsLineItem*)p; else delete (LGraphicsLineItem*)p; break;
- case 50: if(gc) delete (QGraphicsLinearLayout*)p; else delete (LGraphicsLinearLayout*)p; break;
- case 51: if(gc) delete (QGraphicsPathItem*)p; else delete (LGraphicsPathItem*)p; break;
- case 52: if(gc) delete (QGraphicsPixmapItem*)p; else delete (LGraphicsPixmapItem*)p; break;
- case 53: if(gc) delete (QGraphicsPolygonItem*)p; else delete (LGraphicsPolygonItem*)p; break;
- case 54: if(gc) delete (QGraphicsRectItem*)p; else delete (LGraphicsRectItem*)p; break;
- case 55: if(gc) delete (QGraphicsSceneContextMenuEvent*)p; else delete (LGraphicsSceneContextMenuEvent*)p; break;
- case 56: if(gc) delete (QGraphicsSceneDragDropEvent*)p; else delete (LGraphicsSceneDragDropEvent*)p; break;
- case 57: if(gc) delete (QGraphicsSceneEvent*)p; else delete (LGraphicsSceneEvent*)p; break;
- case 58: if(gc) delete (QGraphicsSceneHelpEvent*)p; else delete (LGraphicsSceneHelpEvent*)p; break;
- case 59: if(gc) delete (QGraphicsSceneHoverEvent*)p; else delete (LGraphicsSceneHoverEvent*)p; break;
- case 60: if(gc) delete (QGraphicsSceneMouseEvent*)p; else delete (LGraphicsSceneMouseEvent*)p; break;
- case 61: if(gc) delete (QGraphicsSceneMoveEvent*)p; else delete (LGraphicsSceneMoveEvent*)p; break;
- case 62: if(gc) delete (QGraphicsSceneResizeEvent*)p; else delete (LGraphicsSceneResizeEvent*)p; break;
- case 63: if(gc) delete (QGraphicsSceneWheelEvent*)p; else delete (LGraphicsSceneWheelEvent*)p; break;
- case 64: if(gc) delete (QGraphicsSimpleTextItem*)p; else delete (LGraphicsSimpleTextItem*)p; break;
- case 66: if(gc) delete (QHelpEvent*)p; else delete (LHelpEvent*)p; break;
- case 68: if(gc) delete (QHideEvent*)p; else delete (LHideEvent*)p; break;
- case 71: if(gc) delete (QHoverEvent*)p; else delete (LHoverEvent*)p; break;
- case 72: if(gc) delete (QIcon*)p; else delete (LIcon*)p; break;
- case 73: if(gc) delete (QIconDragEvent*)p; else delete (LIconDragEvent*)p; break;
- case 74: if(gc) delete (QImage*)p; else delete (LImage*)p; break;
- case 75: if(gc) delete (QInputEvent*)p; else delete (LInputEvent*)p; break;
- case 76: if(gc) delete (QInputMethodEvent*)p; else delete (LInputMethodEvent*)p; break;
- case 77: if(gc) delete (QItemEditorFactory*)p; else delete (LItemEditorFactory*)p; break;
- case 78: if(gc) delete (QItemSelectionRange*)p; else delete (LItemSelectionRange*)p; break;
- case 79: if(gc) delete (QKeyEvent*)p; else delete (LKeyEvent*)p; break;
- case 80: if(gc) delete (QKeySequence*)p; else delete (LKeySequence*)p; break;
- case 81: if(gc) delete (QLayoutItem*)p; else delete (LLayoutItem*)p; break;
- case 82: if(gc) delete (QLibraryInfo*)p; else delete (LLibraryInfo*)p; break;
- case 83: if(gc) delete (QLinearGradient*)p; else delete (LLinearGradient*)p; break;
- case 84: if(gc) delete (QListWidgetItem*)p; else delete (LListWidgetItem*)p; break;
- case 85: if(gc) delete (QLocale*)p; else delete (LLocale*)p; break;
- case 86: if(gc) delete (QMargins*)p; else delete (LMargins*)p; break;
- case 87: if(gc) delete (QMatrix*)p; else delete (LMatrix*)p; break;
- case 88: if(gc) delete (QMatrix4x4*)p; else delete (LMatrix4x4*)p; break;
- case 89: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break;
- case 90: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break;
- case 91: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break;
- case 92: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break;
- case 101: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break;
- case 102: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break;
- case 105: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break;
- case 106: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break;
- case 107: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break;
- case 108: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break;
- case 109: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break;
- case 110: if(gc) delete (QPen*)p; else delete (LPen*)p; break;
- case 111: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break;
- case 112: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break;
- case 113: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break;
- case 114: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break;
- case 115: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break;
- case 116: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break;
- case 117: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break;
- case 118: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break;
- case 119: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break;
- case 120: if(gc) delete (QReadLocker*)p; else delete (LReadLocker*)p; break;
- case 121: if(gc) delete (QReadWriteLock*)p; else delete (LReadWriteLock*)p; break;
- case 122: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break;
- case 123: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break;
- case 124: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break;
- case 125: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break;
- case 126: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break;
- case 127: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break;
- case 128: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break;
- case 129: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break;
- case 130: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break;
- case 131: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break;
- case 145: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break;
- case 147: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break;
- case 148: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break;
- case 149: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break;
- case 152: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break;
- case 153: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break;
- case 154: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break;
- case 155: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break;
- case 156: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break;
- case 157: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break;
- case 158: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break;
- case 159: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break;
- case 160: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break;
- case 161: if(gc) /* nothing */; else delete (LTextCodec*)p; break;
- case 162: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break;
- case 163: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break;
- case 164: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break;
- case 165: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break;
- case 166: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break;
- case 167: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break;
- case 168: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break;
- case 169: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break;
- case 170: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break;
- case 171: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break;
- case 172: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break;
- case 173: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break;
- case 174: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break;
- case 175: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break;
- case 176: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break;
- case 177: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break;
- case 178: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break;
- case 179: if(gc) delete (QTime*)p; else delete (LTime*)p; break;
- case 180: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break;
- case 181: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break;
- case 182: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break;
- case 183: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break;
- case 184: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break;
- case 185: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break;
- case 186: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break;
- case 187: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break;
- case 188: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break;
- case 189: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break;
- case 190: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break;
- case 191: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break;
- case 200: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break;
- case 201: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break;
- case 202: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break;
- case 203: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break;
- case 204: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break;
- case 205: if(gc) delete (QWriteLocker*)p; else delete (LWriteLocker*)p; break;
- case 65:
- case 67:
+ case 12: if(gc) delete (QBasicTimer*)p; else delete (LBasicTimer*)p; break;
+ case 13: if(gc) delete (QBitArray*)p; else delete (LBitArray*)p; break;
+ case 14: if(gc) delete (QBitmap*)p; else delete (LBitmap*)p; break;
+ case 15: if(gc) delete (QBrush*)p; else delete (LBrush*)p; break;
+ case 18: if(gc) delete (QChildEvent*)p; else delete (LChildEvent*)p; break;
+ case 19: if(gc) delete (QCloseEvent*)p; else delete (LCloseEvent*)p; break;
+ case 20: if(gc) delete (QColor*)p; else delete (LColor*)p; break;
+ case 21: if(gc) delete (QConicalGradient*)p; else delete (LConicalGradient*)p; break;
+ case 22: if(gc) delete (QContextMenuEvent*)p; else delete (LContextMenuEvent*)p; break;
+ case 23: if(gc) delete (QCryptographicHash*)p; else delete (LCryptographicHash*)p; break;
+ case 24: if(gc) delete (QCursor*)p; else delete (LCursor*)p; break;
+ case 25: if(gc) delete (QDate*)p; else delete (LDate*)p; break;
+ case 26: if(gc) delete (QDateTime*)p; else delete (LDateTime*)p; break;
+ case 28: if(gc) delete (QDir*)p; else delete (LDir*)p; break;
+ case 29: if(gc) delete (QDirIterator*)p; else delete (LDirIterator*)p; break;
+ case 30: if(gc) delete (QDragEnterEvent*)p; else delete (LDragEnterEvent*)p; break;
+ case 31: if(gc) delete (QDragLeaveEvent*)p; else delete (LDragLeaveEvent*)p; break;
+ case 32: if(gc) delete (QDragMoveEvent*)p; else delete (LDragMoveEvent*)p; break;
+ case 33: if(gc) delete (QDropEvent*)p; else delete (LDropEvent*)p; break;
+ case 34: if(gc) delete (QDynamicPropertyChangeEvent*)p; else delete (LDynamicPropertyChangeEvent*)p; break;
+ case 35: if(gc) delete (QEasingCurve*)p; else delete (LEasingCurve*)p; break;
+ case 36: if(gc) delete (QEvent*)p; else delete (LEvent*)p; break;
+ case 37: if(gc) delete (QFileIconProvider*)p; else delete (LFileIconProvider*)p; break;
+ case 38: if(gc) delete (QFileInfo*)p; else delete (LFileInfo*)p; break;
+ case 39: if(gc) delete (QFileOpenEvent*)p; else delete (LFileOpenEvent*)p; break;
+ case 40: if(gc) delete (QFocusEvent*)p; else delete (LFocusEvent*)p; break;
+ case 41: if(gc) delete (QFont*)p; else delete (LFont*)p; break;
+ case 42: if(gc) delete (QFontDatabase*)p; else delete (LFontDatabase*)p; break;
+ case 43: if(gc) delete (QFontInfo*)p; else delete (LFontInfo*)p; break;
+ case 44: if(gc) delete (QFontMetrics*)p; else delete (LFontMetrics*)p; break;
+ case 45: if(gc) delete (QGestureEvent*)p; else delete (LGestureEvent*)p; break;
+ case 46: if(gc) delete (QGradient*)p; else delete (LGradient*)p; break;
+ case 47: if(gc) delete (QGraphicsAnchorLayout*)p; else delete (LGraphicsAnchorLayout*)p; break;
+ case 48: if(gc) delete (QGraphicsEllipseItem*)p; else delete (LGraphicsEllipseItem*)p; break;
+ case 49: if(gc) delete (QGraphicsGridLayout*)p; else delete (LGraphicsGridLayout*)p; break;
+ case 50: if(gc) delete (QGraphicsItem*)p; else delete (LGraphicsItem*)p; break;
+ case 51: if(gc) delete (QGraphicsItemGroup*)p; else delete (LGraphicsItemGroup*)p; break;
+ case 52: if(gc) delete (QGraphicsLayout*)p; else delete (LGraphicsLayout*)p; break;
+ case 53: if(gc) delete (QGraphicsLayoutItem*)p; else delete (LGraphicsLayoutItem*)p; break;
+ case 54: if(gc) delete (QGraphicsLineItem*)p; else delete (LGraphicsLineItem*)p; break;
+ case 55: if(gc) delete (QGraphicsLinearLayout*)p; else delete (LGraphicsLinearLayout*)p; break;
+ case 56: if(gc) delete (QGraphicsPathItem*)p; else delete (LGraphicsPathItem*)p; break;
+ case 57: if(gc) delete (QGraphicsPixmapItem*)p; else delete (LGraphicsPixmapItem*)p; break;
+ case 58: if(gc) delete (QGraphicsPolygonItem*)p; else delete (LGraphicsPolygonItem*)p; break;
+ case 59: if(gc) delete (QGraphicsRectItem*)p; else delete (LGraphicsRectItem*)p; break;
+ case 60: if(gc) delete (QGraphicsSceneContextMenuEvent*)p; else delete (LGraphicsSceneContextMenuEvent*)p; break;
+ case 61: if(gc) delete (QGraphicsSceneDragDropEvent*)p; else delete (LGraphicsSceneDragDropEvent*)p; break;
+ case 62: if(gc) delete (QGraphicsSceneEvent*)p; else delete (LGraphicsSceneEvent*)p; break;
+ case 63: if(gc) delete (QGraphicsSceneHelpEvent*)p; else delete (LGraphicsSceneHelpEvent*)p; break;
+ case 64: if(gc) delete (QGraphicsSceneHoverEvent*)p; else delete (LGraphicsSceneHoverEvent*)p; break;
+ case 65: if(gc) delete (QGraphicsSceneMouseEvent*)p; else delete (LGraphicsSceneMouseEvent*)p; break;
+ case 66: if(gc) delete (QGraphicsSceneMoveEvent*)p; else delete (LGraphicsSceneMoveEvent*)p; break;
+ case 67: if(gc) delete (QGraphicsSceneResizeEvent*)p; else delete (LGraphicsSceneResizeEvent*)p; break;
+ case 68: if(gc) delete (QGraphicsSceneWheelEvent*)p; else delete (LGraphicsSceneWheelEvent*)p; break;
+ case 69: if(gc) delete (QGraphicsSimpleTextItem*)p; else delete (LGraphicsSimpleTextItem*)p; break;
+ case 71: if(gc) delete (QHelpEvent*)p; else delete (LHelpEvent*)p; break;
+ case 73: if(gc) delete (QHideEvent*)p; else delete (LHideEvent*)p; break;
+ case 76: if(gc) delete (QHoverEvent*)p; else delete (LHoverEvent*)p; break;
+ case 77: if(gc) delete (QIcon*)p; else delete (LIcon*)p; break;
+ case 78: if(gc) delete (QIconDragEvent*)p; else delete (LIconDragEvent*)p; break;
+ case 79: if(gc) delete (QImage*)p; else delete (LImage*)p; break;
+ case 80: if(gc) delete (QInputEvent*)p; else delete (LInputEvent*)p; break;
+ case 81: if(gc) delete (QInputMethodEvent*)p; else delete (LInputMethodEvent*)p; break;
+ case 82: if(gc) delete (QItemEditorFactory*)p; else delete (LItemEditorFactory*)p; break;
+ case 83: if(gc) delete (QItemSelectionRange*)p; else delete (LItemSelectionRange*)p; break;
+ case 84: if(gc) delete (QKeyEvent*)p; else delete (LKeyEvent*)p; break;
+ case 85: if(gc) delete (QKeySequence*)p; else delete (LKeySequence*)p; break;
+ case 86: if(gc) delete (QLayoutItem*)p; else delete (LLayoutItem*)p; break;
+ case 87: if(gc) delete (QLibraryInfo*)p; else delete (LLibraryInfo*)p; break;
+ case 88: if(gc) delete (QLinearGradient*)p; else delete (LLinearGradient*)p; break;
+ case 89: if(gc) delete (QListWidgetItem*)p; else delete (LListWidgetItem*)p; break;
+ case 90: if(gc) delete (QLocale*)p; else delete (LLocale*)p; break;
+ case 91: if(gc) delete (QMargins*)p; else delete (LMargins*)p; break;
+ case 92: if(gc) delete (QMatrix*)p; else delete (LMatrix*)p; break;
+ case 93: if(gc) delete (QMatrix4x4*)p; else delete (LMatrix4x4*)p; break;
+ case 94: if(gc) delete (QMetaObject*)p; else delete (LMetaObject*)p; break;
+ case 95: if(gc) delete (QModelIndex*)p; else delete (LModelIndex*)p; break;
+ case 96: if(gc) delete (QMouseEvent*)p; else delete (LMouseEvent*)p; break;
+ case 97: if(gc) delete (QMoveEvent*)p; else delete (LMoveEvent*)p; break;
+ case 106: if(gc) delete (QOpenGLPaintDevice*)p; else delete (LOpenGLPaintDevice*)p; break;
+ case 107: if(gc) delete (QOpenGLTexture*)p; else delete (LOpenGLTexture*)p; break;
+ case 110: if(gc) delete (QPaintEvent*)p; else delete (LPaintEvent*)p; break;
+ case 111: if(gc) delete (QPainter*)p; else delete (LPainter*)p; break;
+ case 112: if(gc) delete (QPainterPath*)p; else delete (LPainterPath*)p; break;
+ case 113: if(gc) delete (QPainterPathStroker*)p; else delete (LPainterPathStroker*)p; break;
+ case 114: if(gc) delete (QPalette*)p; else delete (LPalette*)p; break;
+ case 115: if(gc) delete (QPen*)p; else delete (LPen*)p; break;
+ case 116: if(gc) delete (QPersistentModelIndex*)p; else delete (LPersistentModelIndex*)p; break;
+ case 117: if(gc) delete (QPicture*)p; else delete (LPicture*)p; break;
+ case 118: if(gc) delete (QPixmap*)p; else delete (LPixmap*)p; break;
+ case 119: if(gc) delete (QPixmapCache*)p; else delete (LPixmapCache*)p; break;
+ case 120: if(gc) delete (QPrinter*)p; else delete (LPrinter*)p; break;
+ case 121: if(gc) delete (QPrinterInfo*)p; else delete (LPrinterInfo*)p; break;
+ case 122: if(gc) delete (QProcessEnvironment*)p; else delete (LProcessEnvironment*)p; break;
+ case 123: if(gc) delete (QQuaternion*)p; else delete (LQuaternion*)p; break;
+ case 124: if(gc) delete (QRadialGradient*)p; else delete (LRadialGradient*)p; break;
+ case 125: if(gc) delete (QReadLocker*)p; else delete (LReadLocker*)p; break;
+ case 126: if(gc) delete (QReadWriteLock*)p; else delete (LReadWriteLock*)p; break;
+ case 127: if(gc) delete (QRegExp*)p; else delete (LRegExp*)p; break;
+ case 128: if(gc) delete (QRegion*)p; else delete (LRegion*)p; break;
+ case 129: if(gc) delete (QRegularExpression*)p; else delete (LRegularExpression*)p; break;
+ case 130: if(gc) delete (QResizeEvent*)p; else delete (LResizeEvent*)p; break;
+ case 131: if(gc) delete (QRunnable*)p; else delete (LRunnable*)p; break;
+ case 132: if(gc) delete (QSemaphore*)p; else delete (LSemaphore*)p; break;
+ case 133: if(gc) delete (QShortcutEvent*)p; else delete (LShortcutEvent*)p; break;
+ case 134: if(gc) delete (QShowEvent*)p; else delete (LShowEvent*)p; break;
+ case 135: if(gc) delete (QSizePolicy*)p; else delete (LSizePolicy*)p; break;
+ case 136: if(gc) delete (QSpacerItem*)p; else delete (LSpacerItem*)p; break;
+ case 150: if(gc) delete (QStandardItem*)p; else delete (LStandardItem*)p; break;
+ case 152: if(gc) delete (QStatusTipEvent*)p; else delete (LStatusTipEvent*)p; break;
+ case 153: if(gc) delete (QStyleOption*)p; else delete (LStyleOption*)p; break;
+ case 154: if(gc) delete (QStyleOptionGraphicsItem*)p; else delete (LStyleOptionGraphicsItem*)p; break;
+ case 158: if(gc) delete (QSystemSemaphore*)p; else delete (LSystemSemaphore*)p; break;
+ case 159: if(gc) delete (QTableWidgetItem*)p; else delete (LTableWidgetItem*)p; break;
+ case 160: if(gc) delete (QTableWidgetSelectionRange*)p; else delete (LTableWidgetSelectionRange*)p; break;
+ case 161: if(gc) delete (QTabletEvent*)p; else delete (LTabletEvent*)p; break;
+ case 162: if(gc) delete (QTextBlock*)p; else delete (LTextBlock*)p; break;
+ case 163: if(gc) delete (QTextBlockFormat*)p; else delete (LTextBlockFormat*)p; break;
+ case 164: if(gc) delete (QTextBlockUserData*)p; else delete (LTextBlockUserData*)p; break;
+ case 165: if(gc) delete (QTextBoundaryFinder*)p; else delete (LTextBoundaryFinder*)p; break;
+ case 166: if(gc) delete (QTextCharFormat*)p; else delete (LTextCharFormat*)p; break;
+ case 167: if(gc) /* nothing */; else delete (LTextCodec*)p; break;
+ case 168: if(gc) delete (QTextCursor*)p; else delete (LTextCursor*)p; break;
+ case 169: if(gc) delete (QTextDecoder*)p; else delete (LTextDecoder*)p; break;
+ case 170: if(gc) delete (QTextDocumentFragment*)p; else delete (LTextDocumentFragment*)p; break;
+ case 171: if(gc) delete (QTextDocumentWriter*)p; else delete (LTextDocumentWriter*)p; break;
+ case 172: if(gc) delete (QTextEncoder*)p; else delete (LTextEncoder*)p; break;
+ case 173: if(gc) delete (QTextFormat*)p; else delete (LTextFormat*)p; break;
+ case 174: if(gc) delete (QTextFragment*)p; else delete (LTextFragment*)p; break;
+ case 175: if(gc) delete (QTextFrameFormat*)p; else delete (LTextFrameFormat*)p; break;
+ case 176: if(gc) delete (QTextImageFormat*)p; else delete (LTextImageFormat*)p; break;
+ case 177: if(gc) delete (QTextLayout*)p; else delete (LTextLayout*)p; break;
+ case 178: if(gc) delete (QTextLength*)p; else delete (LTextLength*)p; break;
+ case 179: if(gc) delete (QTextLine*)p; else delete (LTextLine*)p; break;
+ case 180: if(gc) delete (QTextListFormat*)p; else delete (LTextListFormat*)p; break;
+ case 181: if(gc) delete (QTextOption*)p; else delete (LTextOption*)p; break;
+ case 182: if(gc) delete (QTextTableCell*)p; else delete (LTextTableCell*)p; break;
+ case 183: if(gc) delete (QTextTableCellFormat*)p; else delete (LTextTableCellFormat*)p; break;
+ case 184: if(gc) delete (QTextTableFormat*)p; else delete (LTextTableFormat*)p; break;
+ case 185: if(gc) delete (QTime*)p; else delete (LTime*)p; break;
+ case 186: if(gc) delete (QTimeZone*)p; else delete (LTimeZone*)p; break;
+ case 187: if(gc) delete (QTimerEvent*)p; else delete (LTimerEvent*)p; break;
+ case 188: if(gc) delete (QToolTip*)p; else delete (LToolTip*)p; break;
+ case 189: if(gc) delete (QTouchEvent*)p; else delete (LTouchEvent*)p; break;
+ case 190: if(gc) delete (QTransform*)p; else delete (LTransform*)p; break;
+ case 191: if(gc) delete (QTreeWidgetItem*)p; else delete (LTreeWidgetItem*)p; break;
+ case 192: if(gc) delete (QUndoCommand*)p; else delete (LUndoCommand*)p; break;
+ case 193: if(gc) delete (QUrl*)p; else delete (LUrl*)p; break;
+ case 194: if(gc) delete (QVariant*)p; else delete (LVariant*)p; break;
+ case 195: if(gc) delete (QVector2D*)p; else delete (LVector2D*)p; break;
+ case 196: if(gc) delete (QVector3D*)p; else delete (LVector3D*)p; break;
+ case 197: if(gc) delete (QVector4D*)p; else delete (LVector4D*)p; break;
+ case 209: if(gc) delete (QWhatsThis*)p; else delete (LWhatsThis*)p; break;
+ case 210: if(gc) delete (QWhatsThisClickedEvent*)p; else delete (LWhatsThisClickedEvent*)p; break;
+ case 211: if(gc) delete (QWheelEvent*)p; else delete (LWheelEvent*)p; break;
+ case 212: if(gc) delete (QWidgetItem*)p; else delete (LWidgetItem*)p; break;
+ case 213: if(gc) delete (QWindowStateChangeEvent*)p; else delete (LWindowStateChangeEvent*)p; break;
+ case 214: if(gc) delete (QWriteLocker*)p; else delete (LWriteLocker*)p; break;
+ case 70:
+ case 72:
if(deleteNObject_help) {
deleteNObject_help(n, p, gc); }
break;
case 8:
- case 69:
- case 70:
- case 93:
- case 94:
- case 95:
- case 96:
- case 97:
+ case 9:
+ case 10:
+ case 16:
+ case 17:
+ case 198:
+ case 199:
+ case 200:
+ if(deleteNObject_multimedia) {
+ deleteNObject_multimedia(n, p, gc); }
+ break;
+ case 11:
+ case 74:
+ case 75:
case 98:
case 99:
case 100:
+ case 101:
+ case 102:
+ case 103:
+ case 104:
+ case 105:
+ case 145:
+ case 146:
+ case 147:
+ case 148:
+ case 149:
+ if(deleteNObject_network) {
+ deleteNObject_network(n, p, gc); }
+ break;
+ case 137:
+ case 138:
+ case 139:
case 140:
case 141:
case 142:
case 143:
case 144:
- if(deleteNObject_network) {
- deleteNObject_network(n, p, gc); }
- break;
- case 132:
- case 133:
- case 134:
- case 135:
- case 136:
- case 137:
- case 138:
- case 139:
if(deleteNObject_sql) {
deleteNObject_sql(n, p, gc); }
break;
- case 151:
+ case 156:
if(deleteNObject_svg) {
deleteNObject_svg(n, p, gc); }
break;
- case 192:
- case 193:
- case 194:
- case 195:
- case 196:
- case 197:
- case 198:
- case 199:
+ case 201:
+ case 202:
+ case 203:
+ case 204:
+ case 205:
+ case 206:
+ case 207:
+ case 208:
if(deleteNObject_webkit) {
deleteNObject_webkit(n, p, gc); }
break; }}
@@ -2717,80 +2835,80 @@ const char* LObjects::nObjectSuperClass(const QByteArray& name) {
case 5: s = "QAccessibleInterface"; break;
case 6: s = "QAccessibleObject"; break;
case 7: s = "QEvent"; break;
- case 11: s = "QPixmap"; break;
- case 13: s = "QEvent"; break;
- case 14: s = "QEvent"; break;
- case 16: s = "QGradient"; break;
- case 17: s = "QInputEvent"; break;
- case 25: s = "QDragMoveEvent"; break;
- case 26: s = "QEvent"; break;
- case 27: s = "QDropEvent"; break;
- case 28: s = "QEvent"; break;
- case 29: s = "QEvent"; break;
+ case 14: s = "QPixmap"; break;
+ case 18: s = "QEvent"; break;
+ case 19: s = "QEvent"; break;
+ case 21: s = "QGradient"; break;
+ case 22: s = "QInputEvent"; break;
+ case 30: s = "QDragMoveEvent"; break;
+ case 31: s = "QEvent"; break;
+ case 32: s = "QDropEvent"; break;
+ case 33: s = "QEvent"; break;
case 34: s = "QEvent"; break;
- case 35: s = "QEvent"; break;
+ case 39: s = "QEvent"; break;
case 40: s = "QEvent"; break;
- case 42: s = "QGraphicsLayout"; break;
- case 43: s = "QAbstractGraphicsShapeItem"; break;
- case 44: s = "QGraphicsLayout"; break;
- case 46: s = "QGraphicsItem"; break;
- case 47: s = "QGraphicsLayoutItem"; break;
- case 49: s = "QGraphicsItem"; break;
- case 50: s = "QGraphicsLayout"; break;
- case 51: s = "QAbstractGraphicsShapeItem"; break;
- case 52: s = "QGraphicsItem"; break;
- case 53: s = "QAbstractGraphicsShapeItem"; break;
- case 54: s = "QAbstractGraphicsShapeItem"; break;
- case 55: s = "QGraphicsSceneEvent"; break;
- case 56: s = "QGraphicsSceneEvent"; break;
- case 57: s = "QEvent"; break;
- case 58: s = "QGraphicsSceneEvent"; break;
- case 59: s = "QGraphicsSceneEvent"; break;
+ case 45: s = "QEvent"; break;
+ case 47: s = "QGraphicsLayout"; break;
+ case 48: s = "QAbstractGraphicsShapeItem"; break;
+ case 49: s = "QGraphicsLayout"; break;
+ case 51: s = "QGraphicsItem"; break;
+ case 52: s = "QGraphicsLayoutItem"; break;
+ case 54: s = "QGraphicsItem"; break;
+ case 55: s = "QGraphicsLayout"; break;
+ case 56: s = "QAbstractGraphicsShapeItem"; break;
+ case 57: s = "QGraphicsItem"; break;
+ case 58: s = "QAbstractGraphicsShapeItem"; break;
+ case 59: s = "QAbstractGraphicsShapeItem"; break;
case 60: s = "QGraphicsSceneEvent"; break;
case 61: s = "QGraphicsSceneEvent"; break;
- case 62: s = "QGraphicsSceneEvent"; break;
+ case 62: s = "QEvent"; break;
case 63: s = "QGraphicsSceneEvent"; break;
- case 64: s = "QAbstractGraphicsShapeItem"; break;
- case 66: s = "QEvent"; break;
- case 68: s = "QEvent"; break;
- case 71: s = "QInputEvent"; break;
+ case 64: s = "QGraphicsSceneEvent"; break;
+ case 65: s = "QGraphicsSceneEvent"; break;
+ case 66: s = "QGraphicsSceneEvent"; break;
+ case 67: s = "QGraphicsSceneEvent"; break;
+ case 68: s = "QGraphicsSceneEvent"; break;
+ case 69: s = "QAbstractGraphicsShapeItem"; break;
+ case 71: s = "QEvent"; break;
case 73: s = "QEvent"; break;
- case 74: s = "QPaintDevice"; break;
- case 75: s = "QEvent"; break;
- case 76: s = "QEvent"; break;
- case 79: s = "QInputEvent"; break;
- case 83: s = "QGradient"; break;
- case 91: s = "QInputEvent"; break;
- case 92: s = "QEvent"; break;
- case 101: s = "QPaintDevice"; break;
- case 103: s = "QPaintDevice"; break;
- case 105: s = "QEvent"; break;
- case 112: s = "QPaintDevice"; break;
- case 113: s = "QPaintDevice"; break;
- case 115: s = "QPagedPaintDevice"; break;
- case 119: s = "QGradient"; break;
- case 125: s = "QEvent"; break;
- case 128: s = "QEvent"; break;
- case 129: s = "QEvent"; break;
- case 131: s = "QLayoutItem"; break;
- case 135: s = "QSqlRecord"; break;
- case 147: s = "QEvent"; break;
- case 149: s = "QStyleOption"; break;
- case 151: s = "QPaintDevice"; break;
- case 155: s = "QInputEvent"; break;
- case 157: s = "QTextFormat"; break;
- case 160: s = "QTextFormat"; break;
- case 169: s = "QTextFormat"; break;
- case 170: s = "QTextCharFormat"; break;
- case 174: s = "QTextFormat"; break;
- case 177: s = "QTextCharFormat"; break;
- case 178: s = "QTextFrameFormat"; break;
- case 181: s = "QEvent"; break;
- case 183: s = "QInputEvent"; break;
- case 201: s = "QEvent"; break;
- case 202: s = "QInputEvent"; break;
- case 203: s = "QLayoutItem"; break;
- case 204: s = "QEvent"; break; }
+ case 76: s = "QInputEvent"; break;
+ case 78: s = "QEvent"; break;
+ case 79: s = "QPaintDevice"; break;
+ case 80: s = "QEvent"; break;
+ case 81: s = "QEvent"; break;
+ case 84: s = "QInputEvent"; break;
+ case 88: s = "QGradient"; break;
+ case 96: s = "QInputEvent"; break;
+ case 97: s = "QEvent"; break;
+ case 106: s = "QPaintDevice"; break;
+ case 108: s = "QPaintDevice"; break;
+ case 110: s = "QEvent"; break;
+ case 117: s = "QPaintDevice"; break;
+ case 118: s = "QPaintDevice"; break;
+ case 120: s = "QPagedPaintDevice"; break;
+ case 124: s = "QGradient"; break;
+ case 130: s = "QEvent"; break;
+ case 133: s = "QEvent"; break;
+ case 134: s = "QEvent"; break;
+ case 136: s = "QLayoutItem"; break;
+ case 140: s = "QSqlRecord"; break;
+ case 152: s = "QEvent"; break;
+ case 154: s = "QStyleOption"; break;
+ case 156: s = "QPaintDevice"; break;
+ case 161: s = "QInputEvent"; break;
+ case 163: s = "QTextFormat"; break;
+ case 166: s = "QTextFormat"; break;
+ case 175: s = "QTextFormat"; break;
+ case 176: s = "QTextCharFormat"; break;
+ case 180: s = "QTextFormat"; break;
+ case 183: s = "QTextCharFormat"; break;
+ case 184: s = "QTextFrameFormat"; break;
+ case 187: s = "QEvent"; break;
+ case 189: s = "QInputEvent"; break;
+ case 210: s = "QEvent"; break;
+ case 211: s = "QInputEvent"; break;
+ case 212: s = "QLayoutItem"; break;
+ case 213: s = "QEvent"; break; }
return s; }
StrList LObjects::overrideFunctions(const QByteArray& name) {
@@ -2812,226 +2930,249 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 14: ids = LAbstractState::overrideIds; break;
case 16: ids = LAbstractTextDocumentLayout::overrideIds; break;
case 17: ids = LAbstractTransition::overrideIds; break;
- case 18: ids = LAction::overrideIds; break;
- case 19: ids = LActionGroup::overrideIds; break;
- case 20: ids = LAnimationGroup::overrideIds; break;
- case 21: ids = LApplication::overrideIds; break;
- case 22: ids = LBoxLayout::overrideIds; break;
- case 23: ids = LBuffer::overrideIds; break;
- case 24: ids = LButtonGroup::overrideIds; break;
- case 25: ids = LCalendarWidget::overrideIds; break;
- case 26: ids = LCheckBox::overrideIds; break;
- case 28: ids = LColorDialog::overrideIds; break;
- case 29: ids = LColumnView::overrideIds; break;
- case 30: ids = LComboBox::overrideIds; break;
- case 31: ids = LCommandLinkButton::overrideIds; break;
- case 32: ids = LCommonStyle::overrideIds; break;
- case 33: ids = LCompleter::overrideIds; break;
- case 34: ids = LCoreApplication::overrideIds; break;
- case 35: ids = LDataWidgetMapper::overrideIds; break;
- case 36: ids = LDateEdit::overrideIds; break;
- case 37: ids = LDateTimeEdit::overrideIds; break;
- case 38: ids = LDesktopWidget::overrideIds; break;
- case 39: ids = LDial::overrideIds; break;
- case 40: ids = LDialog::overrideIds; break;
- case 41: ids = LDialogButtonBox::overrideIds; break;
- case 42: ids = LDirModel::overrideIds; break;
- case 43: ids = LDockWidget::overrideIds; break;
- case 44: ids = LDoubleSpinBox::overrideIds; break;
- case 45: ids = LDoubleValidator::overrideIds; break;
- case 46: ids = LDrag::overrideIds; break;
- case 47: ids = LErrorMessage::overrideIds; break;
- case 48: ids = LEventLoop::overrideIds; break;
- case 49: ids = LEventTransition::overrideIds; break;
- case 50: ids = LFile::overrideIds; break;
- case 52: ids = LFileDialog::overrideIds; break;
- case 53: ids = LFileSystemModel::overrideIds; break;
- case 54: ids = LFileSystemWatcher::overrideIds; break;
- case 55: ids = LFinalState::overrideIds; break;
- case 56: ids = LFocusFrame::overrideIds; break;
- case 57: ids = LFontComboBox::overrideIds; break;
- case 58: ids = LFontDialog::overrideIds; break;
- case 59: ids = LFormLayout::overrideIds; break;
- case 60: ids = LFrame::overrideIds; break;
- case 61: ids = LGesture::overrideIds; break;
- case 62: ids = LGraphicsAnchor::overrideIds; break;
- case 63: ids = LGraphicsBlurEffect::overrideIds; break;
- case 64: ids = LGraphicsColorizeEffect::overrideIds; break;
- case 65: ids = LGraphicsDropShadowEffect::overrideIds; break;
- case 66: ids = LGraphicsEffect::overrideIds; break;
- case 68: ids = LGraphicsOpacityEffect::overrideIds; break;
- case 69: ids = LGraphicsProxyWidget::overrideIds; break;
- case 70: ids = LGraphicsRotation::overrideIds; break;
- case 71: ids = LGraphicsScale::overrideIds; break;
- case 72: ids = LGraphicsScene::overrideIds; break;
- case 74: ids = LGraphicsTextItem::overrideIds; break;
- case 76: ids = LGraphicsView::overrideIds; break;
- case 78: ids = LGraphicsWidget::overrideIds; break;
- case 79: ids = LGridLayout::overrideIds; break;
- case 80: ids = LGroupBox::overrideIds; break;
- case 81: ids = LGuiApplication::overrideIds; break;
- case 82: ids = LHBoxLayout::overrideIds; break;
- case 83: ids = LHeaderView::overrideIds; break;
- case 92: ids = LHistoryState::overrideIds; break;
- case 93: ids = LIODevice::overrideIds; break;
- case 94: ids = LInputDialog::overrideIds; break;
- case 95: ids = LIntValidator::overrideIds; break;
- case 96: ids = LItemDelegate::overrideIds; break;
- case 97: ids = LItemSelectionModel::overrideIds; break;
- case 98: ids = LKeyEventTransition::overrideIds; break;
- case 99: ids = LLCDNumber::overrideIds; break;
- case 100: ids = LLabel::overrideIds; break;
- case 102: ids = LLibrary::overrideIds; break;
- case 103: ids = LLineEdit::overrideIds; break;
- case 104: ids = LListView::overrideIds; break;
- case 105: ids = LListWidget::overrideIds; break;
- case 108: ids = LMainWindow::overrideIds; break;
- case 109: ids = LMdiArea::overrideIds; break;
- case 110: ids = LMdiSubWindow::overrideIds; break;
- case 111: ids = LMenu::overrideIds; break;
- case 112: ids = LMenuBar::overrideIds; break;
- case 113: ids = LMessageBox::overrideIds; break;
- case 114: ids = LMimeData::overrideIds; break;
- case 115: ids = LMouseEventTransition::overrideIds; break;
- case 116: ids = LMovie::overrideIds; break;
- case 121: ids = LObject::overrideIds; break;
- case 122: ids = LOpenGLContext::overrideIds; break;
- case 123: ids = LOpenGLShader::overrideIds; break;
- case 124: ids = LOpenGLShaderProgram::overrideIds; break;
- case 125: ids = LOpenGLWidget::overrideIds; break;
- case 126: ids = LOpenGLWindow::overrideIds; break;
- case 127: ids = LPageSetupDialog::overrideIds; break;
- case 128: ids = LPaintDeviceWindow::overrideIds; break;
- case 129: ids = LPanGesture::overrideIds; break;
- case 130: ids = LParallelAnimationGroup::overrideIds; break;
- case 131: ids = LPauseAnimation::overrideIds; break;
- case 132: ids = LPinchGesture::overrideIds; break;
- case 133: ids = LPlainTextDocumentLayout::overrideIds; break;
- case 134: ids = LPlainTextEdit::overrideIds; break;
- case 135: ids = LPluginLoader::overrideIds; break;
- case 136: ids = LPrintDialog::overrideIds; break;
- case 137: ids = LPrintPreviewDialog::overrideIds; break;
- case 138: ids = LPrintPreviewWidget::overrideIds; break;
- case 139: ids = LProcess::overrideIds; break;
- case 140: ids = LProgressBar::overrideIds; break;
- case 141: ids = LProgressDialog::overrideIds; break;
- case 142: ids = LPropertyAnimation::overrideIds; break;
- case 143: ids = LPushButton::overrideIds; break;
- case 144: ids = LRadioButton::overrideIds; break;
- case 145: ids = LRegExpValidator::overrideIds; break;
- case 146: ids = LRubberBand::overrideIds; break;
- case 148: ids = LScrollArea::overrideIds; break;
- case 149: ids = LScrollBar::overrideIds; break;
- case 150: ids = LSequentialAnimationGroup::overrideIds; break;
- case 152: ids = LSettings::overrideIds; break;
- case 153: ids = LShortcut::overrideIds; break;
- case 154: ids = LSignalTransition::overrideIds; break;
- case 155: ids = LSizeGrip::overrideIds; break;
- case 156: ids = LSlider::overrideIds; break;
- case 157: ids = LSortFilterProxyModel::overrideIds; break;
- case 158: ids = LSpinBox::overrideIds; break;
- case 159: ids = LSplashScreen::overrideIds; break;
- case 160: ids = LSplitter::overrideIds; break;
- case 161: ids = LSplitterHandle::overrideIds; break;
- case 167: ids = LStackedLayout::overrideIds; break;
- case 168: ids = LStackedWidget::overrideIds; break;
- case 169: ids = LStandardItemModel::overrideIds; break;
- case 170: ids = LState::overrideIds; break;
- case 171: ids = LStateMachine::overrideIds; break;
- case 172: ids = LStatusBar::overrideIds; break;
- case 173: ids = LStringListModel::overrideIds; break;
- case 175: ids = LStyledItemDelegate::overrideIds; break;
- case 178: ids = LSwipeGesture::overrideIds; break;
- case 179: ids = LSyntaxHighlighter::overrideIds; break;
- case 180: ids = LSystemTrayIcon::overrideIds; break;
- case 181: ids = LTabBar::overrideIds; break;
- case 182: ids = LTabWidget::overrideIds; break;
- case 183: ids = LTableView::overrideIds; break;
- case 184: ids = LTableWidget::overrideIds; break;
- case 185: ids = LTapAndHoldGesture::overrideIds; break;
- case 186: ids = LTapGesture::overrideIds; break;
- case 189: ids = LTextBlockGroup::overrideIds; break;
- case 190: ids = LTextBrowser::overrideIds; break;
- case 191: ids = LTextDocument::overrideIds; break;
- case 192: ids = LTextEdit::overrideIds; break;
- case 193: ids = LTextFrame::overrideIds; break;
- case 194: ids = LTextList::overrideIds; break;
- case 195: ids = LTextObject::overrideIds; break;
- case 196: ids = LTextTable::overrideIds; break;
- case 197: ids = LTimeEdit::overrideIds; break;
- case 198: ids = LTimeLine::overrideIds; break;
- case 199: ids = LTimer::overrideIds; break;
- case 200: ids = LToolBar::overrideIds; break;
- case 201: ids = LToolBox::overrideIds; break;
- case 202: ids = LToolButton::overrideIds; break;
- case 203: ids = LTranslator::overrideIds; break;
- case 204: ids = LTreeView::overrideIds; break;
- case 205: ids = LTreeWidget::overrideIds; break;
- case 207: ids = LUndoGroup::overrideIds; break;
- case 208: ids = LUndoStack::overrideIds; break;
- case 209: ids = LUndoView::overrideIds; break;
- case 210: ids = LVBoxLayout::overrideIds; break;
- case 211: ids = LValidator::overrideIds; break;
- case 212: ids = LVariantAnimation::overrideIds; break;
- case 219: ids = LWidget::overrideIds; break;
- case 220: ids = LWidgetAction::overrideIds; break;
- case 221: ids = LWindow::overrideIds; break;
- case 222: ids = LWizard::overrideIds; break;
- case 223: ids = LWizardPage::overrideIds; break;
- case 84:
- case 85:
- case 86:
- case 87:
- case 88:
- case 89:
- case 90:
- case 91:
+ case 19: ids = LAction::overrideIds; break;
+ case 20: ids = LActionGroup::overrideIds; break;
+ case 21: ids = LAnimationGroup::overrideIds; break;
+ case 22: ids = LApplication::overrideIds; break;
+ case 25: ids = LBoxLayout::overrideIds; break;
+ case 26: ids = LBuffer::overrideIds; break;
+ case 27: ids = LButtonGroup::overrideIds; break;
+ case 28: ids = LCalendarWidget::overrideIds; break;
+ case 35: ids = LCheckBox::overrideIds; break;
+ case 37: ids = LColorDialog::overrideIds; break;
+ case 38: ids = LColumnView::overrideIds; break;
+ case 39: ids = LComboBox::overrideIds; break;
+ case 40: ids = LCommandLinkButton::overrideIds; break;
+ case 41: ids = LCommonStyle::overrideIds; break;
+ case 42: ids = LCompleter::overrideIds; break;
+ case 43: ids = LCoreApplication::overrideIds; break;
+ case 44: ids = LDataWidgetMapper::overrideIds; break;
+ case 45: ids = LDateEdit::overrideIds; break;
+ case 46: ids = LDateTimeEdit::overrideIds; break;
+ case 47: ids = LDesktopWidget::overrideIds; break;
+ case 48: ids = LDial::overrideIds; break;
+ case 49: ids = LDialog::overrideIds; break;
+ case 50: ids = LDialogButtonBox::overrideIds; break;
+ case 51: ids = LDirModel::overrideIds; break;
+ case 52: ids = LDockWidget::overrideIds; break;
+ case 53: ids = LDoubleSpinBox::overrideIds; break;
+ case 54: ids = LDoubleValidator::overrideIds; break;
+ case 55: ids = LDrag::overrideIds; break;
+ case 56: ids = LErrorMessage::overrideIds; break;
+ case 57: ids = LEventLoop::overrideIds; break;
+ case 58: ids = LEventTransition::overrideIds; break;
+ case 59: ids = LFile::overrideIds; break;
+ case 61: ids = LFileDialog::overrideIds; break;
+ case 62: ids = LFileSystemModel::overrideIds; break;
+ case 63: ids = LFileSystemWatcher::overrideIds; break;
+ case 64: ids = LFinalState::overrideIds; break;
+ case 65: ids = LFocusFrame::overrideIds; break;
+ case 66: ids = LFontComboBox::overrideIds; break;
+ case 67: ids = LFontDialog::overrideIds; break;
+ case 68: ids = LFormLayout::overrideIds; break;
+ case 69: ids = LFrame::overrideIds; break;
+ case 70: ids = LGesture::overrideIds; break;
+ case 71: ids = LGraphicsAnchor::overrideIds; break;
+ case 72: ids = LGraphicsBlurEffect::overrideIds; break;
+ case 73: ids = LGraphicsColorizeEffect::overrideIds; break;
+ case 74: ids = LGraphicsDropShadowEffect::overrideIds; break;
+ case 75: ids = LGraphicsEffect::overrideIds; break;
+ case 77: ids = LGraphicsOpacityEffect::overrideIds; break;
+ case 78: ids = LGraphicsProxyWidget::overrideIds; break;
+ case 79: ids = LGraphicsRotation::overrideIds; break;
+ case 80: ids = LGraphicsScale::overrideIds; break;
+ case 81: ids = LGraphicsScene::overrideIds; break;
+ case 83: ids = LGraphicsTextItem::overrideIds; break;
+ case 86: ids = LGraphicsView::overrideIds; break;
+ case 88: ids = LGraphicsWidget::overrideIds; break;
+ case 89: ids = LGridLayout::overrideIds; break;
+ case 90: ids = LGroupBox::overrideIds; break;
+ case 91: ids = LGuiApplication::overrideIds; break;
+ case 92: ids = LHBoxLayout::overrideIds; break;
+ case 93: ids = LHeaderView::overrideIds; break;
+ case 102: ids = LHistoryState::overrideIds; break;
+ case 103: ids = LIODevice::overrideIds; break;
+ case 104: ids = LInputDialog::overrideIds; break;
+ case 105: ids = LIntValidator::overrideIds; break;
+ case 106: ids = LItemDelegate::overrideIds; break;
+ case 107: ids = LItemSelectionModel::overrideIds; break;
+ case 108: ids = LKeyEventTransition::overrideIds; break;
+ case 109: ids = LLCDNumber::overrideIds; break;
+ case 110: ids = LLabel::overrideIds; break;
+ case 112: ids = LLibrary::overrideIds; break;
+ case 113: ids = LLineEdit::overrideIds; break;
+ case 114: ids = LListView::overrideIds; break;
+ case 115: ids = LListWidget::overrideIds; break;
+ case 118: ids = LMainWindow::overrideIds; break;
+ case 119: ids = LMdiArea::overrideIds; break;
+ case 120: ids = LMdiSubWindow::overrideIds; break;
+ case 126: ids = LMenu::overrideIds; break;
+ case 127: ids = LMenuBar::overrideIds; break;
+ case 128: ids = LMessageBox::overrideIds; break;
+ case 129: ids = LMimeData::overrideIds; break;
+ case 130: ids = LMouseEventTransition::overrideIds; break;
+ case 131: ids = LMovie::overrideIds; break;
+ case 136: ids = LObject::overrideIds; break;
+ case 137: ids = LOpenGLContext::overrideIds; break;
+ case 138: ids = LOpenGLShader::overrideIds; break;
+ case 139: ids = LOpenGLShaderProgram::overrideIds; break;
+ case 140: ids = LOpenGLWidget::overrideIds; break;
+ case 141: ids = LOpenGLWindow::overrideIds; break;
+ case 142: ids = LPageSetupDialog::overrideIds; break;
+ case 143: ids = LPaintDeviceWindow::overrideIds; break;
+ case 144: ids = LPanGesture::overrideIds; break;
+ case 145: ids = LParallelAnimationGroup::overrideIds; break;
+ case 146: ids = LPauseAnimation::overrideIds; break;
+ case 147: ids = LPinchGesture::overrideIds; break;
+ case 148: ids = LPlainTextDocumentLayout::overrideIds; break;
+ case 149: ids = LPlainTextEdit::overrideIds; break;
+ case 150: ids = LPluginLoader::overrideIds; break;
+ case 151: ids = LPrintDialog::overrideIds; break;
+ case 152: ids = LPrintPreviewDialog::overrideIds; break;
+ case 153: ids = LPrintPreviewWidget::overrideIds; break;
+ case 154: ids = LProcess::overrideIds; break;
+ case 155: ids = LProgressBar::overrideIds; break;
+ case 156: ids = LProgressDialog::overrideIds; break;
+ case 157: ids = LPropertyAnimation::overrideIds; break;
+ case 158: ids = LPushButton::overrideIds; break;
+ case 159: ids = LRadioButton::overrideIds; break;
+ case 161: ids = LRegExpValidator::overrideIds; break;
+ case 162: ids = LRubberBand::overrideIds; break;
+ case 164: ids = LScrollArea::overrideIds; break;
+ case 165: ids = LScrollBar::overrideIds; break;
+ case 166: ids = LSequentialAnimationGroup::overrideIds; break;
+ case 168: ids = LSettings::overrideIds; break;
+ case 169: ids = LShortcut::overrideIds; break;
+ case 170: ids = LSignalTransition::overrideIds; break;
+ case 171: ids = LSizeGrip::overrideIds; break;
+ case 172: ids = LSlider::overrideIds; break;
+ case 173: ids = LSortFilterProxyModel::overrideIds; break;
+ case 174: ids = LSpinBox::overrideIds; break;
+ case 175: ids = LSplashScreen::overrideIds; break;
+ case 176: ids = LSplitter::overrideIds; break;
+ case 177: ids = LSplitterHandle::overrideIds; break;
+ case 183: ids = LStackedLayout::overrideIds; break;
+ case 184: ids = LStackedWidget::overrideIds; break;
+ case 185: ids = LStandardItemModel::overrideIds; break;
+ case 186: ids = LState::overrideIds; break;
+ case 187: ids = LStateMachine::overrideIds; break;
+ case 188: ids = LStatusBar::overrideIds; break;
+ case 189: ids = LStringListModel::overrideIds; break;
+ case 191: ids = LStyledItemDelegate::overrideIds; break;
+ case 194: ids = LSwipeGesture::overrideIds; break;
+ case 195: ids = LSyntaxHighlighter::overrideIds; break;
+ case 196: ids = LSystemTrayIcon::overrideIds; break;
+ case 197: ids = LTabBar::overrideIds; break;
+ case 198: ids = LTabWidget::overrideIds; break;
+ case 199: ids = LTableView::overrideIds; break;
+ case 200: ids = LTableWidget::overrideIds; break;
+ case 201: ids = LTapAndHoldGesture::overrideIds; break;
+ case 202: ids = LTapGesture::overrideIds; break;
+ case 205: ids = LTextBlockGroup::overrideIds; break;
+ case 206: ids = LTextBrowser::overrideIds; break;
+ case 207: ids = LTextDocument::overrideIds; break;
+ case 208: ids = LTextEdit::overrideIds; break;
+ case 209: ids = LTextFrame::overrideIds; break;
+ case 210: ids = LTextList::overrideIds; break;
+ case 211: ids = LTextObject::overrideIds; break;
+ case 212: ids = LTextTable::overrideIds; break;
+ case 213: ids = LTimeEdit::overrideIds; break;
+ case 214: ids = LTimeLine::overrideIds; break;
+ case 215: ids = LTimer::overrideIds; break;
+ case 216: ids = LToolBar::overrideIds; break;
+ case 217: ids = LToolBox::overrideIds; break;
+ case 218: ids = LToolButton::overrideIds; break;
+ case 219: ids = LTranslator::overrideIds; break;
+ case 220: ids = LTreeView::overrideIds; break;
+ case 221: ids = LTreeWidget::overrideIds; break;
+ case 223: ids = LUndoGroup::overrideIds; break;
+ case 224: ids = LUndoStack::overrideIds; break;
+ case 225: ids = LUndoView::overrideIds; break;
+ case 226: ids = LVBoxLayout::overrideIds; break;
+ case 227: ids = LValidator::overrideIds; break;
+ case 228: ids = LVariantAnimation::overrideIds; break;
+ case 237: ids = LWidget::overrideIds; break;
+ case 238: ids = LWidgetAction::overrideIds; break;
+ case 239: ids = LWindow::overrideIds; break;
+ case 240: ids = LWizard::overrideIds; break;
+ case 241: ids = LWizardPage::overrideIds; break;
+ case 94:
+ case 95:
+ case 96:
+ case 97:
+ case 98:
+ case 99:
+ case 100:
+ case 101:
if(override_help) {
NumList* _ids = override_help(name);
if(_ids) {
ids = *_ids; }}
break;
+ case 18:
+ case 23:
+ case 24:
+ case 29:
+ case 30:
+ case 31:
+ case 32:
+ case 33:
+ case 34:
+ case 85:
+ case 121:
+ case 122:
+ case 123:
+ case 124:
+ case 125:
+ case 160:
+ case 229:
+ case 230:
+ if(override_multimedia) {
+ NumList* _ids = override_multimedia(name);
+ if(_ids) {
+ ids = *_ids; }}
+ break;
case 7:
case 12:
- case 106:
- case 107:
+ case 116:
case 117:
- case 118:
- case 119:
- case 120:
- case 187:
- case 188:
- case 206:
+ case 132:
+ case 133:
+ case 134:
+ case 135:
+ case 203:
+ case 204:
+ case 222:
if(override_network) {
NumList* _ids = override_network(name);
if(_ids) {
ids = *_ids; }}
break;
- case 162:
- case 163:
- case 164:
- case 165:
- case 166:
+ case 178:
+ case 179:
+ case 180:
+ case 181:
+ case 182:
if(override_sql) {
NumList* _ids = override_sql(name);
if(_ids) {
ids = *_ids; }}
break;
- case 73:
- case 176:
- case 177:
+ case 82:
+ case 192:
+ case 193:
if(override_svg) {
NumList* _ids = override_svg(name);
if(_ids) {
ids = *_ids; }}
break;
- case 77:
- case 213:
- case 214:
- case 215:
- case 216:
- case 217:
- case 218:
+ case 87:
+ case 231:
+ case 232:
+ case 233:
+ case 234:
+ case 235:
+ case 236:
if(override_webkit) {
NumList* _ids = override_webkit(name);
if(_ids) {
@@ -3045,219 +3186,232 @@ StrList LObjects::overrideFunctions(const QByteArray& name) {
case 3: ids = LAccessibleEvent::overrideIds; break;
case 6: ids = LAccessibleWidget::overrideIds; break;
case 7: ids = LActionEvent::overrideIds; break;
- case 9: ids = LBasicTimer::overrideIds; break;
- case 10: ids = LBitArray::overrideIds; break;
- case 11: ids = LBitmap::overrideIds; break;
- case 12: ids = LBrush::overrideIds; break;
- case 13: ids = LChildEvent::overrideIds; break;
- case 14: ids = LCloseEvent::overrideIds; break;
- case 15: ids = LColor::overrideIds; break;
- case 16: ids = LConicalGradient::overrideIds; break;
- case 17: ids = LContextMenuEvent::overrideIds; break;
- case 18: ids = LCryptographicHash::overrideIds; break;
- case 19: ids = LCursor::overrideIds; break;
- case 20: ids = LDate::overrideIds; break;
- case 21: ids = LDateTime::overrideIds; break;
- case 23: ids = LDir::overrideIds; break;
- case 24: ids = LDirIterator::overrideIds; break;
- case 25: ids = LDragEnterEvent::overrideIds; break;
- case 26: ids = LDragLeaveEvent::overrideIds; break;
- case 27: ids = LDragMoveEvent::overrideIds; break;
- case 28: ids = LDropEvent::overrideIds; break;
- case 29: ids = LDynamicPropertyChangeEvent::overrideIds; break;
- case 30: ids = LEasingCurve::overrideIds; break;
- case 31: ids = LEvent::overrideIds; break;
- case 32: ids = LFileIconProvider::overrideIds; break;
- case 33: ids = LFileInfo::overrideIds; break;
- case 34: ids = LFileOpenEvent::overrideIds; break;
- case 35: ids = LFocusEvent::overrideIds; break;
- case 36: ids = LFont::overrideIds; break;
- case 37: ids = LFontDatabase::overrideIds; break;
- case 38: ids = LFontInfo::overrideIds; break;
- case 39: ids = LFontMetrics::overrideIds; break;
- case 40: ids = LGestureEvent::overrideIds; break;
- case 41: ids = LGradient::overrideIds; break;
- case 42: ids = LGraphicsAnchorLayout::overrideIds; break;
- case 43: ids = LGraphicsEllipseItem::overrideIds; break;
- case 44: ids = LGraphicsGridLayout::overrideIds; break;
- case 45: ids = LGraphicsItem::overrideIds; break;
- case 46: ids = LGraphicsItemGroup::overrideIds; break;
- case 47: ids = LGraphicsLayout::overrideIds; break;
- case 48: ids = LGraphicsLayoutItem::overrideIds; break;
- case 49: ids = LGraphicsLineItem::overrideIds; break;
- case 50: ids = LGraphicsLinearLayout::overrideIds; break;
- case 51: ids = LGraphicsPathItem::overrideIds; break;
- case 52: ids = LGraphicsPixmapItem::overrideIds; break;
- case 53: ids = LGraphicsPolygonItem::overrideIds; break;
- case 54: ids = LGraphicsRectItem::overrideIds; break;
- case 55: ids = LGraphicsSceneContextMenuEvent::overrideIds; break;
- case 56: ids = LGraphicsSceneDragDropEvent::overrideIds; break;
- case 57: ids = LGraphicsSceneEvent::overrideIds; break;
- case 58: ids = LGraphicsSceneHelpEvent::overrideIds; break;
- case 59: ids = LGraphicsSceneHoverEvent::overrideIds; break;
- case 60: ids = LGraphicsSceneMouseEvent::overrideIds; break;
- case 61: ids = LGraphicsSceneMoveEvent::overrideIds; break;
- case 62: ids = LGraphicsSceneResizeEvent::overrideIds; break;
- case 63: ids = LGraphicsSceneWheelEvent::overrideIds; break;
- case 64: ids = LGraphicsSimpleTextItem::overrideIds; break;
- case 66: ids = LHelpEvent::overrideIds; break;
- case 68: ids = LHideEvent::overrideIds; break;
- case 71: ids = LHoverEvent::overrideIds; break;
- case 72: ids = LIcon::overrideIds; break;
- case 73: ids = LIconDragEvent::overrideIds; break;
- case 74: ids = LImage::overrideIds; break;
- case 75: ids = LInputEvent::overrideIds; break;
- case 76: ids = LInputMethodEvent::overrideIds; break;
- case 77: ids = LItemEditorFactory::overrideIds; break;
- case 78: ids = LItemSelectionRange::overrideIds; break;
- case 79: ids = LKeyEvent::overrideIds; break;
- case 80: ids = LKeySequence::overrideIds; break;
- case 81: ids = LLayoutItem::overrideIds; break;
- case 82: ids = LLibraryInfo::overrideIds; break;
- case 83: ids = LLinearGradient::overrideIds; break;
- case 84: ids = LListWidgetItem::overrideIds; break;
- case 85: ids = LLocale::overrideIds; break;
- case 86: ids = LMargins::overrideIds; break;
- case 87: ids = LMatrix::overrideIds; break;
- case 88: ids = LMatrix4x4::overrideIds; break;
- case 89: ids = LMetaObject::overrideIds; break;
- case 90: ids = LModelIndex::overrideIds; break;
- case 91: ids = LMouseEvent::overrideIds; break;
- case 92: ids = LMoveEvent::overrideIds; break;
- case 101: ids = LOpenGLPaintDevice::overrideIds; break;
- case 102: ids = LOpenGLTexture::overrideIds; break;
- case 105: ids = LPaintEvent::overrideIds; break;
- case 106: ids = LPainter::overrideIds; break;
- case 107: ids = LPainterPath::overrideIds; break;
- case 108: ids = LPainterPathStroker::overrideIds; break;
- case 109: ids = LPalette::overrideIds; break;
- case 110: ids = LPen::overrideIds; break;
- case 111: ids = LPersistentModelIndex::overrideIds; break;
- case 112: ids = LPicture::overrideIds; break;
- case 113: ids = LPixmap::overrideIds; break;
- case 114: ids = LPixmapCache::overrideIds; break;
- case 115: ids = LPrinter::overrideIds; break;
- case 116: ids = LPrinterInfo::overrideIds; break;
- case 117: ids = LProcessEnvironment::overrideIds; break;
- case 118: ids = LQuaternion::overrideIds; break;
- case 119: ids = LRadialGradient::overrideIds; break;
- case 120: ids = LReadLocker::overrideIds; break;
- case 121: ids = LReadWriteLock::overrideIds; break;
- case 122: ids = LRegExp::overrideIds; break;
- case 123: ids = LRegion::overrideIds; break;
- case 124: ids = LRegularExpression::overrideIds; break;
- case 125: ids = LResizeEvent::overrideIds; break;
- case 126: ids = LRunnable::overrideIds; break;
- case 127: ids = LSemaphore::overrideIds; break;
- case 128: ids = LShortcutEvent::overrideIds; break;
- case 129: ids = LShowEvent::overrideIds; break;
- case 130: ids = LSizePolicy::overrideIds; break;
- case 131: ids = LSpacerItem::overrideIds; break;
- case 145: ids = LStandardItem::overrideIds; break;
- case 147: ids = LStatusTipEvent::overrideIds; break;
- case 148: ids = LStyleOption::overrideIds; break;
- case 149: ids = LStyleOptionGraphicsItem::overrideIds; break;
- case 152: ids = LSystemSemaphore::overrideIds; break;
- case 153: ids = LTableWidgetItem::overrideIds; break;
- case 154: ids = LTableWidgetSelectionRange::overrideIds; break;
- case 155: ids = LTabletEvent::overrideIds; break;
- case 156: ids = LTextBlock::overrideIds; break;
- case 157: ids = LTextBlockFormat::overrideIds; break;
- case 158: ids = LTextBlockUserData::overrideIds; break;
- case 159: ids = LTextBoundaryFinder::overrideIds; break;
- case 160: ids = LTextCharFormat::overrideIds; break;
- case 161: ids = LTextCodec::overrideIds; break;
- case 162: ids = LTextCursor::overrideIds; break;
- case 163: ids = LTextDecoder::overrideIds; break;
- case 164: ids = LTextDocumentFragment::overrideIds; break;
- case 165: ids = LTextDocumentWriter::overrideIds; break;
- case 166: ids = LTextEncoder::overrideIds; break;
- case 167: ids = LTextFormat::overrideIds; break;
- case 168: ids = LTextFragment::overrideIds; break;
- case 169: ids = LTextFrameFormat::overrideIds; break;
- case 170: ids = LTextImageFormat::overrideIds; break;
- case 171: ids = LTextLayout::overrideIds; break;
- case 172: ids = LTextLength::overrideIds; break;
- case 173: ids = LTextLine::overrideIds; break;
- case 174: ids = LTextListFormat::overrideIds; break;
- case 175: ids = LTextOption::overrideIds; break;
- case 176: ids = LTextTableCell::overrideIds; break;
- case 177: ids = LTextTableCellFormat::overrideIds; break;
- case 178: ids = LTextTableFormat::overrideIds; break;
- case 179: ids = LTime::overrideIds; break;
- case 180: ids = LTimeZone::overrideIds; break;
- case 181: ids = LTimerEvent::overrideIds; break;
- case 182: ids = LToolTip::overrideIds; break;
- case 183: ids = LTouchEvent::overrideIds; break;
- case 184: ids = LTransform::overrideIds; break;
- case 185: ids = LTreeWidgetItem::overrideIds; break;
- case 186: ids = LUndoCommand::overrideIds; break;
- case 187: ids = LUrl::overrideIds; break;
- case 188: ids = LVariant::overrideIds; break;
- case 189: ids = LVector2D::overrideIds; break;
- case 190: ids = LVector3D::overrideIds; break;
- case 191: ids = LVector4D::overrideIds; break;
- case 200: ids = LWhatsThis::overrideIds; break;
- case 201: ids = LWhatsThisClickedEvent::overrideIds; break;
- case 202: ids = LWheelEvent::overrideIds; break;
- case 203: ids = LWidgetItem::overrideIds; break;
- case 204: ids = LWindowStateChangeEvent::overrideIds; break;
- case 205: ids = LWriteLocker::overrideIds; break;
- case 65:
- case 67:
+ case 12: ids = LBasicTimer::overrideIds; break;
+ case 13: ids = LBitArray::overrideIds; break;
+ case 14: ids = LBitmap::overrideIds; break;
+ case 15: ids = LBrush::overrideIds; break;
+ case 18: ids = LChildEvent::overrideIds; break;
+ case 19: ids = LCloseEvent::overrideIds; break;
+ case 20: ids = LColor::overrideIds; break;
+ case 21: ids = LConicalGradient::overrideIds; break;
+ case 22: ids = LContextMenuEvent::overrideIds; break;
+ case 23: ids = LCryptographicHash::overrideIds; break;
+ case 24: ids = LCursor::overrideIds; break;
+ case 25: ids = LDate::overrideIds; break;
+ case 26: ids = LDateTime::overrideIds; break;
+ case 28: ids = LDir::overrideIds; break;
+ case 29: ids = LDirIterator::overrideIds; break;
+ case 30: ids = LDragEnterEvent::overrideIds; break;
+ case 31: ids = LDragLeaveEvent::overrideIds; break;
+ case 32: ids = LDragMoveEvent::overrideIds; break;
+ case 33: ids = LDropEvent::overrideIds; break;
+ case 34: ids = LDynamicPropertyChangeEvent::overrideIds; break;
+ case 35: ids = LEasingCurve::overrideIds; break;
+ case 36: ids = LEvent::overrideIds; break;
+ case 37: ids = LFileIconProvider::overrideIds; break;
+ case 38: ids = LFileInfo::overrideIds; break;
+ case 39: ids = LFileOpenEvent::overrideIds; break;
+ case 40: ids = LFocusEvent::overrideIds; break;
+ case 41: ids = LFont::overrideIds; break;
+ case 42: ids = LFontDatabase::overrideIds; break;
+ case 43: ids = LFontInfo::overrideIds; break;
+ case 44: ids = LFontMetrics::overrideIds; break;
+ case 45: ids = LGestureEvent::overrideIds; break;
+ case 46: ids = LGradient::overrideIds; break;
+ case 47: ids = LGraphicsAnchorLayout::overrideIds; break;
+ case 48: ids = LGraphicsEllipseItem::overrideIds; break;
+ case 49: ids = LGraphicsGridLayout::overrideIds; break;
+ case 50: ids = LGraphicsItem::overrideIds; break;
+ case 51: ids = LGraphicsItemGroup::overrideIds; break;
+ case 52: ids = LGraphicsLayout::overrideIds; break;
+ case 53: ids = LGraphicsLayoutItem::overrideIds; break;
+ case 54: ids = LGraphicsLineItem::overrideIds; break;
+ case 55: ids = LGraphicsLinearLayout::overrideIds; break;
+ case 56: ids = LGraphicsPathItem::overrideIds; break;
+ case 57: ids = LGraphicsPixmapItem::overrideIds; break;
+ case 58: ids = LGraphicsPolygonItem::overrideIds; break;
+ case 59: ids = LGraphicsRectItem::overrideIds; break;
+ case 60: ids = LGraphicsSceneContextMenuEvent::overrideIds; break;
+ case 61: ids = LGraphicsSceneDragDropEvent::overrideIds; break;
+ case 62: ids = LGraphicsSceneEvent::overrideIds; break;
+ case 63: ids = LGraphicsSceneHelpEvent::overrideIds; break;
+ case 64: ids = LGraphicsSceneHoverEvent::overrideIds; break;
+ case 65: ids = LGraphicsSceneMouseEvent::overrideIds; break;
+ case 66: ids = LGraphicsSceneMoveEvent::overrideIds; break;
+ case 67: ids = LGraphicsSceneResizeEvent::overrideIds; break;
+ case 68: ids = LGraphicsSceneWheelEvent::overrideIds; break;
+ case 69: ids = LGraphicsSimpleTextItem::overrideIds; break;
+ case 71: ids = LHelpEvent::overrideIds; break;
+ case 73: ids = LHideEvent::overrideIds; break;
+ case 76: ids = LHoverEvent::overrideIds; break;
+ case 77: ids = LIcon::overrideIds; break;
+ case 78: ids = LIconDragEvent::overrideIds; break;
+ case 79: ids = LImage::overrideIds; break;
+ case 80: ids = LInputEvent::overrideIds; break;
+ case 81: ids = LInputMethodEvent::overrideIds; break;
+ case 82: ids = LItemEditorFactory::overrideIds; break;
+ case 83: ids = LItemSelectionRange::overrideIds; break;
+ case 84: ids = LKeyEvent::overrideIds; break;
+ case 85: ids = LKeySequence::overrideIds; break;
+ case 86: ids = LLayoutItem::overrideIds; break;
+ case 87: ids = LLibraryInfo::overrideIds; break;
+ case 88: ids = LLinearGradient::overrideIds; break;
+ case 89: ids = LListWidgetItem::overrideIds; break;
+ case 90: ids = LLocale::overrideIds; break;
+ case 91: ids = LMargins::overrideIds; break;
+ case 92: ids = LMatrix::overrideIds; break;
+ case 93: ids = LMatrix4x4::overrideIds; break;
+ case 94: ids = LMetaObject::overrideIds; break;
+ case 95: ids = LModelIndex::overrideIds; break;
+ case 96: ids = LMouseEvent::overrideIds; break;
+ case 97: ids = LMoveEvent::overrideIds; break;
+ case 106: ids = LOpenGLPaintDevice::overrideIds; break;
+ case 107: ids = LOpenGLTexture::overrideIds; break;
+ case 110: ids = LPaintEvent::overrideIds; break;
+ case 111: ids = LPainter::overrideIds; break;
+ case 112: ids = LPainterPath::overrideIds; break;
+ case 113: ids = LPainterPathStroker::overrideIds; break;
+ case 114: ids = LPalette::overrideIds; break;
+ case 115: ids = LPen::overrideIds; break;
+ case 116: ids = LPersistentModelIndex::overrideIds; break;
+ case 117: ids = LPicture::overrideIds; break;
+ case 118: ids = LPixmap::overrideIds; break;
+ case 119: ids = LPixmapCache::overrideIds; break;
+ case 120: ids = LPrinter::overrideIds; break;
+ case 121: ids = LPrinterInfo::overrideIds; break;
+ case 122: ids = LProcessEnvironment::overrideIds; break;
+ case 123: ids = LQuaternion::overrideIds; break;
+ case 124: ids = LRadialGradient::overrideIds; break;
+ case 125: ids = LReadLocker::overrideIds; break;
+ case 126: ids = LReadWriteLock::overrideIds; break;
+ case 127: ids = LRegExp::overrideIds; break;
+ case 128: ids = LRegion::overrideIds; break;
+ case 129: ids = LRegularExpression::overrideIds; break;
+ case 130: ids = LResizeEvent::overrideIds; break;
+ case 131: ids = LRunnable::overrideIds; break;
+ case 132: ids = LSemaphore::overrideIds; break;
+ case 133: ids = LShortcutEvent::overrideIds; break;
+ case 134: ids = LShowEvent::overrideIds; break;
+ case 135: ids = LSizePolicy::overrideIds; break;
+ case 136: ids = LSpacerItem::overrideIds; break;
+ case 150: ids = LStandardItem::overrideIds; break;
+ case 152: ids = LStatusTipEvent::overrideIds; break;
+ case 153: ids = LStyleOption::overrideIds; break;
+ case 154: ids = LStyleOptionGraphicsItem::overrideIds; break;
+ case 158: ids = LSystemSemaphore::overrideIds; break;
+ case 159: ids = LTableWidgetItem::overrideIds; break;
+ case 160: ids = LTableWidgetSelectionRange::overrideIds; break;
+ case 161: ids = LTabletEvent::overrideIds; break;
+ case 162: ids = LTextBlock::overrideIds; break;
+ case 163: ids = LTextBlockFormat::overrideIds; break;
+ case 164: ids = LTextBlockUserData::overrideIds; break;
+ case 165: ids = LTextBoundaryFinder::overrideIds; break;
+ case 166: ids = LTextCharFormat::overrideIds; break;
+ case 167: ids = LTextCodec::overrideIds; break;
+ case 168: ids = LTextCursor::overrideIds; break;
+ case 169: ids = LTextDecoder::overrideIds; break;
+ case 170: ids = LTextDocumentFragment::overrideIds; break;
+ case 171: ids = LTextDocumentWriter::overrideIds; break;
+ case 172: ids = LTextEncoder::overrideIds; break;
+ case 173: ids = LTextFormat::overrideIds; break;
+ case 174: ids = LTextFragment::overrideIds; break;
+ case 175: ids = LTextFrameFormat::overrideIds; break;
+ case 176: ids = LTextImageFormat::overrideIds; break;
+ case 177: ids = LTextLayout::overrideIds; break;
+ case 178: ids = LTextLength::overrideIds; break;
+ case 179: ids = LTextLine::overrideIds; break;
+ case 180: ids = LTextListFormat::overrideIds; break;
+ case 181: ids = LTextOption::overrideIds; break;
+ case 182: ids = LTextTableCell::overrideIds; break;
+ case 183: ids = LTextTableCellFormat::overrideIds; break;
+ case 184: ids = LTextTableFormat::overrideIds; break;
+ case 185: ids = LTime::overrideIds; break;
+ case 186: ids = LTimeZone::overrideIds; break;
+ case 187: ids = LTimerEvent::overrideIds; break;
+ case 188: ids = LToolTip::overrideIds; break;
+ case 189: ids = LTouchEvent::overrideIds; break;
+ case 190: ids = LTransform::overrideIds; break;
+ case 191: ids = LTreeWidgetItem::overrideIds; break;
+ case 192: ids = LUndoCommand::overrideIds; break;
+ case 193: ids = LUrl::overrideIds; break;
+ case 194: ids = LVariant::overrideIds; break;
+ case 195: ids = LVector2D::overrideIds; break;
+ case 196: ids = LVector3D::overrideIds; break;
+ case 197: ids = LVector4D::overrideIds; break;
+ case 209: ids = LWhatsThis::overrideIds; break;
+ case 210: ids = LWhatsThisClickedEvent::overrideIds; break;
+ case 211: ids = LWheelEvent::overrideIds; break;
+ case 212: ids = LWidgetItem::overrideIds; break;
+ case 213: ids = LWindowStateChangeEvent::overrideIds; break;
+ case 214: ids = LWriteLocker::overrideIds; break;
+ case 70:
+ case 72:
if(override_help) {
NumList* _ids = override_help(name);
if(_ids) {
ids = *_ids; }}
break;
case 8:
- case 69:
- case 70:
- case 93:
- case 94:
- case 95:
- case 96:
- case 97:
+ case 9:
+ case 10:
+ case 16:
+ case 17:
+ case 198:
+ case 199:
+ case 200:
+ if(override_multimedia) {
+ NumList* _ids = override_multimedia(name);
+ if(_ids) {
+ ids = *_ids; }}
+ break;
+ case 11:
+ case 74:
+ case 75:
case 98:
case 99:
case 100:
- case 140:
- case 141:
- case 142:
- case 143:
- case 144:
+ case 101:
+ case 102:
+ case 103:
+ case 104:
+ case 105:
+ case 145:
+ case 146:
+ case 147:
+ case 148:
+ case 149:
if(override_network) {
NumList* _ids = override_network(name);
if(_ids) {
ids = *_ids; }}
break;
- case 132:
- case 133:
- case 134:
- case 135:
- case 136:
case 137:
case 138:
case 139:
+ case 140:
+ case 141:
+ case 142:
+ case 143:
+ case 144:
if(override_sql) {
NumList* _ids = override_sql(name);
if(_ids) {
ids = *_ids; }}
break;
- case 151:
+ case 156:
if(override_svg) {
NumList* _ids = override_svg(name);
if(_ids) {
ids = *_ids; }}
break;
- case 192:
- case 193:
- case 194:
- case 195:
- case 196:
- case 197:
- case 198:
- case 199:
+ case 201:
+ case 202:
+ case 203:
+ case 204:
+ case 205:
+ case 206:
+ case 207:
+ case 208:
if(override_webkit) {
NumList* _ids = override_webkit(name);
if(_ids) {
diff --git a/src/gen/_lobjects.h b/src/gen/_lobjects.h
index d5cfd07..3406b13 100644
--- a/src/gen/_lobjects.h
+++ b/src/gen/_lobjects.h
@@ -33,21 +33,28 @@ class DynObject;
typedef const QMetaObject* (*StaticMetaObject)(int);
typedef void (*DeleteNObject)(int, void*, int);
typedef NumList* (*Override)(const QByteArray&);
-typedef void* (*ToMetaArg)(int, cl_object);
-typedef cl_object (*To_lisp_arg)(int, void*);
+typedef void* (*ToMetaArg)(int, cl_object, bool*);
+typedef cl_object (*To_lisp_arg)(int, void*, bool*);
class EQL_EXPORT LObjects {
public:
+ static int T_QAudioDeviceInfo;
+ static int T_QList_QAudioDeviceInfo;
+ static int T_QAudioEncoderSettings;
+ static int T_QAudioFormat;
+ static int T_QCameraInfo;
+ static int T_QList_QCameraInfo;
+ static int T_QCameraViewfinderSettings;
+ static int T_QList_QCameraViewfinderSettings;
static int T_QHostAddress;
static int T_QHostInfo;
+ static int T_QImageEncoderSettings;
+ static int T_QMediaContent;
+ static int T_QList_QMediaContent;
static int T_QNetworkCacheMetaData;
static int T_QNetworkInterface;
static int T_QNetworkProxy;
static int T_QNetworkRequest;
- static int T_QSslCertificate;
- static int T_QSslCipher;
- static int T_QSslConfiguration;
- static int T_QSslKey;
static int T_QSqlDatabase;
static int T_QSqlError;
static int T_QSqlField;
@@ -55,6 +62,12 @@ public:
static int T_QSqlQuery;
static int T_QSqlRecord;
static int T_QSqlRelation;
+ static int T_QSslCertificate;
+ static int T_QSslCipher;
+ static int T_QSslConfiguration;
+ static int T_QSslKey;
+ static int T_QVideoEncoderSettings;
+ static int T_QVideoSurfaceFormat;
static int T_QWebElement;
static int T_QWebElementCollection;
static int T_QWebHitTestResult;
@@ -109,20 +122,25 @@ public:
return false; }
static StaticMetaObject staticMetaObject_help;
+ static StaticMetaObject staticMetaObject_multimedia;
static StaticMetaObject staticMetaObject_network;
static StaticMetaObject staticMetaObject_sql;
static StaticMetaObject staticMetaObject_svg;
static StaticMetaObject staticMetaObject_webkit;
static DeleteNObject deleteNObject_help;
+ static DeleteNObject deleteNObject_multimedia;
static DeleteNObject deleteNObject_network;
static DeleteNObject deleteNObject_sql;
static DeleteNObject deleteNObject_svg;
static DeleteNObject deleteNObject_webkit;
static Override override_help;
+ static Override override_multimedia;
static Override override_network;
static Override override_sql;
static Override override_svg;
static Override override_webkit;
+ static ToMetaArg toMetaArg_multimedia;
+ static To_lisp_arg to_lisp_arg_multimedia;
static ToMetaArg toMetaArg_network;
static To_lisp_arg to_lisp_arg_network;
static ToMetaArg toMetaArg_sql;
diff --git a/src/gen/_main_n_classes.h b/src/gen/_main_n_classes.h
index 9f2dff6..a6df484 100644
--- a/src/gen/_main_n_classes.h
+++ b/src/gen/_main_n_classes.h
@@ -18,38 +18,38 @@ public:
static NumList overrideIds;
uint unique;
- bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 261, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::isObscuredBy(x1); } return ret; }
- QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::opaqueArea(); } return ret; }
- void advance(int x1) { quint64 id = LObjects::override_id(unique, 406); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 406, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::advance(x1); }}
- QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 253); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 253, 0, id).value(); } return ret; }
- bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 407); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 407, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::collidesWithItem(x1, x2); } return ret; }
- bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 408); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 408, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::collidesWithPath(x1, x2); } return ret; }
- bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 260, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::contains(x1); } return ret; }
- void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 224); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 224, args, id); }}
- QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 254); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 254, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::shape(); } return ret; }
- int type() const { quint64 id = LObjects::override_id(unique, 226); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 226, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::type(); } return ret; }
- void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 227); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 227, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::contextMenuEvent(x1); }}
- void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 228); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 228, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::dragEnterEvent(x1); }}
- void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 229); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 229, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::dragLeaveEvent(x1); }}
- void dragMoveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 230); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 230, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::dragMoveEvent(x1); }}
- void dropEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::dropEvent(x1); }}
+ bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::isObscuredBy(x1); } return ret; }
+ QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 269, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::opaqueArea(); } return ret; }
+ void advance(int x1) { quint64 id = LObjects::override_id(unique, 426); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 426, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::advance(x1); }}
+ QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 260, 0, id).value(); } return ret; }
+ bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 427); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 427, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::collidesWithItem(x1, x2); } return ret; }
+ bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 428); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 428, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::collidesWithPath(x1, x2); } return ret; }
+ bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 267); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 267, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::contains(x1); } return ret; }
+ void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); }}
+ QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::shape(); } return ret; }
+ int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::type(); } return ret; }
+ void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 234, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::contextMenuEvent(x1); }}
+ void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::dragEnterEvent(x1); }}
+ void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 236, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::dragLeaveEvent(x1); }}
+ void dragMoveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 237); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 237, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::dragMoveEvent(x1); }}
+ void dropEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 238); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 238, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::dropEvent(x1); }}
void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::focusInEvent(x1); }}
void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::focusOutEvent(x1); }}
- void hoverEnterEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 233, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::hoverEnterEvent(x1); }}
- void hoverLeaveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 234, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::hoverLeaveEvent(x1); }}
- void hoverMoveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::hoverMoveEvent(x1); }}
+ void hoverEnterEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 240); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 240, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::hoverEnterEvent(x1); }}
+ void hoverLeaveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 241); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 241, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::hoverLeaveEvent(x1); }}
+ void hoverMoveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 242); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 242, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::hoverMoveEvent(x1); }}
void inputMethodEvent(QInputMethodEvent* x1) { quint64 id = LObjects::override_id(unique, 36); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 36, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::inputMethodEvent(x1); }}
QVariant inputMethodQuery(Qt::InputMethodQuery x1) const { quint64 id = LObjects::override_id(unique, 23); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 23, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::inputMethodQuery(x1); } return ret; }
- QVariant itemChange(GraphicsItemChange x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 236, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::itemChange(x1, x2); } return ret; }
+ QVariant itemChange(GraphicsItemChange x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 243); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 243, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::itemChange(x1, x2); } return ret; }
void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::keyPressEvent(x1); }}
void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::keyReleaseEvent(x1); }}
- void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 237); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 237, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::mouseDoubleClickEvent(x1); }}
- void mouseMoveEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 238); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 238, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::mouseMoveEvent(x1); }}
- void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 239); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 239, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::mousePressEvent(x1); }}
- void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 240); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 240, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::mouseReleaseEvent(x1); }}
- bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 255); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 255, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::sceneEvent(x1); } return ret; }
- bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 409); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 409, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::sceneEventFilter(x1, x2); } return ret; }
- void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 244); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 244, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::wheelEvent(x1); }}
+ void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 244); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 244, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::mouseDoubleClickEvent(x1); }}
+ void mouseMoveEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 245); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 245, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::mouseMoveEvent(x1); }}
+ void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 246); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 246, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::mousePressEvent(x1); }}
+ void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::mouseReleaseEvent(x1); }}
+ bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 262, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::sceneEvent(x1); } return ret; }
+ bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 429); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 429, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::sceneEventFilter(x1, x2); } return ret; }
+ void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 251); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 251, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::wheelEvent(x1); }}
};
class LAccessible : public QAccessible {
@@ -69,7 +69,7 @@ public:
static NumList overrideIds;
uint unique;
- QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 410); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 410, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleEvent::accessibleInterface(); } return ret; }
+ QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 430); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 430, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleEvent::accessibleInterface(); } return ret; }
};
class LAccessibleWidget : public QAccessibleWidget {
@@ -80,24 +80,24 @@ public:
static NumList overrideIds;
uint unique;
- QStringList actionNames() const { quint64 id = LObjects::override_id(unique, 411); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 411, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::actionNames(); } return ret; }
- QColor backgroundColor() const { quint64 id = LObjects::override_id(unique, 412); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 412, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::backgroundColor(); } return ret; }
- QAccessibleInterface* child(int x1) const { quint64 id = LObjects::override_id(unique, 413); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 413, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::child(x1); } return ret; }
- int childCount() const { quint64 id = LObjects::override_id(unique, 414); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 414, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::childCount(); } return ret; }
- void doAction(const QString& x1) { quint64 id = LObjects::override_id(unique, 415); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 415, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAccessibleWidget::doAction(x1); }}
- QAccessibleInterface* focusChild() const { quint64 id = LObjects::override_id(unique, 416); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 416, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::focusChild(); } return ret; }
- QColor foregroundColor() const { quint64 id = LObjects::override_id(unique, 417); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 417, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::foregroundColor(); } return ret; }
- int indexOfChild(const QAccessibleInterface* x1) const { quint64 id = LObjects::override_id(unique, 418); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 418, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::indexOfChild(x1); } return ret; }
- bool isValid() const { quint64 id = LObjects::override_id(unique, 419); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 419, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::isValid(); } return ret; }
- QStringList keyBindingsForAction(const QString& x1) const { quint64 id = LObjects::override_id(unique, 420); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 420, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::keyBindingsForAction(x1); } return ret; }
- QAccessibleInterface* parent() const { quint64 id = LObjects::override_id(unique, 421); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 421, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::parent(); } return ret; }
- QRect rect() const { quint64 id = LObjects::override_id(unique, 422); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 422, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::rect(); } return ret; }
- QAccessible::Role role() const { quint64 id = LObjects::override_id(unique, 423); void* fun = LObjects::overrideFun(id); QAccessible::Role ret = (QAccessible::Role)0; if(fun && (LObjects::calling != id)) { ret = (QAccessible::Role)callOverrideFun(fun, 423, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::role(); } return ret; }
- QString text(QAccessible::Text x1) const { quint64 id = LObjects::override_id(unique, 424); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 424, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::text(x1); } return ret; }
- QWindow* window() const { quint64 id = LObjects::override_id(unique, 425); void* fun = LObjects::overrideFun(id); QWindow* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWindow*)callOverrideFun(fun, 425, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::window(); } return ret; }
- QAccessibleInterface* childAt(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 426); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 426, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::childAt(x1, x2); } return ret; }
- QObject* object() const { quint64 id = LObjects::override_id(unique, 427); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 427, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::object(); } return ret; }
- void setText(QAccessible::Text x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 428); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 428, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAccessibleWidget::setText(x1, x2); }}
+ QStringList actionNames() const { quint64 id = LObjects::override_id(unique, 431); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 431, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::actionNames(); } return ret; }
+ QColor backgroundColor() const { quint64 id = LObjects::override_id(unique, 432); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 432, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::backgroundColor(); } return ret; }
+ QAccessibleInterface* child(int x1) const { quint64 id = LObjects::override_id(unique, 433); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 433, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::child(x1); } return ret; }
+ int childCount() const { quint64 id = LObjects::override_id(unique, 434); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 434, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::childCount(); } return ret; }
+ void doAction(const QString& x1) { quint64 id = LObjects::override_id(unique, 435); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 435, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAccessibleWidget::doAction(x1); }}
+ QAccessibleInterface* focusChild() const { quint64 id = LObjects::override_id(unique, 436); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 436, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::focusChild(); } return ret; }
+ QColor foregroundColor() const { quint64 id = LObjects::override_id(unique, 437); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 437, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::foregroundColor(); } return ret; }
+ int indexOfChild(const QAccessibleInterface* x1) const { quint64 id = LObjects::override_id(unique, 438); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 438, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::indexOfChild(x1); } return ret; }
+ bool isValid() const { quint64 id = LObjects::override_id(unique, 439); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 439, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::isValid(); } return ret; }
+ QStringList keyBindingsForAction(const QString& x1) const { quint64 id = LObjects::override_id(unique, 440); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 440, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::keyBindingsForAction(x1); } return ret; }
+ QAccessibleInterface* parent() const { quint64 id = LObjects::override_id(unique, 441); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 441, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::parent(); } return ret; }
+ QRect rect() const { quint64 id = LObjects::override_id(unique, 442); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 442, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::rect(); } return ret; }
+ QAccessible::Role role() const { quint64 id = LObjects::override_id(unique, 443); void* fun = LObjects::overrideFun(id); QAccessible::Role ret = (QAccessible::Role)0; if(fun && (LObjects::calling != id)) { ret = (QAccessible::Role)callOverrideFun(fun, 443, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::role(); } return ret; }
+ QString text(QAccessible::Text x1) const { quint64 id = LObjects::override_id(unique, 444); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 444, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::text(x1); } return ret; }
+ QWindow* window() const { quint64 id = LObjects::override_id(unique, 445); void* fun = LObjects::overrideFun(id); QWindow* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWindow*)callOverrideFun(fun, 445, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::window(); } return ret; }
+ QAccessibleInterface* childAt(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 446); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 446, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::childAt(x1, x2); } return ret; }
+ QObject* object() const { quint64 id = LObjects::override_id(unique, 447); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 447, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::object(); } return ret; }
+ void setText(QAccessible::Text x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 448); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 448, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAccessibleWidget::setText(x1, x2); }}
};
class LActionEvent : public QActionEvent {
@@ -110,7 +110,7 @@ public:
};
class LBasicTimer : public QBasicTimer {
- friend class N9;
+ friend class N12;
public:
LBasicTimer(uint u) : unique(u) {}
@@ -119,7 +119,7 @@ public:
};
class LBitArray : public QBitArray {
- friend class N10;
+ friend class N13;
public:
LBitArray(uint u) : unique(u) {}
LBitArray(uint u, int x1, bool x2 = false) : QBitArray(x1, x2), unique(u) {}
@@ -130,7 +130,7 @@ public:
};
class LBitmap : public QBitmap {
- friend class N11;
+ friend class N14;
public:
LBitmap(uint u) : unique(u) {}
LBitmap(uint u, const QPixmap& x1) : QBitmap(x1), unique(u) {}
@@ -143,7 +143,7 @@ public:
};
class LBrush : public QBrush {
- friend class N12;
+ friend class N15;
public:
LBrush(uint u) : unique(u) {}
LBrush(uint u, Qt::BrushStyle x1) : QBrush(x1), unique(u) {}
@@ -161,7 +161,7 @@ public:
};
class LChildEvent : public QChildEvent {
- friend class N13;
+ friend class N18;
public:
LChildEvent(uint u, Type x1, QObject* x2) : QChildEvent(x1, x2), unique(u) {}
@@ -170,7 +170,7 @@ public:
};
class LCloseEvent : public QCloseEvent {
- friend class N14;
+ friend class N19;
public:
LCloseEvent(uint u) : unique(u) {}
@@ -179,7 +179,7 @@ public:
};
class LColor : public QColor {
- friend class N15;
+ friend class N20;
public:
LColor(uint u) : unique(u) {}
LColor(uint u, int x1, int x2, int x3, int x4 = 255) : QColor(x1, x2, x3, x4), unique(u) {}
@@ -194,7 +194,7 @@ public:
};
class LConicalGradient : public QConicalGradient {
- friend class N16;
+ friend class N21;
public:
LConicalGradient(uint u) : unique(u) {}
LConicalGradient(uint u, const QPointF& x1, qreal x2) : QConicalGradient(x1, x2), unique(u) {}
@@ -205,7 +205,7 @@ public:
};
class LContextMenuEvent : public QContextMenuEvent {
- friend class N17;
+ friend class N22;
public:
LContextMenuEvent(uint u, Reason x1, const QPoint& x2, const QPoint& x3, Qt::KeyboardModifiers x4) : QContextMenuEvent(x1, x2, x3, x4), unique(u) {}
LContextMenuEvent(uint u, Reason x1, const QPoint& x2, const QPoint& x3) : QContextMenuEvent(x1, x2, x3), unique(u) {}
@@ -216,7 +216,7 @@ public:
};
class LCryptographicHash : public QCryptographicHash {
- friend class N18;
+ friend class N23;
public:
LCryptographicHash(uint u, Algorithm x1) : QCryptographicHash(x1), unique(u) {}
@@ -225,7 +225,7 @@ public:
};
class LCursor : public QCursor {
- friend class N19;
+ friend class N24;
public:
LCursor(uint u) : unique(u) {}
LCursor(uint u, Qt::CursorShape x1) : QCursor(x1), unique(u) {}
@@ -238,7 +238,7 @@ public:
};
class LDate : public QDate {
- friend class N20;
+ friend class N25;
public:
LDate(uint u) : unique(u) {}
LDate(uint u, int x1, int x2, int x3) : QDate(x1, x2, x3), unique(u) {}
@@ -248,7 +248,7 @@ public:
};
class LDateTime : public QDateTime {
- friend class N21;
+ friend class N26;
public:
LDateTime(uint u) : unique(u) {}
LDateTime(uint u, const QDate& x1) : QDateTime(x1), unique(u) {}
@@ -262,7 +262,7 @@ public:
};
class LDir : public QDir {
- friend class N23;
+ friend class N28;
public:
LDir(uint u, const QDir& x1) : QDir(x1), unique(u) {}
LDir(uint u, const QString& x1 = QString()) : QDir(x1), unique(u) {}
@@ -273,7 +273,7 @@ public:
};
class LDirIterator : public QDirIterator {
- friend class N24;
+ friend class N29;
public:
LDirIterator(uint u, const QDir& x1, IteratorFlags x2 = NoIteratorFlags) : QDirIterator(x1, x2), unique(u) {}
LDirIterator(uint u, const QString& x1, IteratorFlags x2 = NoIteratorFlags) : QDirIterator(x1, x2), unique(u) {}
@@ -285,7 +285,7 @@ public:
};
class LDragEnterEvent : public QDragEnterEvent {
- friend class N25;
+ friend class N30;
public:
LDragEnterEvent(uint u, const QPoint& x1, Qt::DropActions x2, const QMimeData* x3, Qt::MouseButtons x4, Qt::KeyboardModifiers x5) : QDragEnterEvent(x1, x2, x3, x4, x5), unique(u) {}
@@ -294,7 +294,7 @@ public:
};
class LDragLeaveEvent : public QDragLeaveEvent {
- friend class N26;
+ friend class N31;
public:
LDragLeaveEvent(uint u) : unique(u) {}
@@ -303,7 +303,7 @@ public:
};
class LDragMoveEvent : public QDragMoveEvent {
- friend class N27;
+ friend class N32;
public:
LDragMoveEvent(uint u, const QPoint& x1, Qt::DropActions x2, const QMimeData* x3, Qt::MouseButtons x4, Qt::KeyboardModifiers x5, Type x6 = DragMove) : QDragMoveEvent(x1, x2, x3, x4, x5, x6), unique(u) {}
@@ -312,7 +312,7 @@ public:
};
class LDropEvent : public QDropEvent {
- friend class N28;
+ friend class N33;
public:
LDropEvent(uint u, const QPointF& x1, Qt::DropActions x2, const QMimeData* x3, Qt::MouseButtons x4, Qt::KeyboardModifiers x5, Type x6 = Drop) : QDropEvent(x1, x2, x3, x4, x5, x6), unique(u) {}
@@ -321,7 +321,7 @@ public:
};
class LDynamicPropertyChangeEvent : public QDynamicPropertyChangeEvent {
- friend class N29;
+ friend class N34;
public:
LDynamicPropertyChangeEvent(uint u, const QByteArray& x1) : QDynamicPropertyChangeEvent(x1), unique(u) {}
@@ -330,7 +330,7 @@ public:
};
class LEasingCurve : public QEasingCurve {
- friend class N30;
+ friend class N35;
public:
LEasingCurve(uint u, Type x1 = Linear) : QEasingCurve(x1), unique(u) {}
LEasingCurve(uint u, const QEasingCurve& x1) : QEasingCurve(x1), unique(u) {}
@@ -340,7 +340,7 @@ public:
};
class LEvent : public QEvent {
- friend class N31;
+ friend class N36;
public:
LEvent(uint u, Type x1) : QEvent(x1), unique(u) {}
@@ -349,19 +349,19 @@ public:
};
class LFileIconProvider : public QFileIconProvider {
- friend class N32;
+ friend class N37;
public:
LFileIconProvider(uint u) : unique(u) {}
static NumList overrideIds;
uint unique;
- QIcon icon(IconType x1) const { quint64 id = LObjects::override_id(unique, 429); void* fun = LObjects::overrideFun(id); QIcon ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 429, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QFileIconProvider::icon(x1); } return ret; }
- QString type(const QFileInfo& x1) const { quint64 id = LObjects::override_id(unique, 431); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 431, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QFileIconProvider::type(x1); } return ret; }
+ QIcon icon(IconType x1) const { quint64 id = LObjects::override_id(unique, 449); void* fun = LObjects::overrideFun(id); QIcon ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 449, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QFileIconProvider::icon(x1); } return ret; }
+ QString type(const QFileInfo& x1) const { quint64 id = LObjects::override_id(unique, 451); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 451, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QFileIconProvider::type(x1); } return ret; }
};
class LFileInfo : public QFileInfo {
- friend class N33;
+ friend class N38;
public:
LFileInfo(uint u) : unique(u) {}
LFileInfo(uint u, const QString& x1) : QFileInfo(x1), unique(u) {}
@@ -374,7 +374,7 @@ public:
};
class LFileOpenEvent : public QFileOpenEvent {
- friend class N34;
+ friend class N39;
public:
static NumList overrideIds;
@@ -382,7 +382,7 @@ public:
};
class LFocusEvent : public QFocusEvent {
- friend class N35;
+ friend class N40;
public:
LFocusEvent(uint u, Type x1, Qt::FocusReason x2 = Qt::OtherFocusReason) : QFocusEvent(x1, x2), unique(u) {}
@@ -391,7 +391,7 @@ public:
};
class LFont : public QFont {
- friend class N36;
+ friend class N41;
public:
LFont(uint u) : unique(u) {}
LFont(uint u, const QString& x1, int x2 = -1, int x3 = -1, bool x4 = false) : QFont(x1, x2, x3, x4), unique(u) {}
@@ -403,7 +403,7 @@ public:
};
class LFontDatabase : public QFontDatabase {
- friend class N37;
+ friend class N42;
public:
LFontDatabase(uint u) : unique(u) {}
@@ -412,7 +412,7 @@ public:
};
class LFontInfo : public QFontInfo {
- friend class N38;
+ friend class N43;
public:
LFontInfo(uint u, const QFont& x1) : QFontInfo(x1), unique(u) {}
LFontInfo(uint u, const QFontInfo& x1) : QFontInfo(x1), unique(u) {}
@@ -422,7 +422,7 @@ public:
};
class LFontMetrics : public QFontMetrics {
- friend class N39;
+ friend class N44;
public:
LFontMetrics(uint u, const QFont& x1) : QFontMetrics(x1), unique(u) {}
LFontMetrics(uint u, const QFont& x1, QPaintDevice* x2) : QFontMetrics(x1, x2), unique(u) {}
@@ -433,7 +433,7 @@ public:
};
class LGestureEvent : public QGestureEvent {
- friend class N40;
+ friend class N45;
public:
LGestureEvent(uint u, const QList& x1) : QGestureEvent(x1), unique(u) {}
@@ -442,7 +442,7 @@ public:
};
class LGradient : public QGradient {
- friend class N41;
+ friend class N46;
public:
static NumList overrideIds;
@@ -450,25 +450,25 @@ public:
};
class LGraphicsAnchorLayout : public QGraphicsAnchorLayout {
- friend class N42;
+ friend class N47;
public:
LGraphicsAnchorLayout(uint u, QGraphicsLayoutItem* x1 = 0) : QGraphicsAnchorLayout(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- int count() const { quint64 id = LObjects::override_id(unique, 162); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 162, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsAnchorLayout::count(); } return ret; }
- void invalidate() { quint64 id = LObjects::override_id(unique, 164); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 164, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::invalidate(); }}
- QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 165, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsAnchorLayout::itemAt(x1); } return ret; }
- void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 432); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 432, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::removeAt(x1); }}
- void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 225); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 225, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::setGeometry(x1); }}
- QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 242); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 242, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsAnchorLayout::sizeHint(x1, x2); } return ret; }
- void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 433); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 433, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::widgetEvent(x1); }}
- void updateGeometry() { quint64 id = LObjects::override_id(unique, 256); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 256, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::updateGeometry(); }}
+ int count() const { quint64 id = LObjects::override_id(unique, 163); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 163, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsAnchorLayout::count(); } return ret; }
+ void invalidate() { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 165, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::invalidate(); }}
+ QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 166, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsAnchorLayout::itemAt(x1); } return ret; }
+ void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 452); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 452, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::removeAt(x1); }}
+ void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 232, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::setGeometry(x1); }}
+ QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 249); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 249, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsAnchorLayout::sizeHint(x1, x2); } return ret; }
+ void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 453); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 453, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::widgetEvent(x1); }}
+ void updateGeometry() { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 263, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::updateGeometry(); }}
};
class LGraphicsEllipseItem : public QGraphicsEllipseItem {
- friend class N43;
+ friend class N48;
public:
LGraphicsEllipseItem(uint u, QGraphicsItem* x1 = 0) : QGraphicsEllipseItem(x1), unique(u) {}
LGraphicsEllipseItem(uint u, const QRectF& x1, QGraphicsItem* x2 = 0) : QGraphicsEllipseItem(x1, x2), unique(u) {}
@@ -477,150 +477,150 @@ public:
static NumList overrideIds;
uint unique;
- QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 253); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 253, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsEllipseItem::boundingRect(); } return ret; }
- bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 260, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsEllipseItem::contains(x1); } return ret; }
- bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 261, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsEllipseItem::isObscuredBy(x1); } return ret; }
- QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsEllipseItem::opaqueArea(); } return ret; }
- void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 224); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 224, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsEllipseItem::paint(x1, x2, x3); }}
- QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 254); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 254, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsEllipseItem::shape(); } return ret; }
- int type() const { quint64 id = LObjects::override_id(unique, 226); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 226, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsEllipseItem::type(); } return ret; }
+ QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 260, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsEllipseItem::boundingRect(); } return ret; }
+ bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 267); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 267, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsEllipseItem::contains(x1); } return ret; }
+ bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsEllipseItem::isObscuredBy(x1); } return ret; }
+ QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 269, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsEllipseItem::opaqueArea(); } return ret; }
+ void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsEllipseItem::paint(x1, x2, x3); }}
+ QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsEllipseItem::shape(); } return ret; }
+ int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsEllipseItem::type(); } return ret; }
};
class LGraphicsGridLayout : public QGraphicsGridLayout {
- friend class N44;
+ friend class N49;
public:
LGraphicsGridLayout(uint u, QGraphicsLayoutItem* x1 = 0) : QGraphicsGridLayout(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- int count() const { quint64 id = LObjects::override_id(unique, 162); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 162, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsGridLayout::count(); } return ret; }
- void invalidate() { quint64 id = LObjects::override_id(unique, 164); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 164, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::invalidate(); }}
- QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 165, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsGridLayout::itemAt(x1); } return ret; }
- void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 432); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 432, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::removeAt(x1); }}
- void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 225); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 225, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::setGeometry(x1); }}
- QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 242); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 242, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsGridLayout::sizeHint(x1, x2); } return ret; }
- void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 433); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 433, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::widgetEvent(x1); }}
- void updateGeometry() { quint64 id = LObjects::override_id(unique, 256); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 256, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::updateGeometry(); }}
+ int count() const { quint64 id = LObjects::override_id(unique, 163); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 163, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsGridLayout::count(); } return ret; }
+ void invalidate() { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 165, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::invalidate(); }}
+ QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 166, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsGridLayout::itemAt(x1); } return ret; }
+ void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 452); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 452, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::removeAt(x1); }}
+ void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 232, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::setGeometry(x1); }}
+ QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 249); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 249, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsGridLayout::sizeHint(x1, x2); } return ret; }
+ void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 453); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 453, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::widgetEvent(x1); }}
+ void updateGeometry() { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 263, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::updateGeometry(); }}
};
class LGraphicsItem : public QGraphicsItem {
- friend class N45;
+ friend class N50;
public:
LGraphicsItem(uint u, QGraphicsItem* x1 = 0) : QGraphicsItem(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- void advance(int x1) { quint64 id = LObjects::override_id(unique, 406); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 406, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::advance(x1); }}
- QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 253); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 253, 0, id).value(); } return ret; }
- bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 407); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 407, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::collidesWithItem(x1, x2); } return ret; }
- bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 408); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 408, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::collidesWithPath(x1, x2); } return ret; }
- bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 260, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::contains(x1); } return ret; }
- bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 261, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::isObscuredBy(x1); } return ret; }
- QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::opaqueArea(); } return ret; }
- void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 224); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 224, args, id); }}
- QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 254); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 254, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::shape(); } return ret; }
- int type() const { quint64 id = LObjects::override_id(unique, 226); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 226, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::type(); } return ret; }
- void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 227); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 227, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::contextMenuEvent(x1); }}
- void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 228); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 228, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::dragEnterEvent(x1); }}
- void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 229); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 229, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::dragLeaveEvent(x1); }}
- void dragMoveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 230); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 230, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::dragMoveEvent(x1); }}
- void dropEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::dropEvent(x1); }}
+ void advance(int x1) { quint64 id = LObjects::override_id(unique, 426); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 426, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::advance(x1); }}
+ QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 260, 0, id).value(); } return ret; }
+ bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 427); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 427, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::collidesWithItem(x1, x2); } return ret; }
+ bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 428); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 428, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::collidesWithPath(x1, x2); } return ret; }
+ bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 267); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 267, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::contains(x1); } return ret; }
+ bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::isObscuredBy(x1); } return ret; }
+ QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 269, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::opaqueArea(); } return ret; }
+ void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); }}
+ QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::shape(); } return ret; }
+ int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::type(); } return ret; }
+ void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 234, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::contextMenuEvent(x1); }}
+ void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::dragEnterEvent(x1); }}
+ void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 236, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::dragLeaveEvent(x1); }}
+ void dragMoveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 237); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 237, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::dragMoveEvent(x1); }}
+ void dropEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 238); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 238, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::dropEvent(x1); }}
void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::focusInEvent(x1); }}
void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::focusOutEvent(x1); }}
- void hoverEnterEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 233, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::hoverEnterEvent(x1); }}
- void hoverLeaveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 234, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::hoverLeaveEvent(x1); }}
- void hoverMoveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::hoverMoveEvent(x1); }}
+ void hoverEnterEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 240); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 240, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::hoverEnterEvent(x1); }}
+ void hoverLeaveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 241); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 241, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::hoverLeaveEvent(x1); }}
+ void hoverMoveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 242); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 242, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::hoverMoveEvent(x1); }}
void inputMethodEvent(QInputMethodEvent* x1) { quint64 id = LObjects::override_id(unique, 36); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 36, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::inputMethodEvent(x1); }}
QVariant inputMethodQuery(Qt::InputMethodQuery x1) const { quint64 id = LObjects::override_id(unique, 23); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 23, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::inputMethodQuery(x1); } return ret; }
- QVariant itemChange(GraphicsItemChange x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 236, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::itemChange(x1, x2); } return ret; }
+ QVariant itemChange(GraphicsItemChange x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 243); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 243, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::itemChange(x1, x2); } return ret; }
void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::keyPressEvent(x1); }}
void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::keyReleaseEvent(x1); }}
- void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 237); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 237, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::mouseDoubleClickEvent(x1); }}
- void mouseMoveEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 238); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 238, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::mouseMoveEvent(x1); }}
- void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 239); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 239, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::mousePressEvent(x1); }}
- void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 240); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 240, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::mouseReleaseEvent(x1); }}
- bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 255); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 255, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::sceneEvent(x1); } return ret; }
- bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 409); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 409, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::sceneEventFilter(x1, x2); } return ret; }
- void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 244); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 244, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::wheelEvent(x1); }}
+ void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 244); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 244, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::mouseDoubleClickEvent(x1); }}
+ void mouseMoveEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 245); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 245, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::mouseMoveEvent(x1); }}
+ void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 246); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 246, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::mousePressEvent(x1); }}
+ void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::mouseReleaseEvent(x1); }}
+ bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 262, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::sceneEvent(x1); } return ret; }
+ bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 429); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 429, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::sceneEventFilter(x1, x2); } return ret; }
+ void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 251); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 251, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::wheelEvent(x1); }}
};
class LGraphicsItemGroup : public QGraphicsItemGroup {
- friend class N46;
+ friend class N51;
public:
LGraphicsItemGroup(uint u, QGraphicsItem* x1 = 0) : QGraphicsItemGroup(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 253); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 253, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::boundingRect(); } return ret; }
- bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 261, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::isObscuredBy(x1); } return ret; }
- QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::opaqueArea(); } return ret; }
- void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 224); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 224, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::paint(x1, x2, x3); }}
- int type() const { quint64 id = LObjects::override_id(unique, 226); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 226, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::type(); } return ret; }
- void advance(int x1) { quint64 id = LObjects::override_id(unique, 406); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 406, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::advance(x1); }}
- bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 407); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 407, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::collidesWithItem(x1, x2); } return ret; }
- bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 408); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 408, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::collidesWithPath(x1, x2); } return ret; }
- bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 260, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::contains(x1); } return ret; }
- QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 254); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 254, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::shape(); } return ret; }
- void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 227); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 227, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::contextMenuEvent(x1); }}
- void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 228); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 228, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::dragEnterEvent(x1); }}
- void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 229); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 229, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::dragLeaveEvent(x1); }}
- void dragMoveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 230); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 230, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::dragMoveEvent(x1); }}
- void dropEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::dropEvent(x1); }}
+ QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 260, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::boundingRect(); } return ret; }
+ bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::isObscuredBy(x1); } return ret; }
+ QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 269, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::opaqueArea(); } return ret; }
+ void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::paint(x1, x2, x3); }}
+ int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::type(); } return ret; }
+ void advance(int x1) { quint64 id = LObjects::override_id(unique, 426); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 426, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::advance(x1); }}
+ bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 427); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 427, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::collidesWithItem(x1, x2); } return ret; }
+ bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 428); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 428, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::collidesWithPath(x1, x2); } return ret; }
+ bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 267); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 267, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::contains(x1); } return ret; }
+ QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::shape(); } return ret; }
+ void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 234, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::contextMenuEvent(x1); }}
+ void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::dragEnterEvent(x1); }}
+ void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 236, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::dragLeaveEvent(x1); }}
+ void dragMoveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 237); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 237, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::dragMoveEvent(x1); }}
+ void dropEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 238); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 238, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::dropEvent(x1); }}
void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::focusInEvent(x1); }}
void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::focusOutEvent(x1); }}
- void hoverEnterEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 233, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::hoverEnterEvent(x1); }}
- void hoverLeaveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 234, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::hoverLeaveEvent(x1); }}
- void hoverMoveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::hoverMoveEvent(x1); }}
+ void hoverEnterEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 240); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 240, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::hoverEnterEvent(x1); }}
+ void hoverLeaveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 241); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 241, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::hoverLeaveEvent(x1); }}
+ void hoverMoveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 242); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 242, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::hoverMoveEvent(x1); }}
void inputMethodEvent(QInputMethodEvent* x1) { quint64 id = LObjects::override_id(unique, 36); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 36, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::inputMethodEvent(x1); }}
QVariant inputMethodQuery(Qt::InputMethodQuery x1) const { quint64 id = LObjects::override_id(unique, 23); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 23, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::inputMethodQuery(x1); } return ret; }
- QVariant itemChange(GraphicsItemChange x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 236, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::itemChange(x1, x2); } return ret; }
+ QVariant itemChange(GraphicsItemChange x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 243); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 243, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::itemChange(x1, x2); } return ret; }
void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::keyPressEvent(x1); }}
void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::keyReleaseEvent(x1); }}
- void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 237); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 237, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::mouseDoubleClickEvent(x1); }}
- void mouseMoveEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 238); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 238, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::mouseMoveEvent(x1); }}
- void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 239); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 239, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::mousePressEvent(x1); }}
- void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 240); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 240, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::mouseReleaseEvent(x1); }}
- bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 255); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 255, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::sceneEvent(x1); } return ret; }
- bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 409); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 409, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::sceneEventFilter(x1, x2); } return ret; }
- void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 244); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 244, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::wheelEvent(x1); }}
+ void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 244); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 244, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::mouseDoubleClickEvent(x1); }}
+ void mouseMoveEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 245); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 245, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::mouseMoveEvent(x1); }}
+ void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 246); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 246, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::mousePressEvent(x1); }}
+ void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::mouseReleaseEvent(x1); }}
+ bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 262, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::sceneEvent(x1); } return ret; }
+ bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 429); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 429, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::sceneEventFilter(x1, x2); } return ret; }
+ void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 251); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 251, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::wheelEvent(x1); }}
};
class LGraphicsLayout : public QGraphicsLayout {
- friend class N47;
+ friend class N52;
public:
LGraphicsLayout(uint u, QGraphicsLayoutItem* x1 = 0) : QGraphicsLayout(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- int count() const { quint64 id = LObjects::override_id(unique, 162); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 162, 0, id).toInt(); } return ret; }
- void invalidate() { quint64 id = LObjects::override_id(unique, 164); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 164, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::invalidate(); }}
- QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 165, args, id).value(); } return ret; }
- void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 432); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 432, args, id); }}
- void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 433); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 433, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::widgetEvent(x1); }}
- void updateGeometry() { quint64 id = LObjects::override_id(unique, 256); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 256, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::updateGeometry(); }}
- void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 225); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 225, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::setGeometry(x1); }}
- QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 242); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 242, args, id).value(); } return ret; }
+ int count() const { quint64 id = LObjects::override_id(unique, 163); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 163, 0, id).toInt(); } return ret; }
+ void invalidate() { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 165, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::invalidate(); }}
+ QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 166, args, id).value(); } return ret; }
+ void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 452); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 452, args, id); }}
+ void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 453); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 453, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::widgetEvent(x1); }}
+ void updateGeometry() { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 263, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::updateGeometry(); }}
+ void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 232, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::setGeometry(x1); }}
+ QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 249); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 249, args, id).value(); } return ret; }
};
class LGraphicsLayoutItem : public QGraphicsLayoutItem {
- friend class N48;
+ friend class N53;
public:
LGraphicsLayoutItem(uint u, QGraphicsLayoutItem* x1 = 0, bool x2 = false) : QGraphicsLayoutItem(x1, x2), unique(u) {}
static NumList overrideIds;
uint unique;
- void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 225); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 225, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayoutItem::setGeometry(x1); }}
- void updateGeometry() { quint64 id = LObjects::override_id(unique, 256); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 256, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayoutItem::updateGeometry(); }}
- QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 242); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 242, args, id).value(); } return ret; }
+ void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 232, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayoutItem::setGeometry(x1); }}
+ void updateGeometry() { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 263, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayoutItem::updateGeometry(); }}
+ QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 249); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 249, args, id).value(); } return ret; }
};
class LGraphicsLineItem : public QGraphicsLineItem {
- friend class N49;
+ friend class N54;
public:
LGraphicsLineItem(uint u, QGraphicsItem* x1 = 0) : QGraphicsLineItem(x1), unique(u) {}
LGraphicsLineItem(uint u, const QLineF& x1, QGraphicsItem* x2 = 0) : QGraphicsLineItem(x1, x2), unique(u) {}
@@ -629,42 +629,42 @@ public:
static NumList overrideIds;
uint unique;
- QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 253); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 253, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::boundingRect(); } return ret; }
- bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 260, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::contains(x1); } return ret; }
- bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 261, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::isObscuredBy(x1); } return ret; }
- QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::opaqueArea(); } return ret; }
- void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 224); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 224, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::paint(x1, x2, x3); }}
- QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 254); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 254, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::shape(); } return ret; }
- int type() const { quint64 id = LObjects::override_id(unique, 226); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 226, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::type(); } return ret; }
- void advance(int x1) { quint64 id = LObjects::override_id(unique, 406); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 406, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::advance(x1); }}
- bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 407); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 407, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::collidesWithItem(x1, x2); } return ret; }
- bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 408); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 408, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::collidesWithPath(x1, x2); } return ret; }
- void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 227); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 227, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::contextMenuEvent(x1); }}
- void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 228); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 228, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::dragEnterEvent(x1); }}
- void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 229); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 229, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::dragLeaveEvent(x1); }}
- void dragMoveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 230); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 230, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::dragMoveEvent(x1); }}
- void dropEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::dropEvent(x1); }}
+ QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 260, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::boundingRect(); } return ret; }
+ bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 267); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 267, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::contains(x1); } return ret; }
+ bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::isObscuredBy(x1); } return ret; }
+ QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 269, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::opaqueArea(); } return ret; }
+ void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::paint(x1, x2, x3); }}
+ QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::shape(); } return ret; }
+ int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::type(); } return ret; }
+ void advance(int x1) { quint64 id = LObjects::override_id(unique, 426); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 426, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::advance(x1); }}
+ bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 427); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 427, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::collidesWithItem(x1, x2); } return ret; }
+ bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 428); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 428, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::collidesWithPath(x1, x2); } return ret; }
+ void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 234, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::contextMenuEvent(x1); }}
+ void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::dragEnterEvent(x1); }}
+ void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 236, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::dragLeaveEvent(x1); }}
+ void dragMoveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 237); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 237, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::dragMoveEvent(x1); }}
+ void dropEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 238); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 238, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::dropEvent(x1); }}
void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::focusInEvent(x1); }}
void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::focusOutEvent(x1); }}
- void hoverEnterEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 233, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::hoverEnterEvent(x1); }}
- void hoverLeaveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 234, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::hoverLeaveEvent(x1); }}
- void hoverMoveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::hoverMoveEvent(x1); }}
+ void hoverEnterEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 240); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 240, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::hoverEnterEvent(x1); }}
+ void hoverLeaveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 241); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 241, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::hoverLeaveEvent(x1); }}
+ void hoverMoveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 242); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 242, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::hoverMoveEvent(x1); }}
void inputMethodEvent(QInputMethodEvent* x1) { quint64 id = LObjects::override_id(unique, 36); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 36, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::inputMethodEvent(x1); }}
QVariant inputMethodQuery(Qt::InputMethodQuery x1) const { quint64 id = LObjects::override_id(unique, 23); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 23, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::inputMethodQuery(x1); } return ret; }
- QVariant itemChange(GraphicsItemChange x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 236, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::itemChange(x1, x2); } return ret; }
+ QVariant itemChange(GraphicsItemChange x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 243); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 243, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::itemChange(x1, x2); } return ret; }
void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::keyPressEvent(x1); }}
void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::keyReleaseEvent(x1); }}
- void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 237); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 237, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::mouseDoubleClickEvent(x1); }}
- void mouseMoveEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 238); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 238, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::mouseMoveEvent(x1); }}
- void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 239); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 239, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::mousePressEvent(x1); }}
- void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 240); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 240, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::mouseReleaseEvent(x1); }}
- bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 255); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 255, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::sceneEvent(x1); } return ret; }
- bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 409); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 409, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::sceneEventFilter(x1, x2); } return ret; }
- void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 244); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 244, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::wheelEvent(x1); }}
+ void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 244); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 244, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::mouseDoubleClickEvent(x1); }}
+ void mouseMoveEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 245); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 245, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::mouseMoveEvent(x1); }}
+ void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 246); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 246, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::mousePressEvent(x1); }}
+ void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::mouseReleaseEvent(x1); }}
+ bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 262, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::sceneEvent(x1); } return ret; }
+ bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 429); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 429, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::sceneEventFilter(x1, x2); } return ret; }
+ void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 251); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 251, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::wheelEvent(x1); }}
};
class LGraphicsLinearLayout : public QGraphicsLinearLayout {
- friend class N50;
+ friend class N55;
public:
LGraphicsLinearLayout(uint u, QGraphicsLayoutItem* x1 = 0) : QGraphicsLinearLayout(x1), unique(u) {}
LGraphicsLinearLayout(uint u, Qt::Orientation x1, QGraphicsLayoutItem* x2 = 0) : QGraphicsLinearLayout(x1, x2), unique(u) {}
@@ -672,18 +672,18 @@ public:
static NumList overrideIds;
uint unique;
- int count() const { quint64 id = LObjects::override_id(unique, 162); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 162, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLinearLayout::count(); } return ret; }
- void invalidate() { quint64 id = LObjects::override_id(unique, 164); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 164, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::invalidate(); }}
- QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 165, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLinearLayout::itemAt(x1); } return ret; }
- void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 432); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 432, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::removeAt(x1); }}
- void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 225); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 225, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::setGeometry(x1); }}
- QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 242); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 242, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLinearLayout::sizeHint(x1, x2); } return ret; }
- void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 433); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 433, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::widgetEvent(x1); }}
- void updateGeometry() { quint64 id = LObjects::override_id(unique, 256); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 256, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::updateGeometry(); }}
+ int count() const { quint64 id = LObjects::override_id(unique, 163); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 163, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLinearLayout::count(); } return ret; }
+ void invalidate() { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 165, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::invalidate(); }}
+ QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 166, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLinearLayout::itemAt(x1); } return ret; }
+ void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 452); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 452, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::removeAt(x1); }}
+ void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 232, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::setGeometry(x1); }}
+ QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 249); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 249, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLinearLayout::sizeHint(x1, x2); } return ret; }
+ void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 453); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 453, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::widgetEvent(x1); }}
+ void updateGeometry() { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 263, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::updateGeometry(); }}
};
class LGraphicsPathItem : public QGraphicsPathItem {
- friend class N51;
+ friend class N56;
public:
LGraphicsPathItem(uint u, QGraphicsItem* x1 = 0) : QGraphicsPathItem(x1), unique(u) {}
LGraphicsPathItem(uint u, const QPainterPath& x1, QGraphicsItem* x2 = 0) : QGraphicsPathItem(x1, x2), unique(u) {}
@@ -691,17 +691,17 @@ public:
static NumList overrideIds;
uint unique;
- QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 253); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 253, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPathItem::boundingRect(); } return ret; }
- bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 260, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPathItem::contains(x1); } return ret; }
- bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 261, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPathItem::isObscuredBy(x1); } return ret; }
- QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPathItem::opaqueArea(); } return ret; }
- void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 224); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 224, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPathItem::paint(x1, x2, x3); }}
- QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 254); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 254, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPathItem::shape(); } return ret; }
- int type() const { quint64 id = LObjects::override_id(unique, 226); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 226, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPathItem::type(); } return ret; }
+ QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 260, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPathItem::boundingRect(); } return ret; }
+ bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 267); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 267, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPathItem::contains(x1); } return ret; }
+ bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPathItem::isObscuredBy(x1); } return ret; }
+ QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 269, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPathItem::opaqueArea(); } return ret; }
+ void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPathItem::paint(x1, x2, x3); }}
+ QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPathItem::shape(); } return ret; }
+ int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPathItem::type(); } return ret; }
};
class LGraphicsPixmapItem : public QGraphicsPixmapItem {
- friend class N52;
+ friend class N57;
public:
LGraphicsPixmapItem(uint u, QGraphicsItem* x1 = 0) : QGraphicsPixmapItem(x1), unique(u) {}
LGraphicsPixmapItem(uint u, const QPixmap& x1, QGraphicsItem* x2 = 0) : QGraphicsPixmapItem(x1, x2), unique(u) {}
@@ -709,42 +709,42 @@ public:
static NumList overrideIds;
uint unique;
- QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 253); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 253, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::boundingRect(); } return ret; }
- bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 260, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::contains(x1); } return ret; }
- bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 261, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::isObscuredBy(x1); } return ret; }
- QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::opaqueArea(); } return ret; }
- void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3) { quint64 id = LObjects::override_id(unique, 224); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 224, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::paint(x1, x2, x3); }}
- QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 254); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 254, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::shape(); } return ret; }
- int type() const { quint64 id = LObjects::override_id(unique, 226); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 226, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::type(); } return ret; }
- void advance(int x1) { quint64 id = LObjects::override_id(unique, 406); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 406, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::advance(x1); }}
- bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 407); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 407, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::collidesWithItem(x1, x2); } return ret; }
- bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 408); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 408, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::collidesWithPath(x1, x2); } return ret; }
- void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 227); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 227, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::contextMenuEvent(x1); }}
- void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 228); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 228, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::dragEnterEvent(x1); }}
- void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 229); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 229, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::dragLeaveEvent(x1); }}
- void dragMoveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 230); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 230, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::dragMoveEvent(x1); }}
- void dropEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::dropEvent(x1); }}
+ QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 260, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::boundingRect(); } return ret; }
+ bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 267); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 267, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::contains(x1); } return ret; }
+ bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::isObscuredBy(x1); } return ret; }
+ QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 269, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::opaqueArea(); } return ret; }
+ void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::paint(x1, x2, x3); }}
+ QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::shape(); } return ret; }
+ int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::type(); } return ret; }
+ void advance(int x1) { quint64 id = LObjects::override_id(unique, 426); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 426, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::advance(x1); }}
+ bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 427); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 427, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::collidesWithItem(x1, x2); } return ret; }
+ bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 428); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 428, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::collidesWithPath(x1, x2); } return ret; }
+ void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 234, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::contextMenuEvent(x1); }}
+ void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::dragEnterEvent(x1); }}
+ void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 236, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::dragLeaveEvent(x1); }}
+ void dragMoveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 237); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 237, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::dragMoveEvent(x1); }}
+ void dropEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 238); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 238, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::dropEvent(x1); }}
void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::focusInEvent(x1); }}
void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::focusOutEvent(x1); }}
- void hoverEnterEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 233, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::hoverEnterEvent(x1); }}
- void hoverLeaveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 234, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::hoverLeaveEvent(x1); }}
- void hoverMoveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::hoverMoveEvent(x1); }}
+ void hoverEnterEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 240); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 240, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::hoverEnterEvent(x1); }}
+ void hoverLeaveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 241); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 241, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::hoverLeaveEvent(x1); }}
+ void hoverMoveEvent(QGraphicsSceneHoverEvent* x1) { quint64 id = LObjects::override_id(unique, 242); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 242, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::hoverMoveEvent(x1); }}
void inputMethodEvent(QInputMethodEvent* x1) { quint64 id = LObjects::override_id(unique, 36); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 36, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::inputMethodEvent(x1); }}
QVariant inputMethodQuery(Qt::InputMethodQuery x1) const { quint64 id = LObjects::override_id(unique, 23); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 23, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::inputMethodQuery(x1); } return ret; }
- QVariant itemChange(GraphicsItemChange x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 236, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::itemChange(x1, x2); } return ret; }
+ QVariant itemChange(GraphicsItemChange x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 243); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 243, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::itemChange(x1, x2); } return ret; }
void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::keyPressEvent(x1); }}
void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::keyReleaseEvent(x1); }}
- void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 237); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 237, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::mouseDoubleClickEvent(x1); }}
- void mouseMoveEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 238); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 238, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::mouseMoveEvent(x1); }}
- void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 239); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 239, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::mousePressEvent(x1); }}
- void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 240); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 240, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::mouseReleaseEvent(x1); }}
- bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 255); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 255, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::sceneEvent(x1); } return ret; }
- bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 409); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 409, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::sceneEventFilter(x1, x2); } return ret; }
- void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 244); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 244, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::wheelEvent(x1); }}
+ void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 244); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 244, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::mouseDoubleClickEvent(x1); }}
+ void mouseMoveEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 245); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 245, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::mouseMoveEvent(x1); }}
+ void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 246); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 246, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::mousePressEvent(x1); }}
+ void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::mouseReleaseEvent(x1); }}
+ bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 262, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::sceneEvent(x1); } return ret; }
+ bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 429); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 429, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::sceneEventFilter(x1, x2); } return ret; }
+ void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 251); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 251, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::wheelEvent(x1); }}
};
class LGraphicsPolygonItem : public QGraphicsPolygonItem {
- friend class N53;
+ friend class N58;
public:
LGraphicsPolygonItem(uint u, QGraphicsItem* x1 = 0) : QGraphicsPolygonItem(x1), unique(u) {}
LGraphicsPolygonItem(uint u, const QPolygonF& x1, QGraphicsItem* x2 = 0) : QGraphicsPolygonItem(x1, x2), unique(u) {}
@@ -752,17 +752,17 @@ public:
static NumList overrideIds;
uint unique;
- QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 253); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 253, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPolygonItem::boundingRect(); } return ret; }
- bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 260, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPolygonItem::contains(x1); } return ret; }
- bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 261, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPolygonItem::isObscuredBy(x1); } return ret; }
- QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPolygonItem::opaqueArea(); } return ret; }
- void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 224); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 224, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPolygonItem::paint(x1, x2, x3); }}
- QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 254); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 254, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPolygonItem::shape(); } return ret; }
- int type() const { quint64 id = LObjects::override_id(unique, 226); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 226, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPolygonItem::type(); } return ret; }
+ QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 260, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPolygonItem::boundingRect(); } return ret; }
+ bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 267); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 267, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPolygonItem::contains(x1); } return ret; }
+ bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPolygonItem::isObscuredBy(x1); } return ret; }
+ QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 269, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPolygonItem::opaqueArea(); } return ret; }
+ void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPolygonItem::paint(x1, x2, x3); }}
+ QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPolygonItem::shape(); } return ret; }
+ int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPolygonItem::type(); } return ret; }
};
class LGraphicsRectItem : public QGraphicsRectItem {
- friend class N54;
+ friend class N59;
public:
LGraphicsRectItem(uint u, QGraphicsItem* x1 = 0) : QGraphicsRectItem(x1), unique(u) {}
LGraphicsRectItem(uint u, const QRectF& x1, QGraphicsItem* x2 = 0) : QGraphicsRectItem(x1, x2), unique(u) {}
@@ -771,56 +771,16 @@ public:
static NumList overrideIds;
uint unique;
- QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 253); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 253, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsRectItem::boundingRect(); } return ret; }
- bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 260, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsRectItem::contains(x1); } return ret; }
- bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 261, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsRectItem::isObscuredBy(x1); } return ret; }
- QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsRectItem::opaqueArea(); } return ret; }
- void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 224); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 224, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsRectItem::paint(x1, x2, x3); }}
- QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 254); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 254, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsRectItem::shape(); } return ret; }
- int type() const { quint64 id = LObjects::override_id(unique, 226); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 226, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsRectItem::type(); } return ret; }
+ QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 260, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsRectItem::boundingRect(); } return ret; }
+ bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 267); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 267, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsRectItem::contains(x1); } return ret; }
+ bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsRectItem::isObscuredBy(x1); } return ret; }
+ QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 269, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsRectItem::opaqueArea(); } return ret; }
+ void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsRectItem::paint(x1, x2, x3); }}
+ QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsRectItem::shape(); } return ret; }
+ int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsRectItem::type(); } return ret; }
};
class LGraphicsSceneContextMenuEvent : public QGraphicsSceneContextMenuEvent {
- friend class N55;
-public:
-
- static NumList overrideIds;
- uint unique;
-};
-
-class LGraphicsSceneDragDropEvent : public QGraphicsSceneDragDropEvent {
- friend class N56;
-public:
-
- static NumList overrideIds;
- uint unique;
-};
-
-class LGraphicsSceneEvent : public QGraphicsSceneEvent {
- friend class N57;
-public:
-
- static NumList overrideIds;
- uint unique;
-};
-
-class LGraphicsSceneHelpEvent : public QGraphicsSceneHelpEvent {
- friend class N58;
-public:
-
- static NumList overrideIds;
- uint unique;
-};
-
-class LGraphicsSceneHoverEvent : public QGraphicsSceneHoverEvent {
- friend class N59;
-public:
-
- static NumList overrideIds;
- uint unique;
-};
-
-class LGraphicsSceneMouseEvent : public QGraphicsSceneMouseEvent {
friend class N60;
public:
@@ -828,9 +788,49 @@ public:
uint unique;
};
-class LGraphicsSceneMoveEvent : public QGraphicsSceneMoveEvent {
+class LGraphicsSceneDragDropEvent : public QGraphicsSceneDragDropEvent {
friend class N61;
public:
+
+ static NumList overrideIds;
+ uint unique;
+};
+
+class LGraphicsSceneEvent : public QGraphicsSceneEvent {
+ friend class N62;
+public:
+
+ static NumList overrideIds;
+ uint unique;
+};
+
+class LGraphicsSceneHelpEvent : public QGraphicsSceneHelpEvent {
+ friend class N63;
+public:
+
+ static NumList overrideIds;
+ uint unique;
+};
+
+class LGraphicsSceneHoverEvent : public QGraphicsSceneHoverEvent {
+ friend class N64;
+public:
+
+ static NumList overrideIds;
+ uint unique;
+};
+
+class LGraphicsSceneMouseEvent : public QGraphicsSceneMouseEvent {
+ friend class N65;
+public:
+
+ static NumList overrideIds;
+ uint unique;
+};
+
+class LGraphicsSceneMoveEvent : public QGraphicsSceneMoveEvent {
+ friend class N66;
+public:
LGraphicsSceneMoveEvent(uint u) : unique(u) {}
static NumList overrideIds;
@@ -838,7 +838,7 @@ public:
};
class LGraphicsSceneResizeEvent : public QGraphicsSceneResizeEvent {
- friend class N62;
+ friend class N67;
public:
LGraphicsSceneResizeEvent(uint u) : unique(u) {}
@@ -847,7 +847,7 @@ public:
};
class LGraphicsSceneWheelEvent : public QGraphicsSceneWheelEvent {
- friend class N63;
+ friend class N68;
public:
static NumList overrideIds;
@@ -855,7 +855,7 @@ public:
};
class LGraphicsSimpleTextItem : public QGraphicsSimpleTextItem {
- friend class N64;
+ friend class N69;
public:
LGraphicsSimpleTextItem(uint u, QGraphicsItem* x1 = 0) : QGraphicsSimpleTextItem(x1), unique(u) {}
LGraphicsSimpleTextItem(uint u, const QString& x1, QGraphicsItem* x2 = 0) : QGraphicsSimpleTextItem(x1, x2), unique(u) {}
@@ -863,17 +863,17 @@ public:
static NumList overrideIds;
uint unique;
- QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 253); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 253, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsSimpleTextItem::boundingRect(); } return ret; }
- bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 260, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsSimpleTextItem::contains(x1); } return ret; }
- bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 261, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsSimpleTextItem::isObscuredBy(x1); } return ret; }
- QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsSimpleTextItem::opaqueArea(); } return ret; }
- void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3) { quint64 id = LObjects::override_id(unique, 224); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 224, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsSimpleTextItem::paint(x1, x2, x3); }}
- QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 254); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 254, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsSimpleTextItem::shape(); } return ret; }
- int type() const { quint64 id = LObjects::override_id(unique, 226); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 226, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsSimpleTextItem::type(); } return ret; }
+ QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 260); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 260, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsSimpleTextItem::boundingRect(); } return ret; }
+ bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 267); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 267, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsSimpleTextItem::contains(x1); } return ret; }
+ bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsSimpleTextItem::isObscuredBy(x1); } return ret; }
+ QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 269, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsSimpleTextItem::opaqueArea(); } return ret; }
+ void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3) { quint64 id = LObjects::override_id(unique, 231); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 231, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsSimpleTextItem::paint(x1, x2, x3); }}
+ QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsSimpleTextItem::shape(); } return ret; }
+ int type() const { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 233, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsSimpleTextItem::type(); } return ret; }
};
class LHelpEvent : public QHelpEvent {
- friend class N66;
+ friend class N71;
public:
LHelpEvent(uint u, Type x1, const QPoint& x2, const QPoint& x3) : QHelpEvent(x1, x2, x3), unique(u) {}
@@ -882,7 +882,7 @@ public:
};
class LHideEvent : public QHideEvent {
- friend class N68;
+ friend class N73;
public:
LHideEvent(uint u) : unique(u) {}
@@ -891,7 +891,7 @@ public:
};
class LHoverEvent : public QHoverEvent {
- friend class N71;
+ friend class N76;
public:
LHoverEvent(uint u, Type x1, const QPointF& x2, const QPointF& x3, Qt::KeyboardModifiers x4 = Qt::NoModifier) : QHoverEvent(x1, x2, x3, x4), unique(u) {}
@@ -900,7 +900,7 @@ public:
};
class LIcon : public QIcon {
- friend class N72;
+ friend class N77;
public:
LIcon(uint u) : unique(u) {}
LIcon(uint u, const QPixmap& x1) : QIcon(x1), unique(u) {}
@@ -912,7 +912,7 @@ public:
};
class LIconDragEvent : public QIconDragEvent {
- friend class N73;
+ friend class N78;
public:
LIconDragEvent(uint u) : unique(u) {}
@@ -921,7 +921,7 @@ public:
};
class LImage : public QImage {
- friend class N74;
+ friend class N79;
public:
LImage(uint u) : unique(u) {}
LImage(uint u, const QSize& x1, Format x2) : QImage(x1, x2), unique(u) {}
@@ -936,7 +936,7 @@ public:
};
class LInputEvent : public QInputEvent {
- friend class N75;
+ friend class N80;
public:
static NumList overrideIds;
@@ -944,7 +944,7 @@ public:
};
class LInputMethodEvent : public QInputMethodEvent {
- friend class N76;
+ friend class N81;
public:
LInputMethodEvent(uint u) : unique(u) {}
LInputMethodEvent(uint u, const QInputMethodEvent& x1) : QInputMethodEvent(x1), unique(u) {}
@@ -954,19 +954,19 @@ public:
};
class LItemEditorFactory : public QItemEditorFactory {
- friend class N77;
+ friend class N82;
public:
LItemEditorFactory(uint u) : unique(u) {}
static NumList overrideIds;
uint unique;
- QWidget* createEditor(int x1, QWidget* x2) const { quint64 id = LObjects::override_id(unique, 434); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QWidget*)callOverrideFun(fun, 434, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::createEditor(x1, x2); } return ret; }
- QByteArray valuePropertyName(int x1) const { quint64 id = LObjects::override_id(unique, 435); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 435, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::valuePropertyName(x1); } return ret; }
+ QWidget* createEditor(int x1, QWidget* x2) const { quint64 id = LObjects::override_id(unique, 454); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QWidget*)callOverrideFun(fun, 454, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::createEditor(x1, x2); } return ret; }
+ QByteArray valuePropertyName(int x1) const { quint64 id = LObjects::override_id(unique, 455); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 455, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::valuePropertyName(x1); } return ret; }
};
class LItemSelectionRange : public QItemSelectionRange {
- friend class N78;
+ friend class N83;
public:
LItemSelectionRange(uint u) : unique(u) {}
LItemSelectionRange(uint u, const QItemSelectionRange& x1) : QItemSelectionRange(x1), unique(u) {}
@@ -978,7 +978,7 @@ public:
};
class LKeyEvent : public QKeyEvent {
- friend class N79;
+ friend class N84;
public:
LKeyEvent(uint u, Type x1, int x2, Qt::KeyboardModifiers x3, const QString& x4 = QString(), bool x5 = false, ushort x6 = 1) : QKeyEvent(x1, x2, x3, x4, x5, x6), unique(u) {}
@@ -987,7 +987,7 @@ public:
};
class LKeySequence : public QKeySequence {
- friend class N80;
+ friend class N85;
public:
LKeySequence(uint u) : unique(u) {}
LKeySequence(uint u, const QString& x1, SequenceFormat x2 = NativeText) : QKeySequence(x1, x2), unique(u) {}
@@ -1000,32 +1000,32 @@ public:
};
class LLayoutItem : public QLayoutItem {
- friend class N81;
+ friend class N86;
public:
LLayoutItem(uint u, Qt::Alignment x1 = 0) : QLayoutItem(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- QSizePolicy::ControlTypes controlTypes() const { quint64 id = LObjects::override_id(unique, 172); void* fun = LObjects::overrideFun(id); QSizePolicy::ControlTypes ret = (QSizePolicy::ControlTypes)0; if(fun && (LObjects::calling != id)) { ret = (QSizePolicy::ControlTypes)callOverrideFun(fun, 172, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::controlTypes(); } return ret; }
- Qt::Orientations expandingDirections() const { quint64 id = LObjects::override_id(unique, 163); void* fun = LObjects::overrideFun(id); Qt::Orientations ret = (Qt::Orientations)0; if(fun && (LObjects::calling != id)) { ret = (Qt::Orientations)callOverrideFun(fun, 163, 0, id).toInt(); } return ret; }
- QRect geometry() const { quint64 id = LObjects::override_id(unique, 173); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 173, 0, id).value(); } return ret; }
+ QSizePolicy::ControlTypes controlTypes() const { quint64 id = LObjects::override_id(unique, 173); void* fun = LObjects::overrideFun(id); QSizePolicy::ControlTypes ret = (QSizePolicy::ControlTypes)0; if(fun && (LObjects::calling != id)) { ret = (QSizePolicy::ControlTypes)callOverrideFun(fun, 173, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::controlTypes(); } return ret; }
+ Qt::Orientations expandingDirections() const { quint64 id = LObjects::override_id(unique, 164); void* fun = LObjects::overrideFun(id); Qt::Orientations ret = (Qt::Orientations)0; if(fun && (LObjects::calling != id)) { ret = (Qt::Orientations)callOverrideFun(fun, 164, 0, id).toInt(); } return ret; }
+ QRect geometry() const { quint64 id = LObjects::override_id(unique, 174); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 174, 0, id).value(); } return ret; }
bool hasHeightForWidth() const { quint64 id = LObjects::override_id(unique, 21); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 21, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::hasHeightForWidth(); } return ret; }
int heightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 22); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 22, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::heightForWidth(x1); } return ret; }
- void invalidate() { quint64 id = LObjects::override_id(unique, 164); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 164, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QLayoutItem::invalidate(); }}
- bool isEmpty() const { quint64 id = LObjects::override_id(unique, 174); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 174, 0, id).toBool(); } return ret; }
- QLayout* layout() { quint64 id = LObjects::override_id(unique, 175); void* fun = LObjects::overrideFun(id); QLayout* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QLayout*)callOverrideFun(fun, 175, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::layout(); } return ret; }
- QSize maximumSize() const { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 166, 0, id).value(); } return ret; }
- int minimumHeightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 167); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 167, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::minimumHeightForWidth(x1); } return ret; }
- QSize minimumSize() const { quint64 id = LObjects::override_id(unique, 168); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 168, 0, id).value(); } return ret; }
- void setGeometry(const QRect& x1) { quint64 id = LObjects::override_id(unique, 169); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 169, args, id); }}
+ void invalidate() { quint64 id = LObjects::override_id(unique, 165); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 165, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QLayoutItem::invalidate(); }}
+ bool isEmpty() const { quint64 id = LObjects::override_id(unique, 175); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 175, 0, id).toBool(); } return ret; }
+ QLayout* layout() { quint64 id = LObjects::override_id(unique, 176); void* fun = LObjects::overrideFun(id); QLayout* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QLayout*)callOverrideFun(fun, 176, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::layout(); } return ret; }
+ QSize maximumSize() const { quint64 id = LObjects::override_id(unique, 167); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 167, 0, id).value(); } return ret; }
+ int minimumHeightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 168); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 168, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::minimumHeightForWidth(x1); } return ret; }
+ QSize minimumSize() const { quint64 id = LObjects::override_id(unique, 169); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 169, 0, id).value(); } return ret; }
+ void setGeometry(const QRect& x1) { quint64 id = LObjects::override_id(unique, 170); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 170, args, id); }}
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value(); } return ret; }
- QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 436); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 436, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::spacerItem(); } return ret; }
- QWidget* widget() { quint64 id = LObjects::override_id(unique, 437); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 437, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::widget(); } return ret; }
+ QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 456); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 456, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::spacerItem(); } return ret; }
+ QWidget* widget() { quint64 id = LObjects::override_id(unique, 457); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 457, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::widget(); } return ret; }
};
class LLibraryInfo : public QLibraryInfo {
- friend class N82;
+ friend class N87;
public:
static NumList overrideIds;
@@ -1033,7 +1033,7 @@ public:
};
class LLinearGradient : public QLinearGradient {
- friend class N83;
+ friend class N88;
public:
LLinearGradient(uint u) : unique(u) {}
LLinearGradient(uint u, const QPointF& x1, const QPointF& x2) : QLinearGradient(x1, x2), unique(u) {}
@@ -1044,7 +1044,7 @@ public:
};
class LListWidgetItem : public QListWidgetItem {
- friend class N84;
+ friend class N89;
public:
LListWidgetItem(uint u, QListWidget* x1 = 0, int x2 = Type) : QListWidgetItem(x1, x2), unique(u) {}
LListWidgetItem(uint u, const QString& x1, QListWidget* x2 = 0, int x3 = Type) : QListWidgetItem(x1, x2, x3), unique(u) {}
@@ -1054,13 +1054,13 @@ public:
static NumList overrideIds;
uint unique;
- QListWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 438); void* fun = LObjects::overrideFun(id); QListWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QListWidgetItem*)callOverrideFun(fun, 438, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QListWidgetItem::clone(); } return ret; }
- QVariant data(int x1) const { quint64 id = LObjects::override_id(unique, 439); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 439, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QListWidgetItem::data(x1); } return ret; }
- void setData(int x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 440); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 440, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QListWidgetItem::setData(x1, x2); }}
+ QListWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 458); void* fun = LObjects::overrideFun(id); QListWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QListWidgetItem*)callOverrideFun(fun, 458, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QListWidgetItem::clone(); } return ret; }
+ QVariant data(int x1) const { quint64 id = LObjects::override_id(unique, 459); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 459, args, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QListWidgetItem::data(x1); } return ret; }
+ void setData(int x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 460); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 460, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QListWidgetItem::setData(x1, x2); }}
};
class LLocale : public QLocale {
- friend class N85;
+ friend class N90;
public:
LLocale(uint u) : unique(u) {}
LLocale(uint u, const QString& x1) : QLocale(x1), unique(u) {}
@@ -1073,7 +1073,7 @@ public:
};
class LMargins : public QMargins {
- friend class N86;
+ friend class N91;
public:
LMargins(uint u) : unique(u) {}
LMargins(uint u, int x1, int x2, int x3, int x4) : QMargins(x1, x2, x3, x4), unique(u) {}
@@ -1083,7 +1083,7 @@ public:
};
class LMatrix : public QMatrix {
- friend class N87;
+ friend class N92;
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) {}
@@ -1094,7 +1094,7 @@ public:
};
class LMatrix4x4 : public QMatrix4x4 {
- friend class N88;
+ friend class N93;
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) {}
@@ -1106,7 +1106,7 @@ public:
};
class LMetaObject : public QMetaObject {
- friend class N89;
+ friend class N94;
public:
static NumList overrideIds;
@@ -1114,7 +1114,7 @@ public:
};
class LModelIndex : public QModelIndex {
- friend class N90;
+ friend class N95;
public:
LModelIndex(uint u) : unique(u) {}
@@ -1123,7 +1123,7 @@ public:
};
class LMouseEvent : public QMouseEvent {
- friend class N91;
+ friend class N96;
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) {}
@@ -1134,7 +1134,7 @@ public:
};
class LMoveEvent : public QMoveEvent {
- friend class N92;
+ friend class N97;
public:
LMoveEvent(uint u, const QPoint& x1, const QPoint& x2) : QMoveEvent(x1, x2), unique(u) {}
@@ -1143,7 +1143,7 @@ public:
};
class LOpenGLPaintDevice : public QOpenGLPaintDevice {
- friend class N101;
+ friend class N106;
public:
LOpenGLPaintDevice(uint u) : unique(u) {}
LOpenGLPaintDevice(uint u, const QSize& x1) : QOpenGLPaintDevice(x1), unique(u) {}
@@ -1152,12 +1152,12 @@ public:
static NumList overrideIds;
uint unique;
- void ensureActiveTarget() { quint64 id = LObjects::override_id(unique, 442); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 442, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QOpenGLPaintDevice::ensureActiveTarget(); }}
- int metric(QPaintDevice::PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 443); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 443, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QOpenGLPaintDevice::metric(x1); } return ret; }
+ void ensureActiveTarget() { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 462, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QOpenGLPaintDevice::ensureActiveTarget(); }}
+ int metric(QPaintDevice::PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 463, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QOpenGLPaintDevice::metric(x1); } return ret; }
};
class LOpenGLTexture : public QOpenGLTexture {
- friend class N102;
+ friend class N107;
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,7 +1167,7 @@ public:
};
class LPaintEvent : public QPaintEvent {
- friend class N105;
+ friend class N110;
public:
LPaintEvent(uint u, const QRegion& x1) : QPaintEvent(x1), unique(u) {}
LPaintEvent(uint u, const QRect& x1) : QPaintEvent(x1), unique(u) {}
@@ -1177,7 +1177,7 @@ public:
};
class LPainter : public QPainter {
- friend class N106;
+ friend class N111;
public:
LPainter(uint u, QImage* x1) : QPainter(x1), unique(u) {}
LPainter(uint u, QPicture* x1) : QPainter(x1), unique(u) {}
@@ -1191,7 +1191,7 @@ public:
};
class LPainterPath : public QPainterPath {
- friend class N107;
+ friend class N112;
public:
LPainterPath(uint u) : unique(u) {}
LPainterPath(uint u, const QPointF& x1) : QPainterPath(x1), unique(u) {}
@@ -1202,7 +1202,7 @@ public:
};
class LPainterPathStroker : public QPainterPathStroker {
- friend class N108;
+ friend class N113;
public:
LPainterPathStroker(uint u) : unique(u) {}
LPainterPathStroker(uint u, const QPen& x1) : QPainterPathStroker(x1), unique(u) {}
@@ -1212,7 +1212,7 @@ public:
};
class LPalette : public QPalette {
- friend class N109;
+ friend class N114;
public:
LPalette(uint u) : unique(u) {}
LPalette(uint u, const QColor& x1) : QPalette(x1), unique(u) {}
@@ -1226,7 +1226,7 @@ public:
};
class LPen : public QPen {
- friend class N110;
+ friend class N115;
public:
LPen(uint u) : unique(u) {}
LPen(uint u, Qt::PenStyle x1) : QPen(x1), unique(u) {}
@@ -1239,7 +1239,7 @@ public:
};
class LPersistentModelIndex : public QPersistentModelIndex {
- friend class N111;
+ friend class N116;
public:
LPersistentModelIndex(uint u, const QModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {}
LPersistentModelIndex(uint u, const QPersistentModelIndex& x1) : QPersistentModelIndex(x1), unique(u) {}
@@ -1249,7 +1249,7 @@ public:
};
class LPicture : public QPicture {
- friend class N112;
+ friend class N117;
public:
LPicture(uint u, int x1 = -1) : QPicture(x1), unique(u) {}
LPicture(uint u, const QPicture& x1) : QPicture(x1), unique(u) {}
@@ -1257,12 +1257,12 @@ public:
static NumList overrideIds;
uint unique;
- void setData(const char* x1, uint x2) { quint64 id = LObjects::override_id(unique, 444); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 444, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPicture::setData(x1, x2); }}
+ void setData(const char* x1, uint x2) { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 464, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPicture::setData(x1, x2); }}
int metric(PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 45); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 45, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QPicture::metric(x1); } return ret; }
};
class LPixmap : public QPixmap {
- friend class N113;
+ friend class N118;
public:
LPixmap(uint u) : unique(u) {}
LPixmap(uint u, int x1, int x2) : QPixmap(x1, x2), unique(u) {}
@@ -1277,7 +1277,7 @@ public:
};
class LPixmapCache : public QPixmapCache {
- friend class N114;
+ friend class N119;
public:
static NumList overrideIds;
@@ -1285,20 +1285,20 @@ public:
};
class LPrinter : public QPrinter {
- friend class N115;
+ friend class N120;
public:
LPrinter(uint u, PrinterMode x1 = ScreenResolution) : QPrinter(x1), unique(u) {}
static NumList overrideIds;
uint unique;
- bool newPage() { quint64 id = LObjects::override_id(unique, 445); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 445, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QPrinter::newPage(); } return ret; }
- void setPageSize(PageSize x1) { quint64 id = LObjects::override_id(unique, 446); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 446, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSize(x1); }}
- void setPageSizeMM(const QSizeF& x1) { quint64 id = LObjects::override_id(unique, 447); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 447, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSizeMM(x1); }}
+ bool newPage() { quint64 id = LObjects::override_id(unique, 465); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 465, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QPrinter::newPage(); } return ret; }
+ void setPageSize(PageSize x1) { quint64 id = LObjects::override_id(unique, 466); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 466, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSize(x1); }}
+ void setPageSizeMM(const QSizeF& x1) { quint64 id = LObjects::override_id(unique, 467); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 467, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSizeMM(x1); }}
};
class LPrinterInfo : public QPrinterInfo {
- friend class N116;
+ friend class N121;
public:
static NumList overrideIds;
@@ -1306,7 +1306,7 @@ public:
};
class LProcessEnvironment : public QProcessEnvironment {
- friend class N117;
+ friend class N122;
public:
LProcessEnvironment(uint u) : unique(u) {}
LProcessEnvironment(uint u, const QProcessEnvironment& x1) : QProcessEnvironment(x1), unique(u) {}
@@ -1316,7 +1316,7 @@ public:
};
class LQuaternion : public QQuaternion {
- friend class N118;
+ friend class N123;
public:
LQuaternion(uint u) : unique(u) {}
LQuaternion(uint u, float x1, float x2, float x3, float x4) : QQuaternion(x1, x2, x3, x4), unique(u) {}
@@ -1328,7 +1328,7 @@ public:
};
class LRadialGradient : public QRadialGradient {
- friend class N119;
+ friend class N124;
public:
LRadialGradient(uint u) : unique(u) {}
LRadialGradient(uint u, const QPointF& x1, qreal x2, const QPointF& x3) : QRadialGradient(x1, x2, x3), unique(u) {}
@@ -1343,7 +1343,7 @@ public:
};
class LReadLocker : public QReadLocker {
- friend class N120;
+ friend class N125;
public:
LReadLocker(uint u, QReadWriteLock* x1) : QReadLocker(x1), unique(u) {}
@@ -1352,7 +1352,7 @@ public:
};
class LReadWriteLock : public QReadWriteLock {
- friend class N121;
+ friend class N126;
public:
LReadWriteLock(uint u, RecursionMode x1 = NonRecursive) : QReadWriteLock(x1), unique(u) {}
@@ -1361,7 +1361,7 @@ public:
};
class LRegExp : public QRegExp {
- friend class N122;
+ friend class N127;
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) {}
@@ -1372,7 +1372,7 @@ public:
};
class LRegion : public QRegion {
- friend class N123;
+ friend class N128;
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) {}
@@ -1386,7 +1386,7 @@ public:
};
class LRegularExpression : public QRegularExpression {
- friend class N124;
+ friend class N129;
public:
LRegularExpression(uint u) : unique(u) {}
LRegularExpression(uint u, const QString& x1, PatternOptions x2 = NoPatternOption) : QRegularExpression(x1, x2), unique(u) {}
@@ -1397,7 +1397,7 @@ public:
};
class LResizeEvent : public QResizeEvent {
- friend class N125;
+ friend class N130;
public:
LResizeEvent(uint u, const QSize& x1, const QSize& x2) : QResizeEvent(x1, x2), unique(u) {}
@@ -1406,18 +1406,18 @@ public:
};
class LRunnable : public QRunnable {
- friend class N126;
+ friend class N131;
public:
LRunnable(uint u) : unique(u) {}
static NumList overrideIds;
uint unique;
- void run() { quint64 id = LObjects::override_id(unique, 448); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 448, 0, id); }}
+ void run() { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 468, 0, id); }}
};
class LSemaphore : public QSemaphore {
- friend class N127;
+ friend class N132;
public:
LSemaphore(uint u, int x1 = 0) : QSemaphore(x1), unique(u) {}
@@ -1426,7 +1426,7 @@ public:
};
class LShortcutEvent : public QShortcutEvent {
- friend class N128;
+ friend class N133;
public:
LShortcutEvent(uint u, const QKeySequence& x1, int x2, bool x3 = false) : QShortcutEvent(x1, x2, x3), unique(u) {}
@@ -1435,7 +1435,7 @@ public:
};
class LShowEvent : public QShowEvent {
- friend class N129;
+ friend class N134;
public:
LShowEvent(uint u) : unique(u) {}
@@ -1444,7 +1444,7 @@ public:
};
class LSizePolicy : public QSizePolicy {
- friend class N130;
+ friend class N135;
public:
LSizePolicy(uint u) : unique(u) {}
LSizePolicy(uint u, Policy x1, Policy x2, ControlType x3 = DefaultType) : QSizePolicy(x1, x2, x3), unique(u) {}
@@ -1454,32 +1454,32 @@ public:
};
class LSpacerItem : public QSpacerItem {
- friend class N131;
+ friend class N136;
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) {}
static NumList overrideIds;
uint unique;
- Qt::Orientations expandingDirections() const { quint64 id = LObjects::override_id(unique, 163); void* fun = LObjects::overrideFun(id); Qt::Orientations ret = (Qt::Orientations)0; if(fun && (LObjects::calling != id)) { ret = (Qt::Orientations)callOverrideFun(fun, 163, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::expandingDirections(); } return ret; }
- QRect geometry() const { quint64 id = LObjects::override_id(unique, 173); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 173, 0, id).value(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::geometry(); } return ret; }
- bool isEmpty() const { quint64 id = LObjects::override_id(unique, 174); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 174, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::isEmpty(); } return ret; }
- QSize maximumSize() const { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 166, 0, id).value